diff --git a/Changes.md b/Changes.md index caf132b..9480016 100644 --- a/Changes.md +++ b/Changes.md @@ -1,5 +1,36 @@ -200(/08/20 + - added handler for .tel + - new easy_parser funtion applied to many handlers + - fixes for several handlers + - stargateinc handler moved to namevault + - itsyourdomain seems to be now tucows + - domainbank is now handled by dotster + - domaincontender is now assorted + - fixed bug #2888773 validip function uses undefined variable + - improved .eu domain registration status detection + - fixes for html nice output and utf-8 support + +2008/10/10 + - fixed Bugs item #2153003 + - fixed bug #2153380 Bad info for joker.com domain owners + +2008/09/07 + - check network nserver too + - added suport for spanish dates + - fixed ws handler + +2008/08/29 + - fixed 'bold' regex and removed extra + blank lines in showHTML result + +2008/08/28 + - fixed namespace in whois.ip.lib.php + - allow to specify full url in showHTML result + +2008/08/20 - added .ve handler by jlchafardet + - fixed some handlers reporting 'bill' instead of 'billing' + - added helper functions for some handlers + - fixed .au handler 2008/08/11 - fixed .es handler diff --git a/Readme.md b/Readme.md index cfbacb6..3e34400 100644 --- a/Readme.md +++ b/Readme.md @@ -156,6 +156,13 @@ and .tv domains and ip addresses this will prevent phpWhois to ask more than one whois server, you will just know if the donmain is registered or not and which is the registrar but not the owner information. +UTF-8 +----- + +PHPWhois will assume that all whois servers resturn UTF-8 encoded output, +if some whois server does not return UTF-8 data, you can include it in +the NON_UTF8 array in whois.servers.php + Notes ----- diff --git a/example.html b/example.html index 6a3cccf..f4e1328 100755 --- a/example.html +++ b/example.html @@ -1,4 +1,4 @@ - diff --git a/example.php b/example.php index a758eb8..d74f488 100644 --- a/example.php +++ b/example.php @@ -27,7 +27,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. header('Content-Type: text/html; charset=UTF-8'); -$out = implode("\n", file('example.html')); +$out = implode('', file('example.html')); $out = str_replace('{self}', $_SERVER['PHP_SELF'], $out); @@ -109,7 +109,7 @@ if (isSet($_GET['query'])) } } - $winfo = utf8_encode($winfo); + //$winfo = utf8_encode($winfo); $resout = str_replace('{result}', $winfo, $resout); } diff --git a/src/whois.at.php b/src/whois.at.php index 1848ac9..7a7a8b5 100644 --- a/src/whois.at.php +++ b/src/whois.at.php @@ -40,7 +40,6 @@ class at_handler function parse($data_str, $query) { - $translate = array( 'fax-no' => 'fax', 'e-mail' => 'email', diff --git a/src/whois.au.php b/src/whois.au.php index 0b7ac67..2762cb3 100644 --- a/src/whois.au.php +++ b/src/whois.au.php @@ -48,12 +48,12 @@ class au_handler 'Status:' => 'domain.status', 'Domain ROID:' => 'domain.handle', 'Registrant:' => 'owner.organization', - 'Registrant ID:' => 'owner.handle', - 'Registrant Email:' => 'owner.email', + 'Registrant Contact ID:' => 'owner.handle', + 'Registrant Contact Email:' => 'owner.email', 'Registrant Contact Name:' => 'owner.name', - 'Tech Name:' => 'tech.name', - 'Tech Email:' => 'tech.email', - 'Tech ID:' => 'tech.handle', + 'Tech Contact Name:' => 'tech.name', + 'Tech Contact Email:' => 'tech.email', + 'Tech Contact ID:' => 'tech.handle', 'Name Server:' => 'domain.nserver.' ); diff --git a/src/whois.be.php b/src/whois.be.php index e3930e3..c07762b 100644 --- a/src/whois.be.php +++ b/src/whois.be.php @@ -55,12 +55,9 @@ class be_handler if (isset($r['regrinfo']['domain']['name'])) { $r['regrinfo']['registered'] = 'yes'; - $r['regrinfo']['tech'] = get_contact($r['regrinfo']['tech']); - $r['regrinfo']['owner'] = get_contact($r['regrinfo']['owner']); - - if (isset($r['regrinfo']['admin'])) - $r['regrinfo']['admin'] = get_contact($r['regrinfo']['admin']); - + + $r['regrinfo'] = get_contacts($r['regrinfo']); + if (isset($r['regrinfo']['agent'])) { $sponsor = get_contact($r['regrinfo']['agent']); diff --git a/src/whois.ch.php b/src/whois.ch.php index 97cb8e8..698cda5 100644 --- a/src/whois.ch.php +++ b/src/whois.ch.php @@ -56,10 +56,8 @@ class ch_handler if (!empty($r['regrinfo']['domain']['name'])) { - - $r['regrinfo']['owner'] = get_contact($r['regrinfo']['owner']); - $r['regrinfo']['tech'] = get_contact($r['regrinfo']['tech']); - + $r['regrinfo'] = get_contacts($r['regrinfo']); + $r['regrinfo']['domain']['name'] = $r['regrinfo']['domain']['name'][0]; if (isset($r['regrinfo']['domain']['changed'][0])) diff --git a/src/whois.client.php b/src/whois.client.php index 3434284..93ebb8a 100755 --- a/src/whois.client.php +++ b/src/whois.client.php @@ -197,10 +197,15 @@ class WhoisClient { } } + if (array_key_exists($this->Query['server'],$this->NON_UTF8)) + { + $raw = utf8_encode($raw); + } + $output = explode("\n", $raw); // Drop empty last line (if it's empty! - saleck) - if(empty($output[count($output)-1])) + if (empty($output[count($output)-1])) unset($output[count($output)-1]); } @@ -244,11 +249,11 @@ class WhoisClient { else $result['regyinfo']['servers'] = $servers; - // Handler may fortget to set rawdata + // Handler may forget to set rawdata if (!isset($result['rawdata'])) $result['rawdata'] = $output; - } - + } + // Type defaults to domain if (!isset($result['regyinfo']['type'])) $result['regyinfo']['type'] = 'domain'; @@ -432,7 +437,7 @@ class WhoisClient { // If the handler has still not been included, append to query errors list and return if (!defined($HANDLER_FLAG)) { - $this->Query['errstr'][] = "Can't find ".$this->Query['tld'].' handler: '.$this->Query['file']; + $this->Query['errstr'][] = "Can't find $handler_name handler: ".$this->Query['file']; return($result); } diff --git a/src/whois.cn.php b/src/whois.cn.php index fc1ceae..9eb6cbb 100644 --- a/src/whois.cn.php +++ b/src/whois.cn.php @@ -28,8 +28,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. /* lunic.whois 2.0 David Saez 2003/09/08 */ /* cnnic.whois 1.0 Chewy - 2003/Sep/03 */ -if (!defined("__CN_HANDLER__")) - define("__CN_HANDLER__", 1); +if (!defined('__CN_HANDLER__')) + define('__CN_HANDLER__', 1); require_once('whois.parser.php'); @@ -39,55 +39,55 @@ class cn_handler function parse($data_str, $query) { $items = array( - "Domain Name:" => "domain.name", - "Domain Status:" => "domain.status", - "Name Server:" => "domain.nserver.", - "Registration Date:" => "domain.created", - "Expiration Date:" => "domain.expires", - "Sponsoring Registrar:" => "domain.sponsor", - "Registrant Name:" => "owner.name", - "Registrant Organization:" => "owner.organization", - "Registrant Address:" => "owner.address.address", - "Registrant Postal Code:" => "owner.address.pcode", - "Registrant City:" => "owner.address.city", - "Registrant Country Code:" => "owner.address.country", - "Registrant Email:" => "owner.email", - "Registrant Phone Number:" => "owner.phone", - "Registrant Fax:" => "owner.fax", - "Administrative Name:" => "admin.name", - "Administrative Organization:" => "admin.organization", - "Administrative Address:" => "admin.address.address", - "Administrative Postal Code:" => "admin.address.pcode", - "Administrative City:" => "admin.address.city", - "Administrative Country Code:" => "admin.address.country", - "Administrative Email:" => "admin.email", - "Administrative Phone Number:" => "admin.phone", - "Administrative Fax:" => "admin.fax", - "Technical Name:" => "tech.name", - "Technical Organization:" => "tech.organization", - "Technical Address:" => "tech.address.address", - "Technical Postal Code:" => "tech.address.pcode", - "Technical City:" => "tech.address.city", - "tec-country:" => "tech.address.country", - "Technical Email:" => "tech.email", - "Technical Phone Number:" => "tech.phone", - "Technical Fax:" => "tech.fax", - "Billing Name:" => "billing.name", - "Billing Organization:" => "billing.organization", - "Billing Address:" => "billing.address.address", - "Billing Postal Code:" => "billing.address.pcode", - "Billing City:" => "billing.address.city", - "Billing Country Code:" => "billing.address.country", - "Billing Email:" => "billing.email", - "Billing Phone Number:" => "billing.phone", - "Billing Fax:" => "billing.fax" + 'Domain Name:' => 'domain.name', + 'Domain Status:' => 'domain.status', + 'Name Server:' => 'domain.nserver.', + 'Registration Date:' => 'domain.created', + 'Expiration Date:' => 'domain.expires', + 'Sponsoring Registrar:' => 'domain.sponsor', + 'Registrant Name:' => 'owner.name', + 'Registrant Organization:' => 'owner.organization', + 'Registrant Address:' => 'owner.address.address', + 'Registrant Postal Code:' => 'owner.address.pcode', + 'Registrant City:' => 'owner.address.city', + 'Registrant Country Code:' => 'owner.address.country', + 'Registrant Email:' => 'owner.email', + 'Registrant Phone Number:' => 'owner.phone', + 'Registrant Fax:' => 'owner.fax', + 'Administrative Name:' => 'admin.name', + 'Administrative Organization:' => 'admin.organization', + 'Administrative Address:' => 'admin.address.address', + 'Administrative Postal Code:' => 'admin.address.pcode', + 'Administrative City:' => 'admin.address.city', + 'Administrative Country Code:' => 'admin.address.country', + 'Administrative Email:' => 'admin.email', + 'Administrative Phone Number:' => 'admin.phone', + 'Administrative Fax:' => 'admin.fax', + 'Technical Name:' => 'tech.name', + 'Technical Organization:' => 'tech.organization', + 'Technical Address:' => 'tech.address.address', + 'Technical Postal Code:' => 'tech.address.pcode', + 'Technical City:' => 'tech.address.city', + 'tec-country:' => 'tech.address.country', + 'Technical Email:' => 'tech.email', + 'Technical Phone Number:' => 'tech.phone', + 'Technical Fax:' => 'tech.fax', + 'Billing Name:' => 'billing.name', + 'Billing Organization:' => 'billing.organization', + 'Billing Address:' => 'billing.address.address', + 'Billing Postal Code:' => 'billing.address.pcode', + 'Billing City:' => 'billing.address.city', + 'Billing Country Code:' => 'billing.address.country', + 'Billing Email:' => 'billing.email', + 'Billing Phone Number:' => 'billing.phone', + 'Billing Fax:' => 'billing.fax' ); - $r["regyinfo"] = array( - "referrer" => "http://www.cnnic.net.cn", - "registrar" => "China NIC" + $r['regyinfo'] = array( + 'referrer' => 'http://www.cnnic.net.cn', + 'registrar' => 'China NIC' ); - $r["regrinfo"] = generic_parser_b($data_str["rawdata"], $items, 'ymd'); + $r['regrinfo'] = generic_parser_b($data_str['rawdata'], $items, 'ymd'); return ($r); } } diff --git a/src/whois.de.php b/src/whois.de.php index aa7bc98..63d584f 100755 --- a/src/whois.de.php +++ b/src/whois.de.php @@ -65,6 +65,7 @@ class de_handler 'city:' => 'address.city', 'pcode:' => 'address.pcode', 'country:' => 'address.country', + 'organisation:' => 'organization', 'name:' => 'name', 'remarks:' => '', 'type:' => '' @@ -98,7 +99,6 @@ class de_handler } else $r['regrinfo']['registered'] = 'no'; - echo "

"; return $r; } diff --git a/src/whois.edu.php b/src/whois.edu.php index 72098e3..ba4252f 100755 --- a/src/whois.edu.php +++ b/src/whois.edu.php @@ -47,32 +47,14 @@ class edu_handler 'billing' => 'Billing Contact:' ); - $b = get_blocks($data_str['rawdata'], $items); - - if (isset($b['owner'])) - { - $b['owner'] = get_contact($b['owner']); - } - - if (isset($b['admin'])) - { - $b['admin'] = get_contact($b['admin']); - } - + $r['regrinfo'] = easy_parser($data_str['rawdata'], $items, 'dmy'); + if (isset($b['tech'])) { - $b['tech'] = get_contact($b['tech']); - - if ($b['tech']['name'] == 'Same as above') - $b['tech'] = $b['admin']; + if ($r['regrinfo']['tech']['name'] == 'Same as above') + $r['regrinfo']['tech'] = $r['regrinfo']['admin']; } - if (isset($b['billing'])) - $b['billing'] = get_contact($b['billing']); - - format_dates($b, 'dmy'); - - $r['regrinfo'] = $b; $r['regyinfo']['referrer'] = 'http://whois.educause.net'; $r['regyinfo']['registrar'] = 'EDUCASE'; return ($r); diff --git a/src/whois.eu.php b/src/whois.eu.php index 6d40493..0465fbe 100755 --- a/src/whois.eu.php +++ b/src/whois.eu.php @@ -64,7 +64,12 @@ class eu_handler case 'APPLICATION PENDING': $r['regrinfo']['registered'] = 'pending'; break; + + default: + $r['regrinfo']['registered'] = 'unknown'; } + else + $r['regrinfo']['registered'] = 'yes'; if (isset($r['regrinfo']['tech'])) $r['regrinfo']['tech'] = get_contact($r['regrinfo']['tech'],$extra); diff --git a/src/whois.fm.php b/src/whois.fm.php index 0219770..6dd0ff7 100644 --- a/src/whois.fm.php +++ b/src/whois.fm.php @@ -39,37 +39,36 @@ class fm_handler { $items = array( - 'owner' => 'Registrant', + 'owner' => 'Registrant', 'admin' => 'Administrative', 'tech' => 'Technical', - 'billing' => 'Billing' + 'billing' => 'Billing', + 'domain.nserver' => 'Name Servers:', + 'domain.created' => 'Created:', + 'domain.expires' => 'Expires:', + 'domain.changed' => 'Modified:', + 'domain.status' => 'Status:', + 'domain.sponsor' => 'Registrar:' ); - $blocks = get_blocks($data['rawdata'], $items); + $r['regrinfo'] = get_blocks($data['rawdata'], $items); - $items = array( - 'FM Domain:' => 'name', - 'Primary Hostname:' => 'nserver.0', - 'Secondary Hostname:' => 'nserver.1', - 'Renewal Date:' => 'expires' - ); + $items = array( 'voice:' => 'phone' ); - $r['regrinfo']['domain'] = generic_parser_b($data['rawdata'], $items); - - $items = array( - 'Organiztion:' => 'organization', - 'Name:' => 'name', - 'Address:' => 'address.0', - 'City, State Zip:' => 'address.1', - 'Country:' => 'address.country', - 'Phone:' => 'phone', - 'Fax:' => 'fax', - 'Email:' => 'email' - ); - - while (list($key, $val) = each($blocks)) + if (!empty($r['regrinfo']['domain']['created'])) { - $r['regrinfo'][$key] = generic_parser_b($val, $items, 'mdy', false); + $r['regrinfo'] = get_contacts($r['regrinfo'],$items); + + if (count($r['regrinfo']['billing']['address']) > 4) + $r['regrinfo']['billing']['address'] = array_slice($r['regrinfo']['billing']['address'],0,4); + + $r['regrinfo']['registered'] = 'yes'; + format_dates($r['regrinfo']['domain'],'dmY'); + } + else + { + $r = ''; + $r['regrinfo']['registered'] = 'no'; } $r['regyinfo']['referrer'] = 'http://www.dot.dm'; diff --git a/src/whois.gtld.alldomains.php b/src/whois.gtld.alldomains.php index 38e235d..c8af065 100755 --- a/src/whois.gtld.alldomains.php +++ b/src/whois.gtld.alldomains.php @@ -45,12 +45,7 @@ class alldomains_handler 'domain.nserver.' => 'Domain servers in listed order:' ); - $r = get_blocks($data_str, $items); - $r['owner'] = get_contact($r['owner']); - $r['admin'] = get_contact($r['admin']); - $r['tech'] = get_contact($r['tech']); - format_dates($r, 'ymd'); - return ($r); + return easy_parser($data_str, $items, 'ymd'); } } ?> diff --git a/src/whois.gtld.ascio.php b/src/whois.gtld.ascio.php index 3133acc..2dd9762 100644 --- a/src/whois.gtld.ascio.php +++ b/src/whois.gtld.ascio.php @@ -49,12 +49,7 @@ class ascio_handler 'domain.changed' => 'Record last updated:' ); - $r = get_blocks($data_str, $items, true); - $r['owner'] = get_contact($r['owner']); - $r['admin'] = get_contact($r['admin']); - $r['tech'] = get_contact($r['tech']); - format_dates($r, 'ymd'); - return ($r); + return easy_parser($data_str, $items, 'ymd',false,false,true); } } ?> diff --git a/whois.gtld.domaincontender.php b/src/whois.gtld.assorted.php old mode 100755 new mode 100644 similarity index 81% rename from whois.gtld.domaincontender.php rename to src/whois.gtld.assorted.php index e25300b..bc5932a --- a/whois.gtld.domaincontender.php +++ b/src/whois.gtld.assorted.php @@ -25,12 +25,12 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -if (!defined('__DOMAINCONTENDER_HANDLER__')) - define('__DOMAINCONTENDER_HANDLER__', 1); +if (!defined('__ASSORTED_HANDLER__')) + define('__ASSORTED_HANDLER__', 1); require_once('whois.parser.php'); -class domaincontender_handler +class assorted_handler { function parse($data_str, $query) { @@ -45,12 +45,7 @@ class domaincontender_handler 'domain.changed' => 'Record last updated' ); - $r = get_blocks($data_str, $items, true); - $r['owner'] = get_contact($r['owner']); - $r['admin'] = get_contact($r['admin']); - $r['tech'] = get_contact($r['tech']); - format_dates($r, 'ymd'); - return ($r); + return easy_parser($data_str, $items, 'ymd',false,false,true); } } ?> diff --git a/src/whois.gtld.directnic.php b/src/whois.gtld.directnic.php index 899229f..631a84d 100644 --- a/src/whois.gtld.directnic.php +++ b/src/whois.gtld.directnic.php @@ -49,13 +49,7 @@ class directnic_handler '' => 'By submitting a WHOIS query' ); - $r = get_blocks($data_str, $items, true); - - $r['owner'] = get_contact($r['owner']); - $r['admin'] = get_contact($r['admin']); - $r['tech'] = get_contact($r['tech']); - format_dates($r, 'mdy'); - return ($r); + return easy_parser($data_str, $items, 'mdy',false,false,true); } } ?> diff --git a/src/whois.gtld.domaindiscover.php b/src/whois.gtld.domaindiscover.php index e58a7d2..c7e70dd 100644 --- a/src/whois.gtld.domaindiscover.php +++ b/src/whois.gtld.domaindiscover.php @@ -47,14 +47,7 @@ class domaindiscover_handler 'domain.expires' => 'Domain expires on' ); - $r = get_blocks($data_str, $items, true); - - $r['owner'] = get_contact($r['owner']); - $r['admin'] = get_contact($r['admin']); - $r['tech'] = get_contact($r['tech']); - $r['zone'] = get_contact($r['zone']); - format_dates($r, 'dmy'); - return ($r); + return easy_parser($data_str, $items, 'dmy', false, false, true); } } diff --git a/src/whois.gtld.dotster.php b/src/whois.gtld.dotster.php index f313fec..e095c93 100644 --- a/src/whois.gtld.dotster.php +++ b/src/whois.gtld.dotster.php @@ -29,38 +29,29 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. /* 17/1/2002 Fixed !! */ /* 2003/02/18 updated to common object model */ -if (!defined("__DOTSTER_HANDLER__")) - define("__DOTSTER_HANDLER__", 1); +if (!defined('__DOTSTER_HANDLER__')) + define('__DOTSTER_HANDLER__', 1); require_once('whois.parser.php'); class dotster_handler { - function parse($data_str, $query) { - $items = array( - "owner" => "Registrant:", - "admin" => "Administrative", - "tech" => "Technical", - "domain.nserver" => - "Domain servers in listed order:", - "domain.name" => "Domain name:", - "domain.created" => "Created on:", - "domain.expires" => "Expires on:", - "domain.changed" => "Last Updated on:", - "domain.sponsor" => "Registrar:" + 'owner' => 'Registrant:', + 'admin' => 'Administrative', + 'tech' => 'Technical', + 'domain.nserver' => + 'Domain servers in listed order:', + 'domain.name' => 'Domain name:', + 'domain.created' => 'Created on:', + 'domain.expires' => 'Expires on:', + 'domain.changed' => 'Last Updated on:', + 'domain.sponsor' => 'Registrar:' ); - $r = get_blocks($data_str, $items); - $r["owner"] = get_contact($r["owner"]); - $r["admin"] = get_contact($r["admin"]); - $r["tech"] = get_contact($r["tech"]); - format_dates($r, 'dmy'); - return ($r); - + return easy_parser($data_str, $items, 'dmy'); } - } ?> diff --git a/src/whois.gtld.enom.php b/src/whois.gtld.enom.php index e90c0d6..1695f39 100644 --- a/src/whois.gtld.enom.php +++ b/src/whois.gtld.enom.php @@ -62,22 +62,7 @@ class enom_handler 'domain.expires#2' => 'Registered through-' ); - $r = get_blocks($data_str, $items, true); - - if (isset($r['owner'])) - $r['owner'] = get_contact($r['owner'],false,true); - - if (isset($r['admin'])) - $r['admin'] = get_contact($r['admin'],false,true); - - if (isset($r['tech'])) - $r['tech'] = get_contact($r['tech'],false,true); - - if (isset($r['billing'])) - $r['billing'] = get_contact($r['billing'],false,true); - - $r = format_dates($r, 'dmy'); - return ($r); + return easy_parser($data_str, $items, 'dmy', false, false, true); } } diff --git a/src/whois.gtld.fabulous.php b/src/whois.gtld.fabulous.php index beaaafd..0bbd7bb 100644 --- a/src/whois.gtld.fabulous.php +++ b/src/whois.gtld.fabulous.php @@ -40,37 +40,22 @@ class fabulous_handler 'owner' => 'Domain '.$query.':', 'admin' => 'Administrative contact:', 'tech' => 'Technical contact:', - 'bill' => 'Billing contact:', + 'billing' => 'Billing contact:', '' => 'Record dates:' ); - $r = get_blocks($data_str, $items, true); + $r = easy_parser($data_str, $items, 'mdy',false,false,true); - if (isset($r['bill'])) + if (!isset($r['tech'])) { - $r['bill'] = get_contact($r['bill']); + $r['tech'] = $r['billing']; } - - if (isset($r['tech'])) - { - $r['tech'] = get_contact($r['tech']); - } - else - { - $r['tech'] = $r['bill']; - } - - if (isset($r['admin'])) - { - $r['admin'] = get_contact($r['admin']); - } - else + + if (!isset($r['admin'])) { $r['admin'] = $r['tech']; } - - $r['owner'] = get_contact($r['owner']); - format_dates($r, 'mdy'); + return ($r); } } diff --git a/src/whois.gtld.interdomain.php b/src/whois.gtld.interdomain.php index 8cb6a56..3da3ebe 100644 --- a/src/whois.gtld.interdomain.php +++ b/src/whois.gtld.interdomain.php @@ -35,10 +35,8 @@ require_once('whois.parser.php'); class interdomain_handler { - function parse($data_str, $query) { - $items = array( 'Domain Name................' => 'domain.name', 'Creation Date............' => 'domain.created', @@ -82,5 +80,4 @@ class interdomain_handler return generic_parser_b($data_str, $items, 'dmy'); } } - ?> diff --git a/src/whois.gtld.itsyourdomain.php b/src/whois.gtld.itsyourdomain.php index 55779b5..c94c94d 100644 --- a/src/whois.gtld.itsyourdomain.php +++ b/src/whois.gtld.itsyourdomain.php @@ -48,13 +48,7 @@ class itsyourdomain_handler 'domain.changed' => 'Record last updated on ' ); - $r = get_blocks($data_str, $items); - $r['owner'] = get_contact($r['owner']); - $r['admin'] = get_contact($r['admin']); - $r['tech'] = get_contact($r['tech']); - $r['billing'] = get_contact($r['billing']); - $r = format_dates($r, 'mdy'); - return ($r); + return easy_parser($data_str, $items, 'mdy'); } } ?> diff --git a/src/whois.gtld.moniker.php b/src/whois.gtld.moniker.php index e53399d..53f9083 100644 --- a/src/whois.gtld.moniker.php +++ b/src/whois.gtld.moniker.php @@ -27,8 +27,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. /* moniker.whois 1.1 David Saez Padros */ -if (!defined("__MONIKER_HANDLER__")) - define("__MONIKER_HANDLER__", 1); +if (!defined('__MONIKER_HANDLER__')) + define('__MONIKER_HANDLER__', 1); require_once('whois.parser.php'); @@ -39,24 +39,18 @@ class moniker_handler { $items = array( - "owner" => "Registrant", - "admin" => "Administrative ", - "tech" => "Technical ", - "billing" => "Billing ", - "domain.name" => "Domain Name:", - "domain.nserver." => "Domain servers in listed order:", - "domain.created" => "Record created on: ", - "domain.expires" => "Domain Expires on: ", - "domain.changed" => "Database last updated on: " + 'owner' => 'Registrant', + 'admin' => 'Administrative ', + 'tech' => 'Technical ', + 'billing' => 'Billing ', + 'domain.name' => 'Domain Name:', + 'domain.nserver.' => 'Domain servers in listed order:', + 'domain.created' => 'Record created on: ', + 'domain.expires' => 'Domain Expires on: ', + 'domain.changed' => 'Database last updated on: ' ); - $r = get_blocks($data_str, $items); - $r["owner"] = get_contact($r["owner"]); - $r["admin"] = get_contact($r["admin"]); - $r["tech"] = get_contact($r["tech"]); - $r["billing"] = get_contact($r["billing"]); - $r = format_dates($r, 'ymd'); - return ($r); + return easy_parser($data_str, $items, 'ymd'); } } ?> diff --git a/src/whois.gtld.namejuice.php b/src/whois.gtld.namejuice.php index 7dd9899..95cc1df 100755 --- a/src/whois.gtld.namejuice.php +++ b/src/whois.gtld.namejuice.php @@ -34,7 +34,6 @@ require_once('whois.parser.php'); class namejuice_handler { - function parse($data_str, $query) { @@ -46,23 +45,12 @@ class namejuice_handler 'domain.nserver.' => 'Name Servers:', 'domain.created' => 'Creation date:', 'domain.expires' => 'Expiration date:', + 'domain.changed' => 'Update date:', 'domain.status' => 'Status:', 'domain.sponsor' => 'Registration Service Provided By:' ); - $r = get_blocks($data_str, $items); - - if (isset($r['owner'])) - $r['owner'] = get_contact($r['owner'],false,true); - - if (isset($r['admin'])) - $r['admin'] = get_contact($r['admin'],false,true); - - if (isset($r['tech'])) - $r['tech'] = get_contact($r['tech'],false,true); - - $r = format_dates($r, 'dmy'); - return ($r); + return easy_parser($data_str, $items, 'dmy', false, true, true); } } ?> \ No newline at end of file diff --git a/src/whois.gtld.nameking.php b/src/whois.gtld.nameking.php index 20f423c..affe4cf 100644 --- a/src/whois.gtld.nameking.php +++ b/src/whois.gtld.nameking.php @@ -32,15 +32,13 @@ require_once('whois.parser.php'); class nameking_handler { - function parse($data_str, $query) { - $items = array( 'owner' => 'Registrant', 'admin' => 'Admin Contact', 'tech' => 'Tech Contact', - 'bill' => 'Billing Contact', + 'billing' => 'Billing Contact', 'domain.sponsor' => 'Registration Provided By:', 'domain.created' => 'Creation Date:', 'domain.expires' => 'Expiration Date:', @@ -66,21 +64,7 @@ class nameking_handler 'city, province, post code:' => 'address.city' ); - $r = get_blocks($data_str, $items, true); - - if (isset($r['owner'])) - $r['owner'] = get_contact($r['owner'],$extra); - if (isset($r['admin'])) - $r['admin'] = get_contact($r['admin'],$extra); - if (isset($r['tech'])) - $r['tech'] = get_contact($r['tech'],$extra); - if (isset($r['bill'])) - $r['bill'] = get_contact($r['bill'],$extra); - - format_dates($r['domain'], 'mdy'); - return ($r); + return easy_parser($data_str, $items, 'mdy', $extra, false, true); } - } - ?> diff --git a/whois.gtld.stargateinc.php b/src/whois.gtld.namevault.php similarity index 72% rename from whois.gtld.stargateinc.php rename to src/whois.gtld.namevault.php index 98f44f8..debf540 100644 --- a/whois.gtld.stargateinc.php +++ b/src/whois.gtld.namevault.php @@ -27,20 +27,20 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. /* stargate.whois 1.1 David Saez Padros */ -if (!defined('__STARGATEINC_HANDLER__')) - define('__STARGATEINC_HANDLER__', 1); +if (!defined('__NAMEVAULT_HANDLER__')) + define('__NAMEVAULT_HANDLER__', 1); require_once('whois.parser.php'); -class stargateinc_handler +class namevault_handler { function parse($data_str, $query) { $items = array( 'owner' => 'Registrant', - 'admin' => 'Administrative', - 'tech' => 'Technical', - 'billing' => 'Billing', + 'admin' => 'Administrative Contact:', + 'tech' => 'Technical Contact:', + 'billing' => 'Billing Contact:', 'domain.name' => 'Domain Name:', 'domain.nserver.' => 'Name Servers', 'domain.created' => 'Creation Date:', @@ -48,13 +48,7 @@ class stargateinc_handler 'domain.status' => 'Status:' ); - $r = get_blocks($data_str, $items,true); - $r['owner'] = get_contact($r['owner'],false,true); - $r['admin'] = get_contact($r['admin'],false,true); - $r['tech'] = get_contact($r['tech'],false,true); - $r['billing'] = get_contact($r['billing'],false,true); - $r = format_dates($r, 'dmy'); - return ($r); + return easy_parser($data_str, $items, 'dmy', false, true, true); } } ?> diff --git a/src/whois.gtld.networksolutions.php b/src/whois.gtld.networksolutions.php index 098d783..6d1e6d2 100644 --- a/src/whois.gtld.networksolutions.php +++ b/src/whois.gtld.networksolutions.php @@ -47,15 +47,7 @@ class networksolutions_handler 'domain.expires' => 'Record expires on' ); - $r = get_blocks($data_str, $items, true); - - if (isset($r['owner'])) $r['owner'] = get_contact($r['owner'],false,true); - if (isset($r['admin'])) $r['admin'] = get_contact($r['admin'],false,true); - if (isset($r['tech'])) $r['tech'] = get_contact($r['tech'],false,true); - - $r = format_dates($r, 'dmy'); - - return ($r); + return easy_parser($data_str, $items, 'dmy',false,true,true); } } ?> diff --git a/src/whois.gtld.nicline.php b/src/whois.gtld.nicline.php index 9b9c857..327d3fc 100644 --- a/src/whois.gtld.nicline.php +++ b/src/whois.gtld.nicline.php @@ -51,14 +51,7 @@ class nicline_handler 'domain.changed' => 'Last updated:' ); - $r = get_blocks($data_str, $items); - - if (isset($r['owner'])) $r['owner'] = get_contact($r['owner']); - if (isset($r['admin'])) $r['admin'] = get_contact($r['admin']); - if (isset($r['tech'])) $r['tech'] = get_contact($r['tech']); - - $r = format_dates($r, 'dmy'); - return ($r); + return easy_parser($data_str, $items, 'dmy'); } } ?> diff --git a/src/whois.gtld.onlinenic.php b/src/whois.gtld.onlinenic.php index f0a3b37..f8fcf2a 100644 --- a/src/whois.gtld.onlinenic.php +++ b/src/whois.gtld.onlinenic.php @@ -40,7 +40,7 @@ class onlinenic_handler 'owner' => 'Registrant:', 'admin' => 'Administrator:', 'tech' => 'Technical Contactor:', - 'bill' => 'Billing Contactor:', + 'billing' => 'Billing Contactor:', 'domain.name' => 'Domain name:', 'domain.name#' => 'Domain Name:', 'domain.nserver' => 'Domain servers in listed order:', @@ -67,16 +67,7 @@ class onlinenic_handler ',country:' => 'address.country' ); - $r = get_blocks($data_str, $items, true); - - if (isset($r['owner'])) - $r['owner'] = get_contact($r['owner'],$extra); - if (isset($r['admin'])) - $r['admin'] = get_contact($r['admin'],$extra); - if (isset($r['tech'])) - $r['tech'] = get_contact($r['tech'],$extra); - if (isset($r['bill'])) - $r['bill'] = get_contact($r['bill'],$extra); + $r = easy_parser($data_str, $items, 'mdy',$extra,false,true); foreach($r as $key => $part) if (isset($part['email'])) @@ -87,7 +78,7 @@ class onlinenic_handler $r[$key]['email'] = $email; if ($phone != '') $r[$key]['phone'] = $phone; } - format_dates($r['domain'], 'mdy'); + return ($r); } diff --git a/src/whois.gtld.opensrs.php b/src/whois.gtld.opensrs.php index 6b3c885..5c3c69e 100755 --- a/src/whois.gtld.opensrs.php +++ b/src/whois.gtld.opensrs.php @@ -50,15 +50,11 @@ class opensrs_handler 'domain.sponsor' => 'Registrar of Record:' ); - $r = get_blocks($data_str, $items, true); + $r = easy_parser($data_str, $items, 'dmy', false, false, true); if (isset($r['domain']['sponsor']) && is_array($r['domain']['sponsor'])) $r['domain']['sponsor'] = $r['domain']['sponsor'][0]; - if (isset($r['owner'])) $r['owner'] = get_contact($r['owner']); - if (isset($r['admin'])) $r['admin'] = get_contact($r['admin']); - if (isset($r['tech'])) $r['tech'] = get_contact($r['tech']); - $r = format_dates($r, 'dmy'); return ($r); } } diff --git a/src/whois.gtld.ovh.php b/src/whois.gtld.ovh.php index 572b66c..f0176f5 100644 --- a/src/whois.gtld.ovh.php +++ b/src/whois.gtld.ovh.php @@ -46,15 +46,7 @@ class ovh_handler 'domain.created' => 'Record created on' ); - $r = get_blocks($data_str, $items, true); - - $r['owner'] = get_contact($r['owner']); - $r['admin'] = get_contact($r['admin']); - $r['tech'] = get_contact($r['tech']); - $r['billing'] = get_contact($r['billing']); - - format_dates($r, 'mdy'); - return ($r); + return easy_parser($data_str, $items, 'mdy',false,false,true); } } ?> diff --git a/src/whois.gtld.publicdomainregistry.php b/src/whois.gtld.publicdomainregistry.php index 2ad5732..3b9bc3b 100644 --- a/src/whois.gtld.publicdomainregistry.php +++ b/src/whois.gtld.publicdomainregistry.php @@ -51,13 +51,7 @@ class publicdomainregistry_handler 'domain.expires#' => 'Expiration Date:' ); - $r = get_blocks($data_str, $items,true); - - $r['owner'] = get_contact($r['owner'],false,true); - $r['admin'] = get_contact($r['admin'],false,true); - $r['tech'] = get_contact($r['tech'],false,true); - format_dates($r, 'mdy'); - return ($r); + return easy_parser($data_str, $items, 'mdy', false, true, true); } } ?> diff --git a/src/whois.gtld.register.php b/src/whois.gtld.register.php index 3f14599..97d48b1 100755 --- a/src/whois.gtld.register.php +++ b/src/whois.gtld.register.php @@ -57,15 +57,7 @@ class register_handler 'domain.status' => 'Status:' ); - $r = get_blocks($data_str, $items); - - if (isset($r['owner'])) $r['owner'] = get_contact($r['owner']); - if (isset($r['admin'])) $r['admin'] = get_contact($r['admin']); - if (isset($r['tech'])) $r['tech'] = get_contact($r['tech']); - if (isset($r['zone'])) $r['zone'] = get_contact($r['zone']); - - $r = format_dates($r, '-mdy'); - return ($r); + return easy_parser($data_str, $items, 'ymd'); } } ?> diff --git a/src/whois.gtld.srsplus.php b/src/whois.gtld.srsplus.php index a38056b..5026a91 100644 --- a/src/whois.gtld.srsplus.php +++ b/src/whois.gtld.srsplus.php @@ -34,10 +34,8 @@ require_once('whois.parser.php'); class srsplus_handler { - function parse($data_str, $query) { - $items = array( 'owner' => 'Registrant:', 'admin' => 'Administrative', @@ -49,20 +47,7 @@ class srsplus_handler 'domain.expires' => 'Record expires on' ); - $r = get_blocks($data_str, $items, true); - - if (isset($r['owner'])) - $r['owner'] = get_contact($r['owner'],false,true); - if (isset($r['admin'])) - $r['admin'] = get_contact($r['admin'],false,true); - if (isset($r['tech'])) - $r['tech'] = get_contact($r['tech'],false,true); - if (isset($r['billing'])) - $r['billing'] = get_contact($r['billing'],false,true); - format_dates($r['domain'], 'mdy'); - return ($r); + return easy_parser($data_str, $items, 'ymd',false,true,true); } - } - ?> diff --git a/src/whois.gtld.tmagnic.php b/src/whois.gtld.tmagnic.php index a7968b5..111268e 100644 --- a/src/whois.gtld.tmagnic.php +++ b/src/whois.gtld.tmagnic.php @@ -48,13 +48,7 @@ class tmagnic_handler '#' => 'Punycode Name:' ); - $r = get_blocks($data_str, $items, true); - - if (isset($r['owner'])) $r['owner'] = get_contact($r['owner']); - if (isset($r['admin'])) $r['admin'] = get_contact($r['admin']); - if (isset($r['tech'])) $r['tech'] = get_contact($r['tech']); - format_dates($r, 'ymd'); - return ($r); + return easy_parser($data_str, $items, 'ymd',false,false,true); } } ?> diff --git a/src/whois.gtld.tvcorp.php b/src/whois.gtld.tvcorp.php index fc9885e..105a609 100644 --- a/src/whois.gtld.tvcorp.php +++ b/src/whois.gtld.tvcorp.php @@ -34,10 +34,8 @@ require_once('whois.parser.php'); class tvcorp_handler { - function parse($data_str, $query) { - $items = array( 'owner' => 'Registrant', 'admin' => 'Admin', @@ -48,15 +46,7 @@ class tvcorp_handler 'domain.expires' => 'Record expires on' ); - $r = get_blocks($data_str, $items); - - if (isset($r['owner'])) $r['owner'] = get_contact($r['owner']); - if (isset($r['admin'])) $r['admin'] = get_contact($r['admin']); - if (isset($r['tech'])) $r['tech'] = get_contact($r['tech']); - if (isset($r['billing'])) $r['billing'] = get_contact($r['billing']); - - $r = format_dates($r, 'myd'); - return ($r); + return easy_parser($data_str, $items, 'mdy'); } } ?> diff --git a/src/whois.gtld.wildwestdomains.php b/src/whois.gtld.wildwestdomains.php index e898e76..0064e23 100644 --- a/src/whois.gtld.wildwestdomains.php +++ b/src/whois.gtld.wildwestdomains.php @@ -32,10 +32,8 @@ require_once('whois.parser.php'); class wildwestdomains_handler { - function parse($data_str, $query) { - $items = array( 'owner' => 'Registrant:', 'admin' => 'Administrative Contact:', @@ -48,19 +46,7 @@ class wildwestdomains_handler 'domain.changed' => 'Last Updated on:' ); - $r = get_blocks($data_str, $items); - - if (isset($r['owner'])) - $r['owner'] = get_contact($r['owner']); - if (isset($r['admin'])) - $r['admin'] = get_contact($r['admin']); - if (isset($r['tech'])) - $r['tech'] = get_contact($r['tech']); - - format_dates($r['domain'], 'mdy'); - return ($r); + return easy_parser($data_str, $items, 'mdy'); } - } - ?> diff --git a/src/whois.hu.php b/src/whois.hu.php index 2dae3b9..4fbeeb5 100644 --- a/src/whois.hu.php +++ b/src/whois.hu.php @@ -43,8 +43,7 @@ class hu_handler { 'e-mail' => 'email', 'hun-id' => 'handle', 'person' => 'name', - 'domain_pri_ns' => 'nserver', - 'domain_sec_ns' => 'nserver', + 'nameserver' => 'nserver', 'person' => 'name', 'org' => 'organization', 'registered' => 'created' @@ -55,76 +54,48 @@ class hu_handler { 'admin-c' => 'admin', 'tech-c' => 'tech', 'billing-c' => 'billing', - 'zone-c' => 'zone' + 'zone-c' => 'zone', + 'owner-hun-id' => 'owner' ); // make those broken hungary comments standards-conforming - - for ($i=1; $i'http://www.nic.hu','registrar'=>'HUNIC'); - $r['rawdata']=$data_str['rawdata']; + foreach ($data_str['rawdata'] as $i => $val) + { + if ($comments) + { + if (strpos($data_str['rawdata'][$i],'domain:') === false) + { + if ($i) $data_str['rawdata'][$i] = '% '.$data_str['rawdata'][$i]; + } + else + $comments = false; + } + else + if ($owner_id && substr($data_str['rawdata'][$i],0,7) == 'hun-id:') + { + $data_str['rawdata'][$i] = 'owner-'.$data_str['rawdata'][$i]; + $owner_id = false; + } + + $data_str['rawdata'][$i] = utf8_encode($data_str['rawdata'][$i]); + } + + $reg = generic_parser_a($data_str['rawdata'],$translate,$contacts); + + unset($reg['domain']['organization']); + unset($reg['domain']['address']); + unset($reg['domain']['phone']); + unset($reg['domain']['fax']); + + $r['regrinfo'] = $reg; + $r['regyinfo'] = array('referrer'=>'http://www.nic.hu','registrar'=>'HUNIC'); + $r['rawdata'] = $data_str['rawdata']; format_dates($r,'ymd'); return($r); } diff --git a/src/whois.ip.php b/src/whois.ip.php index 1f6680e..063fcea 100644 --- a/src/whois.ip.php +++ b/src/whois.ip.php @@ -35,6 +35,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. /* 200.165.206.74 (brnic) */ /* 210.178.148.129 (krnic) */ /* 200.44.33.31 (lacnic) */ +/* 210.255.180.14 (jpnic) */ if (!defined('__IP_HANDLER__')) define('__IP_HANDLER__', 1); @@ -80,8 +81,6 @@ class ip_handler extends WhoisClient $this->Query['server'] = 'whois.arin.net'; $this->Query['query'] = $query; - reset($this->REGISTRARS); - $rawdata = $data['rawdata']; if (empty($rawdata)) return $result; @@ -91,7 +90,8 @@ class ip_handler extends WhoisClient if ($orgname == '') $orgname = trim($rawdata[1]); - while (list($string, $whois) = each($this->REGISTRARS)) + foreach($this->REGISTRARS as $string => $whois) + if (strstr($orgname, $string) != '') { $this->Query['server'] = $whois; @@ -120,6 +120,15 @@ class ip_handler extends WhoisClient $rawdata = $this->GetRawData($query); break; } + + if (strstr($line, 'Japan Network Information Center')) + { + $result = $this->set_whois_info($result); + $this->Query['server'] = 'whois.nic.ad.jp'; + $result['regyinfo']['registrar'] = 'Japan Network Information Center'; + $rawdata = $this->GetRawData($query.'/e'); + break; + } } break; @@ -150,7 +159,6 @@ class ip_handler extends WhoisClient if ($newquery != '') { - //$result = $this->set_whois_info($result); $result['regyinfo']['netname'] = $newquery; if (strstr($newquery, 'BRAZIL-BLK')) diff --git a/src/whois.it.php b/src/whois.it.php index 63e51e6..96b7e7b 100644 --- a/src/whois.it.php +++ b/src/whois.it.php @@ -61,16 +61,7 @@ class it_handler 'last update:' => 'changed' ); - $r['regrinfo'] = get_blocks($data_str['rawdata'], $items); - - if (isset($r['regrinfo']['owner'])) - $r['regrinfo']['owner'] = get_contact($r['regrinfo']['owner'], $extra); - - if (isset($r['regrinfo']['admin'])) - $r['regrinfo']['admin'] = get_contact($r['regrinfo']['admin'], $extra); - - if (isset($r['regrinfo']['tech'])) - $r['regrinfo']['tech'] = get_contact($r['regrinfo']['tech'], $extra); + $r['regrinfo'] = easy_parser($data_str['rawdata'], $items, 'ymd',$extra); if (isset($r['regrinfo']['registrar'])) { @@ -83,13 +74,6 @@ class it_handler 'referrer' => 'http://www.nic.it/' ); -/* - if (isset($r['regrinfo']['domain'])) - $r['regrinfo']['domain']['changed'] = substr($r['regrinfo']['domain']['changed'], 0, 10); - else - $r['regrinfo']['registered'] = 'no'; -*/ - $r = format_dates($r, 'ymd'); return ($r); } } diff --git a/src/whois.lt.php b/src/whois.lt.php index e4a4af8..0dcfb88 100755 --- a/src/whois.lt.php +++ b/src/whois.lt.php @@ -54,18 +54,7 @@ class lt_handler '' => '%' ); - $r['regrinfo'] = get_blocks($data_str['rawdata'], $items); - - if (isset($r['regrinfo']['admin'])) - $r['regrinfo']['admin'] = get_contact($r['regrinfo']['admin'],$translate); - - if (isset($r['regrinfo']['tech'])) - $r['regrinfo']['tech'] = get_contact($r['regrinfo']['tech'],$translate); - - if (isset($r['regrinfo']['zone'])) - $r['regrinfo']['zone'] = get_contact($r['regrinfo']['zone'],$translate); - - $r = format_dates($r,'ymd'); + $r['regrinfo'] = easy_parser($data_str['rawdata'], $items, 'ymd', $translate); $r['regyinfo'] = array( 'referrer' => 'http://www.domreg.lt', diff --git a/src/whois.mx.php b/src/whois.mx.php index 97c55cd..0d90bb1 100644 --- a/src/whois.mx.php +++ b/src/whois.mx.php @@ -38,91 +38,36 @@ class mx_handler function parse($data_str, $query) { - - $contacts = array( - 'admin' => 'ADMINISTRATIVO', - 'tech' => 'TECNICO', - 'billing' => 'DE PAGO' - ); - $items = array( - 'name' => 'DOMINIO:', - 'created' => 'FECHA DE CREACION:', - 'changed' => 'FECHA DE ULTIMA MODIFICACION:' - ); + 'owner' => 'Registrant:', + 'admin' => 'Administrative Contact:', + 'tech' => 'Technical Contact:', + 'billing' => 'Billing Contact:', + 'domain.nserver' => 'Name Servers:', + 'domain.created' => 'Created On:', + 'domain.expires' => 'Expiration Date:', + 'domain.changed' => 'Last Updated On:', + 'domain.sponsor' => 'Registrar:' + ); - $r['regrinfo'] = array(); - $r['regrinfo']['domain']['nserver'] = array(); - $r['regrinfo']['admin'] = array(); - $r['regrinfo']['tech'] = array(); - $r['regrinfo']['billing'] = array(); - $r['regrinfo']['owner'] = array(); + $extra = array( + 'city:' => 'address.city', + 'state:' => 'address.state', + 'dns:' => '0' + ); - $lastk = ''; - - while (list($key, $val) = each($data_str['rawdata'])) - { - $val = trim($val); - - if ($val != '') - { - - foreach($contacts as $key => $contact) - { - if (strstr($val, "CONTACTO $contact:")) - { - preg_match("/CONTACTO $contact:\s*(.+?)\s*\[(.+?)\]/", $val, $refs); - $r['regrinfo'][$key]['name'] = $refs[1]; - $r['regrinfo'][$key]['handle'] = $refs[2]; - $lastk = $key; - break; - } - } - - if (strstr($val, 'ORGANIZACION:')) - { - preg_match('/ORGANIZACION:\s*(.+?)\s*\[(.+?)\]/', $val, $refs); - $r['regrinfo']['owner']['name'] = $refs[1]; - $r['regrinfo']['owner']['handle'] = $refs[2]; - continue; - } - - if (strstr($val, 'SERVIDOR DNS ')) - { - $r['regrinfo']['domain']['nserver'][] = trim(substr($val, 16)); - continue; - } - - if (strstr($val, 'DOMICILIO:')) - { - if ($lastk == '') $lastk = 'owner'; - $r['regrinfo'][$lastk]['address'] = trim(substr($val, 11)); - continue; - } - - reset($items); - - while (list($field, $match) = each($items)) - - if (strstr($val, $match)) - { - $r['regrinfo']['domain'][$field] = trim(substr($val, strlen($match))); - break; - } - } - } - - if (!empty($r['regrinfo']['owner']['name'])) - { - $r['regyinfo'] = array( - 'referrer' => 'http://www.nic.mx', - 'registrar' => 'NIC-Mexico' - ); - } + $r['regrinfo'] = easy_parser($data_str['rawdata'],$items,'dmy',$extra); + + $r['regyinfo'] = array( + 'registrar' => 'NIC Mexico', + 'referrer' => 'http://www.nic.mx/' + ); + + if (empty($r['regrinfo']['domain']['created'])) + $r['regrinfo']['registered'] = 'no'; else - $r = ''; + $r['regrinfo']['registered'] = 'yes'; - format_dates($r, 'dmy'); return ($r); } diff --git a/src/whois.nl.php b/src/whois.nl.php index e5fe82c..e51c8e4 100644 --- a/src/whois.nl.php +++ b/src/whois.nl.php @@ -53,8 +53,7 @@ class nl_handler 'zone' => 'Registrar:' ); - $r['regrinfo'] = get_blocks($data['rawdata'], $items); - + $r['regrinfo'] = get_blocks($data['rawdata'], $items); $r['regyinfo']['referrer'] = 'http://www.domain-registry.nl'; $r['regyinfo']['registrar'] = 'Stichting Internet Domeinregistratie NL'; @@ -63,12 +62,19 @@ class nl_handler $r['regrinfo']['registered'] = 'no'; return $r; } - - $r['regrinfo']['tech'] = $this->get_contact($r['regrinfo']['tech']); - $r['regrinfo']['owner'] = $this->get_contact($r['regrinfo']['owner']); - $r['regrinfo']['admin'] = $this->get_contact($r['regrinfo']['admin']); - $r['regrinfo']['zone'] = $this->get_contact($r['regrinfo']['zone']); - + + if (isset($r['regrinfo']['tech'])) + $r['regrinfo']['tech'] = $this->get_contact($r['regrinfo']['tech']); + + if (isset($r['regrinfo']['zone'])) + $r['regrinfo']['zone'] = $this->get_contact($r['regrinfo']['zone']); + + if (isset($r['regrinfo']['admin'])) + $r['regrinfo']['admin'] = $this->get_contact($r['regrinfo']['admin']); + + if (isset($r['regrinfo']['owner'])) + $r['regrinfo']['owner'] = $this->get_contact($r['regrinfo']['owner']); + $r['regrinfo']['registered'] = 'yes'; format_dates($r, 'dmy'); diff --git a/src/whois.org.za.php b/src/whois.org.za.php index 24cec9d..efe14f7 100644 --- a/src/whois.org.za.php +++ b/src/whois.org.za.php @@ -53,19 +53,14 @@ class org_za_handler { $r['regrinfo']['registered'] = 'yes'; $r['regrinfo']['domain']['handler'] = strtok(array_shift($r['regrinfo']['owner']),' '); - - $r['regrinfo']['owner'] = get_contact($r['regrinfo']['owner']); - $r['regrinfo']['admin'] = get_contact($r['regrinfo']['admin']); - $r['regrinfo']['tech'] = get_contact($r['regrinfo']['tech']); - $r['regrinfo']['billing'] = get_contact($r['regrinfo']['billing']); + $r['regrinfo'] = get_contacts($r['regrinfo']); } else $r['regrinfo']['registered'] = 'no'; $r['regyinfo']['referrer'] = 'http://www.org.za'; $r['regyinfo']['registrar'] = 'The ORG.ZA Domain'; - $r['rawdata'] = $data['rawdata']; - + $r['rawdata'] = $data['rawdata']; return ($r); } } diff --git a/src/whois.parser.php b/src/whois.parser.php index 75f0b6c..6d325bc 100755 --- a/src/whois.parser.php +++ b/src/whois.parser.php @@ -232,13 +232,14 @@ while (list($key,$val) = each($rawdata)) $found = false; reset($items); - while (list($field, $match) = each($items)) { - + while (list($field, $match) = each($items)) + { $pos = strpos($val,$match); - if ($field != '' && $pos !== false) { - - if ($val == $match) { + if ($field != '' && $pos !== false) + { + if ($val == $match) + { $found = true; $endtag = ''; $line = $val; @@ -247,19 +248,21 @@ while (list($key,$val) = each($rawdata)) $last = substr($val,-1,1); - if ($last == ':' || $last == '-' || $last == ']') { + if ($last == ':' || $last == '-' || $last == ']') + { $found = true; $endtag = $last; $line = $val; break; - } - else { - $var = getvarname(strtok($field,'#')); + } + else + { + $var = getvarname(strtok($field,'#')); $itm = trim(substr($val,$pos+strlen($match))); eval('$r'.$var.'=$itm;'); + } } } - } if (!$found) continue; @@ -313,11 +316,14 @@ while (list($key,$val) = each($rawdata)) if (empty($block)) continue; - while (list($field, $match)=each($items)) { - $pos=strpos($line,$match); - if ($pos!==false) { - $var=getvarname(strtok($field,'#')); - eval('$r'.$var.'=$block;'); + while (list($field, $match)=each($items)) + { + $pos = strpos($line,$match); + + if ($pos !== false) + { + $var = getvarname(strtok($field,'#')); + if ($var != '[]') eval('$r'.$var.'=$block;'); } } } @@ -327,19 +333,33 @@ return $r; //------------------------------------------------------------------------- +function easy_parser($data_str, $items, $date_format, $translate = false , + $has_org = false, $partial_match = false ) +{ +$r = get_blocks($data_str, $items, $partial_match); +$r = get_contacts($r, $translate, $has_org); +format_dates($r, $date_format); +return $r; +} + +//------------------------------------------------------------------------- + function get_contacts ( $array, $extra_items='', $has_org= false ) { if (isset($array['billing'])) - $array['billing'] = get_contact($array['billing']); + $array['billing'] = get_contact($array['billing'], $extra_items, $has_org); if (isset($array['tech'])) - $array['tech'] = get_contact($array['tech']); - + $array['tech'] = get_contact($array['tech'], $extra_items, $has_org); + +if (isset($array['zone'])) + $array['zone'] = get_contact($array['zone'], $extra_items, $has_org); + if (isset($array['admin'])) - $array['admin'] = get_contact($array['admin']); + $array['admin'] = get_contact($array['admin'], $extra_items, $has_org); if (isset($array['owner'])) - $array['owner'] = get_contact($array['owner']); + $array['owner'] = get_contact($array['owner'], $extra_items, $has_org); return $array; } @@ -542,8 +562,9 @@ return $res; function get_date($date,$format) { -$months = array( 'jan'=>1, 'feb'=>2, 'mar'=>3, 'apr'=>4, 'may'=>5, 'jun'=>6, - 'jul'=>7, 'aug'=>8, 'sep'=>9, 'oct'=>10, 'nov'=>11, 'dec'=>12 ); +$months = array( 'jan'=>1, 'ene'=>1, 'feb'=>2, 'mar'=>3, 'apr'=>4, 'abr'=>4, + 'may'=>5, 'jun'=>6, 'jul'=>7, 'aug'=>8, 'ago'=>8, 'sep'=>9, + 'oct'=>10, 'nov'=>11, 'dec'=>12, 'dic'=>12 ); $parts = explode(' ',$date); diff --git a/src/whois.pro.php b/src/whois.pro.php index 30e2b80..f22b456 100755 --- a/src/whois.pro.php +++ b/src/whois.pro.php @@ -32,39 +32,62 @@ if (!defined('__PRO_HANDLER__')) class pro_handler { - function parse($data, $query) { - $items = array( - 'domain.name' => 'Domain name:', - 'domain.status' => 'Domain statuses:', - 'domain.nserver' => 'Domain servers in listed order:', - 'domain.created' => 'Creation date:', - 'domain.expires' => 'Expiration date:', - 'domain.changed' => 'Last updated:', - 'domain.sponsor' => 'Registrar:', - 'owner' => 'Registrant Contact:', - 'admin' => 'Administrative Contact:', - 'tech' => 'Technical Contact:' - ); - - $r['regrinfo'] = get_blocks($data['rawdata'], $items); + 'Domain Name:' => 'domain.name', + 'Domain ID:' => 'domain.handle', + 'Status:' => 'domain.status', + 'Name Server:' => 'domain.nserver.', + 'Created On:' => 'domain.created', + 'Last Updated On:' => 'domain.changed', + 'Expiration Date:' => 'domain.expires', + 'Sponsoring Registrar:' => 'domain.sponsor', + 'Registrant Name:' => 'owner.name', + 'Registrant ID:' => 'owner.handle', + 'Registrant Street1:' => 'owner.address.address.0', + 'Registrant Street2:' => 'owner.address.address.1', + 'Registrant Street3:' => 'owner.address.address.2', + 'Registrant Postal Code:' => 'owner.address.pcode', + 'Registrant City:' => 'owner.address.city', + 'Registrant State/Province:' => 'owner.address.state', + 'Registrant Country:' => 'owner.address.country', + 'Registrant Phone:' => 'owner.phone', + 'Registrant FAX:' => 'owner.fax', + 'Registrant Email:' => 'owner.email', + 'Admin Name:' => 'admin.name', + 'Admin ID:' => 'admin.handle', + 'Admin Street1:' => 'admin.address.address.0', + 'Admin Street2:' => 'admin.address.address.1', + 'Admin Street2:' => 'admin.address.address.2', + 'Admin Postal Code:' => 'admin.address.pcode', + 'Admin City:' => 'admin.address.city', + 'Admin Country:' => 'admin.address.country', + 'Admin Phone:' => 'admin.phone', + 'Admin FAX:' => 'admin.fax', + 'Admin Email:' => 'admin.email', + 'Tech Name:' => 'tech.name', + 'Tech ID:' => 'tech.handle', + 'Tech Street1:' => 'tech.address.address.0', + 'Tech Street2:' => 'tech.address.address.1', + 'Tech Street3:' => 'tech.address.address.2', + 'Tech Postal Code:' => 'tech.address.pcode', + 'Tech City:' => 'tech.address.city', + 'Tech Country:' => 'tech.address.country', + 'Tech Phone:' => 'tech.phone', + 'Tech FAX:' => 'tech.fax', + 'Tech Email:' => 'tech.email' + ); + $r['regrinfo'] = generic_parser_b($data['rawdata'], $items); +/* if (isset($r['regrinfo']['domain']['name'])) { $r['regrinfo']['registered'] = 'yes'; - $r['regrinfo']['tech'] = get_contact($r['regrinfo']['tech']); - $r['regrinfo']['owner'] = get_contact($r['regrinfo']['owner']); - - if (isset($r['regrinfo']['admin'])) - $r['regrinfo']['admin'] = get_contact($r['regrinfo']['admin']); - - $r = format_dates($r, 'ymd'); } else $r['regrinfo']['registered'] = 'no'; - +*/ $r['regyinfo']['referrer'] = 'http://www.registrypro.pro'; $r['regyinfo']['registrar'] = 'RegistryPRO'; diff --git a/src/whois.pt.php b/src/whois.pt.php index 4980ef4..f0e0387 100644 --- a/src/whois.pt.php +++ b/src/whois.pt.php @@ -19,7 +19,7 @@ class pt_handler { 'domain.nserver.' => 'Nameserver:', 'domain.status' => 'Estado / Status:', 'owner' => 'Titular / Registrant', - 'bill' => 'Entidade Gestora / Billing Contact', + 'billing' => 'Entidade Gestora / Billing Contact', 'admin' => 'Responsável Administrativo / Admin Contact', 'tech' => 'Responsável Técnico / Tech Contact', '#' => 'Nameserver Information' @@ -30,27 +30,18 @@ class pt_handler { if (empty($r['regrinfo']['domain']['name'])) { $r['regrinfo']['registered'] = 'no'; - return; + return $r; } $r['regrinfo']['domain']['created'] = get_date($r['regrinfo']['domain']['created'], 'dmy'); if ($r['regrinfo']['domain']['status'] == 'ACTIVE') + { + $r['regrinfo'] = get_contacts($r['regrinfo']); $r['regrinfo']['registered'] = 'yes'; + } else $r['regrinfo']['registered'] = 'no'; - - if (isset($r['regrinfo']['admin'])) - $r['regrinfo']['admin'] = get_contact($r['regrinfo']['admin']); - - if (isset($r['regrinfo']['owner'])) - $r['regrinfo']['owner'] = get_contact($r['regrinfo']['owner']); - - if (isset($r['regrinfo']['tech'])) - $r['regrinfo']['tech'] = get_contact($r['regrinfo']['tech']); - - if (isset($r['regrinfo']['bill'])) - $r['regrinfo']['bill'] = get_contact($r['regrinfo']['bill']); $r['regyinfo'] = array( 'referrer' => 'http://www.fccn.pt', diff --git a/src/whois.servers.php b/src/whois.servers.php index 455b03e..7aea5bc 100644 --- a/src/whois.servers.php +++ b/src/whois.servers.php @@ -42,6 +42,12 @@ $this->DATA = array( 'za.net' => 'zanet' ); +/* Non UTF-8 servers */ + +$this->NON_UTF8 = array( + 'whois.interdomain.net' => 1 + ); + /* If whois Server needs any parameters, enter it here */ $this->WHOIS_PARAM = array( @@ -83,7 +89,6 @@ $this->WHOIS_SPECIAL = array( 'sc' => 'whois2.afilias-grs.net', 'tc' => 'http://www.adamsnames.tc/whois/?domain={domain}.tc', 'tf' => 'http://www.adamsnames.tc/whois/?domain={domain}.tf', - 'travel' => 'http://www.whois.travel/whois.cgi?TLD=travel&dn={domain}&TYPE=DOMAIN', 've' => 'whois.nic.ve', 'vg' => 'http://www.adamsnames.tc/whois/?domain={domain}.vg', // Second level diff --git a/src/whois.travel.php b/src/whois.travel.php index 8feb1b5..9ff66af 100755 --- a/src/whois.travel.php +++ b/src/whois.travel.php @@ -36,54 +36,54 @@ class travel_handler function parse($data_str, $query) { $items = array( - 'Domain Name ' => 'domain.name', - 'Domain ID ' => 'domain.handle', - 'Domain Status ' => 'domain.status', - 'Sponsoring Registrar ' => 'domain.sponsor', - 'Name Server ' => 'domain.nserver.', - 'Domain Registration Date ' => 'domain.created', - 'Domain Last Updated Date ' => 'domain.changed', - 'Domain Expiration Date ' => 'domain.expires', - 'Registrant Name ' => 'owner.name', - 'Registrant ID ' => 'owner.handle', - 'Registrant Address1 ' => 'owner.address.address.0', - 'Registrant Address2 ' => 'owner.address.address.1', - 'Registrant Postal Code ' => 'owner.address.pcode', - 'Registrant City ' => 'owner.address.city', - 'Registrant State/Province ' => 'owner.address.state', - 'Registrant Country ' => 'owner.address.country', - 'Registrant Phone Number ' => 'owner.phone', - 'Registrant Email ' => 'owner.email', - 'Administrative Contact Name ' => 'admin.name', - 'Administrative Contact ID ' => 'admin.handle', - 'Administrative Contact Address1 ' => 'admin.address.address.0', - 'Administrative Contact Address2 ' => 'admin.address.address.1', - 'Administrative Contact Postal Code ' => 'admin.address.pcode', - 'Administrative Contact City ' => 'admin.address.city', - 'Administrative Contact State/Province '=> 'admin.address.state', - 'Administrative Contact Country ' => 'admin.address.country', - 'Administrative Contact Phone Number ' => 'admin.phone', - 'Administrative Contact Email ' => 'admin.email', - 'Technical Contact Name ' => 'tech.name', - 'Technical Contact ID ' => 'tech.handle', - 'Technical Contact Address1 ' => 'tech.address.address.0', - 'Technical Contact Address2 ' => 'tech.address.address.1', - 'Technical Contact Postal Code ' => 'tech.address.pcode', - 'Technical Contact City ' => 'tech.address.city', - 'Technical Contact State/Province ' => 'tech.address.state', - 'Technical Contact Country ' => 'tech.address.country', - 'Technical Contact Phone Number ' => 'tech.phone', - 'Technical Contact Email ' => 'tech.email', - 'Billing Contact Name ' => 'bill.name', - 'Billing Contact ID ' => 'bill.handle', - 'Billing Contact Address1 ' => 'bill.address.address.0', - 'Billing Contact Address2 ' => 'bill.address.address.1', - 'Billing Contact Postal Code ' => 'bill.address.pcode', - 'Billing Contact City ' => 'bill.address.city', - 'Billing Contact State/Province ' => 'bill.address.state', - 'Billing Contact Country ' => 'bill.address.country', - 'Billing Contact Phone Number ' => 'bill.phone', - 'Billing Contact Email ' => 'bill.email' + 'Domain Name:' => 'domain.name', + 'Domain ID:' => 'domain.handle', + 'Domain Status:' => 'domain.status', + 'Sponsoring Registrar:' => 'domain.sponsor', + 'Name Server:' => 'domain.nserver.', + 'Domain Registration Date:' => 'domain.created', + 'Domain Last Updated Date:' => 'domain.changed', + 'Domain Expiration Date:' => 'domain.expires', + 'Registrant Name:' => 'owner.name', + 'Registrant ID:' => 'owner.handle', + 'Registrant Address1:' => 'owner.address.address.0', + 'Registrant Address2:' => 'owner.address.address.1', + 'Registrant Postal Code:' => 'owner.address.pcode', + 'Registrant City:' => 'owner.address.city', + 'Registrant State/Province:' => 'owner.address.state', + 'Registrant Country:' => 'owner.address.country', + 'Registrant Phone Number:' => 'owner.phone', + 'Registrant Email:' => 'owner.email', + 'Administrative Contact Name:' => 'admin.name', + 'Administrative Contact ID:' => 'admin.handle', + 'Administrative Contact Address1:' => 'admin.address.address.0', + 'Administrative Contact Address2:' => 'admin.address.address.1', + 'Administrative Contact Postal Code:' => 'admin.address.pcode', + 'Administrative Contact City:' => 'admin.address.city', + 'Administrative Contact State/Province:'=> 'admin.address.state', + 'Administrative Contact Country:' => 'admin.address.country', + 'Administrative Contact Phone Number:' => 'admin.phone', + 'Administrative Contact Email:' => 'admin.email', + 'Technical Contact Name:' => 'tech.name', + 'Technical Contact ID:' => 'tech.handle', + 'Technical Contact Address1:' => 'tech.address.address.0', + 'Technical Contact Address2:' => 'tech.address.address.1', + 'Technical Contact Postal Code:' => 'tech.address.pcode', + 'Technical Contact City:' => 'tech.address.city', + 'Technical Contact State/Province:' => 'tech.address.state', + 'Technical Contact Country:' => 'tech.address.country', + 'Technical Contact Phone Number:' => 'tech.phone', + 'Technical Contact Email:' => 'tech.email', + 'Billing Contact Name:' => 'bill.name', + 'Billing Contact ID:' => 'bill.handle', + 'Billing Contact Address1:' => 'bill.address.address.0', + 'Billing Contact Address2:' => 'bill.address.address.1', + 'Billing Contact Postal Code:' => 'bill.address.pcode', + 'Billing Contact City:' => 'bill.address.city', + 'Billing Contact State/Province:' => 'bill.address.state', + 'Billing Contact Country:' => 'bill.address.country', + 'Billing Contact Phone Number:' => 'bill.phone', + 'Billing Contact Email:' => 'bill.email' ); $r['regrinfo'] = generic_parser_b($data_str['rawdata'], $items); diff --git a/src/whois.us.php b/src/whois.us.php index d3a4491..8e4e1b2 100644 --- a/src/whois.us.php +++ b/src/whois.us.php @@ -27,7 +27,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. /* neulevel.whois 1.0 by David Saez */ -if(!defined("__US_HANDLER__")) define("__US_HANDLER__",1); +if(!defined('__US_HANDLER__')) define('__US_HANDLER__',1); require_once('whois.parser.php'); @@ -36,65 +36,65 @@ class us_handler { function parse ($data_str, $query) { $items = array( - "Domain Name:" => "domain.name", - "Domain ID:" => "domain.handle", - "Sponsoring Registrar:" => "domain.sponsor", - "Domain Status:" => "domain.status", - "Name Server:" => "domain.nserver.", - "Domain Registration Date:" => "domain.created", - "Domain Expiration Date:" => "domain.expires", - "Domain Last Updated Date:" => "domain.changed", - "Registrant ID:" => "owner.handle", - "Registrant Name:" => "owner.name", - "Registrant Organization:" => "owner.organization", - "Registrant Address1:" => "owner.address.street", - "Registrant Postal Code:" => "owner.address.pcode", - "Registrant City:" => "owner.address.city", - "Registrant State/Province:" => "owner.address.state", - "Registrant Country:" => "owner.address.country", - "Registrant Phone Number:" => "owner.phone", - "Registrant Facsimile Number:" => "owner.fax", - "Registrant Email:" => "owner.email", - "Administrative Contact ID:" => "admin.handle", - "Administrative Contact Name:" => "admin.name", - "Administrative Contact Organization:" => "admin.organization", - "Administrative Contact Address1:" => "admin.address.street", - "Administrative Contact Postal Code:" => "admin.address.pcode", - "Administrative Contact City:" => "admin.address.city", - "Administrative Contact State/Province:" => "admin.address.state", - "Administrative Contact Country:" => "admin.address.country", - "Administrative Contact Phone Number:" => "admin.phone", - "Administrative Contact Email:" => "admin.email", - "Administrative Contact Facsimile Number:" => "admin.fax", - "Technical Contact ID:" => "tech.handle", - "Technical Contact Name:" => "tech.name", - "Technical Contact Organization:" => "tech.organization", - "Technical Contact Address1:" => "tech.address.street", - "Technical Contact Postal Code:" => "tech.address.pcode", - "Technical Contact City:" => "tech.address.city", - "Technical Contact State/Province:" => "tech.address.state", - "Technical Contact Country:" => "tech.address.country", - "Technical Contact Phone Number:" => "tech.phone", - "Technical Contact Email:" => "tech.email", - "Technical Contact Facsimile Number:" => "tech.fax", - "Billing Contact ID:" => "billing.handle", - "Billing Contact Name:" => "billing.name", - "Billing Contact Organization:" => "billing.organization", - "Billing Contact Address1:" => "billing.address.street", - "Billing Contact Postal Code:" => "billing.address.pcode", - "Billing Contact City:" => "billing.address.city", - "Billing Contact State/Province:" => "billing.address.state", - "Billing Contact Country:" => "billing.address.country", - "Billing Contact Phone Number:" => "billing.phone", - "Billing Contact Email:" => "billing.email", - "Billing Contact Facsimile Number:" => "billing.fax" + 'Domain Name:' => 'domain.name', + 'Domain ID:' => 'domain.handle', + 'Sponsoring Registrar:' => 'domain.sponsor', + 'Domain Status:' => 'domain.status', + 'Name Server:' => 'domain.nserver.', + 'Domain Registration Date:' => 'domain.created', + 'Domain Expiration Date:' => 'domain.expires', + 'Domain Last Updated Date:' => 'domain.changed', + 'Registrant ID:' => 'owner.handle', + 'Registrant Name:' => 'owner.name', + 'Registrant Organization:' => 'owner.organization', + 'Registrant Address1:' => 'owner.address.street', + 'Registrant Postal Code:' => 'owner.address.pcode', + 'Registrant City:' => 'owner.address.city', + 'Registrant State/Province:' => 'owner.address.state', + 'Registrant Country:' => 'owner.address.country', + 'Registrant Phone Number:' => 'owner.phone', + 'Registrant Facsimile Number:' => 'owner.fax', + 'Registrant Email:' => 'owner.email', + 'Administrative Contact ID:' => 'admin.handle', + 'Administrative Contact Name:' => 'admin.name', + 'Administrative Contact Organization:' => 'admin.organization', + 'Administrative Contact Address1:' => 'admin.address.street', + 'Administrative Contact Postal Code:' => 'admin.address.pcode', + 'Administrative Contact City:' => 'admin.address.city', + 'Administrative Contact State/Province:' => 'admin.address.state', + 'Administrative Contact Country:' => 'admin.address.country', + 'Administrative Contact Phone Number:' => 'admin.phone', + 'Administrative Contact Email:' => 'admin.email', + 'Administrative Contact Facsimile Number:' => 'admin.fax', + 'Technical Contact ID:' => 'tech.handle', + 'Technical Contact Name:' => 'tech.name', + 'Technical Contact Organization:' => 'tech.organization', + 'Technical Contact Address1:' => 'tech.address.street', + 'Technical Contact Postal Code:' => 'tech.address.pcode', + 'Technical Contact City:' => 'tech.address.city', + 'Technical Contact State/Province:' => 'tech.address.state', + 'Technical Contact Country:' => 'tech.address.country', + 'Technical Contact Phone Number:' => 'tech.phone', + 'Technical Contact Email:' => 'tech.email', + 'Technical Contact Facsimile Number:' => 'tech.fax', + 'Billing Contact ID:' => 'billing.handle', + 'Billing Contact Name:' => 'billing.name', + 'Billing Contact Organization:' => 'billing.organization', + 'Billing Contact Address1:' => 'billing.address.street', + 'Billing Contact Postal Code:' => 'billing.address.pcode', + 'Billing Contact City:' => 'billing.address.city', + 'Billing Contact State/Province:' => 'billing.address.state', + 'Billing Contact Country:' => 'billing.address.country', + 'Billing Contact Phone Number:' => 'billing.phone', + 'Billing Contact Email:' => 'billing.email', + 'Billing Contact Facsimile Number:' => 'billing.fax' ); - $r["regrinfo"] = generic_parser_b($data_str["rawdata"],$items,'-md--y'); + $r['regrinfo'] = generic_parser_b($data_str['rawdata'],$items,'-md--y'); - $r["regyinfo"] = array( - "referrer"=>"http://www.neustar.us", - "registrar" => "NEUSTAR INC." + $r['regyinfo'] = array( + 'referrer'=>'http://www.neustar.us', + 'registrar' => 'NEUSTAR INC.' ); return($r); diff --git a/src/whois.utils.php b/src/whois.utils.php index 3af94b8..a1e3553 100755 --- a/src/whois.utils.php +++ b/src/whois.utils.php @@ -29,7 +29,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. /* 1.1 Mark Jeftovic 1999/12/15 */ class utils extends Whois { - + /* + Not updated anymore var $REGISTRARS = array( 'ac' => 'http://www.nic.ac/cgi-bin/whois', 'ad' => 'http://www.nic.ad/', @@ -104,6 +105,7 @@ class utils extends Whois { return false; } } + */ // showObject() and debugObject() // - debug code to show an object or array @@ -163,6 +165,7 @@ class utils extends Whois { if ($lempty) $out = trim($out); + $out = strip_tags($out); $out = preg_replace ($email_regex, '$0', $out); $out = preg_replace_callback ($html_regex, 'href_replace', $out); @@ -201,13 +204,13 @@ class utils extends Whois { // Add bold field names - $out = preg_replace ("/(?m)^([- &;'\w\t\/]+:\s+)/", '$1', $out); + $out = preg_replace ("/(?m)^([-\s\.&;'\w\t\(\)\/]+:\s*)/", '$1', $out); // Add italics for disclaimer $out = preg_replace ("/(?m)^(%.*)/", '$0', $out); - return str_replace("\n","

\n",$out); + return str_replace("\n","
\n",$out); } } diff --git a/src/whois.ve.php b/src/whois.ve.php index 34243ca..e625a00 100644 --- a/src/whois.ve.php +++ b/src/whois.ve.php @@ -70,8 +70,7 @@ class ve_handler } $r['regrinfo']['domain']['nserver'] = $dns; - $r['regrinfo'] = get_contacts($r['regrinfo']); - + $r['regrinfo'] = get_contacts($r['regrinfo']); return ($r); } } diff --git a/src/whois.zanet.php b/src/whois.zanet.php index cd79828..920cf8d 100755 --- a/src/whois.zanet.php +++ b/src/whois.zanet.php @@ -37,7 +37,6 @@ class zanet_handler function parse($data_str, $query) { - $items = array( 'domain.name' => 'Domain Name : ', 'domain.created' => 'Record Created :', diff --git a/test.txt b/test.txt index d7f938c..6bf81cd 100644 --- a/test.txt +++ b/test.txt @@ -8,7 +8,7 @@ be nic.be br registro.br ca cira.ca ch creart.ch blaueskreuz.ch -cn cnnic.net.cn +cn china.cn cz nic.cz de 4ever.de ks2-hanau.de fi ficora.fi diff --git a/testsuite.txt b/testsuite.txt index 7865c1b..89bdc5f 100644 --- a/testsuite.txt +++ b/testsuite.txt @@ -1 +1 @@ -a:107:{s:6:"nic.ag";a:2:{s:8:"regyinfo";a:4:{s:8:"referrer";s:17:"http://www.nic.ag";s:9:"registrar";s:6:"Nic AG";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"ag.whois-servers.net";s:4:"args";s:6:"nic.ag";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}s:8:"regrinfo";a:5:{s:6:"domain";a:8:{s:6:"handle";s:11:"D52707-LRCC";s:4:"name";s:6:"nic.ag";s:7:"created";s:10:"1998-05-02";s:7:"changed";s:10:"2008-05-02";s:7:"expires";s:10:"2009-05-02";s:7:"sponsor";s:26:"NicAg Registrar (R32-LRCC)";s:6:"status";s:2:"OK";s:7:"nserver";a:1:{s:10:"ns1.nic.ag";s:14:"66.101.197.226";}}s:5:"owner";a:7:{s:6:"handle";s:5:"66454";s:4:"name";s:14:"None Specified";s:12:"organization";s:11:"Nic AG Ltd.";s:7:"address";a:4:{s:6:"street";a:2:{i:0;s:35:"Sagicor Financial Centre, Suite 216";i:1;s:21:"Box W 1092 Woods Mall";}s:4:"city";s:10:"St. John's";s:5:"pcode";s:3:"N/A";s:7:"country";s:2:"AG";}s:5:"phone";s:13:"+1.2685622556";s:3:"fax";s:13:"+1.2685622558";s:5:"email";s:10:"nic@nic.ag";}s:5:"admin";a:7:{s:6:"handle";s:5:"65672";s:4:"name";s:18:"Dr. Patrick W. Lay";s:12:"organization";s:11:"Nic AG Ltd.";s:7:"address";a:4:{s:6:"street";a:2:{i:0;s:35:"Sagicor Financial Centre, Suite 216";i:1;s:13:"P.O.BOX W1092";}s:4:"city";s:10:"St. John's";s:5:"pcode";s:3:"N/A";s:7:"country";s:2:"AG";}s:5:"phone";s:13:"+1.2685622556";s:3:"fax";s:13:"+1.2685622558";s:5:"email";s:12:"drlay@nic.ag";}s:4:"tech";a:7:{s:6:"handle";s:5:"65672";s:4:"name";s:18:"Dr. Patrick W. Lay";s:12:"organization";s:11:"Nic AG Ltd.";s:7:"address";a:4:{s:6:"street";a:2:{i:0;s:35:"Sagicor Financial Centre, Suite 216";i:1;s:13:"P.O.BOX W1092";}s:4:"city";s:10:"St. John's";s:5:"pcode";s:3:"N/A";s:7:"country";s:2:"AG";}s:5:"phone";s:13:"+1.2685622556";s:3:"fax";s:13:"+1.2685622558";s:5:"email";s:12:"drlay@nic.ag";}s:10:"registered";s:3:"yes";}}s:6:"nic.at";a:2:{s:8:"regyinfo";a:4:{s:8:"referrer";s:17:"http://www.nic.at";s:9:"registrar";s:6:"NIC-AT";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"at.whois-servers.net";s:4:"args";s:6:"nic.at";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}s:8:"regrinfo";a:4:{s:10:"registered";s:3:"yes";s:5:"admin";a:8:{s:4:"name";s:11:"NIC.AT Role";s:7:"address";a:4:{s:6:"street";s:23:"Jakob-Haringerstrasse 8";s:5:"pcode";s:6:"A-5020";s:4:"city";s:8:"Salzburg";s:7:"country";s:7:"Austria";}s:5:"phone";s:11:"+4366246690";s:3:"fax";s:12:"+43662466929";s:5:"email";s:9:"it@nic.at";s:6:"handle";s:16:"NAR1899634-NICAT";s:7:"changed";s:10:"2005-12-29";s:6:"source";s:6:"AT-DOM";}s:4:"tech";a:8:{s:4:"name";s:15:"Gerhard Winkler";s:12:"organization";s:17:"Vienna University";s:7:"address";a:4:{s:6:"street";s:22:"Universitaetsstrasse 7";s:5:"pcode";s:6:"A-1010";s:4:"city";s:6:"Vienna";s:7:"country";s:7:"Austria";}s:5:"phone";s:13:"+431427714035";s:5:"email";s:28:"gerhard.winkler@univie.ac.at";s:6:"handle";s:14:"GW502425-NICAT";s:7:"changed";s:10:"2006-02-02";s:6:"source";s:6:"AT-DOM";}s:6:"domain";a:6:{s:6:"domain";s:6:"nic.at";s:10:"registrant";s:17:"NAIV1902732-NICAT";s:7:"nserver";a:4:{s:19:"ns3ext.univie.ac.at";s:12:"131.130.1.11";s:19:"ns4ext.univie.ac.at";s:12:"131.130.1.12";s:16:"ns5.univie.ac.at";s:14:"193.171.255.77";s:16:"ns9.univie.ac.at";s:12:"192.76.243.2";}s:7:"changed";s:10:"2005-05-24";s:6:"source";s:6:"AT-DOM";s:4:"name";s:6:"nic.at";}}}s:14:"telstra.com.au";a:2:{s:8:"regyinfo";a:4:{s:8:"referrer";s:20:"http://www.aunic.net";s:9:"registrar";s:6:"AU-NIC";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"au.whois-servers.net";s:4:"args";s:14:"telstra.com.au";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}s:8:"regrinfo";a:4:{s:6:"domain";a:5:{s:4:"name";s:14:"telstra.com.au";s:7:"changed";s:10:"2005-12-01";s:7:"sponsor";s:12:"TPP Internet";s:6:"status";s:2:"ok";s:7:"nserver";a:5:{s:17:"ns.telstra.com.au";s:13:"202.12.144.10";s:18:"ns2.telstra.com.au";s:13:"202.12.144.11";s:13:"munnari.oz.au";s:13:"202.28.99.196";s:25:"muwaya.ucs.unimelb.edu.au";s:12:"128.250.20.2";s:18:"ns3.telstra.com.au";s:13:"202.12.233.10";}}s:5:"owner";a:4:{s:12:"organization";s:27:"Telecom Australia (Telstra)";s:6:"handle";s:9:"OTHER N/A";s:4:"name";s:20:"Domain Administrator";s:5:"email";s:50:"Visit whois.ausregistry.com.au for Web based WhoIs";}s:4:"tech";a:3:{s:6:"handle";s:10:"1927100253";s:4:"name";s:20:"domain Administrator";s:5:"email";s:50:"Visit whois.ausregistry.com.au for Web based WhoIs";}s:10:"registered";s:3:"yes";}}s:6:"nic.be";a:2:{s:8:"regrinfo";a:4:{s:6:"domain";a:5:{s:4:"name";s:6:"nic.be";s:6:"status";s:10:"REGISTERED";s:7:"created";s:10:"1998-04-01";s:7:"nserver";a:3:{s:20:"ns.be.hostbasket.com";s:14:"195.130.154.74";s:20:"ns.nl.hostbasket.com";s:12:"80.66.133.57";s:20:"ns.fr.hostbasket.com";s:12:"212.3.226.95";}s:7:"sponsor";s:14:"HOSTBASKET nv.";}s:5:"owner";a:1:{s:4:"name";s:54:"Not shown, please visit www.dns.be for webbased whois.";}s:4:"tech";a:6:{s:4:"name";s:29:"Hostbasket Hostbasket Support";s:12:"organization";s:13:"Hostbasket NV";s:7:"address";a:3:{s:6:"street";s:20:"Antwerpsesteenweg 19";s:4:"city";s:14:"9080 Lochristi";s:7:"country";s:2:"BE";}s:5:"phone";s:12:"+32.93269090";s:3:"fax";s:12:"+32.93269098";s:5:"email";s:22:"support@hostbasket.com";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:29:"http://www.domain-registry.nl";s:9:"registrar";s:11:"DNS Belgium";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"be.whois-servers.net";s:4:"args";s:6:"nic.be";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:11:"registro.br";a:2:{s:8:"regyinfo";a:4:{s:9:"registrar";s:6:"BR-NIC";s:8:"referrer";s:17:"http://www.nic.br";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"br.whois-servers.net";s:4:"args";s:11:"registro.br";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}s:8:"regrinfo";a:3:{s:10:"registered";s:3:"yes";s:6:"domain";a:1:{s:4:"name";s:11:"registro.br";}s:5:"owner";a:1:{s:12:"organization";s:55:"Núcleo de Informação e Coordenação do Ponto BR (662379)";}}}s:7:"cira.ca";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:8:{s:6:"status";s:5:"EXIST";s:7:"sponsor";s:109:"Canadian Internet Registration Authority (NFP) / Autorité Canadienne pour les enregistrements Internet (OSBL)";s:4:"name";s:7:"cira.ca";s:7:"expires";s:10:"2011-02-05";s:7:"created";s:10:"1998-02-05";s:7:"changed";s:10:"2008-03-25";s:4:"desc";s:23:"CA domain registration.";s:7:"nserver";a:2:{s:12:"ns01.cira.ca";s:14:"192.228.26.135";s:12:"ns02.cira.ca";s:14:"192.228.26.136";}}s:5:"owner";a:2:{s:6:"handle";s:1:"1";s:12:"organization";s:109:"Canadian Internet Registration Authority (NFP) / Autorité Canadienne pour les enregistrements Internet (OSBL)";}s:5:"admin";a:5:{s:4:"name";s:11:"David Hicks";s:7:"address";a:1:{i:0;s:4:"CIRA";}s:5:"phone";s:14:"(613) 237-5335";s:3:"fax";s:14:"(613) 237-0534";s:5:"email";s:15:"domains@cira.ca";}s:4:"tech";a:5:{s:4:"name";s:11:"David Hicks";s:7:"address";a:1:{i:0;s:4:"CIRA";}s:5:"phone";s:14:"(613) 237-5335";s:3:"fax";s:14:"(613) 237-0534";s:5:"email";s:15:"domains@cira.ca";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:3:{s:8:"referrer";s:19:"http://www.cira.ca/";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"ca.whois-servers.net";s:4:"args";s:7:"cira.ca";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:9:"creart.ch";a:2:{s:8:"regrinfo";a:4:{s:6:"domain";a:2:{s:4:"name";s:9:"creart.ch";s:7:"nserver";a:2:{s:15:"ns.hostpoint.ch";s:13:"217.26.51.254";s:16:"ns2.hostpoint.ch";s:13:"217.26.53.254";}}s:5:"owner";a:2:{s:4:"name";s:19:"von Allmen Beatrice";s:7:"address";a:4:{i:0;s:20:"Schlossmattstrasse 4";i:1;s:16:"CH-3400 Burgdorf";i:2;s:11:"Switzerland";i:3;s:11:"Contractual";}}s:4:"tech";a:2:{s:4:"name";s:19:"von Allmen Beatrice";s:7:"address";a:3:{i:0;s:20:"Schlossmattstrasse 4";i:1;s:16:"CH-3400 Burgdorf";i:2;s:11:"Switzerland";}}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:17:"http://www.nic.ch";s:9:"registrar";s:31:"SWITCH Domain Name Registration";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"ch.whois-servers.net";s:4:"args";s:9:"creart.ch";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:14:"blaueskreuz.ch";a:2:{s:8:"regrinfo";a:4:{s:6:"domain";a:2:{s:4:"name";s:14:"blaueskreuz.ch";s:7:"nserver";a:2:{s:15:"ns1.interway.ch";s:15:"194.246.118.119";s:15:"ns2.interway.ch";s:12:"212.25.28.54";}}s:5:"owner";a:2:{s:4:"name";s:53:"Blaues Kreuz Kinder- & Jugendwerk, Zentralsekretariat";s:7:"address";a:5:{i:0;s:10:"Hertig Tom";i:1;s:12:"Lindenrain 5";i:2;s:12:"CH-3012 Bern";i:3;s:11:"Switzerland";i:4;s:11:"Contractual";}}s:4:"tech";a:2:{s:4:"name";s:18:"Frischknecht Peter";s:7:"address";a:3:{i:0;s:6:"Egg 79";i:1;s:20:"CH-9103 Schwellbrunn";i:2;s:11:"Switzerland";}}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:17:"http://www.nic.ch";s:9:"registrar";s:31:"SWITCH Domain Name Registration";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"ch.whois-servers.net";s:4:"args";s:14:"blaueskreuz.ch";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:12:"cnnic.net.cn";a:2:{s:8:"regyinfo";a:4:{s:8:"referrer";s:23:"http://www.cnnic.net.cn";s:9:"registrar";s:9:"China NIC";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"cn.whois-servers.net";s:4:"args";s:12:"cnnic.net.cn";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}s:8:"regrinfo";a:4:{s:6:"domain";a:6:{s:4:"name";s:12:"cnnic.net.cn";s:6:"status";s:24:"serverTransferProhibited";s:7:"sponsor";s:30:"中国互è”网络信æ¯ä¸­å¿ƒ";s:7:"nserver";a:5:{s:10:"a.cnnic.cn";s:12:"203.119.25.5";s:10:"b.cnnic.cn";s:12:"203.119.26.5";s:10:"c.cnnic.cn";s:12:"203.119.27.5";s:10:"d.cnnic.cn";s:12:"203.119.28.5";s:10:"e.cnnic.cn";s:12:"203.119.29.5";}s:7:"created";s:10:"1997-06-03";s:7:"expires";s:10:"2012-06-03";}s:5:"owner";a:2:{s:12:"organization";s:42:"中国科学院计算机网络信æ¯ä¸­å¿ƒ";s:4:"name";s:9:"é’±åŽæž—";}s:5:"admin";a:1:{s:5:"email";s:19:"hlqian@ns.cnc.ac.cn";}s:10:"registered";s:3:"yes";}}s:6:"nic.cz";a:2:{s:8:"regyinfo";a:4:{s:8:"referrer";s:17:"http://www.nic.cz";s:9:"registrar";s:6:"CZ-NIC";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"cz.whois-servers.net";s:4:"args";s:6:"nic.cz";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}s:8:"regrinfo";a:4:{s:10:"registered";s:3:"yes";s:5:"admin";a:10:{s:6:"handle";s:6:"TM-NIC";s:3:"org";s:16:"CZ.NIC, z.s.p.o.";s:4:"name";s:14:"Tomas Marsalek";s:7:"address";a:4:{i:0;s:11:"Americka 23";i:1;s:5:"Praha";i:2;s:5:"12000";i:3;s:2:"CZ";}s:5:"phone";s:14:"+420.222745111";s:3:"fax";s:14:"+420.222745112";s:5:"email";s:9:"tm@nic.cz";s:9:"registrar";s:9:"REG-CZNIC";s:7:"created";s:10:"2001-08-10";s:7:"changed";s:10:"2007-10-08";}s:5:"owner";a:8:{s:6:"handle";s:9:"SB:CZ-NIC";s:3:"org";s:16:"CZ.NIC, z.s.p.o.";s:4:"name";s:16:"CZ.NIC, z.s.p.o.";s:7:"address";a:4:{i:0;s:11:"Americka 23";i:1;s:7:"Praha 2";i:2;s:6:"120 00";i:3;s:2:"CZ";}s:5:"email";s:12:"admin@nic.cz";s:9:"registrar";s:9:"REG-IGNUM";s:7:"created";s:10:"2001-08-10";s:7:"changed";s:10:"2007-05-17";}s:6:"domain";a:7:{s:4:"name";s:6:"nic.cz";s:5:"nsset";s:10:"NSS:NIC.CZ";s:9:"registrar";s:9:"REG-CZNIC";s:6:"status";s:16:"paid and in zone";s:10:"registered";s:19:"30.10.1997 01:00:00";s:7:"changed";s:10:"2007-09-30";s:7:"expires";s:10:"2017-03-15";}}}s:8:"4ever.de";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:4:{s:4:"name";s:8:"4ever.de";s:7:"nserver";a:2:{s:11:"ns.4ever.de";s:12:"195.34.187.2";s:20:"ns.does.not-exist.de";s:12:"62.159.88.13";}s:6:"status";s:7:"connect";s:7:"changed";s:10:"2004-05-13";}s:5:"owner";a:2:{s:4:"name";s:13:"Elmar K. Bins";s:7:"address";a:4:{s:6:"street";s:22:"Carl-Goerdeler-Str. 11";s:5:"pcode";s:5:"60320";s:4:"city";s:9:"Frankfurt";s:7:"country";s:2:"DE";}}s:5:"admin";a:2:{s:4:"name";s:13:"Elmar K. Bins";s:7:"address";a:4:{s:6:"street";s:22:"Carl-Goerdeler-Str. 11";s:5:"pcode";s:5:"60320";s:4:"city";s:9:"Frankfurt";s:7:"country";s:2:"DE";}}s:4:"tech";a:5:{s:4:"name";s:21:"Hostmaster of the day";s:7:"address";a:4:{s:6:"street";s:22:"Carl-Goerdeler-Str. 11";s:5:"pcode";s:5:"60320";s:4:"city";s:9:"Frankfurt";s:7:"country";s:2:"DE";}s:5:"phone";s:16:"+49 69 3308 2951";s:3:"fax";s:16:"+49 69 27235 239";s:5:"email";s:15:"elmi@detebe.org";}s:4:"zone";a:5:{s:4:"name";s:21:"Hostmaster of the day";s:7:"address";a:4:{s:6:"street";s:22:"Carl-Goerdeler-Str. 11";s:5:"pcode";s:5:"60320";s:4:"city";s:9:"Frankfurt";s:7:"country";s:2:"DE";}s:5:"phone";s:16:"+49 69 3308 2951";s:3:"fax";s:16:"+49 69 27235 239";s:5:"email";s:15:"elmi@detebe.org";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:9:"registrar";s:8:"DENIC eG";s:8:"referrer";s:20:"http://www.denic.de/";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"de.whois-servers.net";s:4:"args";s:18:"-T dn,ace 4ever.de";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:6:"ols.es";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:4:{s:7:"created";s:10:"1996-07-15";s:7:"expires";s:10:"2008-07-15";s:7:"nserver";a:2:{s:11:"b.ns.ols.es";s:15:"212.100.254.118";s:11:"a.ns.ols.es";s:13:"213.195.75.88";}s:4:"name";s:6:"ols.es";}s:5:"owner";a:1:{s:4:"name";s:26:"On-line Services 2000 S.L.";}s:5:"admin";a:5:{s:4:"name";s:17:"David Saez Padros";s:12:"organization";s:26:"On Line Services 2000 S.L.";s:7:"address";a:4:{s:6:"street";s:17:"Pintor Vayreda, 1";s:4:"city";s:24:"Palau Solita i Plegamans";s:5:"pcode";s:5:"08184";s:7:"country";s:2:"ES";}s:5:"phone";s:13:"+34.902502975";s:5:"email";s:13:"domreg@ols.es";}s:4:"tech";a:5:{s:4:"name";s:17:"David Saez Padros";s:12:"organization";s:26:"On Line Services 2000 S.L.";s:7:"address";a:4:{s:6:"street";s:17:"Pintor Vayreda, 1";s:4:"city";s:24:"Palau Solita i Plegamans";s:5:"pcode";s:5:"08184";s:7:"country";s:2:"ES";}s:5:"phone";s:13:"+34.902502975";s:5:"email";s:13:"domreg@ols.es";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:17:"http://www.nic.es";s:9:"registrar";s:6:"ES-NIC";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:41:"http://www.neodigit.es/dominios/whois.php";s:4:"args";s:10:"dom=ols.es";s:4:"port";i:80;}}s:4:"type";s:6:"domain";}}s:6:"dot.fm";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:4:{s:4:"name";s:6:"dot.fm";s:7:"nserver";a:2:{s:18:"ns2.intermedia.net";s:10:"207.5.44.2";s:18:"ns3.intermedia.net";s:11:"207.5.1.222";}s:7:"expires";s:10:"2099-04-30";s:10:"registered";s:3:"yes";}s:5:"owner";a:5:{s:4:"name";s:12:"George Bundy";s:7:"address";a:3:{i:0;s:31:"55 New Montgomery St. Suite 622";i:1;s:28:"San Francisco, CA 94105-3432";s:7:"country";s:13:"United States";}s:5:"phone";s:12:"415-677-4027";s:3:"fax";s:12:"415-677-4025";s:5:"email";s:14:"gtbundy@dot.fm";}s:5:"admin";a:5:{s:4:"name";s:12:"George Bundy";s:7:"address";a:3:{i:0;s:31:"55 New Montgomery St. Suite 622";i:1;s:28:"San Francisco, CA 94105-3432";s:7:"country";s:13:"United States";}s:5:"phone";s:12:"415-677-4027";s:3:"fax";s:12:"415-677-4025";s:5:"email";s:14:"gtbundy@dot.fm";}s:7:"billing";a:5:{s:4:"name";s:13:"dotFM Billing";s:7:"address";a:3:{i:0;s:31:"55 New Montgomery St. Suite 622";i:1;s:28:"San Francisco, CA 94105-3432";s:7:"country";s:13:"United States";}s:5:"phone";s:12:"415-677-4027";s:3:"fax";s:12:"415-677-4025";s:5:"email";s:14:"billing@dot.fm";}s:4:"tech";a:5:{s:4:"name";s:16:"dotFM Hostmaster";s:7:"address";a:3:{i:0;s:31:"55 New Montgomery St. Suite 622";i:1;s:28:"San Francisco, CA 94105-3432";s:7:"country";s:13:"United States";}s:5:"phone";s:12:"415-677-4027";s:3:"fax";s:12:"415-677-4025";s:5:"email";s:17:"hostmaster@dot.fm";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:17:"http://www.dot.dm";s:9:"registrar";s:5:"dotFM";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:33:"http://www.dot.fm/query_whois.cfm";s:4:"args";s:17:"domain=dot&tld=fm";s:4:"port";i:80;}}s:4:"type";s:6:"domain";}}s:6:"nic.hu";a:2:{s:8:"regrinfo";a:6:{s:10:"registered";s:3:"yes";s:5:"owner";a:5:{s:12:"organization";a:2:{i:0;s:39:"org_name_eng: Council of Hungarian ISPs";i:1;s:44:"org_name_hun: Internet Szolgáltatók Tanácsa.";}s:7:"address";a:3:{i:0;s:20:"Victor Hugo u. 18-22";i:1;s:13:"1132 Budapest";i:2;s:2:"HU";}s:5:"phone";s:13:"+36 1 2380115";s:3:"fax";s:13:"+36 1 2380114";s:6:"handle";s:10:"0960627001";}s:5:"admin";a:5:{s:4:"name";s:13:"Chairman CHIP";s:7:"address";a:3:{i:0;s:21:"Victor Hugo u. 18-22.";i:1;s:15:"H-1132 Budapest";i:2;s:2:"HU";}s:5:"phone";s:13:"+36 1 2380115";s:3:"fax";s:13:"+36 1 2380114";s:6:"handle";s:10:"2980810003";}s:4:"tech";a:6:{s:4:"role";s:15:"CHIP Hostmaster";s:7:"address";a:3:{i:0;s:21:"Victor Hugo u. 18-22.";i:1;s:15:"H-1132 Budapest";i:2;s:2:"HU";}s:5:"phone";s:13:"+36 1 2380115";s:3:"fax";s:13:"+36 1 2380114";s:5:"email";s:17:"hostmaster@nic.hu";s:6:"handle";s:10:"3980615001";}s:4:"zone";a:6:{s:4:"role";s:15:"CHIP Hostmaster";s:7:"address";a:3:{i:0;s:21:"Victor Hugo u. 18-22.";i:1;s:15:"H-1132 Budapest";i:2;s:2:"HU";}s:5:"phone";s:13:"+36 1 2380115";s:3:"fax";s:13:"+36 1 2380114";s:5:"email";s:17:"hostmaster@nic.hu";s:6:"handle";s:10:"3980615001";}s:6:"domain";a:7:{s:6:"domain";s:6:"nic.hu";s:12:"organization";a:2:{i:0;s:53:"org_name_eng: Council of Hungarian Internet Providers";i:1;s:43:"org_name_hun: Internet Szolgáltatók Tanácsa";}s:7:"address";a:3:{i:0;s:21:"Victor Hugo u. 18-22.";i:1;s:15:"H-1132 Budapest";i:2;s:2:"HU";}s:10:"nameserver";a:2:{i:0;s:10:"ns.iszt.hu";i:1;s:10:"ns.ppke.hu";}s:7:"created";s:10:"1996-06-27";s:7:"changed";s:10:"2005-12-16";s:4:"name";s:6:"nic.hu";}}s:8:"regyinfo";a:4:{s:8:"referrer";s:17:"http://www.nic.hu";s:9:"registrar";s:5:"HUNIC";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"hu.whois-servers.net";s:4:"args";s:6:"nic.hu";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:17:"domainregistry.ie";a:2:{s:8:"regyinfo";a:4:{s:8:"referrer";s:28:"http://www.domainregistry.ie";s:9:"registrar";s:18:"IE Domain Registry";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"ie.whois-servers.net";s:4:"args";s:17:"domainregistry.ie";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}s:8:"regrinfo";a:5:{s:10:"registered";s:3:"yes";s:5:"admin";a:3:{s:4:"name";s:15:"IEDR Hostmaster";s:6:"handle";s:8:"IH4-IEDR";s:6:"source";s:4:"IEDR";}s:4:"tech";a:3:{s:4:"name";s:15:"IEDR Hostmaster";s:6:"handle";s:8:"IH4-IEDR";s:6:"source";s:4:"IEDR";}s:6:"domain";a:6:{s:6:"domain";s:17:"domainregistry.ie";s:7:"expires";s:10:"2009-03-19";s:6:"status";s:6:"Active";s:7:"nserver";a:4:{s:21:"ns0.domainregistry.ie";s:15:"217.114.166.214";s:15:"auth-ns2.ucd.ie";s:13:"137.43.132.54";s:12:"ns.heanet.ie";s:13:"193.1.193.194";s:16:"ice.netsource.ie";s:11:"212.17.32.2";}s:6:"source";s:4:"IEDR";s:4:"name";s:17:"domainregistry.ie";}s:5:"owner";a:1:{s:12:"organization";s:26:"IE Domain Registry Limited";}}}s:8:"isnic.is";a:2:{s:8:"regyinfo";a:4:{s:8:"referrer";s:19:"http://www.isnic.is";s:9:"registrar";s:5:"ISNIC";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"is.whois-servers.net";s:4:"args";s:8:"isnic.is";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}s:8:"regrinfo";a:7:{s:10:"registered";s:3:"yes";s:5:"admin";a:8:{s:4:"name";s:17:"Jens Pétur Jensen";s:7:"address";a:3:{i:0;s:29:"Internet á Íslandi hf (INTÍS)";i:1;s:9:"Dunhaga 5";i:2;s:16:"IS-107 Reykjavík";}s:5:"phone";s:13:"+354 578 2034";s:3:"fax";s:13:"+354 561 0999";s:5:"email";s:13:"jens@isnic.is";s:6:"handle";s:7:"JENS-IS";s:7:"created";s:10:"1999-12-15";s:6:"source";s:5:"ISNIC";}s:4:"tech";a:8:{s:4:"role";s:16:"ISNIC Hostmaster";s:7:"address";a:3:{i:0;s:22:"Internet á Íslandi hf.";i:1;s:9:"Dunhaga 5";i:2;s:16:"IS-107 Reykjavík";}s:5:"phone";s:13:"+354 578 2030";s:3:"fax";s:13:"+354 578 2031";s:5:"email";s:19:"hostmaster@isnic.is";s:6:"handle";s:7:"ISHM-IS";s:7:"created";s:10:"2002-05-15";s:6:"source";s:5:"ISNIC";}s:7:"billing";a:7:{s:4:"role";s:21:"Internet á Íslandi hf";s:7:"address";a:2:{i:0;s:9:"Dunhaga 5";i:1;s:16:"IS-107 Reykjavík";}s:5:"phone";s:13:"+354 578 2030";s:5:"email";s:16:"bokhald@isnic.is";s:6:"handle";s:7:"ISBC-IS";s:7:"created";s:10:"2000-11-06";s:6:"source";s:5:"ISNIC";}s:4:"zone";a:8:{s:4:"role";s:16:"ISNIC Hostmaster";s:7:"address";a:3:{i:0;s:22:"Internet á Íslandi hf.";i:1;s:9:"Dunhaga 5";i:2;s:16:"IS-107 Reykjavík";}s:5:"phone";s:13:"+354 578 2030";s:3:"fax";s:13:"+354 578 2031";s:5:"email";s:19:"hostmaster@isnic.is";s:6:"handle";s:7:"ISHM-IS";s:7:"created";s:10:"2002-05-15";s:6:"source";s:5:"ISNIC";}s:6:"domain";a:6:{s:6:"domain";s:8:"isnic.is";s:7:"nserver";a:3:{s:13:"aker.isnic.is";s:11:"193.4.58.91";s:15:"hathor.isnic.is";s:11:"193.4.58.92";s:18:"ns.colo-a.isnic.is";s:12:"193.4.241.11";}s:7:"created";s:10:"2000-09-05";s:7:"expires";s:10:"2008-09-05";s:6:"source";s:5:"ISNIC";s:4:"name";s:8:"isnic.is";}s:5:"owner";a:2:{s:4:"name";s:21:"Internet á Íslandi hf";s:7:"address";a:2:{i:0;s:9:"Dunhaga 5";i:1;s:16:"IS-107 Reykjavík";}}}}s:6:"nic.li";a:2:{s:8:"regrinfo";a:4:{s:6:"domain";a:2:{s:4:"name";s:6:"nic.li";s:7:"nserver";a:2:{s:16:"merapi.switch.ch";s:13:"130.59.211.10";s:16:"scsnms.switch.ch";s:11:"130.59.1.30";}}s:5:"owner";a:2:{s:4:"name";s:6:"SWITCH";s:7:"address";a:6:{i:0;s:18:"D'Alessandro Marco";i:1;s:14:"Marketing & PR";i:2;s:13:"Werdstrasse 2";i:3;s:15:"CH-8004 Zürich";i:4;s:11:"Switzerland";i:5;s:11:"Contractual";}}s:4:"tech";a:2:{s:4:"name";s:55:"SWITCH - Teleinformatikdienste für Lehre und Forschung";s:7:"address";a:5:{i:0;s:14:"Hostmaster .CH";i:1;s:7:"Network";i:2;s:13:"Werdstrasse 2";i:3;s:15:"CH-8004 Zürich";i:4;s:11:"Switzerland";}}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:17:"http://www.nic.ch";s:9:"registrar";s:31:"SWITCH Domain Name Registration";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"li.whois-servers.net";s:4:"args";s:6:"nic.li";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:6:"dns.lu";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:4:{s:4:"name";s:6:"dns.lu";s:6:"status";s:6:"ACTIVE";s:7:"nserver";a:6:{s:14:"ns1.restena.lu";s:11:"158.64.1.23";s:14:"ns2.restena.lu";s:11:"158.64.1.24";s:18:"udns1.ultradns.net";s:12:"204.69.234.1";s:18:"udns2.ultradns.net";s:12:"204.74.101.1";s:10:"ns1.dns.lu";s:12:"158.64.229.2";s:8:"k.dns.lu";s:10:"194.0.1.13";}s:7:"created";s:10:"1995-05-31";}s:5:"owner";a:3:{s:4:"type";s:12:"ORGANISATION";s:12:"organization";s:17:"Fondation RESTENA";s:7:"address";a:4:{i:0;s:33:"6, rue Richard Coudenhove-Kalergi";s:5:"pcode";s:4:"1359";s:4:"city";s:10:"Luxembourg";s:7:"country";s:2:"LU";}}s:5:"admin";a:3:{s:4:"name";s:15:"Antoine BARTHEL";s:7:"address";a:5:{i:0;s:17:"Fondation RESTENA";i:1;s:33:"6, rue Richard Coudenhove-Kalergi";s:5:"pcode";s:4:"1359";s:4:"city";s:10:"LUXEMBOURG";s:7:"country";s:2:"LU";}s:5:"email";s:16:"admin@restena.lu";}s:4:"tech";a:3:{s:4:"name";s:13:"Gilles Massen";s:7:"address";a:5:{i:0;s:22:"Fondation RESTENA asbl";i:1;s:33:"6, rue Richard Coudenhove-Kalergi";s:5:"pcode";s:4:"1359";s:4:"city";s:10:"Luxembourg";s:7:"country";s:2:"LU";}s:5:"email";s:24:"gilles.massen@restena.lu";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:17:"http://www.dns.lu";s:9:"registrar";s:6:"DNS-LU";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"lu.whois-servers.net";s:4:"args";s:6:"dns.lu";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:9:"domreg.lt";a:2:{s:8:"regrinfo";a:3:{s:6:"domain";a:3:{s:6:"status";s:10:"registered";s:7:"created";s:10:"1999-10-17";s:4:"name";s:9:"domreg.lt";}s:5:"owner";a:2:{s:4:"name";s:51:"KTU Informacinių technologijų plÄ—tros institutas";s:5:"email";s:20:"hostmaster@domreg.lt";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:20:"http://www.domreg.lt";s:9:"registrar";s:9:"DOMREG.LT";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"lt.whois-servers.net";s:4:"args";s:9:"domreg.lt";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:6:"nic.mx";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:4:{s:7:"nserver";a:4:{s:7:"a.ns.mx";s:10:"200.23.1.1";s:7:"b.ns.mx";s:12:"200.23.179.1";s:7:"c.ns.mx";s:13:"192.100.224.1";s:7:"d.ns.mx";s:12:"207.248.64.1";}s:4:"name";s:6:"nic.mx";s:7:"created";s:10:"1997-01-15";s:7:"changed";s:10:"2005-06-09";}s:5:"admin";a:3:{s:4:"name";s:33:"NIC Mexico Administrador Dominios";s:6:"handle";s:5:"nicmx";s:7:"address";s:29:"Monterrey, Nuevo Leon, Mexico";}s:4:"tech";a:3:{s:4:"name";s:33:"NIC Mexico Administrador Dominios";s:6:"handle";s:5:"nicmx";s:7:"address";s:29:"Monterrey, Nuevo Leon, Mexico";}s:7:"billing";a:3:{s:4:"name";s:33:"NIC Mexico Administrador Dominios";s:6:"handle";s:5:"nicmx";s:7:"address";s:29:"Monterrey, Nuevo Leon, Mexico";}s:5:"owner";a:3:{s:7:"address";s:29:"Monterrey, Nuevo Leon, Mexico";s:4:"name";s:10:"NIC Mexico";s:6:"handle";s:5:"nicmx";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:17:"http://www.nic.mx";s:9:"registrar";s:10:"NIC-Mexico";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"mx.whois-servers.net";s:4:"args";s:6:"nic.mx";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:18:"domain-registry.nl";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:6:{s:4:"name";s:18:"domain-registry.nl";s:6:"status";s:6:"active";s:7:"nserver";a:3:{s:21:"ns.domain-registry.nl";s:13:"193.176.144.2";s:14:"ns1.surfnet.nl";s:14:"192.87.106.101";s:9:"ns.nl.net";s:12:"193.78.240.1";}s:7:"created";s:10:"1994-09-30";s:7:"changed";s:10:"2008-03-04";s:7:"sponsor";s:18:"NL Domain Registry";}s:5:"owner";a:3:{s:4:"name";s:46:"Stichting Internet Domeinregistratie Nederland";s:7:"address";a:3:{i:0;s:16:"Utrechtseweg 310";i:1;s:14:"6812AR ARNHEM";i:2;s:11:"Netherlands";}s:6:"handle";s:15:"STI044010-SIDN2";}s:5:"admin";a:5:{s:5:"phone";s:16:"+31 (0)263525555";s:5:"email";s:15:"support@sidn.nl";s:4:"name";s:16:"G.J. van den Ham";s:7:"address";a:0:{}s:6:"handle";s:15:"HAM003802-SIDN2";}s:4:"zone";a:2:{s:4:"name";s:46:"Stichting Internet Domeinregistratie Nederland";s:7:"address";a:3:{i:0;s:16:"Utrechtseweg 310";i:1;s:14:"6812AR ARNHEM";i:2;s:11:"Netherlands";}}s:4:"tech";a:5:{s:5:"phone";s:16:"+31 (0)263525555";s:5:"email";s:15:"support@sidn.nl";s:4:"name";s:14:"Jan v Pijkeren";s:7:"address";a:0:{}s:6:"handle";s:15:"PIJ001675-SIDN2";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:29:"http://www.domain-registry.nl";s:9:"registrar";s:39:"Stichting Internet Domeinregistratie NL";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"nl.whois-servers.net";s:4:"args";s:18:"domain-registry.nl";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:10:"nunames.nu";a:2:{s:8:"regrinfo";a:2:{s:6:"domain";a:5:{s:7:"changed";s:10:"2005-05-20";s:7:"created";s:10:"1997-05-30";s:6:"status";s:8:"Reserved";s:7:"nserver";a:3:{s:14:"lns0.ma.nic.nu";s:11:"69.25.75.71";s:17:"lns0.telia.nic.nu";s:12:"212.181.91.5";s:14:"lns0.de.nic.nu";s:11:"62.4.64.117";}s:4:"name";s:10:"nunames.nu";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:5:{s:5:"whois";s:12:"whois.nic.nu";s:8:"referrer";s:21:"http://www.nunames.nu";s:9:"registrar";s:15:".NU Domain, Ltd";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"nu.whois-servers.net";s:4:"args";s:10:"nunames.nu";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:6:"nic.pl";a:2:{s:8:"regrinfo";a:3:{s:5:"owner";a:1:{s:6:"handle";s:18:"wdc145 (CORPORATE)";}s:6:"domain";a:5:{s:7:"created";s:10:"1998-03-11";s:7:"changed";s:10:"2008-00-02";s:7:"sponsor";s:18:"Warsaw Data Center";s:7:"nserver";a:2:{s:16:"ns.webcorp.co.uk";s:11:"62.181.1.10";s:17:"ns.webcorp.com.pl";s:11:"62.181.0.10";}s:4:"name";s:6:"nic.pl";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:36:"http://www.dns.pl/english/index.html";s:9:"registrar";s:4:"NASK";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"pl.whois-servers.net";s:4:"args";s:6:"nic.pl";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:9:"nic-se.se";a:2:{s:8:"regrinfo";a:3:{s:6:"domain";a:5:{s:6:"status";a:2:{i:0;s:6:"active";i:1;s:2:"ok";}s:4:"name";s:9:"nic-se.se";s:7:"created";s:10:"1997-11-10";s:7:"expires";s:10:"2008-12-31";s:7:"nserver";a:3:{s:9:"ns.nic.se";s:13:"212.247.7.228";s:10:"ns3.nic.se";s:12:"212.247.3.80";s:10:"ns2.nic.se";s:12:"194.17.45.54";}}s:5:"owner";a:1:{s:6:"handle";s:16:"stifte0702-00242";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:20:"http://www.nic-se.se";s:9:"registrar";s:6:"NIC-SE";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"se.whois-servers.net";s:4:"args";s:9:"nic-se.se";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:11:"olsns.co.uk";a:2:{s:8:"regrinfo";a:3:{s:5:"owner";a:2:{s:12:"organization";s:27:"On-Line Services 2000, S.L.";s:7:"address";a:4:{i:0;s:17:"Trafalgar 78 2 2B";i:1;s:7:"Unknown";i:2;s:5:"08010";i:3;s:2:"ES";}}s:6:"domain";a:7:{s:7:"sponsor";s:42:"On-Line Services 2000, S.L. [Tag = OLS-ES]";s:7:"created";s:10:"2001-02-21";s:7:"expires";s:10:"2009-02-21";s:7:"changed";s:10:"2007-01-18";s:6:"status";a:1:{i:0;s:30:"Registered until renewal date.";}s:7:"nserver";a:2:{s:16:"a.ns.olsns.co.uk";s:13:"62.97.102.115";s:16:"b.ns.olsns.co.uk";s:15:"212.100.254.118";}s:4:"name";s:11:"olsns.co.uk";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:21:"http://www.monimet.uk";s:9:"registrar";s:10:"Nominet UK";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:23:"co.uk.whois-servers.net";s:4:"args";s:11:"olsns.co.uk";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:10:"neustar.us";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:8:{s:4:"name";s:10:"neustar.us";s:6:"handle";s:10:"D670499-US";s:7:"sponsor";s:18:"REGISTRY REGISTRAR";s:6:"status";s:22:"serverUpdateProhibited";s:7:"nserver";a:2:{s:18:"gdns1.ultradns.net";s:12:"204.74.110.1";s:18:"gdns2.ultradns.net";s:12:"204.74.111.1";}s:7:"created";s:10:"2002-04-18";s:7:"expires";s:10:"2008-04-17";s:7:"changed";s:10:"2007-04-19";}s:5:"owner";a:6:{s:6:"handle";s:7:"NEUSTAR";s:4:"name";s:7:"NEUSTAR";s:7:"address";a:5:{s:6:"street";s:19:"Loudoun Tech Center";s:4:"city";s:8:"Sterling";s:5:"state";s:2:"VA";s:5:"pcode";s:5:"20166";s:7:"country";s:13:"United States";}s:5:"phone";s:13:"+1.5714345757";s:3:"fax";s:13:"+1.5714345758";s:5:"email";s:18:"support@neustar.us";}s:5:"admin";a:6:{s:6:"handle";s:7:"NEUSTAR";s:4:"name";s:7:"NEUSTAR";s:7:"address";a:5:{s:6:"street";s:19:"Loudoun Tech Center";s:4:"city";s:8:"Sterling";s:5:"state";s:2:"VA";s:5:"pcode";s:5:"20166";s:7:"country";s:13:"United States";}s:5:"phone";s:13:"+1.5714345757";s:3:"fax";s:13:"+1.5714345758";s:5:"email";s:18:"support@neustar.us";}s:7:"billing";a:6:{s:6:"handle";s:7:"NEUSTAR";s:4:"name";s:7:"NEUSTAR";s:7:"address";a:5:{s:6:"street";s:19:"Loudoun Tech Center";s:4:"city";s:8:"Sterling";s:5:"state";s:2:"VA";s:5:"pcode";s:5:"20166";s:7:"country";s:13:"United States";}s:5:"phone";s:13:"+1.5714345757";s:3:"fax";s:13:"+1.5714345758";s:5:"email";s:18:"support@neustar.us";}s:4:"tech";a:6:{s:6:"handle";s:7:"NEUSTAR";s:4:"name";s:7:"NEUSTAR";s:7:"address";a:5:{s:6:"street";s:19:"Loudoun Tech Center";s:4:"city";s:8:"Sterling";s:5:"state";s:2:"VA";s:5:"pcode";s:5:"20166";s:7:"country";s:13:"United States";}s:5:"phone";s:13:"+1.5714345757";s:3:"fax";s:13:"+1.5714345758";s:5:"email";s:18:"support@neustar.us";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:21:"http://www.neustar.us";s:9:"registrar";s:12:"NEUSTAR INC.";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"us.whois-servers.net";s:4:"args";s:10:"neustar.us";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:11:"samoanic.ws";a:2:{s:8:"regrinfo";a:4:{s:6:"domain";a:3:{s:4:"name";s:11:"samoanic.ws";s:7:"created";s:10:"2000-03-09";s:7:"changed";s:10:"2008-04-11";}s:5:"owner";a:1:{s:12:"organization";s:3:"CSL";}s:5:"admin";a:2:{s:5:"email";s:16:"domains@samoa.ws";s:5:"phone";s:5:"20926";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:22:"http://www.samoanic.ws";s:9:"registrar";s:9:"Samoa Nic";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"ws.whois-servers.net";s:4:"args";s:11:"samoanic.ws";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:14:"alldomains.com";a:2:{s:8:"regrinfo";a:2:{s:6:"domain";a:6:{s:4:"name";s:14:"alldomains.com";s:7:"nserver";a:5:{s:18:"ns1.alldomains.com";s:12:"64.124.14.32";s:18:"ns2.alldomains.com";s:14:"204.228.234.15";s:18:"ns3.alldomains.com";s:14:"208.75.133.194";s:18:"ns4.alldomains.com";s:15:"217.199.176.204";s:18:"ns5.alldomains.com";s:14:"123.242.230.66";}s:6:"status";a:3:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";i:2;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2008-01-07";s:7:"created";s:10:"1996-06-13";s:7:"expires";s:10:"2008-06-12";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:9:"registrar";s:17:"ALLINDOMAINS, LLC";s:8:"referrer";s:27:"http://www.allindomains.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:22:"domain =alldomains.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:22:"whois.allindomains.com";s:4:"args";s:14:"alldomains.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:9:"ascio.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:6:{s:4:"name";s:9:"ascio.com";s:7:"nserver";a:3:{s:18:"cgn1srv2.ascio.net";s:14:"80.237.202.145";s:17:"iapetus.ascio.net";s:11:"72.51.41.73";s:17:"voyager.ascio.com";s:13:"194.30.189.20";}s:6:"status";a:2:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";}s:7:"changed";s:10:"2006-07-14";s:7:"created";s:10:"2005-03-01";s:7:"expires";s:10:"2009-05-31";}s:10:"registered";s:3:"yes";s:5:"owner";a:2:{s:4:"name";s:38:"ASCIO Technologies Inc. (ASCIOTEC1364)";s:7:"address";a:3:{i:0;s:17:"Islands Brygge 55";i:1;s:19:"Copenhagen, S, 2300";i:2;s:2:"DK";}}s:4:"tech";a:5:{s:5:"email";s:25:"hostmaster@speednames.com";s:3:"fax";s:12:"+45.33886301";s:5:"phone";s:12:"+45.33886300";s:4:"name";s:30:"Hostmaster, Technical (TH6440)";s:7:"address";a:4:{i:0;s:10:"Speednames";i:1;s:13:"Rejsbygade 8a";i:2;s:20:"Copenhagen, DK, 1759";i:3;s:2:"DK";}}s:5:"admin";a:5:{s:5:"email";s:25:"hostmaster@speednames.com";s:3:"fax";s:12:"+45.33886301";s:5:"phone";s:12:"+45.33886300";s:4:"name";s:30:"Hostmaster, Technical (TH6437)";s:7:"address";a:4:{i:0;s:10:"Speednames";i:1;s:13:"Rejsbygade 8a";i:2;s:20:"Copenhagen, DK, 1759";i:3;s:2:"DK";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:24:"ASCIO TECHNOLOGIES, INC.";s:8:"referrer";s:28:"http://publicwhois.ascio.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:17:"domain =ascio.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:15:"whois.ascio.com";s:4:"args";s:9:"ascio.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:13:"naturebox.com";a:2:{s:8:"regrinfo";a:4:{s:6:"domain";a:8:{s:4:"name";s:13:"naturebox.com";s:7:"nserver";a:2:{s:25:"ns2.interimnameserver.com";s:14:"206.225.91.125";s:25:"ns1.interimnameserver.com";s:15:"207.170.243.233";}s:6:"status";s:6:"ACTIVE";s:10:"epp_status";a:1:{i:0;s:2:"ok";}s:7:"changed";s:10:"2005-06-29";s:7:"created";s:10:"2005-06-29";s:7:"expires";s:10:"2006-06-29";s:7:"sponsor";s:7:"CHINESE";}s:10:"registered";s:3:"yes";s:5:"admin";a:6:{i:0;s:38:"Preston, Paul ppreston@sitedomain.net";i:1;s:17:"CyberSurfers Inc.";i:2;s:26:"712 West Broad St, Ste B-1";i:3;s:23:"Falls Church, VA 22046";i:4;s:2:"US";i:5;s:13:"+1.7035347761";}s:4:"tech";a:6:{i:0;s:38:"Preston, Paul ppreston@sitedomain.net";i:1;s:17:"CyberSurfers Inc.";i:2;s:26:"712 West Broad St, Ste B-1";i:3;s:23:"Falls Church, VA 22046";i:4;s:2:"US";i:5;s:13:"+1.7035347761";}}s:8:"regyinfo";a:6:{s:9:"registrar";s:19:"CHINESEDOMAINS, LLC";s:5:"whois";s:22:"whois.chinesedomain.cn";s:8:"referrer";s:27:"http://www.chinesedomain.cn";s:4:"args";s:14:"=naturebox.com";s:4:"port";i:43;s:4:"type";s:6:"domain";}}s:14:"buydomains.com";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:6:{s:4:"name";s:14:"buydomains.com";s:7:"nserver";a:2:{s:18:"ns3.buydomains.com";s:13:"208.254.3.183";s:18:"ns4.buydomains.com";s:12:"128.121.3.78";}s:6:"status";a:1:{i:0;s:24:"clientTransferProhibited";}s:7:"changed";s:10:"2006-04-06";s:7:"created";s:10:"1997-03-30";s:7:"expires";s:10:"2011-03-31";}s:10:"registered";s:3:"yes";s:5:"owner";a:2:{s:4:"name";s:25:"BuyDomains Holdings, Inc.";s:7:"address";a:3:{i:0;s:16:"230 Third Avenue";i:1;s:17:"Waltham, MA 02451";i:2;s:2:"US";}}s:5:"admin";a:5:{s:5:"phone";s:13:"(781)839-2800";s:3:"fax";s:13:"(781)839-2801";s:5:"email";s:24:"corporate@buydomains.com";s:4:"name";s:25:"BuyDomains Holdings, Inc.";s:7:"address";a:3:{i:0;s:16:"230 Third Avenue";i:1;s:17:"Waltham, MA 02451";i:2;s:2:"US";}}s:4:"tech";a:5:{s:5:"phone";s:13:"(781)839-2800";s:3:"fax";s:13:"(781)839-2801";s:5:"email";s:24:"corporate@buydomains.com";s:4:"name";s:25:"BuyDomains Holdings, Inc.";s:7:"address";a:3:{i:0;s:16:"230 Third Avenue";i:1;s:17:"Waltham, MA 02451";i:2;s:2:"US";}}s:4:"zone";a:5:{s:5:"phone";s:13:"(781)839-2800";s:3:"fax";s:13:"(781)839-2801";s:5:"email";s:24:"corporate@buydomains.com";s:4:"name";s:25:"BuyDomains Holdings, Inc.";s:7:"address";a:3:{i:0;s:16:"230 Third Avenue";i:1;s:17:"Waltham, MA 02451";i:2;s:2:"US";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:14:"DOMAINDISCOVER";s:8:"referrer";s:29:"http://www.domaindiscover.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:22:"domain =buydomains.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:24:"whois.domaindiscover.com";s:4:"args";s:14:"buydomains.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:19:"domaincontender.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:6:{s:4:"name";s:19:"domaincontender.com";s:7:"nserver";a:2:{s:20:"ns1.securemarket.net";s:13:"69.46.230.132";s:20:"ns2.securemarket.net";s:13:"69.46.230.133";}s:6:"status";a:3:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";i:2;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2006-01-03";s:7:"created";s:10:"2003-08-09";s:7:"expires";s:10:"2010-08-09";}s:10:"registered";s:3:"yes";s:5:"owner";a:3:{s:5:"phone";s:12:"504-274-4800";s:4:"name";s:16:"Domain Contender";s:7:"address";a:4:{i:0;s:14:"650 Poydras St";i:1;s:10:"Suite 1150";i:2;s:21:"New Orleans, LA 70130";i:3;s:2:"US";}}s:5:"admin";a:4:{s:5:"email";s:28:"registry@domaincontender.com";s:4:"name";s:16:"Solares, Sigmund";s:5:"phone";s:12:"504-274-4800";s:7:"address";a:4:{i:1;s:14:"650 Poydras St";i:2;s:10:"Suite 1150";i:3;s:21:"New Orleans, LA 70130";i:4;s:2:"US";}}s:4:"tech";a:4:{s:5:"email";s:28:"registry@domaincontender.com";s:4:"name";s:16:"Solares, Sigmund";s:5:"phone";s:12:"504-274-4800";s:7:"address";a:4:{i:1;s:14:"650 Poydras St";i:2;s:10:"Suite 1150";i:3;s:21:"New Orleans, LA 70130";i:4;s:2:"US";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:21:"DOMAIN CONTENDER, LLC";s:8:"referrer";s:30:"http://www.domaincontender.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:27:"domain =domaincontender.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:25:"whois.domaincontender.com";s:4:"args";s:19:"domaincontender.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:11:"corenic.com";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:7:{s:4:"name";s:11:"corenic.com";s:7:"nserver";a:3:{s:15:"dns.globvill.de";s:12:"212.20.191.2";s:12:"ns2.knipp.de";s:12:"195.253.6.52";s:12:"ns3.knipp.de";s:13:"194.64.105.66";}s:6:"status";a:3:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";i:2;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2006-09-29";s:7:"created";s:10:"1997-09-22";s:7:"expires";s:10:"2008-09-13";s:6:"handle";s:12:"D3040399-CNO";}s:10:"registered";s:3:"yes";s:5:"owner";a:4:{s:4:"name";s:16:"CORE ASSOCIATION";s:12:"organization";s:45:"INTERNET COUNCIL OF REGISTRARS - Werner Staub";s:7:"address";a:4:{s:4:"city";s:6:"Geneva";s:5:"state";s:2:"GE";s:5:"pcode";s:7:"CH-1215";s:7:"country";s:2:"CH";}s:5:"email";s:23:"secretariat@corenic.org";}s:5:"admin";a:5:{s:6:"handle";s:8:"COCO-354";s:4:"name";s:16:"CORE ASSOCIATION";s:12:"organization";s:45:"INTERNET COUNCIL OF REGISTRARS - Werner Staub";s:7:"address";a:4:{s:4:"city";s:6:"Geneva";s:5:"state";s:2:"GE";s:5:"pcode";s:7:"CH-1215";s:7:"country";s:2:"CH";}s:5:"email";s:23:"secretariat@corenic.org";}s:4:"tech";a:5:{s:6:"handle";s:8:"COCO-354";s:4:"name";s:16:"CORE ASSOCIATION";s:12:"organization";s:45:"INTERNET COUNCIL OF REGISTRARS - Werner Staub";s:7:"address";a:4:{s:4:"city";s:6:"Geneva";s:5:"state";s:2:"GE";s:5:"pcode";s:7:"CH-1215";s:7:"country";s:2:"CH";}s:5:"email";s:23:"secretariat@corenic.org";}s:4:"zone";a:5:{s:6:"handle";s:8:"COCO-354";s:4:"name";s:16:"CORE ASSOCIATION";s:12:"organization";s:45:"INTERNET COUNCIL OF REGISTRARS - Werner Staub";s:7:"address";a:4:{s:4:"city";s:6:"Geneva";s:5:"state";s:2:"GE";s:5:"pcode";s:7:"CH-1215";s:7:"country";s:2:"CH";}s:5:"email";s:23:"secretariat@corenic.org";}}s:8:"regyinfo";a:4:{s:9:"registrar";s:35:"CORE INTERNET COUNCIL OF REGISTRARS";s:8:"referrer";s:22:"http://www.corenic.net";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:19:"domain =corenic.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:17:"whois.corenic.net";s:4:"args";s:11:"corenic.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:12:"antiquea.com";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:6:{s:4:"name";s:12:"antiquea.com";s:7:"nserver";a:2:{s:16:"ns1.webmailer.de";s:13:"193.141.40.47";s:16:"ns2.webmailer.de";s:14:"194.120.12.252";}s:6:"status";a:1:{i:0;s:2:"ok";}s:7:"changed";s:10:"2007-06-09";s:7:"created";s:10:"2000-06-08";s:7:"expires";s:10:"2008-06-08";}s:10:"registered";s:3:"yes";s:5:"owner";a:2:{s:4:"name";s:16:"Olaf Braun-Elias";s:7:"address";a:3:{i:0;s:23:"Historische Bauelemente";i:1;s:18:"Baerenklauer Weg 2";i:2;s:20:"Marwitz, D-16727, DE";}}i:0;s:12:"antiquea.com";s:5:"admin";a:4:{s:5:"email";s:18:"guardian@xlink.net";s:5:"phone";s:14:"+49 3304502242";s:4:"name";s:16:"Olaf Braun-Elias";s:7:"address";a:3:{i:0;s:23:"Historische Bauelemente";i:1;s:18:"Baerenklauer Weg 2";i:2;s:20:"Marwitz, D-16727, DE";}}s:4:"tech";a:4:{s:5:"email";s:25:"hostmaster@cronon-isp.net";s:5:"phone";s:15:"+49 72166320305";s:4:"name";s:31:"Hostmaster Strato Rechenzentrum";s:7:"address";a:3:{i:0;s:34:"Cronon AG Professional IT-Services";i:1;s:20:"Emmy-Noether-Str. 10";i:2;s:22:"Karlsruhe, D-76131, DE";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:42:"CRONON AG BERLIN, NIEDERLASSUNG REGENSBURG";s:8:"referrer";s:23:"http://nsi-robo.tmag.de";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:20:"domain =antiquea.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:17:"whois.tmagnic.net";s:4:"args";s:12:"antiquea.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:13:"directnic.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:6:{s:4:"name";s:13:"directnic.com";s:7:"nserver";a:2:{s:17:"ns0.directnic.com";s:13:"69.46.233.245";s:17:"ns1.directnic.com";s:13:"69.46.234.245";}s:6:"status";a:1:{i:0;s:2:"ok";}s:7:"changed";s:10:"2006-10-19";s:7:"created";s:10:"2000-02-10";s:7:"expires";s:10:"2010-02-09";}s:10:"registered";s:3:"yes";s:5:"owner";a:3:{s:5:"phone";s:14:"(504) 679-5170";s:4:"name";s:29:"Intercosmos Media Group, Inc.";s:7:"address";a:4:{i:0;s:19:"650 Poydras Street.";i:1;s:10:"Suite 1150";i:2;s:26:"New Orleans, LA 70130-7230";i:3;s:2:"US";}}s:5:"admin";a:4:{s:5:"email";s:26:"hostmaster@intercosmos.com";s:4:"name";s:16:"Solares, Sigmund";s:5:"phone";s:14:"(504) 679-5170";s:7:"address";a:4:{i:1;s:19:"650 Poydras Street.";i:2;s:10:"Suite 1150";i:3;s:26:"New Orleans, LA 70130-7230";i:4;s:2:"US";}}s:4:"tech";a:4:{s:5:"email";s:26:"hostmaster@intercosmos.com";s:4:"name";s:16:"Solares, Sigmund";s:5:"phone";s:14:"(504) 679-5170";s:7:"address";a:4:{i:1;s:19:"650 Poydras Street.";i:2;s:10:"Suite 1150";i:3;s:26:"New Orleans, LA 70130-7230";i:4;s:2:"US";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:49:"INTERCOSMOS MEDIA GROUP, INC. D/B/A DIRECTNIC.COM";s:8:"referrer";s:24:"http://www.directnic.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:21:"domain =directnic.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:19:"whois.directnic.com";s:4:"args";s:13:"directnic.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:14:"domainbank.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:7:{s:4:"name";s:14:"domainbank.com";s:7:"nserver";a:2:{s:19:"dns1.domainbank.com";s:14:"216.52.121.235";s:19:"dns2.domainbank.com";s:14:"66.150.161.153";}s:6:"status";a:3:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";i:2;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2007-05-29";s:7:"created";s:10:"1998-07-28";s:7:"expires";s:10:"2012-07-27";s:7:"sponsor";s:10:"DOMAINBANK";}s:10:"registered";s:3:"yes";s:5:"owner";a:2:{s:4:"name";s:12:"Dotster Inc.";s:7:"address";a:4:{i:0;s:18:"8100 NE Parkway DR";i:1;s:9:"Suite 300";i:2;s:20:"Vancouver, WA 98662";i:3;s:2:"US";}}s:5:"admin";a:5:{s:5:"email";s:19:"domains@dotster.com";s:4:"name";s:13:"Domain Admin,";s:5:"phone";s:13:"+1.3602532210";s:3:"fax";s:13:"+1.3602534234";s:7:"address";a:5:{i:1;s:12:"Dotster Inc.";i:2;s:18:"8100 NE Parkway DR";i:3;s:9:"Suite 300";i:4;s:20:"Vancouver, WA 98662";i:5;s:2:"US";}}s:4:"tech";a:5:{s:5:"email";s:19:"domains@dotster.com";s:4:"name";s:13:"Domain Admin,";s:5:"phone";s:13:"+1.3602532210";s:3:"fax";s:13:"+1.3602534234";s:7:"address";a:5:{i:1;s:12:"Dotster Inc.";i:2;s:18:"8100 NE Parkway DR";i:3;s:9:"Suite 300";i:4;s:20:"Vancouver, WA 98662";i:5;s:2:"US";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:45:"DSTR ACQUISITION PA I, LLC DBA DOMAINBANK.COM";s:8:"referrer";s:25:"http://www.domainbank.net";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:22:"domain =domainbank.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:17:"rs.domainbank.net";s:4:"args";s:14:"domainbank.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:16:"dotregistrar.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:7:{s:4:"name";s:16:"dotregistrar.com";s:7:"nserver";a:2:{s:20:"ns1.dotregistrar.net";s:13:"64.94.117.217";s:20:"ns2.dotregistrar.net";s:12:"63.251.83.80";}s:6:"status";a:3:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";i:2;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2008-04-02";s:7:"created";s:10:"1999-02-10";s:7:"expires";s:10:"2009-03-22";s:7:"sponsor";s:12:"DOTREGISTRAR";}s:10:"registered";s:3:"yes";s:5:"owner";a:2:{s:4:"name";s:18:"RegistrarAds, Inc.";s:7:"address";a:3:{i:0;s:32:"8100 NE Parkway Drive, Suite 300";i:1;s:20:"Vancouver, WA 98662";i:2;s:2:"US";}}s:5:"admin";a:5:{s:5:"email";s:21:"buysdomains@gmail.com";s:4:"name";s:13:"Admin, Domain";s:5:"phone";s:12:"360-253-2210";s:3:"fax";s:12:"360-253-4234";s:7:"address";a:4:{i:1;s:18:"RegistrarAds, Inc.";i:2;s:32:"8100 NE Parkway Drive, Suite 300";i:3;s:20:"Vancouver, WA 98662";i:4;s:2:"US";}}s:4:"tech";a:5:{s:5:"email";s:21:"buysdomains@gmail.com";s:4:"name";s:13:"Admin, Domain";s:5:"phone";s:12:"360-253-2210";s:3:"fax";s:12:"360-253-4234";s:7:"address";a:4:{i:1;s:18:"RegistrarAds, Inc.";i:2;s:32:"8100 NE Parkway Drive, Suite 300";i:3;s:20:"Vancouver, WA 98662";i:4;s:2:"US";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:25:"DSTR ACQUISITION VII, LLC";s:8:"referrer";s:27:"http://www.dotregistrar.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:24:"domain =dotregistrar.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:22:"whois.dotregistrar.com";s:4:"args";s:16:"dotregistrar.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:11:"dotster.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:7:{s:4:"name";s:11:"dotster.com";s:7:"nserver";a:2:{s:15:"ns1.dotster.com";s:14:"66.150.161.146";s:15:"ns2.dotster.com";s:12:"63.251.83.72";}s:6:"status";a:3:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";i:2;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2008-04-25";s:7:"created";s:10:"1999-12-29";s:7:"expires";s:10:"2011-12-12";s:7:"sponsor";s:7:"DOTSTER";}s:10:"registered";s:3:"yes";s:5:"owner";a:2:{s:4:"name";s:15:"c/o DOTSTER.COM";s:7:"address";a:3:{i:0;s:15:"P.O. Box 821650";i:1;s:20:"Vancouver, WA 98682";i:2;s:2:"US";}}s:5:"admin";a:4:{s:5:"email";s:22:"f4H9oy@privacypost.com";s:5:"phone";s:15:"+1.360-449-5933";s:4:"name";s:15:"c/o DOTSTER.COM";s:7:"address";a:3:{i:0;s:15:"P.O. Box 821650";i:1;s:20:"Vancouver, WA 98682";i:2;s:2:"US";}}s:4:"tech";a:4:{s:5:"email";s:22:"7WqyNP@privacypost.com";s:5:"phone";s:15:"+1.360-449-5933";s:4:"name";s:15:"c/o DOTSTER.COM";s:7:"address";a:3:{i:0;s:15:"P.O. Box 821650";i:1;s:20:"Vancouver, WA 98682";i:2;s:2:"US";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:13:"DOTSTER, INC.";s:8:"referrer";s:22:"http://www.dotster.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:19:"domain =dotster.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:17:"whois.dotster.com";s:4:"args";s:11:"dotster.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:8:"enom.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:7:{s:4:"name";s:8:"enom.com";s:7:"nserver";a:5:{s:22:"dns1.name-services.com";s:12:"69.25.142.42";s:22:"dns2.name-services.com";s:14:"216.52.184.248";s:22:"dns3.name-services.com";s:13:"63.251.92.200";s:22:"dns4.name-services.com";s:13:"69.64.145.225";s:22:"dns5.name-services.com";s:10:"70.42.37.7";}s:6:"status";s:6:"Locked";s:7:"changed";s:10:"2008-04-14";s:7:"created";s:10:"1997-10-24";s:7:"expires";s:10:"2012-09-21";s:7:"sponsor";s:10:"eNom, Inc.";}s:10:"registered";s:3:"yes";s:5:"owner";a:6:{s:5:"email";s:14:"info2@enom.com";s:4:"name";s:11:"DNS Manager";s:5:"phone";s:13:"+1.4258838860";s:3:"fax";s:13:"+1.4258833553";s:12:"organization";s:10:"eNom, Inc.";s:7:"address";a:3:{i:0;s:11:"PO Box 7449";i:1;s:18:"Bellevue, WA 98008";i:2;s:2:"US";}}s:5:"admin";a:6:{s:5:"email";s:14:"info2@enom.com";s:4:"name";s:11:"DNS Manager";s:5:"phone";s:13:"+1.4258838860";s:3:"fax";s:13:"+1.4258833553";s:12:"organization";s:10:"eNom, Inc.";s:7:"address";a:3:{i:0;s:11:"PO Box 7449";i:1;s:18:"Bellevue, WA 98008";i:2;s:2:"US";}}s:4:"tech";a:6:{s:5:"email";s:14:"info2@enom.com";s:4:"name";s:11:"DNS Manager";s:5:"phone";s:13:"+1.4258838860";s:3:"fax";s:13:"+1.4258833553";s:12:"organization";s:10:"eNom, Inc.";s:7:"address";a:3:{i:0;s:11:"PO Box 7449";i:1;s:18:"Bellevue, WA 98008";i:2;s:2:"US";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:10:"ENOM, INC.";s:8:"referrer";s:19:"http://www.enom.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:16:"domain =enom.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:14:"whois.enom.com";s:4:"args";s:8:"enom.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:12:"adultlaw.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:7:{s:4:"name";s:12:"adultlaw.com";s:7:"nserver";a:2:{s:14:"ns1.apgood.com";s:13:"63.231.16.185";s:16:"ns1.carpelaw.com";s:13:"63.231.16.187";}s:6:"status";s:6:"Locked";s:7:"changed";s:10:"2006-10-28";s:7:"created";s:10:"1999-11-08";s:7:"expires";s:10:"2007-11-08";s:7:"sponsor";s:10:"eNom, Inc.";}s:10:"registered";s:3:"yes";s:5:"owner";a:6:{s:5:"email";s:16:"rob@carpelaw.com";s:4:"name";s:13:"Robert Apgood";s:12:"organization";s:13:"CarpeLaw PLLC";s:5:"phone";s:13:"+1.2066242379";s:3:"fax";s:13:"+1.2067846305";s:7:"address";a:3:{i:4;s:27:"2400 NW 80th Street Ste 130";i:5;s:22:"Seattle, WA 98117-4449";i:6;s:2:"US";}}s:5:"admin";a:6:{s:5:"email";s:16:"rob@carpelaw.com";s:4:"name";s:13:"Robert Apgood";s:12:"organization";s:13:"CarpeLaw PLLC";s:5:"phone";s:13:"+1.2066242379";s:3:"fax";s:13:"+1.2067846305";s:7:"address";a:3:{i:4;s:27:"2400 NW 80th Street Ste 130";i:5;s:22:"Seattle, WA 98117-4449";i:6;s:2:"US";}}s:4:"tech";a:6:{s:5:"email";s:16:"rob@carpelaw.com";s:4:"name";s:13:"Robert Apgood";s:12:"organization";s:13:"CarpeLaw PLLC";s:5:"phone";s:13:"+1.2066242379";s:3:"fax";s:13:"+1.2067846305";s:7:"address";a:3:{i:4;s:27:"2400 NW 80th Street Ste 130";i:5;s:22:"Seattle, WA 98117-4449";i:6;s:2:"US";}}}s:8:"regyinfo";a:6:{s:9:"registrar";s:10:"ENOM, INC.";s:5:"whois";s:14:"whois.enom.com";s:8:"referrer";s:19:"http://www.enom.com";s:4:"args";s:13:"=adultlaw.com";s:4:"port";i:43;s:4:"type";s:6:"domain";}}s:11:"godaddy.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:7:{s:4:"name";s:11:"godaddy.com";s:7:"nserver";a:3:{s:21:"cns1.secureserver.net";s:13:"64.202.167.31";s:21:"cns2.secureserver.net";s:14:"216.69.185.100";s:21:"cns3.secureserver.net";s:13:"216.69.160.22";}s:6:"status";a:4:{i:0;s:22:"clientDeleteProhibited";i:1;s:21:"clientRenewProhibited";i:2;s:24:"clientTransferProhibited";i:3;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2007-01-24";s:7:"created";s:10:"1999-03-02";s:7:"expires";s:10:"2016-03-02";s:7:"sponsor";s:42:"GoDaddy.com, Inc. (http://www.godaddy.com)";}s:10:"registered";s:3:"yes";s:5:"owner";a:2:{s:4:"name";s:17:"GoDaddy.com, Inc.";s:7:"address";a:3:{i:0;s:22:"14455 N Hayden Rd #226";i:1;s:25:"Scottsdale, Arizona 85260";i:2;s:13:"United States";}}s:5:"admin";a:6:{s:5:"email";s:13:"dns@jomax.net";s:4:"name";s:36:"GoDaddy.com, Inc., GoDaddy.com, Inc.";s:3:"fax";s:12:"- 4805058844";s:5:"phone";s:10:"4805058800";s:12:"organization";s:17:"GoDaddy.com, Inc.";s:7:"address";a:3:{i:0;s:22:"14455 N Hayden Rd #226";i:1;s:25:"Scottsdale, Arizona 85260";i:2;s:13:"United States";}}s:4:"tech";a:6:{s:5:"email";s:13:"dns@jomax.net";s:4:"name";s:36:"GoDaddy.com, Inc., GoDaddy.com, Inc.";s:3:"fax";s:12:"- 4805058844";s:5:"phone";s:10:"4805058800";s:12:"organization";s:17:"GoDaddy.com, Inc.";s:7:"address";a:3:{i:0;s:22:"14455 N Hayden Rd #226";i:1;s:25:"Scottsdale, Arizona 85260";i:2;s:13:"United States";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:17:"GODADDY.COM, INC.";s:8:"referrer";s:28:"http://registrar.godaddy.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:19:"domain =godaddy.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:17:"whois.godaddy.com";s:4:"args";s:11:"godaddy.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:11:"example.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:6:{s:4:"name";s:11:"example.com";s:7:"nserver";a:2:{s:18:"a.iana-servers.net";s:11:"192.0.34.43";s:18:"b.iana-servers.net";s:11:"193.0.0.236";}s:6:"status";a:3:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";i:2;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2004-03-26";s:7:"created";s:10:"1995-08-14";s:7:"expires";s:10:"2011-08-13";}s:10:"registered";s:3:"yes";s:5:"owner";a:6:{s:4:"name";s:42:"Internet Assigned Numbers Authority (IANA)";s:12:"organization";s:42:"Internet Assigned Numbers Authority (IANA)";s:7:"address";a:5:{s:6:"street";a:1:{i:0;s:29:"4676 Admiralty Way, Suite 330";}s:4:"city";s:14:"Marina del Rey";s:5:"state";s:2:"CA";s:7:"country";s:2:"US";s:5:"pcode";s:5:"90292";}s:5:"phone";s:12:"310-823-9358";s:3:"fax";s:12:"310-823-8649";s:5:"email";s:16:"res-dom@iana.org";}s:5:"admin";a:6:{s:4:"name";s:42:"Internet Assigned Numbers Authority (IANA)";s:12:"organization";s:42:"Internet Assigned Numbers Authority (IANA)";s:7:"address";a:5:{s:6:"street";a:1:{i:0;s:29:"4676 Admiralty Way, Suite 330";}s:4:"city";s:14:"Marina del Rey";s:5:"state";s:2:"CA";s:7:"country";s:2:"US";s:5:"pcode";s:5:"90292";}s:5:"phone";s:12:"310-823-9358";s:3:"fax";s:12:"310-823-8649";s:5:"email";s:16:"res-dom@iana.org";}s:4:"tech";a:6:{s:4:"name";s:42:"Internet Assigned Numbers Authority (IANA)";s:12:"organization";s:42:"Internet Assigned Numbers Authority (IANA)";s:7:"address";a:5:{s:6:"street";a:1:{i:0;s:29:"4676 Admiralty Way, Suite 330";}s:4:"city";s:14:"Marina del Rey";s:5:"state";s:2:"CA";s:7:"country";s:2:"US";s:5:"pcode";s:5:"90292";}s:5:"phone";s:12:"310-823-9358";s:3:"fax";s:12:"310-823-8649";s:5:"email";s:16:"res-dom@iana.org";}}s:8:"regyinfo";a:4:{s:9:"registrar";s:44:"RESERVED-INTERNET ASSIGNED NUMBERS AUTHORITY";s:8:"referrer";s:23:"http://res-dom.iana.org";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:19:"domain =example.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:14:"whois.iana.org";s:4:"args";s:11:"example.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:10:"sexido.com";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:6:{s:4:"name";s:10:"sexido.com";s:7:"nserver";a:2:{s:21:"sk.s1.ns104.cnomy.com";s:13:"209.85.51.104";s:21:"sk.s2.ns104.cnomy.com";s:14:"209.62.105.104";}s:6:"status";a:1:{i:0;s:24:"clientTransferProhibited";}s:7:"changed";s:10:"2007-09-24";s:7:"created";s:10:"2002-09-24";s:7:"expires";s:10:"2008-09-24";}s:10:"registered";s:3:"yes";s:5:"owner";a:5:{s:5:"email";s:27:"RfhpmfLjBWv@securewhois.com";s:5:"phone";s:13:"+1.4165385428";s:3:"fax";s:13:"+1.4163520113";s:4:"name";s:17:"SecureWhois, Inc.";s:7:"address";a:3:{i:0;s:17:"SecureWhois, Inc.";i:1;s:8:"96 Mowat";i:2;s:22:"Toronto, ON M6K 3M1 CA";}}s:5:"admin";a:5:{s:5:"email";s:27:"VpFDMjMCqyQ@securewhois.com";s:5:"phone";s:13:"+1.4165385428";s:3:"fax";s:13:"+1.4163520113";s:4:"name";s:17:"SecureWhois, Inc.";s:7:"address";a:3:{i:0;s:17:"SecureWhois, Inc.";i:1;s:8:"96 Mowat";i:2;s:22:"Toronto, ON M6K 3M1 CA";}}s:7:"billing";a:5:{s:5:"email";s:27:"VpFDMjMCqyQ@securewhois.com";s:5:"phone";s:13:"+1.4165385428";s:3:"fax";s:13:"+1.4163520113";s:4:"name";s:17:"SecureWhois, Inc.";s:7:"address";a:3:{i:0;s:17:"SecureWhois, Inc.";i:1;s:8:"96 Mowat";i:2;s:22:"Toronto, ON M6K 3M1 CA";}}s:4:"tech";a:5:{s:5:"email";s:27:"VpFDMjMCqyQ@securewhois.com";s:5:"phone";s:13:"+1.4165385428";s:3:"fax";s:13:"+1.4163520113";s:4:"name";s:17:"SecureWhois, Inc.";s:7:"address";a:3:{i:0;s:17:"SecureWhois, Inc.";i:1;s:8:"96 Mowat";i:2;s:22:"Toronto, ON M6K 3M1 CA";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:39:"INNERWISE, INC. D/B/A ITSYOURDOMAIN.COM";s:8:"referrer";s:28:"http://www.itsyourdomain.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:18:"domain =sexido.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:23:"whois.itsyourdomain.com";s:4:"args";s:10:"sexido.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:16:"interdominio.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:6:{s:4:"name";s:16:"interdominio.com";s:7:"nserver";a:2:{s:14:"esiami.tsai.es";s:14:"194.224.53.114";s:15:"esiami2.tsai.es";s:14:"194.224.53.120";}s:6:"status";a:2:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";}s:7:"changed";s:10:"2007-12-11";s:7:"created";s:10:"1997-02-10";s:7:"expires";s:10:"2017-02-11";}s:10:"registered";s:3:"yes";s:5:"owner";a:6:{s:6:"handle";s:18:"PROP-1052-00030339";s:4:"name";s:15:"INTERDOMAIN S.A";s:12:"organization";s:15:"INTERDOMAIN S.A";s:7:"address";a:5:{s:6:"street";s:30:"SOR ANGELA DE LA CRUZ, 10, 1 C";s:4:"city";s:6:"MADRID";s:5:"state";s:6:"MADRID";s:5:"pcode";s:5:"28020";s:7:"country";s:2:"ES";}s:5:"phone";s:5:"28020";s:5:"email";s:4:"null";}s:5:"admin";a:7:{s:6:"handle";s:13:"1052-00023552";s:4:"name";s:16:"INTERDOMAIN S.A.";s:12:"organization";s:16:"INTERDOMAIN S.A.";s:7:"address";a:5:{s:6:"street";s:38:"GENERAL PERON 38 EDIFICIO MASTER II 8?";s:4:"city";s:6:"MADRID";s:5:"state";s:6:"MADRID";s:5:"pcode";s:5:"28020";s:7:"country";s:2:"ES";}s:5:"phone";s:13:"+34.915848780";s:3:"fax";s:13:"+34.915569793";s:5:"email";s:28:"RENOVACIONES@INTERDOMAIN.ORG";}s:4:"tech";a:7:{s:6:"handle";s:13:"1052-00090330";s:4:"name";s:20:"Departamento t?cnico";s:12:"organization";s:15:"Interdomain S.A";s:7:"address";a:5:{s:6:"street";s:29:"C/Doctor Esquerdo, 61 Plta. 4";s:4:"city";s:6:"Madrid";s:5:"state";s:6:"Madrid";s:5:"pcode";s:5:"28007";s:7:"country";s:2:"ES";}s:5:"phone";s:13:"+34.915848780";s:3:"fax";s:13:"+34.914095650";s:5:"email";s:20:"info@interdomain.org";}}s:8:"regyinfo";a:4:{s:9:"registrar";s:17:"INTERDOMAIN, S.A.";s:8:"referrer";s:25:"http://www.interdomain.es";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:24:"domain =interdominio.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:21:"whois.interdomain.net";s:4:"args";s:16:"interdominio.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:8:"inww.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:6:{s:4:"name";s:8:"inww.com";s:7:"nserver";a:2:{s:19:"ns1.melbourneit.com";s:13:"203.27.227.50";s:19:"ns2.melbourneit.com";s:14:"203.31.199.135";}s:6:"status";a:2:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";}s:7:"changed";s:10:"2006-10-20";s:7:"created";s:10:"2000-03-30";s:7:"expires";s:10:"2010-11-18";}s:10:"registered";s:3:"yes";s:5:"owner";a:2:{s:4:"name";s:16:"Melbourne IT Ltd";s:7:"address";a:5:{i:0;s:24:"Level 2, 120 King Street";i:1;s:9:"Melbourne";i:2;s:4:"3000";i:3;s:3:"Vic";i:4;s:9:"AUSTRALIA";}}s:5:"admin";a:4:{s:4:"name";s:15:"Account Manager";s:7:"address";a:5:{i:0;s:24:"Level 2, 120 King Street";i:1;s:9:"Melbourne";i:2;s:4:"3000";i:3;s:3:"Vic";i:4;s:9:"AUSTRALIA";}s:5:"email";s:19:"cdm@melbourneit.com";s:5:"phone";s:13:"+61.386242465";}s:4:"tech";a:4:{s:4:"name";s:15:"Account Manager";s:7:"address";a:5:{i:0;s:24:"Level 2, 120 King Street";i:1;s:9:"Melbourne";i:2;s:4:"3000";i:3;s:3:"Vic";i:4;s:9:"AUSTRALIA";}s:5:"email";s:19:"cdm@melbourneit.com";s:5:"phone";s:13:"+61.386242465";}}s:8:"regyinfo";a:4:{s:9:"registrar";s:49:"MELBOURNE IT, LTD. D/B/A INTERNET NAMES WORLDWIDE";s:8:"referrer";s:26:"http://www.melbourneit.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:16:"domain =inww.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:21:"whois.melbourneit.com";s:4:"args";s:8:"inww.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:9:"joker.com";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:7:{s:4:"name";s:9:"joker.com";s:7:"nserver";a:3:{s:14:"j.ns.joker.com";s:12:"69.39.224.29";s:14:"k.ns.joker.com";s:12:"159.25.49.66";s:14:"l.ns.joker.com";s:14:"207.44.185.100";}s:6:"status";a:4:{i:0;s:22:"clientDeleteProhibited";i:1;s:21:"clientRenewProhibited";i:2;s:24:"clientTransferProhibited";i:3;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2008-02-25";s:7:"created";s:10:"1994-11-27";s:7:"expires";s:10:"2012-08-03";s:7:"sponsor";a:3:{i:0;s:36:"CSL Computer Service Langenbach GmbH";i:1;s:20:"Duesseldorf, Germany";i:2;s:34:"Visit www.joker.com to get Domains";}}s:10:"registered";s:3:"yes";s:5:"admin";a:9:{s:6:"handle";s:7:"CCOM-58";s:6:"person";s:3:"n/a";s:12:"organization";s:36:"CSL Computer Service Langenbach GmbH";s:5:"email";s:15:"admin@joker.com";s:7:"address";s:18:"Hansaallee 191-193";s:4:"city";s:11:"Duesseldorf";s:11:"postal-code";s:5:"40549";s:7:"country";s:2:"DE";s:5:"phone";s:13:"+49.211867670";}s:4:"tech";a:10:{s:6:"handle";s:10:"CCOM-53728";s:6:"person";s:3:"n/a";s:12:"organization";s:35:"CSL Computerservice Langenbach GmbH";s:5:"email";s:20:"hostmaster@joker.com";s:7:"address";s:18:"Hansaallee 191-193";s:4:"city";s:11:"Duesseldorf";s:5:"state";s:3:"NRW";s:11:"postal-code";s:5:"40549";s:7:"country";s:2:"DE";s:5:"phone";s:13:"+49.211867670";}s:7:"billing";a:10:{s:6:"handle";s:10:"CCOM-53728";s:6:"person";s:3:"n/a";s:12:"organization";s:35:"CSL Computerservice Langenbach GmbH";s:5:"email";s:20:"hostmaster@joker.com";s:7:"address";s:18:"Hansaallee 191-193";s:4:"city";s:11:"Duesseldorf";s:5:"state";s:3:"NRW";s:11:"postal-code";s:5:"40549";s:7:"country";s:2:"DE";s:5:"phone";s:13:"+49.211867670";}s:5:"owner";a:5:{s:4:"name";s:3:"n/a";s:12:"organization";s:35:"CSL Computerservice Langenbach GmbH";s:5:"email";s:20:"hostmaster@joker.com";s:7:"address";a:5:{s:6:"street";s:18:"Hansaallee 191-193";s:4:"city";s:11:"Duesseldorf";s:5:"pcode";s:5:"40549";s:7:"country";s:2:"DE";s:5:"state";s:3:"NRW";}s:10:"registered";s:3:"yes";}}s:8:"regyinfo";a:4:{s:9:"registrar";s:47:"COMPUTER SERVICES LANGENBACH GMBH DBA JOKER.COM";s:8:"referrer";s:20:"http://www.joker.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:17:"domain =joker.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:15:"whois.joker.com";s:4:"args";s:9:"joker.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:11:"moniker.com";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:6:{s:4:"name";s:11:"moniker.com";s:7:"nserver";a:4:{s:21:"ns1.domainservice.com";s:13:"208.73.210.41";s:21:"ns2.domainservice.com";s:13:"208.73.211.42";s:21:"ns3.domainservice.com";s:13:"208.73.210.43";s:21:"ns4.domainservice.com";s:13:"208.73.211.44";}s:6:"status";a:3:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";i:2;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2008-04-16";s:7:"created";s:10:"2004-03-18";s:7:"expires";s:10:"2015-03-18";}s:10:"registered";s:3:"yes";s:5:"owner";a:2:{s:4:"name";s:23:"Moniker Online Services";s:7:"address";a:6:{i:0;s:15:"20 SW 27th Ave.";i:1;s:9:"Suite 201";i:2;s:13:"POMPANO BEACH";i:3;s:2:"FL";i:4;s:5:"33069";i:5;s:2:"US";}}s:5:"admin";a:5:{s:5:"email";s:19:"support@moniker.com";s:4:"name";s:36:"Domain Services Domain Registrations";s:5:"phone";s:13:"+1.9549848445";s:3:"fax";s:13:"+1.9549699155";s:7:"address";a:7:{i:1;s:23:"Moniker Online Services";i:2;s:15:"20 SW 27th Ave.";i:3;s:9:"Suite 201";i:4;s:13:"POMPANO BEACH";i:5;s:2:"FL";i:6;s:5:"33069";i:7;s:2:"US";}}s:7:"billing";a:5:{s:5:"email";s:19:"support@moniker.com";s:4:"name";s:36:"Domain Services Domain Registrations";s:5:"phone";s:13:"+1.9549848445";s:3:"fax";s:13:"+1.9549699155";s:7:"address";a:7:{i:1;s:23:"Moniker Online Services";i:2;s:15:"20 SW 27th Ave.";i:3;s:9:"Suite 201";i:4;s:13:"POMPANO BEACH";i:5;s:2:"FL";i:6;s:5:"33069";i:7;s:2:"US";}}s:4:"tech";a:5:{s:5:"email";s:19:"support@moniker.com";s:4:"name";s:36:"Domain Services Domain Registrations";s:5:"phone";s:13:"+1.9549848445";s:3:"fax";s:13:"+1.9549699155";s:7:"address";a:7:{i:1;s:23:"Moniker Online Services";i:2;s:15:"20 SW 27th Ave.";i:3;s:9:"Suite 201";i:4;s:13:"POMPANO BEACH";i:5;s:2:"FL";i:6;s:5:"33069";i:7;s:2:"US";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:29:"MONIKER ONLINE SERVICES, INC.";s:8:"referrer";s:33:"http://www.moniker.com/whois.html";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:19:"domain =moniker.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:17:"whois.moniker.com";s:4:"args";s:11:"moniker.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:13:"namejuice.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:7:{s:4:"name";s:13:"namejuice.com";s:7:"nserver";a:4:{s:22:"dns1.nameresolvers.com";s:13:"209.167.25.28";s:22:"dns2.nameresolvers.com";s:13:"209.167.25.29";s:22:"dns3.nameresolvers.com";s:12:"66.48.66.179";s:22:"dns4.nameresolvers.com";s:12:"66.48.66.180";}s:6:"status";a:2:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";}s:7:"changed";s:10:"2007-01-10";s:7:"created";s:10:"2004-03-25";s:7:"expires";s:10:"2013-10-09";s:7:"sponsor";s:26:"Domain Registry of America";}s:10:"registered";s:3:"yes";s:5:"owner";a:6:{s:5:"phone";s:13:"+1.9054152681";s:3:"fax";s:13:"+1.9054152682";s:5:"email";s:23:"registrar@namejuice.com";s:4:"name";s:19:"Domain Registrar";s:12:"organization";s:35:"Brandon Gray Internet Services Inc.";s:7:"address";a:4:{i:0;s:15:"7100 Warden Ave";i:1;s:6:"Unit 8";i:2;s:7:"Markham";i:3;s:19:"ON, L3R 8B5 CA";}}s:5:"admin";a:6:{s:5:"phone";s:13:"+1.9054152681";s:3:"fax";s:13:"+1.9054152682";s:5:"email";s:23:"registrar@namejuice.com";s:4:"name";s:19:"Domain Registrar";s:12:"organization";s:35:"Brandon Gray Internet Services Inc.";s:7:"address";a:4:{i:0;s:15:"7100 Warden Ave";i:1;s:6:"Unit 8";i:2;s:7:"Markham";i:3;s:19:"ON, L3R 8B5 CA";}}s:4:"tech";a:6:{s:5:"phone";s:13:"+1.9054152681";s:3:"fax";s:13:"+1.9054152682";s:5:"email";s:23:"registrar@namejuice.com";s:4:"name";s:19:"Domain Registrar";s:12:"organization";s:35:"Brandon Gray Internet Services Inc.";s:7:"address";a:4:{i:0;s:15:"7100 Warden Ave";i:1;s:6:"Unit 8";i:2;s:7:"Markham";i:3;s:19:"ON, L3R 8B5 CA";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:54:"BRANDON GRAY INTERNET SERVICES, INC. DBA NAMEJUICE.COM";s:8:"referrer";s:24:"http://www.namejuice.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:21:"domain =namejuice.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:19:"whois.namejuice.com";s:4:"args";s:13:"namejuice.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:15:"namesdirect.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:7:{s:4:"name";s:15:"namesdirect.com";s:7:"nserver";a:2:{s:19:"ns1.namesdirect.com";s:13:"64.94.117.194";s:19:"ns2.namesdirect.com";s:12:"63.251.83.81";}s:6:"status";a:3:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";i:2;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2008-04-22";s:7:"created";s:10:"2002-06-12";s:7:"expires";s:10:"2010-10-27";s:7:"sponsor";s:11:"NAMESDIRECT";}s:10:"registered";s:3:"yes";s:5:"owner";a:2:{s:4:"name";s:12:"Dotster Inc.";s:7:"address";a:4:{i:0;s:18:"8100 NE Parkway DR";i:1;s:9:"Suite 300";i:2;s:20:"Vancouver, WA 98662";i:3;s:2:"US";}}s:5:"admin";a:5:{s:5:"email";s:19:"domains@dotster.com";s:4:"name";s:13:"Domain Admin,";s:5:"phone";s:13:"+1.3602532210";s:3:"fax";s:13:"+1.3602534234";s:7:"address";a:5:{i:1;s:12:"Dotster Inc.";i:2;s:18:"8100 NE Parkway DR";i:3;s:9:"Suite 300";i:4;s:20:"Vancouver, WA 98662";i:5;s:2:"US";}}s:4:"tech";a:5:{s:5:"email";s:19:"domains@dotster.com";s:4:"name";s:13:"Domain Admin,";s:5:"phone";s:13:"+1.3602532210";s:3:"fax";s:13:"+1.3602534234";s:7:"address";a:5:{i:1;s:12:"Dotster Inc.";i:2;s:18:"8100 NE Parkway DR";i:3;s:9:"Suite 300";i:4;s:20:"Vancouver, WA 98662";i:5;s:2:"US";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:14:"MYDOMAIN, INC.";s:8:"referrer";s:26:"http://www.namesdirect.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:23:"domain =namesdirect.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:21:"whois.namesdirect.com";s:4:"args";s:15:"namesdirect.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:20:"networksolutions.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:6:{s:4:"name";s:20:"networksolutions.com";s:7:"nserver";a:3:{s:14:"ns1.netsol.com";s:15:"205.178.190.164";s:14:"ns2.netsol.com";s:14:"205.178.184.21";s:14:"ns3.netsol.com";s:15:"205.178.190.165";}s:6:"status";a:3:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";i:2;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2006-06-26";s:7:"created";s:10:"1998-04-27";s:7:"expires";s:10:"2016-04-27";}s:10:"registered";s:3:"yes";s:5:"owner";a:3:{s:4:"name";s:22:"Network Solutions, LLC";s:12:"organization";s:21:"Network Solutions LLC";s:7:"address";a:3:{i:0;s:37:"13861 Sunrise Valley Drive, Suite 300";i:1;s:17:"HERNDON, VA 20171";i:2;s:2:"US";}}s:5:"admin";a:6:{s:5:"email";s:34:"nocsupervisor@networksolutions.com";s:4:"name";s:22:"Network Solutions, LLC";s:3:"fax";s:12:"703-668-5817";s:5:"phone";s:12:"570-708-8788";s:12:"organization";s:21:"Network Solutions LLC";s:7:"address";a:3:{i:0;s:37:"13861 Sunrise Valley Drive, Suite 300";i:1;s:17:"HERNDON, VA 20171";i:2;s:2:"US";}}s:4:"tech";a:6:{s:5:"email";s:34:"nocsupervisor@networksolutions.com";s:4:"name";s:22:"Network Solutions, LLC";s:3:"fax";s:12:"703-668-5817";s:5:"phone";s:12:"570-708-8788";s:12:"organization";s:21:"Network Solutions LLC";s:7:"address";a:3:{i:0;s:37:"13861 Sunrise Valley Drive, Suite 300";i:1;s:17:"HERNDON, VA 20171";i:2;s:2:"US";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:23:"NETWORK SOLUTIONS, LLC.";s:8:"referrer";s:31:"http://www.networksolutions.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:28:"domain =networksolutions.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:26:"whois.networksolutions.com";s:4:"args";s:20:"networksolutions.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:11:"nicline.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:6:{s:4:"name";s:11:"nicline.com";s:7:"nserver";a:2:{s:16:"dns1.nicline.com";s:14:"217.76.128.230";s:16:"dns2.nicline.com";s:14:"217.76.129.230";}s:6:"status";a:1:{i:0;s:24:"clientTransferProhibited";}s:7:"changed";s:10:"2007-04-25";s:7:"created";s:10:"2000-03-13";s:7:"expires";s:10:"2015-03-13";}s:10:"registered";s:3:"yes";s:5:"owner";a:4:{s:5:"email";s:19:"nicline@nicline.com";s:5:"phone";s:13:"+34 659950222";s:4:"name";s:28:"Nic Line, S.L. (SROW-69535)";s:7:"address";a:4:{i:0;s:14:"Nic Line, S.L.";i:1;s:11:"Barrera, 22";i:2;s:12:"Logrono 26";i:3;s:10:"26005 ES";}}s:5:"admin";a:4:{s:5:"email";s:19:"nicline@nicline.com";s:5:"phone";s:13:"+34 659950222";s:4:"name";s:29:"Nic Line, S.L. (SRCO-74144)";s:7:"address";a:3:{i:0;s:11:"Barrera, 22";i:1;s:12:"Logrono 26";i:2;s:10:"26005 ES";}}s:4:"tech";a:4:{s:5:"email";s:19:"nicline@nicline.com";s:5:"phone";s:13:"+34 659950222";s:4:"name";s:29:"Nic Line, S.L. (SRCO-74144)";s:7:"address";a:3:{i:0;s:11:"Barrera, 22";i:1;s:12:"Logrono 26";i:2;s:10:"26005 ES";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:38:"ARSYS INTERNET, S.L. D/B/A NICLINE.COM";s:8:"referrer";s:22:"http://www.nicline.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:19:"domain =nicline.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:17:"whois.nicline.com";s:4:"args";s:11:"nicline.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:13:"nominalia.com";a:2:{s:8:"regrinfo";a:4:{s:6:"domain";a:6:{s:4:"name";s:13:"nominalia.com";s:7:"nserver";a:2:{s:18:"dns1.nominalia.com";s:13:"217.14.44.228";s:18:"dns2.nominalia.com";s:15:"213.151.118.169";}s:6:"status";a:1:{i:0;s:2:"ok";}s:7:"changed";s:10:"2008-05-08";s:7:"created";s:10:"2008-02-07";s:7:"expires";s:10:"2013-11-30";}s:10:"registered";s:3:"yes";s:5:"owner";a:2:{s:4:"name";s:23:"NOMINALIA INTERNET S.L.";s:7:"address";a:4:{s:6:"street";s:45:"Josep Pla, 2. Torres Diagonal Litoral, B3, 3D";s:4:"city";s:9:"Barcelona";s:5:"pcode";s:8:"ES-08019";s:7:"country";s:2:"ES";}}s:5:"admin";a:6:{s:12:"organization";s:23:"Nominalia Internet S.L.";s:4:"name";s:19:"Jordi Hinojosa null";s:7:"address";a:4:{s:6:"street";s:50:"C/Josep Plà, Edifici Torres Diagonal B3, 3ª Planta";s:4:"city";s:9:"Barcelona";s:5:"pcode";s:5:"08019";s:7:"country";s:2:"ES";}s:5:"email";s:22:"hinojosa@nominalia.com";s:5:"phone";s:13:"+34 935074360";s:3:"fax";s:13:"+34 933102360";}}s:8:"regyinfo";a:4:{s:9:"registrar";s:23:"NOMINALIA INTERNET S.L.";s:8:"referrer";s:24:"http://www.nominalia.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:21:"domain =nominalia.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:19:"whois.nominalia.com";s:4:"args";s:13:"nominalia.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:10:"tucows.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:7:{s:4:"name";s:10:"tucows.com";s:7:"nserver";a:3:{s:15:"dns1.tucows.com";s:12:"216.40.37.11";s:15:"dns2.tucows.com";s:12:"216.40.37.12";s:15:"dns3.tucows.com";s:12:"216.40.46.59";}s:6:"status";a:3:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";i:2;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2007-11-10";s:7:"created";s:10:"1995-09-07";s:7:"expires";s:10:"2008-09-06";s:7:"sponsor";s:12:"TUCOWS, INC.";}s:10:"registered";s:3:"yes";s:5:"owner";a:2:{s:4:"name";s:13:"Tucows.com Co";s:7:"address";a:3:{i:0;s:15:"96 Mowat Avenue";i:1;s:23:"Toronto, Ontario M6K3M1";i:2;s:2:"CA";}}s:5:"admin";a:4:{s:5:"email";s:19:"dnsadmin@tucows.com";s:4:"name";s:18:"Administrator, DNS";s:5:"phone";s:18:"+1.4165350123x0000";s:7:"address";a:3:{i:1;s:15:"96 Mowat Avenue";i:2;s:23:"Toronto, Ontario M6K3M1";i:3;s:2:"CA";}}s:4:"tech";a:4:{s:5:"email";s:19:"dnsadmin@tucows.com";s:4:"name";s:18:"Administrator, DNS";s:5:"phone";s:18:"+1.4165350123x0000";s:7:"address";a:3:{i:1;s:15:"96 Mowat Avenue";i:2;s:23:"Toronto, Ontario M6K3M1";i:3;s:2:"CA";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:11:"TUCOWS INC.";s:8:"referrer";s:29:"http://domainhelp.opensrs.net";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:18:"domain =tucows.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:16:"whois.tucows.com";s:4:"args";s:10:"tucows.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:12:"register.com";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:7:{s:4:"name";s:12:"register.com";s:7:"nserver";a:4:{s:16:"ns1.register.com";s:13:"216.21.228.20";s:16:"ns2.register.com";s:14:"216.21.224.154";s:16:"ns3.register.com";s:13:"216.21.228.21";s:16:"ns4.register.com";s:14:"216.21.224.155";}s:6:"status";a:3:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";i:2;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2006-06-09";s:7:"created";s:10:"1999-08-04";s:7:"expires";s:10:"2015-08-04";s:7:"sponsor";s:12:"Register.com";}s:10:"registered";s:3:"yes";s:5:"owner";a:5:{s:5:"phone";s:12:"212-798-9100";s:3:"fax";s:12:"212-798-5464";s:5:"email";s:28:"domainregistrar@register.com";s:4:"name";s:18:"Register.Com, Inc.";s:7:"address";a:4:{i:0;s:16:"Domain Registrar";i:1;s:29:"575 Eighth Avenue, 11th Floor";i:2;s:18:"New York, NY 10018";i:3;s:2:"US";}}s:5:"admin";a:5:{s:5:"phone";s:12:"212-798-9100";s:3:"fax";s:12:"212-798-5464";s:5:"email";s:28:"domainregistrar@register.com";s:4:"name";s:18:"Register.Com, Inc.";s:7:"address";a:4:{i:0;s:16:"Domain Registrar";i:1;s:29:"575 Eighth Avenue, 11th Floor";i:2;s:18:"New York, NY 10018";i:3;s:2:"US";}}s:4:"tech";a:5:{s:5:"phone";s:12:"212-798-9100";s:3:"fax";s:12:"212-798-5464";s:5:"email";s:28:"domainregistrar@register.com";s:4:"name";s:18:"Register.Com, Inc.";s:7:"address";a:4:{i:0;s:16:"Domain Registrar";i:1;s:29:"575 Eighth Avenue, 11th Floor";i:2;s:18:"New York, NY 10018";i:3;s:2:"US";}}s:4:"zone";a:5:{s:5:"phone";s:12:"212-798-9100";s:3:"fax";s:12:"212-798-5464";s:5:"email";s:28:"domainregistrar@register.com";s:4:"name";s:18:"Register.Com, Inc.";s:7:"address";a:4:{i:0;s:16:"Domain Registrar";i:1;s:29:"575 Eighth Avenue, 11th Floor";i:2;s:18:"New York, NY 10018";i:3;s:2:"US";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:18:"REGISTER.COM, INC.";s:8:"referrer";s:23:"http://www.register.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:20:"domain =register.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:18:"whois.register.com";s:4:"args";s:12:"register.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:11:"schlund.com";a:2:{s:8:"regrinfo";a:7:{s:6:"domain";a:6:{s:4:"name";s:11:"schlund.com";s:7:"nserver";a:2:{s:14:"nsa.schlund.de";s:13:"195.20.224.98";s:15:"nsa2.schlund.de";s:12:"195.20.244.5";}s:6:"status";s:26:"CLIENT-TRANSFER-PROHIBITED";s:7:"changed";s:10:"2007-10-10";s:7:"created";s:10:"1996-10-10";s:7:"expires";s:10:"2008-10-09";}s:10:"registered";s:3:"yes";s:5:"owner";a:4:{s:4:"name";a:2:{s:5:"first";s:5:"Achim";s:4:"last";s:5:"Weiss";}s:12:"organization";s:18:"Schlund+Partner AG";s:7:"address";a:4:{s:6:"street";a:1:{i:0;s:13:"Brauerstr. 48";}s:5:"pcode";s:5:"76135";s:4:"city";s:9:"Karlsruhe";s:7:"country";s:2:"DE";}s:5:"phone";s:13:"+49.721913740";}s:5:"onwer";a:1:{s:5:"email";s:21:"hostmaster@schlund.de";}s:5:"admin";a:5:{s:4:"name";a:2:{s:5:"first";s:5:"Achim";s:4:"last";s:5:"Weiss";}s:12:"organization";s:18:"Schlund+Partner AG";s:7:"address";a:4:{s:6:"street";a:1:{i:0;s:13:"Brauerstr. 48";}s:5:"pcode";s:5:"76135";s:4:"city";s:9:"Karlsruhe";s:7:"country";s:2:"DE";}s:5:"phone";s:13:"+49.721913740";s:5:"email";s:21:"hostmaster@schlund.de";}s:4:"tech";a:5:{s:4:"name";a:2:{s:5:"first";s:10:"Hostmaster";s:4:"last";s:7:"SCHLUND";}s:12:"organization";s:20:"Schlund + Partner AG";s:7:"address";a:4:{s:6:"street";a:1:{i:0;s:13:"Brauerstr. 48";}s:5:"pcode";s:5:"76135";s:4:"city";s:9:"Karlsruhe";s:7:"country";s:2:"DE";}s:5:"phone";s:14:"+49.7219137450";s:5:"email";s:21:"hostmaster@schlund.de";}s:7:"billing";a:5:{s:4:"name";a:2:{s:5:"first";s:10:"Hostmaster";s:4:"last";s:7:"SCHLUND";}s:12:"organization";s:20:"Schlund + Partner AG";s:7:"address";a:4:{s:6:"street";a:1:{i:0;s:13:"Brauerstr. 48";}s:5:"pcode";s:5:"76135";s:4:"city";s:9:"Karlsruhe";s:7:"country";s:2:"DE";}s:5:"phone";s:14:"+49.7219137450";s:5:"email";s:21:"hostmaster@schlund.de";}}s:8:"regyinfo";a:4:{s:9:"registrar";s:18:"SCHLUND+PARTNER AG";s:8:"referrer";s:29:"http://REGISTRAR.SCHLUND.INFO";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:19:"domain =schlund.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:18:"whois.schlund.info";s:4:"args";s:11:"schlund.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:9:"olsns.com";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:6:{s:4:"name";s:9:"olsns.com";s:7:"nserver";a:2:{s:14:"a.ns.olsns.com";s:13:"213.195.75.88";s:14:"b.ns.olsns.com";s:15:"212.100.254.118";}s:6:"status";a:1:{i:0;s:24:"clientTransferProhibited";}s:7:"changed";s:10:"2008-02-17";s:7:"created";s:10:"2001-02-21";s:7:"expires";s:10:"2009-02-21";}s:10:"registered";s:3:"yes";s:5:"owner";a:5:{s:5:"email";s:13:"domreg@ols.es";s:4:"name";s:27:"On-Line Services 2000, S.L.";s:5:"phone";s:11:"34902502975";s:12:"organization";s:27:"On-Line Services 2000, S.L.";s:7:"address";a:3:{i:0;s:16:"Pintor Vayreda 1";i:1;s:33:"Palau-Solita i Plegamans, 08184";i:2;s:2:"ES";}}s:5:"admin";a:5:{s:5:"email";s:13:"domreg@ols.es";s:4:"name";s:10:"David Saez";s:5:"phone";s:13:"+34 902502975";s:12:"organization";s:27:"On-Line Services 2000, S.L.";s:7:"address";a:3:{i:0;s:16:"Pintor Vayreda 1";i:1;s:37:"Palau-Solita i Plegamans, NONE 08184";i:2;s:2:"ES";}}s:4:"tech";a:5:{s:5:"email";s:13:"domreg@ols.es";s:4:"name";s:10:"David Saez";s:5:"phone";s:13:"+34 902502975";s:12:"organization";s:27:"On-Line Services 2000, S.L.";s:7:"address";a:3:{i:0;s:16:"Pintor Vayreda 1";i:1;s:37:"Palau-Solita i Plegamans, NONE 08184";i:2;s:2:"ES";}}s:7:"billing";a:5:{s:5:"email";s:13:"domreg@ols.es";s:4:"name";s:10:"David Saez";s:5:"phone";s:13:"+34 902502975";s:12:"organization";s:27:"On-Line Services 2000, S.L.";s:7:"address";a:3:{i:0;s:16:"Pintor Vayreda 1";i:1;s:37:"Palau-Solita i Plegamans, NONE 08184";i:2;s:2:"ES";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:21:"TLDS, LLC DBA SRSPLUS";s:8:"referrer";s:22:"http://www.srsplus.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:17:"domain =olsns.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:17:"whois.srsplus.com";s:4:"args";s:9:"olsns.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:12:"stargate.com";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:6:{s:4:"name";s:12:"stargate.com";s:7:"nserver";a:2:{s:20:"dns1.stargateinc.net";s:11:"67.96.171.4";s:20:"dns2.stargateinc.net";s:11:"67.96.171.6";}s:6:"status";s:6:"LOCKED";s:7:"changed";s:10:"2008-04-29";s:7:"created";s:10:"1986-08-05";s:7:"expires";s:10:"2015-08-04";}s:10:"registered";s:3:"yes";s:5:"owner";a:6:{s:5:"email";s:24:"tchaffin@stargateinc.com";s:4:"name";s:23:"Stargate Holdings Corp.";s:5:"phone";s:13:"+1.6303691651";s:3:"fax";s:13:"+1.6303694663";s:12:"organization";s:14:"Not Applicable";s:7:"address";a:4:{i:0;s:14:"40 Shuman Blvd";i:1;s:10:"Naperville";i:2;s:8:"IL,60563";i:3;s:2:"US";}}s:5:"admin";a:6:{s:5:"email";s:17:"tomc@stargate.com";s:4:"name";s:5:"Tom C";s:5:"phone";s:13:"+1.6303691651";s:3:"fax";s:13:"+1.6303694663";s:12:"organization";s:14:"Not Applicable";s:7:"address";a:4:{i:0;s:14:"40 Shuman Blvd";i:1;s:10:"Naperville";i:2;s:8:"IL,60563";i:3;s:2:"US";}}s:4:"tech";a:6:{s:5:"email";s:17:"tomc@stargate.com";s:4:"name";s:5:"Tom C";s:5:"phone";s:13:"+1.6303691651";s:3:"fax";s:13:"+1.6303694663";s:12:"organization";s:14:"Not Applicable";s:7:"address";a:4:{i:0;s:14:"40 Shuman Blvd";i:1;s:10:"Naperville";i:2;s:8:"IL,60563";i:3;s:2:"US";}}s:7:"billing";a:6:{s:5:"email";s:17:"tomc@stargate.com";s:4:"name";s:5:"Tom C";s:5:"phone";s:13:"+1.6303691651";s:3:"fax";s:13:"+1.6303694663";s:12:"organization";s:14:"Not Applicable";s:7:"address";a:4:{i:0;s:14:"40 Shuman Blvd";i:1;s:10:"Naperville";i:2;s:8:"IL,60563";i:3;s:2:"US";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:23:"STARGATE HOLDINGS CORP.";s:8:"referrer";s:26:"http://www.stargateinc.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:20:"domain =stargate.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:21:"whois.stargateinc.com";s:4:"args";s:12:"stargate.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:6:"sex.tv";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:6:{s:4:"name";s:6:"sex.tv";s:7:"nserver";a:2:{s:18:"dns1.colosseum.com";s:12:"216.95.249.3";s:18:"dns2.colosseum.com";s:12:"216.95.249.4";}s:6:"status";s:22:"CLIENT-XFER-PROHIBITED";s:7:"changed";s:10:"2004-12-16";s:7:"created";s:10:"2002-07-23";s:7:"expires";s:10:"2022-07-23";}s:10:"registered";s:3:"yes";s:5:"owner";a:5:{s:5:"email";s:11:"info@sex.tv";s:4:"name";s:12:"Annetta Penn";s:12:"organization";s:24:"Blue Door Ventures, Inc.";s:5:"phone";s:15:"005999 734 1000";s:7:"address";a:3:{i:2;s:22:"Pasea Estate,Road Town";i:3;s:14:"Tortola, 0000";i:4;s:2:"VG";}}s:5:"admin";a:5:{s:5:"email";s:31:"info@sunsettradinglicensing.com";s:4:"name";s:63:"SUNSET TRADING AND LICENSING BV SUNSET TRADING AND LICENSING BV";s:12:"organization";s:31:"SUNSET TRADING AND LICENSING BV";s:5:"phone";s:17:"0031 20 640 96 06";s:7:"address";a:3:{i:2;s:18:"Startbaan 5A Suite";i:3;s:20:"Amstelveen, XP 1185";i:4;s:2:"NL";}}s:4:"tech";a:5:{s:5:"email";s:11:"info@sex.tv";s:4:"name";s:12:"Annetta Penn";s:12:"organization";s:24:"Blue Door Ventures, Inc.";s:5:"phone";s:15:"005999 734 1000";s:7:"address";a:3:{i:2;s:22:"Pasea Estate,Road Town";i:3;s:14:"Tortola, 0000";i:4;s:2:"VG";}}}s:8:"regyinfo";a:6:{s:9:"registrar";s:14:"TV CORPORATION";s:5:"whois";s:12:"whois.www.tv";s:8:"referrer";s:13:"http://www.tv";s:4:"args";s:6:"sex.tv";s:4:"port";i:43;s:4:"type";s:6:"domain";}}s:8:"nic.aero";a:2:{s:8:"regyinfo";a:4:{s:8:"referrer";s:19:"http://www.nic.aero";s:9:"registrar";s:61:"Societe Internationale de Telecommunications Aeronautiques SC";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:22:"aero.whois-servers.net";s:4:"args";s:8:"nic.aero";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}s:8:"regrinfo";a:6:{s:6:"domain";a:4:{s:6:"handle";s:9:"D122-AERO";s:4:"name";s:8:"nic.aero";s:7:"sponsor";s:11:"SITA (9999)";s:7:"nserver";a:2:{s:17:"ns01.afilias.info";s:13:"69.46.107.140";s:17:"ns02.afilias.info";s:13:"69.46.107.141";}}s:5:"owner";a:5:{s:6:"handle";s:12:"C223523-AERO";s:4:"name";s:12:".aero Office";s:12:"organization";s:7:"SITA SC";s:7:"address";a:4:{s:4:"city";s:6:"Geneva";s:5:"state";s:2:"GE";s:5:"pcode";s:7:"CH-1216";s:7:"country";s:2:"CH";}s:5:"email";s:24:"aero.enquiries@sita.aero";}s:5:"admin";a:5:{s:6:"handle";s:12:"C223523-AERO";s:4:"name";s:12:".aero Office";s:12:"organization";s:7:"SITA SC";s:7:"address";a:4:{s:4:"city";s:6:"Geneva";s:5:"state";s:2:"GE";s:5:"pcode";s:7:"CH-1216";s:7:"country";s:2:"CH";}s:5:"email";s:24:"aero.enquiries@sita.aero";}s:7:"billing";a:5:{s:6:"handle";s:12:"C223523-AERO";s:4:"name";s:12:".aero Office";s:12:"organization";s:7:"SITA SC";s:7:"address";a:4:{s:4:"city";s:6:"Geneva";s:5:"state";s:2:"GE";s:5:"pcode";s:7:"CH-1216";s:7:"country";s:2:"CH";}s:5:"email";s:24:"aero.enquiries@sita.aero";}s:4:"tech";a:5:{s:6:"handle";s:13:"C7433457-AERO";s:4:"name";s:15:"Afilias Limited";s:12:"organization";s:15:"Afilias Limited";s:7:"address";a:3:{s:4:"city";s:8:"Tallaght";s:5:"pcode";s:9:"Dublin 24";s:7:"country";s:2:"IE";}s:5:"email";s:20:"support@afilias.info";}s:10:"registered";s:3:"yes";}}s:12:"neulevel.biz";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:8:{s:4:"name";s:12:"neulevel.biz";s:6:"handle";s:8:"D592-BIZ";s:7:"sponsor";s:18:"REGISTRY REGISTRAR";s:6:"status";s:22:"serverUpdateProhibited";s:7:"nserver";a:6:{s:18:"pdns1.ultradns.net";s:12:"204.74.108.1";s:18:"pdns2.ultradns.net";s:12:"204.74.109.1";s:18:"pdns3.ultradns.org";s:10:"199.7.68.1";s:18:"pdns4.ultradns.org";s:10:"199.7.69.1";s:19:"pdns5.ultradns.info";s:12:"204.74.114.1";s:20:"pdns6.ultradns.co.uk";s:12:"204.74.115.1";}s:7:"created";s:10:"2001-11-07";s:7:"expires";s:10:"2008-11-06";s:7:"changed";s:10:"2007-12-22";}s:5:"owner";a:7:{s:6:"handle";s:9:"NEULEVEL1";s:4:"name";s:13:"NeuStar, Inc.";s:12:"organization";s:13:"NeuStar, Inc.";s:7:"address";a:5:{s:6:"street";a:2:{i:0;s:19:"Loudoun Tech Center";i:1;s:22:"45980 Center Oak Plaza";}s:4:"city";s:8:"Sterling";s:5:"state";s:8:"Virginia";s:5:"pcode";s:5:"20166";s:7:"country";s:13:"United States";}s:5:"phone";s:13:"+1.5714345757";s:3:"fax";s:13:"+1.5714345758";s:5:"email";s:20:"support@neulevel.biz";}s:5:"admin";a:7:{s:6:"handle";s:9:"NEULEVEL1";s:4:"name";s:13:"NeuStar, Inc.";s:12:"organization";s:13:"NeuStar, Inc.";s:7:"address";a:5:{s:6:"street";a:2:{i:0;s:19:"Loudoun Tech Center";i:1;s:22:"45980 Center Oak Plaza";}s:4:"city";s:8:"Sterling";s:5:"state";s:8:"Virginia";s:5:"pcode";s:5:"20166";s:7:"country";s:13:"United States";}s:5:"phone";s:13:"+1.5714345757";s:3:"fax";s:13:"+1.5714345758";s:5:"email";s:20:"support@neulevel.biz";}s:7:"billing";a:7:{s:6:"handle";s:9:"NEULEVEL1";s:4:"name";s:13:"NeuStar, Inc.";s:12:"organization";s:13:"NeuStar, Inc.";s:7:"address";a:5:{s:6:"street";a:2:{i:1;s:19:"Loudoun Tech Center";i:0;s:22:"45980 Center Oak Plaza";}s:4:"city";s:8:"Sterling";s:5:"state";s:8:"Virginia";s:5:"pcode";s:5:"20166";s:7:"country";s:13:"United States";}s:5:"phone";s:13:"+1.5714345757";s:3:"fax";s:13:"+1.5714345758";s:5:"email";s:20:"support@neulevel.biz";}s:4:"tech";a:7:{s:6:"handle";s:9:"NEULEVEL1";s:4:"name";s:13:"NeuStar, Inc.";s:12:"organization";s:13:"NeuStar, Inc.";s:7:"address";a:5:{s:6:"street";a:2:{i:0;s:19:"Loudoun Tech Center";i:1;s:22:"45980 Center Oak Plaza";}s:4:"city";s:8:"Sterling";s:5:"state";s:8:"Virginia";s:5:"pcode";s:5:"20166";s:7:"country";s:13:"United States";}s:5:"phone";s:13:"+1.5714345757";s:3:"fax";s:13:"+1.5714345758";s:5:"email";s:20:"support@neulevel.biz";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:23:"http://www.neulevel.biz";s:9:"registrar";s:8:"NEULEVEL";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:21:"biz.whois-servers.net";s:4:"args";s:12:"neulevel.biz";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:8:"sex.coop";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:8:{s:6:"handle";s:11:"33393D-COOP";s:4:"name";s:8:"sex.coop";s:7:"expires";s:10:"2007-09-15";s:6:"status";s:24:"clientTransferProhibited";s:7:"sponsor";s:16:"Domain Bank Inc.";s:7:"created";s:10:"2004-09-15";s:7:"changed";s:10:"2006-08-23";s:7:"nserver";a:2:{s:19:"dns3.domainbank.net";s:11:"64.94.31.73";s:19:"dns4.domainbank.net";s:13:"64.94.117.211";}}s:10:"registered";s:3:"yes";s:5:"owner";a:7:{s:6:"handle";s:11:"22379C-COOP";s:4:"name";s:14:"Chris Anderson";s:12:"organization";s:18:"Chris Anderson CPA";s:7:"address";a:5:{s:6:"street";a:1:{i:0;s:26:"5373 S. Green Street, #550";}s:4:"city";s:14:"Salt Lake City";s:5:"state";s:2:"UT";s:5:"pcode";s:5:"84123";s:7:"country";s:13:"United States";}s:5:"phone";s:13:"+1.8012321149";s:3:"fax";s:13:"+1.8012748543";s:5:"email";s:19:"chris@moneymind.com";}s:4:"tech";a:7:{s:6:"handle";s:11:"22381C-COOP";s:4:"name";s:14:"Chris Anderson";s:12:"organization";s:18:"Chris Anderson CPA";s:7:"address";a:5:{s:6:"street";a:1:{i:0;s:26:"5373 S. Green Street, #550";}s:4:"city";s:14:"Salt Lake City";s:5:"state";s:2:"UT";s:5:"pcode";s:5:"84123";s:7:"country";s:13:"United States";}s:5:"phone";s:13:"+1.8012321149";s:3:"fax";s:13:"+1.8012748543";s:5:"email";s:19:"chris@moneymind.com";}s:5:"admin";a:7:{s:6:"handle";s:11:"22380C-COOP";s:4:"name";s:14:"Chris Anderson";s:12:"organization";s:18:"Chris Anderson CPA";s:7:"address";a:5:{s:6:"street";a:1:{i:0;s:26:"5373 S. Green Street, #550";}s:4:"city";s:14:"Salt Lake City";s:5:"state";s:2:"UT";s:5:"pcode";s:5:"84123";s:7:"country";s:13:"United States";}s:5:"phone";s:13:"+1.8012321149";s:3:"fax";s:13:"+1.8012748543";s:5:"email";s:19:"chris@moneymind.com";}s:7:"billing";a:7:{s:6:"handle";s:11:"22382C-COOP";s:4:"name";s:14:"Chris Anderson";s:12:"organization";s:18:"Chris Anderson CPA";s:7:"address";a:5:{s:6:"street";a:1:{i:0;s:26:"5373 S. Green Street, #550";}s:4:"city";s:14:"Salt Lake City";s:5:"state";s:2:"UT";s:5:"pcode";s:5:"84123";s:7:"country";s:13:"United States";}s:5:"phone";s:13:"+1.8012321149";s:3:"fax";s:13:"+1.8012748543";s:5:"email";s:19:"chris@moneymind.com";}}s:8:"regyinfo";a:2:{s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:22:"coop.whois-servers.net";s:4:"args";s:8:"sex.coop";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:8:"nic.coop";a:2:{s:8:"regrinfo";a:3:{s:6:"domain";a:1:{s:4:"name";s:8:"nic.coop";}s:10:"registered";s:3:"yes";s:5:"owner";a:5:{s:4:"name";s:10:"Neil Homer";s:12:"organization";s:24:"Midcounties Co-operative";s:7:"address";a:4:{s:6:"street";a:2:{i:0;s:17:"New Barclay House";i:1;s:11:"Botley Road";}s:4:"city";s:6:"Oxford";s:5:"pcode";s:6:"OX20HP";s:7:"country";s:14:"United Kingdom";}s:5:"phone";s:14:"+44.1865256297";s:5:"email";s:16:"support@nic.coop";}}s:8:"regyinfo";a:2:{s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:22:"coop.whois-servers.net";s:4:"args";s:8:"nic.coop";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:12:"berkeley.edu";a:2:{s:8:"regrinfo";a:5:{s:5:"owner";a:2:{s:4:"name";s:36:"University of California at Berkeley";s:7:"address";a:4:{i:0;s:32:"Information Systems & Technology";i:1;s:54:"Communication and Network Services 2484 Shattuck #1640";i:2;s:23:"Berkeley, CA 94720-1640";i:3;s:13:"UNITED STATES";}}s:5:"admin";a:4:{s:5:"phone";s:14:"(510) 642-0866";s:5:"email";s:20:"noc@nak.berkeley.edu";s:4:"name";s:17:"kenneth q lindahl";s:7:"address";a:5:{i:0;s:34:"University of California, Berkeley";i:1;s:34:"Communication and Network Services";i:2;s:24:"2484 Shattuck Ave, #1640";i:3;s:23:"Berkeley, CA 94720-1640";i:4;s:13:"UNITED STATES";}}s:4:"tech";a:4:{s:5:"phone";s:14:"(510) 642-0866";s:5:"email";s:20:"noc@nak.berkeley.edu";s:4:"name";s:17:"kenneth q lindahl";s:7:"address";a:5:{i:0;s:34:"University of California, Berkeley";i:1;s:34:"Communication and Network Services";i:2;s:24:"2484 Shattuck Ave, #1640";i:3;s:23:"Berkeley, CA 94720-1640";i:4;s:13:"UNITED STATES";}}s:6:"domain";a:4:{s:7:"nserver";a:6:{s:18:"adns1.berkeley.edu";s:12:"128.32.136.3";s:18:"adns2.berkeley.edu";s:13:"128.32.136.14";s:14:"ucb-ns.nyu.edu";s:14:"192.76.177.132";s:18:"phloem.uoregon.edu";s:13:"128.223.32.35";s:13:"dns2.ucla.edu";s:12:"164.67.128.2";s:18:"ns.v6.berkeley.edu";s:12:"128.32.136.6";}s:7:"created";s:10:"1985-04-24";s:7:"changed";s:10:"2006-05-18";s:4:"name";s:12:"berkeley.edu";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:25:"http://whois.educause.net";s:9:"registrar";s:7:"EDUCASE";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:21:"edu.whois-servers.net";s:4:"args";s:12:"berkeley.edu";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:12:"afilias.info";a:2:{s:8:"regyinfo";a:4:{s:8:"referrer";s:25:"http://whois.afilias.info";s:9:"registrar";s:32:"Afilias Global Registry Services";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:22:"info.whois-servers.net";s:4:"args";s:12:"afilias.info";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}s:8:"regrinfo";a:6:{s:6:"domain";a:8:{s:6:"handle";s:9:"D217-LRMS";s:4:"name";s:12:"afilias.info";s:7:"created";s:10:"2001-07-25";s:7:"changed";s:10:"2007-11-29";s:7:"expires";s:10:"2011-07-25";s:7:"sponsor";s:24:"Afilias Ltd. (R145-LRMS)";s:6:"status";s:2:"OK";s:7:"nserver";a:3:{s:17:"ns01.afilias.info";s:13:"69.46.107.140";s:17:"ns02.afilias.info";s:13:"69.46.107.141";s:17:"ns03.afilias.info";s:13:"207.219.45.44";}}s:5:"owner";a:7:{s:6:"handle";s:9:"C270-LRMS";s:4:"name";s:15:"Afilias Limited";s:12:"organization";s:12:"Afilias Ltd.";s:7:"address";a:4:{s:6:"street";a:2:{i:0;s:10:"Office 125";i:1;s:17:"52 Broomhill Road";}s:4:"city";s:8:"Tallaght";s:5:"pcode";s:9:"Dublin 24";s:7:"country";s:2:"IE";}s:5:"phone";s:13:"+1.2157065700";s:3:"fax";s:13:"+1.2157065701";s:5:"email";s:20:"support@afilias.info";}s:5:"admin";a:7:{s:6:"handle";s:9:"C270-LRMS";s:4:"name";s:15:"Afilias Limited";s:12:"organization";s:12:"Afilias Ltd.";s:7:"address";a:4:{s:6:"street";a:2:{i:0;s:10:"Office 125";i:1;s:17:"52 Broomhill Road";}s:4:"city";s:8:"Tallaght";s:5:"pcode";s:9:"Dublin 24";s:7:"country";s:2:"IE";}s:5:"phone";s:13:"+1.2157065700";s:3:"fax";s:13:"+1.2157065701";s:5:"email";s:20:"support@afilias.info";}s:7:"billing";a:7:{s:6:"handle";s:9:"C270-LRMS";s:4:"name";s:15:"Afilias Limited";s:12:"organization";s:12:"Afilias Ltd.";s:7:"address";a:4:{s:6:"street";a:2:{i:0;s:10:"Office 125";i:1;s:17:"52 Broomhill Road";}s:4:"city";s:8:"Tallaght";s:5:"pcode";s:9:"Dublin 24";s:7:"country";s:2:"IE";}s:5:"phone";s:13:"+1.2157065700";s:3:"fax";s:13:"+1.2157065701";s:5:"email";s:20:"support@afilias.info";}s:4:"tech";a:7:{s:6:"handle";s:9:"C270-LRMS";s:4:"name";s:15:"Afilias Limited";s:12:"organization";s:12:"Afilias Ltd.";s:7:"address";a:4:{s:6:"street";a:2:{i:0;s:10:"Office 125";i:1;s:17:"52 Broomhill Road";}s:4:"city";s:8:"Tallaght";s:5:"pcode";s:9:"Dublin 24";s:7:"country";s:2:"IE";}s:5:"phone";s:13:"+1.2157065700";s:3:"fax";s:13:"+1.2157065701";s:5:"email";s:20:"support@afilias.info";}s:10:"registered";s:3:"yes";}}s:7:"who.int";a:2:{s:8:"regrinfo";a:5:{s:5:"owner";a:2:{s:12:"organization";s:31:"World Health Organization (WHO)";s:7:"address";a:5:{s:6:"street";a:2:{i:0;s:16:"20, Avenue Appia";i:1;s:9:"Geneva 27";}s:4:"city";s:6:"Geneva";s:5:"state";s:6:"Geneva";s:7:"country";s:11:"Switzerland";s:5:"pcode";s:7:"CH-1211";}}s:5:"admin";a:5:{s:4:"name";s:23:"WHO-HQ-NOC (at ITS/NTS)";s:7:"address";a:4:{s:6:"street";a:2:{i:0;s:16:"20, Avenue Appia";i:1;s:9:"Geneva 27";}s:4:"city";s:6:"Geneva";s:7:"country";s:11:"Switzerland";s:5:"pcode";s:7:"CH-1211";}s:5:"phone";s:15:"+41 22 791 2411";s:3:"fax";s:15:"+41 22 791 4779";s:5:"email";s:18:"hostmaster@who.int";}s:4:"tech";a:5:{s:4:"name";s:23:"WHO-HQ-NOC (at ITS/NTS)";s:7:"address";a:4:{s:6:"street";a:2:{i:0;s:16:"20, Avenue Appia";i:1;s:9:"Geneva 27";}s:4:"city";s:6:"Geneva";s:7:"country";s:11:"Switzerland";s:5:"pcode";s:7:"CH-1211";}s:5:"phone";s:15:"+41 22 791 2411";s:3:"fax";s:15:"+41 22 791 4779";s:5:"email";s:18:"hostmaster@who.int";}s:6:"domain";a:2:{s:7:"nserver";a:5:{s:15:"whqdns1.who.int";s:12:"158.232.12.5";s:15:"whqdns2.who.int";s:12:"158.232.12.6";s:15:"whqdns3.who.int";s:14:"193.220.114.96";s:17:"ext-dns-2.cern.ch";s:13:"192.91.245.85";s:16:"ns1.wpro.who.int";s:13:"123.176.64.11";}s:4:"name";s:7:"who.int";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:35:"http://www.iana.org/int-dom/int.htm";s:9:"registrar";s:35:"Internet Assigned Numbers Authority";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:21:"int.whois-servers.net";s:4:"args";s:7:"who.int";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:10:"nic.museum";a:2:{s:8:"regyinfo";a:4:{s:8:"referrer";s:22:"http://musedoma.museum";s:9:"registrar";s:36:"Museum Domain Management Association";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:24:"museum.whois-servers.net";s:4:"args";s:10:"nic.museum";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}s:8:"regrinfo";a:6:{s:6:"domain";a:6:{s:6:"handle";s:15:"D6137640-MUSEUM";s:4:"name";s:10:"nic.museum";s:7:"sponsor";s:19:"CORE-904 (Musedoma)";s:7:"created";s:10:"2005-04-02";s:7:"expires";s:10:"2015-04-02";s:7:"nserver";a:2:{s:12:"nic.icom.org";s:12:"195.7.65.253";s:10:"nic.frd.se";s:10:"195.7.77.3";}}s:5:"owner";a:5:{s:6:"handle";s:11:"C728-MUSEUM";s:4:"name";s:9:"Cary Karp";s:12:"organization";s:36:"Museum Domain Management Association";s:7:"address";a:4:{s:6:"street";s:17:"Frescativaegen 40";s:4:"city";s:9:"Stockholm";s:5:"pcode";s:6:"104 05";s:7:"country";s:2:"SE";}s:5:"email";s:13:"ck@nic.museum";}s:5:"admin";a:5:{s:6:"handle";s:11:"C728-MUSEUM";s:4:"name";s:9:"Cary Karp";s:12:"organization";s:36:"Museum Domain Management Association";s:7:"address";a:4:{s:6:"street";s:17:"Frescativaegen 40";s:4:"city";s:9:"Stockholm";s:5:"pcode";s:6:"104 05";s:7:"country";s:2:"SE";}s:5:"email";s:13:"ck@nic.museum";}s:4:"tech";a:5:{s:6:"handle";s:11:"C728-MUSEUM";s:4:"name";s:9:"Cary Karp";s:12:"organization";s:36:"Museum Domain Management Association";s:7:"address";a:4:{s:6:"street";a:1:{i:0;s:17:"Frescativaegen 40";}s:4:"city";s:9:"Stockholm";s:5:"pcode";s:6:"104 05";s:7:"country";s:2:"SE";}s:5:"email";s:13:"ck@nic.museum";}s:7:"billing";a:5:{s:6:"handle";s:11:"C728-MUSEUM";s:4:"name";s:9:"Cary Karp";s:12:"organization";s:36:"Museum Domain Management Association";s:7:"address";a:4:{s:6:"street";s:17:"Frescativaegen 40";s:4:"city";s:9:"Stockholm";s:5:"pcode";s:6:"104 05";s:7:"country";s:2:"SE";}s:5:"email";s:13:"ck@nic.museum";}s:10:"registered";s:3:"yes";}}s:17:"peter.morgan.name";a:2:{s:8:"regrinfo";a:2:{s:6:"domain";a:2:{s:4:"name";s:17:"peter.morgan.name";s:6:"status";s:2:"ok";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:20:"http://www.nic.name/";s:9:"registrar";s:20:"Global Name Registry";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:22:"name.whois-servers.net";s:4:"args";s:17:"peter.morgan.name";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:11:"example.org";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:7:{s:4:"name";s:11:"example.org";s:7:"created";s:10:"1995-08-31";s:7:"changed";s:10:"2004-02-18";s:7:"expires";s:10:"2010-08-30";s:7:"sponsor";s:54:"Internet Assigned Numbers Authority (IANA) (R193-LROR)";s:6:"status";a:4:{i:0;s:17:"DELETE PROHIBITED";i:1;s:16:"RENEW PROHIBITED";i:2;s:19:"TRANSFER PROHIBITED";i:3;s:17:"UPDATE PROHIBITED";}s:7:"nserver";a:2:{s:18:"a.iana-servers.net";s:11:"192.0.34.43";s:18:"b.iana-servers.net";s:11:"193.0.0.236";}}s:5:"owner";a:6:{s:6:"handle";s:4:"IANA";s:4:"name";s:35:"Internet Assigned Numbers Authority";s:7:"address";a:5:{s:7:"address";a:2:{i:0;s:18:"4676 Admiralty Way";i:1;s:9:"Suite 330";}s:4:"city";s:14:"Marina del Rey";s:5:"state";s:2:"CA";s:5:"pcode";s:5:"92092";s:7:"country";s:2:"US";}s:5:"phone";s:13:"+1.3108239358";s:3:"fax";s:13:"+1.3108238649";s:5:"email";s:16:"res-dom@iana.org";}s:5:"admin";a:6:{s:6:"handle";s:4:"IANA";s:4:"name";s:35:"Internet Assigned Numbers Authority";s:7:"address";a:4:{s:7:"address";a:2:{i:0;s:18:"4676 Admiralty Way";i:2;s:9:"Suite 330";}s:4:"city";s:14:"Marina del Rey";s:5:"pcode";s:5:"92092";s:7:"country";s:2:"US";}s:5:"phone";s:13:"+1.3108239358";s:3:"fax";s:13:"+1.3108238649";s:5:"email";s:16:"res-dom@iana.org";}s:4:"tech";a:6:{s:6:"handle";s:4:"IANA";s:4:"name";s:35:"Internet Assigned Numbers Authority";s:7:"address";a:4:{s:7:"address";a:2:{i:0;s:18:"4676 Admiralty Way";i:1;s:9:"Suite 330";}s:4:"city";s:14:"Marina del Rey";s:5:"pcode";s:5:"92092";s:7:"country";s:2:"US";}s:5:"phone";s:13:"+1.3108239358";s:3:"fax";s:13:"+1.3108238649";s:5:"email";s:16:"res-dom@iana.org";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:19:"http://www.pir.org/";s:9:"registrar";s:24:"Public Interest Registry";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:21:"org.whois-servers.net";s:4:"args";s:11:"example.org";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:15:"registrypro.pro";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:7:{s:4:"name";s:15:"registrypro.pro";s:6:"status";s:32:"serverDeleteProhibited, inactive";s:7:"created";s:10:"2004-08-18";s:7:"expires";s:10:"2016-01-26";s:7:"changed";s:10:"2000-00-00";s:7:"sponsor";s:8:"internal";s:7:"nserver";a:1:{s:10:"a.gtld.pro";s:13:"192.149.62.10";}}s:5:"owner";a:4:{s:5:"email";s:23:"support@registrypro.pro";s:5:"phone";s:13:"+1.3129947652";s:4:"name";s:35:"RegistryPro (CT897-RSC) RegistryPro";s:7:"address";a:4:{i:0;s:3:"One";i:1;s:5:"Suite";i:2;s:18:"Chicago, IL, 60602";i:3;s:2:"US";}}s:5:"admin";a:4:{s:5:"email";s:23:"support@registrypro.pro";s:5:"phone";s:13:"+1.3129947652";s:4:"name";s:35:"RegistryPro (CT897-RSC) RegistryPro";s:7:"address";a:4:{i:0;s:3:"One";i:1;s:5:"Suite";i:2;s:18:"Chicago, IL, 60602";i:3;s:2:"US";}}s:4:"tech";a:4:{s:5:"email";s:23:"support@registrypro.pro";s:5:"phone";s:13:"+1.3129947652";s:4:"name";s:35:"RegistryPro (CT897-RSC) RegistryPro";s:7:"address";a:4:{i:0;s:3:"One";i:1;s:5:"Suite";i:2;s:18:"Chicago, IL, 60602";i:3;s:2:"US";}}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:26:"http://www.registrypro.pro";s:9:"registrar";s:11:"RegistryPRO";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:18:"whois.registry.pro";s:4:"args";s:15:"registrypro.pro";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:12:"whois.travel";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:8:{s:4:"name";s:12:"whois.travel";s:6:"handle";s:13:"D24097-TRAVEL";s:7:"sponsor";s:15:"NEUSTAR GATEWAY";s:6:"status";s:22:"serverUpdateProhibited";s:7:"nserver";a:6:{s:18:"pdns1.ultradns.net";s:12:"204.74.108.1";s:18:"pdns2.ultradns.net";s:12:"204.74.109.1";s:18:"pdns3.ultradns.org";s:10:"199.7.68.1";s:18:"pdns4.ultradns.org";s:10:"199.7.69.1";s:19:"pdns5.ultradns.info";s:12:"204.74.114.1";s:20:"pdns6.ultradns.co.uk";s:12:"204.74.115.1";}s:7:"created";s:10:"2004-10-00";s:7:"expires";s:10:"2003-10-00";s:7:"changed";s:10:"2025-05-00";}s:5:"owner";a:5:{s:6:"handle";s:10:"TRALLIANCE";s:4:"name";s:22:"Tralliance Corporation";s:7:"address";a:5:{s:7:"address";a:1:{i:0;s:33:"110 East Broward Blvd, 14th floor";}s:4:"city";s:15:"Fort Lauderdale";s:5:"state";s:2:"FL";s:5:"pcode";s:5:"33301";s:7:"country";s:29:"Code US";}s:5:"phone";s:13:"+1.9547695999";s:5:"email";s:22:"info@tralliance.travel";}s:5:"admin";a:5:{s:6:"handle";s:10:"TRALLIANCE";s:4:"name";s:22:"Tralliance Corporation";s:7:"address";a:5:{s:7:"address";a:1:{i:0;s:33:"110 East Broward Blvd, 14th floor";}s:4:"city";s:15:"Fort Lauderdale";s:5:"state";s:2:"FL";s:5:"pcode";s:5:"33301";s:7:"country";s:17:"Code US";}s:5:"phone";s:13:"+1.9547695999";s:5:"email";s:22:"info@tralliance.travel";}s:4:"bill";a:5:{s:6:"handle";s:10:"TRALLIANCE";s:4:"name";s:22:"Tralliance Corporation";s:7:"address";a:5:{s:7:"address";a:1:{i:0;s:33:"110 East Broward Blvd, 14th floor";}s:4:"city";s:15:"Fort Lauderdale";s:5:"state";s:2:"FL";s:5:"pcode";s:5:"33301";s:7:"country";s:24:"Code US";}s:5:"phone";s:13:"+1.9547695999";s:5:"email";s:22:"info@tralliance.travel";}s:4:"tech";a:5:{s:6:"handle";s:10:"TRALLIANCE";s:4:"name";s:22:"Tralliance Corporation";s:7:"address";a:5:{s:7:"address";a:1:{i:0;s:33:"110 East Broward Blvd, 14th floor";}s:4:"city";s:15:"Fort Lauderdale";s:5:"state";s:2:"FL";s:5:"pcode";s:5:"33301";s:7:"country";s:22:"Code US";}s:5:"phone";s:13:"+1.9547695999";s:5:"email";s:22:"info@tralliance.travel";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:22:"http://www.nic.travel/";s:9:"registrar";s:22:"Tralliance Corporation";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:33:"http://www.whois.travel/whois.cgi";s:4:"args";s:31:"TLD=travel&dn=whois&TYPE=DOMAIN";s:4:"port";i:80;}}s:4:"type";s:6:"domain";}}s:10:"66.18.70.6";a:2:{s:8:"regrinfo";a:4:{s:10:"registered";s:3:"yes";s:5:"admin";a:7:{s:4:"name";s:13:"Nonge Maxwell";s:6:"handle";s:11:"NM9-AFRINIC";s:7:"address";a:5:{i:0;s:16:"Private Bag X06,";i:1;s:9:"Honeydew,";i:2;s:4:"2040";i:3;s:17:"Johannesburg 2040";i:4;s:12:"South Africa";}s:5:"email";a:2:{i:0;s:22:"netadmin@sentechsa.net";i:1;s:20:"nongem@sentech.co.za";}s:5:"phone";s:14:"+2711 471 4575";s:3:"fax";s:14:"+2711 471 4510";s:6:"source";s:18:"AFRINIC # Filtered";}s:4:"tech";a:7:{s:4:"name";s:13:"Nonge Maxwell";s:6:"handle";s:11:"NM9-AFRINIC";s:7:"address";a:5:{i:0;s:16:"Private Bag X06,";i:1;s:9:"Honeydew,";i:2;s:4:"2040";i:3;s:17:"Johannesburg 2040";i:4;s:12:"South Africa";}s:5:"email";a:2:{i:0;s:22:"netadmin@sentechsa.net";i:1;s:20:"nongem@sentech.co.za";}s:5:"phone";s:14:"+2711 471 4575";s:3:"fax";s:14:"+2711 471 4510";s:6:"source";s:18:"AFRINIC # Filtered";}s:7:"network";a:8:{s:7:"inetnum";s:25:"66.18.70.0 - 66.18.70.255";s:4:"name";s:15:"SENTECH-ISP9-ZA";s:4:"desc";s:22:"Sentech Ltd - ISP Mail";s:7:"country";s:2:"ZA";s:6:"status";s:11:"ASSIGNED PA";s:6:"mnt-by";s:30:"TF-66-18-64-0-66-18-95-255-MNT";s:6:"source";s:18:"AFRINIC # Filtered";s:6:"parent";s:25:"66.18.64.0 - 66.18.95.255";}}s:8:"regyinfo";a:3:{s:9:"registrar";s:34:"African Network Information Center";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:14:"whois.arin.net";s:4:"args";s:10:"66.18.70.6";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:17:"whois.afrinic.net";s:4:"args";s:10:"66.18.70.6";s:4:"port";i:43;}}s:4:"type";s:2:"ip";}}s:15:"218.165.121.114";a:2:{s:8:"regrinfo";a:5:{s:10:"registered";s:3:"yes";s:5:"admin";a:10:{s:4:"name";s:17:"HINET Network-Adm";s:7:"address";a:4:{i:0;s:32:"CHTD, Chunghwa Telecom Co., Ltd.";i:1;s:45:"Data-Bldg. 6F, No. 21, Sec. 21, Hsin-Yi Rd.,";i:2;s:17:"Taipei Taiwan 100";i:3;s:2:"TW";}s:5:"phone";a:3:{i:0;s:16:"+886 2 2322 3495";i:1;s:16:"+886 2 2322 3442";i:2;s:16:"+886 2 2344 3007";}s:3:"fax";a:2:{i:0;s:16:"+886 2 2344 2513";i:1;s:16:"+886 2 2395 5671";}s:5:"email";s:21:"network-adm@hinet.net";s:6:"handle";s:7:"HN27-AP";s:7:"remarks";s:33:"same as TWNIC nic-handle HN184-TW";s:6:"mnt-by";s:14:"MAINT-TW-TWNIC";s:7:"changed";s:10:"2000-07-21";s:6:"source";s:5:"APNIC";}s:4:"tech";a:10:{s:4:"name";s:20:"HINET Network-Center";s:7:"address";a:4:{i:0;s:32:"CHTD, Chunghwa Telecom Co., Ltd.";i:1;s:45:"Data-Bldg. 6F, No. 21, Sec. 21, Hsin-Yi Rd.,";i:2;s:17:"Taipei Taiwan 100";i:3;s:2:"TW";}s:5:"phone";a:3:{i:0;s:16:"+886 2 2322 3495";i:1;s:16:"+886 2 2322 3442";i:2;s:16:"+886 2 2344 3007";}s:3:"fax";a:2:{i:0;s:16:"+886 2 2344 2513";i:1;s:16:"+886 2 2395 5671";}s:5:"email";s:24:"network-center@hinet.net";s:6:"handle";s:7:"HN28-AP";s:7:"remarks";s:33:"same as TWNIC nic-handle HN185-TW";s:6:"mnt-by";s:14:"MAINT-TW-TWNIC";s:7:"changed";s:10:"2000-07-21";s:6:"source";s:5:"APNIC";}s:7:"network";a:7:{s:7:"inetnum";s:29:"218.160.0.0 - 218.175.255.255";s:4:"name";s:5:"HINET";s:6:"mnt-by";s:14:"MAINT-TW-TWNIC";s:9:"mnt-lower";s:14:"MAINT-TW-TWNIC";s:7:"changed";s:10:"2002-10-09";s:6:"status";s:18:"ALLOCATED PORTABLE";s:6:"source";s:5:"APNIC";}s:5:"owner";a:2:{s:12:"organization";s:31:"CHTD, Chunghwa Telecom Co.,Ltd.";s:7:"address";a:3:{i:0;s:40:"Data-Bldg.6F, No.21, Sec.21, Hsin-Yi Rd.";i:1;s:17:"Taipei Taiwan 100";i:2;s:2:"TW";}}}s:8:"regyinfo";a:3:{s:9:"registrar";s:39:"Asia Pacific Network Information Centre";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:14:"whois.arin.net";s:4:"args";s:15:"218.165.121.114";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:15:"whois.apnic.net";s:4:"args";s:15:"218.165.121.114";s:4:"port";i:43;}}s:4:"type";s:2:"ip";}}s:14:"207.217.120.54";a:2:{s:8:"regrinfo";a:4:{s:5:"owner";a:3:{s:12:"organization";s:15:"EARTHLINK, Inc.";s:6:"handle";s:8:"EARTH-21";s:7:"address";a:5:{s:6:"street";s:7:"LEVEL A";s:4:"city";s:7:"ATLANTA";s:5:"state";s:2:"GA";s:5:"pcode";s:5:"30309";s:7:"country";s:2:"US";}}s:7:"network";a:8:{s:7:"inetnum";s:29:"207.217.0.0 - 207.217.255.255";s:4:"name";s:14:"EARTHLINK-CIDR";s:6:"handle";s:17:"NET-207-217-0-0-1";s:6:"status";s:17:"Direct Allocation";s:7:"nserver";a:2:{i:0;s:19:"ITCHY.EARTHLINK.NET";i:1;s:22:"SCRATCHY.EARTHLINK.NET";}s:4:"desc";a:1:{i:0;s:44:"ADDRESSES WITHIN THIS BLOCK ARE NON-PORTABLE";}s:7:"created";s:10:"1996-10-04";s:7:"changed";s:10:"2007-06-22";}s:4:"tech";a:4:{s:6:"handle";s:13:"ELNK-ORG-ARIN";s:4:"name";s:15:"EarthLink, Inc.";s:5:"phone";s:15:"+1-404-815-0770";s:5:"email";s:34:"arin_tech@lists.corp.earthlink.net";}s:5:"abuse";a:4:{s:6:"handle";s:12:"ABUSE60-ARIN";s:4:"name";s:10:"ABUSE TEAM";s:5:"phone";s:15:"+1-404-815-0770";s:5:"email";s:25:"abuse@abuse.earthlink.net";}}s:8:"regyinfo";a:3:{s:9:"registrar";s:45:"American Registry for Internet Numbers (ARIN)";s:4:"type";s:2:"ip";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:14:"whois.arin.net";s:4:"args";s:14:"207.217.120.54";s:4:"port";i:43;}}}}s:12:"70.84.47.210";a:2:{s:8:"regrinfo";a:4:{s:5:"owner";a:3:{s:12:"organization";s:37:"ThePlanet.com Internet Services, Inc.";s:6:"handle";s:4:"TPCM";s:7:"address";a:5:{s:6:"street";s:9:"Suite 205";s:4:"city";s:7:"Houston";s:5:"state";s:2:"TX";s:5:"pcode";s:5:"77002";s:7:"country";s:2:"US";}}s:7:"network";a:7:{s:7:"inetnum";s:25:"70.84.0.0 - 70.87.255.255";s:4:"name";s:23:"NETBLK-THEPLANET-BLK-13";s:6:"handle";s:15:"NET-70-84-0-0-1";s:6:"status";s:17:"Direct Allocation";s:7:"nserver";a:2:{i:0;s:17:"NS1.THEPLANET.COM";i:1;s:17:"NS2.THEPLANET.COM";}s:7:"created";s:10:"2004-07-29";s:7:"changed";s:10:"2006-02-17";}s:4:"tech";a:4:{s:6:"handle";s:12:"TECHN33-ARIN";s:4:"name";s:17:"Technical Support";s:5:"phone";s:15:"+1-214-782-7800";s:5:"email";s:20:"admins@theplanet.com";}s:5:"abuse";a:4:{s:6:"handle";s:13:"ABUSE271-ARIN";s:4:"name";s:16:"The Planet Abuse";s:5:"phone";s:15:"+1-281-714-3560";s:5:"email";s:19:"abuse@theplanet.com";}}s:8:"regyinfo";a:3:{s:9:"registrar";s:45:"American Registry for Internet Numbers (ARIN)";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:14:"whois.arin.net";s:4:"args";s:12:"70.84.47.210";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:20:"rwhois.theplanet.com";s:4:"args";s:12:"70.84.47.210";s:4:"port";s:4:"4321";}}s:4:"type";s:2:"ip";}}s:14:"200.165.206.74";a:2:{s:8:"regrinfo";a:5:{s:10:"registered";s:3:"yes";s:5:"owner";a:5:{s:6:"handle";s:5:"HAOGO";s:4:"name";s:22:"Halliny Oliveira Gomes";s:5:"email";s:22:"mariana.bion@oi.net.br";s:7:"created";s:10:"2006-06-20";s:7:"changed";s:10:"2007-07-20";}s:4:"tech";a:5:{s:6:"handle";s:5:"CGR13";s:4:"name";s:34:"Centro de Gerencia de Rede TELEMAR";s:5:"email";s:15:"abuse@oi.net.br";s:7:"created";s:10:"2006-00-20";s:7:"changed";s:10:"2011-07-20";}s:5:"abuse";a:5:{s:6:"handle";s:5:"CGR13";s:4:"name";s:34:"Centro de Gerencia de Rede TELEMAR";s:5:"email";s:15:"abuse@oi.net.br";s:7:"created";s:10:"2006-00-20";s:7:"changed";s:10:"2011-07-20";}s:7:"network";a:6:{s:7:"inetnum";s:29:"200.165.0.0 - 200.165.255.255";s:7:"nserver";a:2:{i:0;s:18:"ns4.telemar.net.br";i:1;s:18:"ns2.telemar.net.br";}s:7:"created";s:10:"2005-01-20";s:7:"changed";s:10:"2010-01-20";s:6:"handle";s:6:"AS7738";s:4:"cdir";s:10:"200.165/16";}}s:8:"regyinfo";a:3:{s:9:"registrar";s:35:"Comite Gestor da Internet do Brazil";s:7:"servers";a:3:{i:0;a:3:{s:6:"server";s:14:"whois.arin.net";s:4:"args";s:14:"200.165.206.74";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:16:"whois.lacnic.net";s:4:"args";s:14:"200.165.206.74";s:4:"port";i:43;}i:2;a:3:{s:6:"server";s:17:"whois.registro.br";s:4:"args";s:14:"200.165.206.74";s:4:"port";i:43;}}s:4:"type";s:2:"ip";}}s:15:"210.178.148.129";a:2:{s:8:"regrinfo";a:4:{s:5:"owner";a:2:{s:12:"organization";s:20:"Korea Telecom-PUBNET";s:7:"address";a:1:{s:6:"street";s:30:"Jungja, Bundang-Gu, Sungnam-ci";}}s:5:"admin";a:3:{s:4:"name";s:16:"IP Administrator";s:5:"phone";s:14:"+82-2-500-6200";s:5:"email";s:13:"hwan90@kt.com";}s:4:"tech";a:2:{s:4:"name";s:10:"IP Manager";s:5:"phone";s:14:"+82-2-500-6200";}s:5:"abuse";a:3:{s:4:"name";s:19:"Pubnet Abuse Manger";s:5:"phone";s:15:"+82-2-3674-5890";s:5:"email";s:18:"abuse@pubnet.ne.kr";}}s:8:"regyinfo";a:3:{s:9:"registrar";s:40:"Korea Network Information Center (KRNIC)";s:7:"servers";a:3:{i:0;a:3:{s:6:"server";s:14:"whois.arin.net";s:4:"args";s:15:"210.178.148.129";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:15:"whois.apnic.net";s:4:"args";s:15:"210.178.148.129";s:4:"port";i:43;}i:2;a:3:{s:6:"server";s:15:"whois.krnic.net";s:4:"args";s:15:"210.178.148.129";s:4:"port";i:43;}}s:4:"type";s:2:"ip";}}s:12:"200.44.33.31";a:2:{s:8:"regrinfo";a:4:{s:10:"registered";s:3:"yes";s:4:"tech";a:7:{s:6:"handle";s:3:"LUM";s:4:"name";s:13:"Ramón Cabello";s:5:"email";s:17:"ipadmin@CANTV.NET";s:7:"address";a:3:{i:0;s:56:"Segunda Avenida de los Palos Grandes, Entre Av. Fr, 000,";i:1;s:19:"1060 - Caracas - MI";s:7:"country";s:2:"VE";}s:5:"phone";s:18:"+58 212 2095609 []";s:7:"created";s:10:"2009-02-20";s:7:"changed";s:10:"2008-04-20";}s:5:"owner";a:8:{s:6:"handle";s:3:"LUM";s:4:"name";s:13:"Ramón Cabello";s:5:"email";s:17:"ipadmin@CANTV.NET";s:7:"address";a:3:{i:0;s:56:"Segunda Avenida de los Palos Grandes, Entre Av. Fr, 000,";i:1;s:19:"1060 - Caracas - MI";s:7:"country";s:2:"VE";}s:5:"phone";s:18:"+58 212 2095609 []";s:7:"created";s:10:"2009-02-20";s:7:"changed";s:10:"2008-04-20";s:12:"organization";s:26:"CANTV Servicios, Venezuela";}s:7:"network";a:7:{s:7:"inetnum";s:27:"200.44.0.0 - 200.44.255.255";s:6:"status";s:9:"allocated";s:7:"nserver";a:2:{i:0;s:14:"DNS1.CANTV.NET";i:1;s:14:"DNS2.CANTV.NET";}s:7:"remarks";s:44:"ADDRESSES WITHIN THIS BLOCK ARE NON-PORTABLE";s:7:"created";s:10:"2003-19-98";s:7:"changed";s:10:"2001-02-20";s:4:"cdir";s:9:"200.44/16";}}s:8:"regyinfo";a:3:{s:9:"registrar";s:57:"Latin American and Caribbean IP address Regional Registry";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:14:"whois.arin.net";s:4:"args";s:12:"200.44.33.31";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:16:"whois.lacnic.net";s:4:"args";s:12:"200.44.33.31";s:4:"port";i:43;}}s:4:"type";s:2:"ip";}}s:13:"62.97.102.115";a:2:{s:8:"regrinfo";a:6:{s:10:"registered";s:3:"yes";s:5:"admin";a:8:{s:4:"role";s:15:"COLT Hostmaster";s:7:"address";a:5:{i:0;s:23:"COLT Telecommunications";i:1;s:14:"Beaufort House";i:2;s:20:"15 St Botolph Street";i:3;s:6:"London";i:4;s:9:"EC3A 7QN";}s:5:"phone";s:16:"+44 20 7390 3900";s:3:"fax";s:16:"+44 20 7863 5610";s:7:"remarks";a:3:{i:0;s:63:"trouble: In the first instance email UK.CMCfaults@colt.net";i:1;s:40:"trouble: or call +44 (0)800 3583667";i:2;s:48:"trouble: Abuse queries to abuse@uk.colt.net";}s:6:"handle";s:9:"CHM4-RIPE";s:6:"mnt-by";s:7:"COLT-UK";s:6:"source";s:15:"RIPE # Filtered";}s:4:"tech";a:8:{s:4:"role";s:15:"COLT Hostmaster";s:7:"address";a:5:{i:0;s:23:"COLT Telecommunications";i:1;s:14:"Beaufort House";i:2;s:20:"15 St Botolph Street";i:3;s:6:"London";i:4;s:9:"EC3A 7QN";}s:5:"phone";s:16:"+44 20 7390 3900";s:3:"fax";s:16:"+44 20 7863 5610";s:7:"remarks";a:3:{i:0;s:63:"trouble: In the first instance email UK.CMCfaults@colt.net";i:1;s:40:"trouble: or call +44 (0)800 3583667";i:2;s:48:"trouble: Abuse queries to abuse@uk.colt.net";}s:6:"handle";s:9:"CHM4-RIPE";s:6:"mnt-by";s:7:"COLT-UK";s:6:"source";s:15:"RIPE # Filtered";}s:7:"network";a:9:{s:7:"inetnum";s:26:"62.97.64.0 - 62.97.127.255";s:3:"org";s:12:"ORG-CI9-RIPE";s:4:"name";s:16:"UK-COLT-20010716";s:7:"country";s:2:"ES";s:6:"status";s:12:"ALLOCATED PA";s:6:"mnt-by";s:15:"RIPE-NCC-HM-MNT";s:9:"mnt-lower";s:7:"COLT-UK";s:10:"mnt-routes";s:7:"COLT-UK";s:6:"source";s:15:"RIPE # Filtered";}s:5:"owner";a:1:{s:12:"organization";s:17:"COLT Telecom GmbH";}s:5:"abuse";a:1:{s:5:"email";s:17:"abuse@uk.colt.net";}}s:8:"regyinfo";a:3:{s:9:"registrar";s:32:"RIPE Network Coordination Centre";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:14:"whois.arin.net";s:4:"args";s:13:"62.97.102.115";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:14:"whois.ripe.net";s:4:"args";s:13:"62.97.102.115";s:4:"port";i:43;}}s:4:"type";s:2:"ip";}}s:5:"AS220";a:2:{s:8:"regrinfo";a:3:{s:5:"owner";a:3:{s:12:"organization";s:27:"Air Force Logistics Command";s:6:"handle";s:6:"AFLC-6";s:7:"address";a:3:{s:4:"city";s:19:"Hill Air Force Base";s:5:"state";s:2:"UT";s:7:"country";s:2:"US";}}s:2:"AS";a:4:{s:4:"name";s:16:"OOALC-HOSTNET-AS";s:7:"created";s:10:"1988-08-12";s:7:"changed";s:10:"1991-01-10";s:6:"handle";s:5:"AS220";}s:4:"tech";a:3:{s:6:"handle";s:9:"ST55-ARIN";s:4:"name";s:15:"Jacob, Steve T.";s:5:"email";s:29:"sjacob@logdis1.hq.aflc.af.mil";}}s:8:"regyinfo";a:3:{s:9:"registrar";s:45:"American Registry for Internet Numbers (ARIN)";s:4:"type";s:2:"AS";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:14:"whois.arin.net";s:4:"args";s:5:"AS220";s:4:"port";i:43;}}}}s:16:"bulkregister.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:6:{s:4:"name";s:16:"bulkregister.com";s:7:"nserver";a:5:{s:22:"dns4.name-services.com";s:12:"64.74.96.242";s:22:"dns2.name-services.com";s:14:"216.52.184.230";s:22:"dns5.name-services.com";s:10:"70.42.37.1";s:22:"dns3.name-services.com";s:13:"63.251.92.193";s:22:"dns1.name-services.com";s:11:"69.25.142.1";}s:6:"status";s:24:"clientTransferProhibited";s:7:"changed";s:10:"2006-12-05";s:7:"created";s:10:"1999-09-08";s:7:"expires";s:10:"2012-09-08";}s:10:"registered";s:3:"yes";s:5:"admin";a:6:{s:5:"email";s:21:"paul.stahura@enom.com";s:4:"name";s:11:"DNS Manager";s:12:"organization";s:10:"eNom, Inc.";s:5:"phone";s:13:"+1.4258838860";s:3:"fax";s:13:"+1.4258833553";s:7:"address";a:4:{i:4;s:13:"P.O. Box 7449";i:5;s:30:"2002 156th Avenue NE, Ste. 300";i:6;s:18:"Bellevue, WA 98007";i:7;s:2:"US";}}s:4:"tech";a:6:{s:5:"email";s:21:"paul.stahura@enom.com";s:4:"name";s:11:"DNS Manager";s:12:"organization";s:10:"eNom, Inc.";s:5:"phone";s:13:"+1.4258838860";s:3:"fax";s:13:"+1.4258833553";s:7:"address";a:4:{i:4;s:13:"P.O. Box 7449";i:5;s:30:"2002 156th Avenue NE, Ste. 300";i:6;s:18:"Bellevue, WA 98007";i:7;s:2:"US";}}s:5:"owner";a:2:{s:4:"name";s:44:"Registration Service Provided By: eNom, Inc.";s:7:"address";a:1:{i:0;s:30:"Contact: paul.stahura@enom.com";}}}s:8:"regyinfo";a:6:{s:9:"registrar";s:18:"BULKREGISTER, LLC.";s:5:"whois";s:22:"whois.bulkregister.com";s:8:"referrer";s:27:"http://www.bulkregister.com";s:4:"args";s:17:"=bulkregister.com";s:4:"port";i:43;s:4:"type";s:6:"domain";}}s:11:"dominis.cat";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:4:{s:4:"name";s:11:"dominis.cat";s:7:"created";s:10:"2006-04-24";s:7:"changed";s:10:"2007-11-16";s:7:"expires";s:10:"2008-04-24";}s:5:"owner";a:6:{s:6:"handle";s:14:"AT19733065-014";s:4:"name";s:22:"Ubilibet Ubilibet S.L.";s:12:"organization";s:13:"Ubilibet S.L.";s:7:"address";a:4:{s:4:"city";s:9:"Barcelona";s:5:"state";s:9:"Barcelona";s:5:"pcode";s:5:"08009";s:7:"country";s:2:"ES";}s:5:"phone";s:13:"+34.932654145";s:5:"email";s:18:"whois@ubilibet.com";}s:5:"admin";a:6:{s:6:"handle";s:14:"AT18345154-011";s:4:"name";s:40:"Information Society Consultants UBILIBET";s:12:"organization";s:8:"UBILIBET";s:7:"address";a:3:{s:4:"city";s:9:"Barcelona";s:5:"pcode";s:5:"08009";s:7:"country";s:2:"ES";}s:5:"phone";s:13:"+34.932654145";s:5:"email";s:20:"billing@ubilibet.com";}s:4:"tech";a:6:{s:6:"handle";s:14:"AT53811350-014";s:4:"name";s:40:"Information Society Consultants UBILIBET";s:12:"organization";s:8:"UBILIBET";s:7:"address";a:3:{s:4:"city";s:9:"Barcelona";s:5:"pcode";s:5:"08009";s:7:"country";s:2:"ES";}s:5:"phone";s:13:"+34.932654145";s:5:"email";s:20:"billing@ubilibet.com";}s:7:"billing";a:6:{s:6:"handle";s:14:"AT18345154-011";s:4:"name";s:40:"Information Society Consultants UBILIBET";s:12:"organization";s:8:"UBILIBET";s:7:"address";a:3:{s:4:"city";s:9:"Barcelona";s:5:"pcode";s:5:"08009";s:7:"country";s:2:"ES";}s:5:"phone";s:13:"+34.932654145";s:5:"email";s:20:"billing@ubilibet.com";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:22:"http://www.domini.cat/";s:9:"registrar";s:15:"Domini punt CAT";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:21:"cat.whois-servers.net";s:4:"args";s:11:"dominis.cat";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:11:"directi.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:7:{s:4:"name";s:11:"directi.com";s:7:"nserver";a:2:{s:22:"ns2.directihosting.com";s:12:"209.61.162.6";s:22:"ns6.directihosting.com";s:12:"67.15.47.187";}s:6:"status";a:3:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";i:2;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2008-01-28";s:7:"created";s:10:"1997-08-11";s:7:"expires";s:10:"2010-09-25";s:7:"sponsor";s:12:"RESELLERCLUB";}s:10:"registered";s:3:"yes";s:5:"owner";a:5:{s:5:"email";s:26:"domain.manager@directi.com";s:4:"name";s:14:"Domain Manager";s:5:"phone";s:14:"+91.2266797500";s:12:"organization";s:26:"Direct Information Pvt Ltd";s:7:"address";a:6:{i:0;s:20:"330, Link Way Estate";i:1;s:9:"Link Road";i:2;s:9:"Malad (W)";i:3;s:6:"Mumbai";i:4;s:18:"Maharashtra,400064";i:5;s:2:"IN";}}s:5:"admin";a:5:{s:5:"email";s:26:"domain.manager@directi.com";s:4:"name";s:14:"Domain Manager";s:5:"phone";s:14:"+91.2266797500";s:12:"organization";s:26:"Direct Information Pvt Ltd";s:7:"address";a:6:{i:0;s:20:"330, Link Way Estate";i:1;s:9:"Link Road";i:2;s:9:"Malad (W)";i:3;s:6:"Mumbai";i:4;s:18:"Maharashtra,400064";i:5;s:2:"IN";}}s:4:"tech";a:5:{s:5:"email";s:26:"domain.manager@directi.com";s:4:"name";s:14:"Domain Manager";s:5:"phone";s:14:"+91.2266797500";s:12:"organization";s:26:"Direct Information Pvt Ltd";s:7:"address";a:6:{i:0;s:20:"330, Link Way Estate";i:1;s:9:"Link Road";i:2;s:9:"Malad (W)";i:3;s:6:"Mumbai";i:4;s:18:"Maharashtra,400064";i:5;s:2:"IN";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:67:"DIRECTI INTERNET SOLUTIONS PVT. LTD. D/B/A PUBLICDOMAINREGISTRY.COM";s:8:"referrer";s:35:"http://www.PublicDomainRegistry.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:19:"domain =directi.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:30:"whois.PublicDomainRegistry.com";s:4:"args";s:11:"directi.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:10:"dnc.org.nz";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:7:{s:4:"name";s:10:"dnc.org.nz";s:6:"status";s:10:"200 Active";s:7:"created";s:10:"2002-04-23";s:7:"expires";s:10:"2008-05-23";s:7:"changed";s:10:"2008-04-23";s:7:"sponsor";s:24:"Domain Name Commissioner";s:7:"nserver";a:3:{s:21:"ns1.internetnz.net.nz";s:14:"131.203.101.61";s:16:"ns1.serion.co.nz";s:11:"202.20.5.35";s:16:"ns2.serion.co.nz";s:13:"131.203.20.61";}}s:5:"owner";a:5:{s:4:"name";s:48:"The Internet Society of New Zealand Incorporated";s:7:"address";a:4:{s:7:"address";a:1:{i:0;s:13:"PO Box 11-881";}s:4:"city";s:10:"Wellington";s:5:"pcode";s:4:"6001";s:7:"country";s:16:"NZ (NEW ZEALAND)";}s:5:"phone";s:14:"+64 4 472 1600";s:3:"fax";s:14:"+64 4 495 2115";s:5:"email";s:25:"exe.dir@internetnz.net.nz";}s:5:"admin";a:5:{s:4:"name";s:18:"Executive Director";s:7:"address";a:4:{s:7:"address";a:2:{i:0;s:10:"InternetNZ";i:1;s:13:"PO Box 11-881";}s:4:"city";s:10:"Wellington";s:5:"pcode";s:4:"6001";s:7:"country";s:16:"NZ (NEW ZEALAND)";}s:5:"phone";s:14:"+64 4 472 1600";s:3:"fax";s:14:"+64 4 495 2115";s:5:"email";s:25:"exe.dir@internetnz.net.nz";}s:4:"tech";a:5:{s:4:"name";s:17:"Technical Manager";s:7:"address";a:4:{s:7:"address";a:1:{i:2;s:10:"InternetNZ";}s:4:"city";s:10:"Wellington";s:5:"pcode";s:4:"6001";s:7:"country";s:16:"NZ (NEW ZEALAND)";}s:5:"phone";s:14:"+64 4 472 1600";s:3:"fax";s:14:"+64 4 495 2115";s:5:"email";s:21:"soa@internetnz.net.nz";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:21:"http://www.dnc.org.nz";s:9:"registrar";s:40:"New Zealand Domain Name Registry Limited";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"nz.whois-servers.net";s:4:"args";s:10:"dnc.org.nz";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:8:"admin.sc";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:8:{s:6:"handle";s:12:"D223056-LRCC";s:4:"name";s:8:"admin.sc";s:7:"created";s:10:"2006-01-19";s:7:"changed";s:10:"2008-01-19";s:7:"expires";s:10:"2009-01-19";s:7:"sponsor";s:20:"InternetX (R24-LRCC)";s:6:"status";s:2:"OK";s:7:"nserver";a:2:{s:14:"ns1.ns-srv.net";s:13:"87.106.14.107";s:14:"ns2.ns-srv.net";s:11:"91.121.82.6";}}s:5:"owner";a:7:{s:6:"handle";s:13:"INX-884387-SC";s:4:"name";s:13:"Domain Master";s:12:"organization";s:11:"KoyDoX Ltd.";s:7:"address";a:5:{s:6:"street";a:1:{i:0;s:23:"69 Great Hampton Street";}s:4:"city";s:10:"Birmingham";s:5:"state";s:2:"GB";s:5:"pcode";s:7:"B18 6EW";s:7:"country";s:3:":GB";}s:5:"phone";s:14:"+44.8712180718";s:3:"fax";s:14:"+44.8712180719";s:5:"email";s:21:"hostmaster@koydox.com";}s:5:"admin";a:7:{s:6:"handle";s:13:"INX-884387-SC";s:4:"name";s:13:"Domain Master";s:12:"organization";s:11:"KoyDoX Ltd.";s:7:"address";a:5:{s:6:"street";a:1:{i:0;s:23:"69 Great Hampton Street";}s:4:"city";s:10:"Birmingham";s:5:"state";s:2:"GB";s:5:"pcode";s:7:"B18 6EW";s:7:"country";s:2:"GB";}s:5:"phone";s:14:"+44.8712180718";s:3:"fax";s:14:"+44.8712180719";s:5:"email";s:21:"hostmaster@koydox.com";}s:7:"billing";a:7:{s:6:"handle";s:13:"INX-884387-SC";s:4:"name";s:13:"Domain Master";s:12:"organization";s:11:"KoyDoX Ltd.";s:7:"address";a:5:{s:6:"street";a:1:{i:1;s:23:"69 Great Hampton Street";}s:4:"city";s:10:"Birmingham";s:5:"state";s:2:"GB";s:5:"pcode";s:7:"B18 6EW";s:7:"country";s:2:"GB";}s:5:"phone";s:14:"+44.8712180718";s:3:"fax";s:14:"+44.8712180719";s:5:"email";s:21:"hostmaster@koydox.com";}s:4:"tech";a:7:{s:6:"handle";s:13:"INX-884388-SC";s:4:"name";s:13:"Domain Master";s:12:"organization";s:18:"XXX Solutions Ltd.";s:7:"address";a:5:{s:6:"street";a:1:{i:0;s:23:"69 Great Hampton Street";}s:4:"city";s:10:"Birmingham";s:5:"state";s:2:"GB";s:5:"pcode";s:7:"B18 6EW";s:7:"country";s:2:"GB";}s:5:"phone";s:14:"+44.7005806807";s:3:"fax";s:14:"+44.7005806808";s:5:"email";s:28:"hostmaster@xxx-solutions.net";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:17:"http://www.nic.sc";s:9:"registrar";s:17:"VCS (Pty) Limited";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:22:"whois2.afilias-grs.net";s:4:"args";s:8:"admin.sc";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:9:"mtld.mobi";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:6:{s:4:"name";s:9:"mtld.mobi";s:7:"created";s:10:"2006-05-11";s:7:"expires";s:10:"2010-05-11";s:7:"sponsor";s:21:"MarkMonitor Inc (292)";s:6:"status";s:24:"CLIENT UPDATE PROHIBITED";s:7:"nserver";a:2:{s:16:"ns7.zoneedit.com";s:13:"216.122.7.155";s:16:"ns3.zoneedit.com";s:12:"72.51.43.223";}}s:5:"owner";a:7:{s:9:"trademark";a:4:{s:4:"name";s:22:"Registry Reserved Name";s:7:"country";s:2:"IE";s:7:"applied";s:10:"2000-01-01";s:10:"registered";s:10:"2006-01-01";}s:6:"handle";s:12:"mmr-14552653";s:4:"name";s:20:"Domain Administrator";s:12:"organization";s:26:"mTLD Top Level Domain, Ltd";s:7:"address";a:4:{s:7:"address";a:2:{i:0;s:17:"11 Exchange Place";i:1;s:4:"IFSC";}s:4:"city";s:6:"Dublin";s:5:"pcode";s:1:"1";s:7:"country";s:2:"IE";}s:5:"phone";s:13:"+353.18541100";s:5:"email";s:18:"reserved@mtld.mobi";}s:5:"admin";a:5:{s:6:"handle";s:13:"mTLD-37nDXJNx";s:4:"name";s:28:"mTLD Mobile Top Level Domain";s:7:"address";a:4:{s:7:"address";a:2:{i:0;s:22:"11 Exchange Place IFSC";i:2;s:4:"IFSC";}s:4:"city";s:6:"Dublin";s:5:"pcode";s:1:"1";s:7:"country";s:2:"IE";}s:5:"phone";s:13:"+353.18541100";s:5:"email";s:20:"operations@mtld.mobi";}s:4:"tech";a:6:{s:6:"handle";s:12:"mmr-14552653";s:4:"name";s:20:"Domain Administrator";s:7:"address";a:4:{s:7:"address";a:2:{i:0;s:17:"11 Exchange Place";i:1;s:4:"IFSC";}s:4:"city";s:6:"Dublin";s:5:"pcode";s:1:"1";s:7:"country";s:2:"IE";}s:5:"phone";s:13:"+353.18541100";s:5:"email";s:18:"reserved@mtld.mobi";s:3:"fax";s:13:"+353.17918569";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:21:"http://www.mtld.mobi/";s:9:"registrar";s:17:"Dot Mobi Registry";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:25:"whois.dotmobiregistry.net";s:4:"args";s:9:"mtld.mobi";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:11:"registry.in";a:2:{s:8:"regyinfo";a:4:{s:8:"referrer";s:24:"http://whois.registry.in";s:9:"registrar";s:10:"INRegistry";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"in.whois-servers.net";s:4:"args";s:11:"registry.in";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}s:8:"regrinfo";a:5:{s:6:"domain";a:8:{s:6:"handle";s:10:"D8120-AFIN";s:4:"name";s:11:"registry.in";s:7:"created";s:10:"2004-12-16";s:7:"changed";s:10:"2007-12-30";s:7:"expires";s:10:"2008-12-30";s:7:"sponsor";s:46:"National Internet Exchange of India (R36-AFIN)";s:6:"status";a:5:{i:0;s:24:"CLIENT DELETE PROHIBITED";i:1;s:23:"CLIENT RENEW PROHIBITED";i:2;s:26:"CLIENT TRANSFER PROHIBITED";i:3;s:24:"CLIENT UPDATE PROHIBITED";i:4;s:17:"DELETE PROHIBITED";}s:7:"nserver";a:3:{s:17:"ns01.afilias.info";s:13:"69.46.107.140";s:17:"ns02.afilias.info";s:13:"69.46.107.141";s:17:"ns03.afilias.info";s:13:"207.219.45.44";}}s:5:"owner";a:6:{s:6:"handle";s:16:"FR-1187763823079";s:4:"name";s:35:"National Internet Exchange of India";s:7:"address";a:5:{s:6:"street";a:2:{i:0;s:24:"121-123,Ansal tower,38 ,";i:1;s:11:"Nehru Palce";}s:4:"city";s:9:"New Delhi";s:5:"state";s:5:"Delhi";s:5:"pcode";s:6:"110019";s:7:"country";s:2:"IN";}s:5:"phone";s:14:"+91.1141674311";s:3:"fax";s:14:"+91.1141674310";s:5:"email";s:20:"registration@nixi.in";}s:5:"admin";a:6:{s:6:"handle";s:16:"FR-1187763823079";s:4:"name";s:35:"National Internet Exchange of India";s:7:"address";a:5:{s:6:"street";a:2:{i:0;s:24:"121-123,Ansal tower,38 ,";i:1;s:11:"Nehru Palce";}s:4:"city";s:9:"New Delhi";s:5:"state";s:5:"Delhi";s:5:"pcode";s:6:"110019";s:7:"country";s:2:"IN";}s:5:"phone";s:14:"+91.1141674311";s:3:"fax";s:14:"+91.1141674310";s:5:"email";s:20:"registration@nixi.in";}s:4:"tech";a:6:{s:6:"handle";s:16:"FR-1187763823079";s:4:"name";s:35:"National Internet Exchange of India";s:7:"address";a:5:{s:6:"street";a:2:{i:0;s:24:"121-123,Ansal tower,38 ,";i:1;s:11:"Nehru Palce";}s:4:"city";s:9:"New Delhi";s:5:"state";s:5:"Delhi";s:5:"pcode";s:6:"110019";s:7:"country";s:2:"IN";}s:5:"phone";s:14:"+91.1141674311";s:3:"fax";s:14:"+91.1141674310";s:5:"email";s:20:"registration@nixi.in";}s:10:"registered";s:3:"yes";}}s:8:"nic.jobs";a:2:{s:8:"regrinfo";a:4:{s:6:"domain";a:6:{s:4:"name";s:8:"nic.jobs";s:7:"nserver";a:2:{s:17:"ns2.registry.jobs";s:14:"207.54.137.254";s:17:"ns1.registry.jobs";s:14:"207.54.136.251";}s:6:"status";a:1:{i:0;s:6:"ACTIVE";}s:7:"changed";s:10:"2008-02-20";s:7:"created";s:10:"2006-02-21";s:7:"expires";s:10:"2009-02-21";}s:10:"registered";s:3:"yes";s:8:"regrinfo";a:5:{s:6:"domain";a:1:{s:4:"name";s:8:"NIC.JOBS";}s:5:"owner";a:3:{s:4:"name";s:16:"Registry-Reserve";s:12:"organization";s:16:"Employ Media LLC";s:7:"address";a:5:{s:6:"street";a:1:{i:0;s:20:"3029 Prospect Avenue";}s:4:"city";s:9:"Cleveland";s:5:"state";s:2:"OH";s:5:"pcode";s:5:"44115";s:7:"country";s:13:"United States";}}s:5:"admin";a:6:{s:4:"name";s:16:"Registry-Reserve";s:12:"organization";s:16:"Employ Media LLC";s:7:"address";a:5:{s:6:"street";a:1:{i:0;s:20:"3029 Prospect Avenue";}s:4:"city";s:9:"Cleveland";s:5:"state";s:2:"OH";s:5:"pcode";s:5:"44115";s:7:"country";s:13:"United States";}s:5:"phone";s:13:"+1.2164261500";s:3:"fax";s:13:"+1.2165881558";s:5:"email";s:26:"registry-reserve@goto.jobs";}s:4:"tech";a:6:{s:4:"name";s:16:"Registry-Reserve";s:12:"organization";s:16:"Employ Media LLC";s:7:"address";a:5:{s:6:"street";a:1:{i:0;s:20:"3029 Prospect Avenue";}s:4:"city";s:9:"Cleveland";s:5:"state";s:2:"OH";s:5:"pcode";s:5:"44115";s:7:"country";s:13:"United States";}s:5:"phone";s:13:"+1.2164261500";s:3:"fax";s:13:"+1.2165881558";s:5:"email";s:26:"registry-reserve@goto.jobs";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:2:{s:8:"referrer";s:22:"http://www.encirca.biz";s:9:"registrar";s:7:"ENCIRCA";}}s:8:"regyinfo";a:4:{s:9:"registrar";s:12:"ENCIRCA, INC";s:8:"referrer";s:22:"http://www.encirca.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:26:"jobswhois.verisign-grs.com";s:4:"args";s:8:"nic.jobs";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:17:"whois.encirca.com";s:4:"args";s:8:"nic.jobs";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:10:"urllog.net";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:6:{s:4:"name";s:10:"urllog.net";s:7:"nserver";a:3:{s:19:"a.dns-rootserver.de";s:13:"82.139.201.66";s:19:"b.dns-rootserver.de";s:14:"85.199.135.229";s:19:"c.dns-rootserver.de";s:11:"85.88.1.161";}s:6:"status";s:4:"LOCK";s:7:"changed";s:10:"2007-07-26";s:7:"created";s:10:"2004-07-25";s:7:"expires";s:10:"2008-07-25";}s:10:"registered";s:3:"yes";s:5:"owner";a:5:{s:4:"name";a:2:{s:5:"first";s:8:"Philippe";s:4:"last";s:4:"Kück";}s:7:"address";a:5:{s:6:"street";s:15:"Schillerstr. 24";s:4:"city";s:7:"Giessen";s:5:"pcode";s:5:"35390";s:7:"country";s:2:"DE";s:5:"state";s:2:"DE";}s:5:"phone";s:17:"+49-180-500295659";s:3:"fax";s:11:"+49-000-000";s:5:"email";s:47:"6f4922f45568161a8cdf4ad2299f6d23@blue.cycnet.de";}s:5:"admin";a:5:{s:4:"name";a:2:{s:5:"first";s:8:"Philippe";s:4:"last";s:4:"Kück";}s:7:"address";a:5:{s:6:"street";s:15:"Schillerstr. 24";s:4:"city";s:7:"Giessen";s:5:"pcode";s:5:"35390";s:7:"country";s:2:"DE";s:5:"state";s:2:"DE";}s:5:"phone";s:17:"+49-180-500295659";s:3:"fax";s:11:"+49-000-000";s:5:"email";s:47:"6f4922f45568161a8cdf4ad2299f6d23@blue.cycnet.de";}s:4:"tech";a:6:{s:4:"name";a:2:{s:5:"first";s:8:"Philippe";s:4:"last";s:4:"Kück";}s:12:"organization";s:20:"Schwetz EDV Services";s:7:"address";a:5:{s:6:"street";s:15:"Schillerstr. 24";s:4:"city";s:7:"Giessen";s:5:"pcode";s:5:"35390";s:7:"country";s:2:"DE";s:5:"state";s:2:"DE";}s:5:"phone";s:17:"+49-180-500295659";s:3:"fax";s:17:"+49-180-540252592";s:5:"email";s:22:"hostmaster@unixadm.org";}s:4:"zone";a:6:{s:4:"name";a:2:{s:5:"first";s:8:"Philippe";s:4:"last";s:4:"Kück";}s:12:"organization";s:20:"Schwetz EDV Services";s:7:"address";a:5:{s:6:"street";s:15:"Schillerstr. 24";s:4:"city";s:7:"Giessen";s:5:"pcode";s:5:"35390";s:7:"country";s:2:"DE";s:5:"state";s:2:"DE";}s:5:"phone";s:17:"+49-180-500295659";s:3:"fax";s:17:"+49-180-540252592";s:5:"email";s:22:"hostmaster@unixadm.org";}}s:8:"regyinfo";a:4:{s:9:"registrar";s:30:"PSI-USA, INC. DBA DOMAIN ROBOT";s:8:"referrer";s:23:"http://www.psi-usa.info";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"net.whois-servers.net";s:4:"args";s:18:"domain =urllog.net";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:18:"whois.psi-usa.info";s:4:"args";s:10:"urllog.net";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:6:"www.tv";a:2:{s:8:"regrinfo";a:2:{s:6:"domain";a:6:{s:4:"name";s:6:"www.tv";s:7:"nserver";a:6:{s:12:"a4.nstld.com";s:10:"192.5.6.33";s:12:"f4.nstld.com";s:12:"192.35.51.33";s:12:"g4.nstld.com";s:12:"192.42.93.33";s:12:"h4.nstld.com";s:13:"192.54.112.33";s:12:"j4.nstld.com";s:12:"192.48.79.33";s:12:"l4.nstld.com";s:13:"192.41.162.33";}s:6:"status";a:1:{i:0;s:6:"ACTIVE";}s:7:"changed";s:10:"2007-03-08";s:7:"created";s:10:"2000-05-01";s:7:"expires";s:10:"2038-01-18";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:5:{s:9:"registrar";s:14:"TV CORPORATION";s:5:"whois";s:12:"whois.www.tv";s:8:"referrer";s:13:"http://www.tv";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"tv.whois-servers.net";s:4:"args";s:6:"www.tv";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:8:"eurid.eu";a:2:{s:8:"regrinfo";a:3:{s:6:"domain";a:5:{s:4:"name";s:8:"eurid.eu";s:6:"status";s:10:"REGISTERED";s:7:"created";s:10:"2005-12-05";s:9:"registrar";s:14:"EURid vzw/asbl";s:7:"nserver";a:4:{s:8:"a.nic.eu";s:13:"91.200.16.100";s:11:"b.eu.dns.be";s:15:"193.190.135.100";s:8:"l.nic.eu";s:14:"195.66.241.178";s:8:"m.nic.eu";s:12:"217.29.76.13";}}s:4:"tech";a:3:{s:5:"phone";s:12:"+32.24012750";s:3:"fax";s:12:"+32.24012751";s:5:"email";s:13:"tech@eurid.eu";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:19:"http://www.eurid.eu";s:9:"registrar";s:5:"EURID";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"eu.whois-servers.net";s:4:"args";s:8:"eurid.eu";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:10:"sex.za.net";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:3:{s:4:"name";s:10:"sex.za.net";s:7:"created";s:10:"1998-09-15";s:7:"nserver";a:2:{s:15:"cyberhost.co.za";s:13:"196.41.124.12";s:24:"dinkytoy.cyberhost.co.za";s:16:"(DOES NOT EXIST)";}}s:5:"owner";a:1:{s:4:"name";s:18:"Cyberhost Internet";}s:5:"admin";a:5:{s:5:"email";s:21:"admin@cyberhost.co.za";s:4:"name";s:11:"Ian Ward <>";s:5:"phone";s:14:"+27 21 7628512";s:3:"fax";s:14:"+27 12 7628683";s:7:"address";a:6:{i:1;s:18:"Cyberhost Internet";i:2;s:18:"42c Goldbourne St.";i:3;s:10:"Kenilworth";i:4;s:2:"WC";i:5;s:4:"7700";i:6;s:2:"ZA";}}s:4:"tech";a:5:{s:5:"email";s:19:"dns@cyberhost.co.za";s:4:"name";s:11:"Ian Ward <>";s:5:"phone";s:14:"+27 21 7628512";s:3:"fax";s:14:"+27 12 7628683";s:7:"address";a:6:{i:1;s:18:"Cyberhost Internet";i:2;s:18:"42c Goldbourne St.";i:3;s:10:"Kenilworth";i:4;s:2:"WC";i:5;s:4:"7700";i:6;s:2:"ZA";}}s:10:"registered";s:7:"unknown";}s:8:"regyinfo";a:4:{s:8:"referrer";s:18:"http://www.za.net/";s:9:"registrar";s:6:"ZA NiC";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:12:"whois.za.net";s:4:"args";s:10:"sex.za.net";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:11:"63.95.254.3";a:2:{s:8:"regrinfo";a:5:{s:5:"owner";a:3:{i:0;a:3:{s:12:"organization";s:56:"MCI Communications Services, Inc. d/b/a Verizon Business";s:6:"handle";s:5:"MCICS";s:7:"address";a:5:{s:6:"street";s:25:"22001 Loudoun County Pkwy";s:4:"city";s:7:"Ashburn";s:5:"state";s:2:"VA";s:5:"pcode";s:5:"20147";s:7:"country";s:2:"US";}}i:1;a:3:{s:12:"organization";s:24:"GEORGIA PUBLIC WEB, INC.";s:6:"handle";s:3:"GPW";s:7:"address";a:5:{s:6:"street";s:23:"1470 RIVER EDGE PARKWAY";s:4:"city";s:7:"ATLANTA";s:5:"state";s:2:"GA";s:5:"pcode";s:5:"30328";s:7:"country";s:2:"US";}}i:2;a:1:{s:12:"organization";s:21:"8.org.gapublicweb.net";}}s:7:"network";a:3:{i:0;a:8:{s:7:"inetnum";s:26:"63.64.0.0 - 63.127.255.255";s:4:"name";s:7:"UUNET63";s:6:"handle";s:15:"NET-63-64-0-0-1";s:6:"status";s:17:"Direct Allocation";s:7:"nserver";a:2:{i:0;s:16:"AUTH03.NS.UU.NET";i:1;s:16:"AUTH00.NS.UU.NET";}s:4:"desc";a:1:{i:0;s:44:"ADDRESSES WITHIN THIS BLOCK ARE NON-PORTABLE";}s:7:"created";s:10:"1999-01-22";s:7:"changed";s:10:"2006-12-14";}i:1;a:7:{s:7:"inetnum";s:27:"63.95.254.0 - 63.95.255.255";s:4:"name";s:15:"UU-63-95-254-D4";s:6:"handle";s:17:"NET-63-95-254-0-1";s:6:"status";s:11:"Reallocated";s:4:"desc";a:1:{i:0;s:45:"Addresses within this block are non-portable.";}s:7:"created";s:10:"2002-10-17";s:7:"changed";s:10:"2002-10-17";}i:2;a:5:{s:6:"handle";s:17:"31.63.95.254.0/24";s:4:"name";s:13:"gpw-63.95.254";s:7:"inetnum";s:14:"63.95.254.0/24";s:7:"created";s:10:"2004-02-09";s:7:"changed";s:10:"2004-02-09";}}s:4:"tech";a:3:{i:0;a:4:{s:6:"handle";s:11:"JHU140-ARIN";s:4:"name";s:14:"Huffines, Jody";s:5:"phone";s:15:"+1-703-886-6093";s:5:"email";s:33:"Jody.Huffines@verizonbusiness.com";}i:1;a:4:{s:6:"handle";s:11:"NELSO2-ARIN";s:4:"name";s:15:"Nelson, Frank A";s:5:"phone";s:15:"+1-770-661-2783";s:5:"email";s:23:"fnelson@gapublicweb.net";}i:2;a:1:{s:5:"email";s:22:"8.cont.gapublicweb.net";}}s:5:"abuse";a:2:{i:0;a:4:{s:6:"handle";s:11:"ABUSE3-ARIN";s:4:"name";s:5:"abuse";s:5:"phone";s:15:"+1-800-900-0241";s:5:"email";s:30:"abuse-mail@verizonbusiness.com";}i:1;a:4:{s:6:"handle";s:10:"GPWNO-ARIN";s:4:"name";s:6:"GPWNOC";s:5:"phone";s:15:"+1-888-662-6324";s:5:"email";s:26:"telecomnoc@gapublicweb.net";}}s:5:"admin";a:1:{i:0;a:1:{s:5:"email";s:22:"8.cont.gapublicweb.net";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:45:"American Registry for Internet Numbers (ARIN)";s:7:"netname";s:15:"NET-63-64-0-0-1";s:7:"servers";a:4:{i:0;a:3:{s:6:"server";s:14:"whois.arin.net";s:4:"args";s:11:"63.95.254.3";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:14:"whois.arin.net";s:4:"args";s:16:"!NET-63-64-0-0-1";s:4:"port";i:43;}i:2;a:3:{s:6:"server";s:14:"whois.arin.net";s:4:"args";s:18:"!NET-63-95-254-0-1";s:4:"port";i:43;}i:3;a:3:{s:6:"server";s:22:"rwhois.gapublicweb.net";s:4:"args";s:11:"63.95.254.3";s:4:"port";s:4:"4321";}}s:4:"type";s:2:"ip";}}s:10:"informe.ws";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:6:{s:4:"name";s:10:"informe.ws";s:7:"sponsor";s:23:"Intercosmos Media Group";s:7:"created";s:10:"2007-01-03";s:7:"changed";s:10:"2007-01-03";s:7:"expires";s:10:"2008-01-03";s:7:"nserver";a:2:{s:17:"ns0.directnic.com";s:14:"204.251.10.100";s:17:"ns1.directnic.com";s:13:"206.251.177.2";}}s:10:"registered";s:3:"yes";s:5:"owner";a:3:{s:5:"phone";s:9:"622211442";s:4:"name";s:7:"Informe";s:7:"address";a:3:{i:0;s:6:"Cuiper";i:1;s:18:"Spain, Spain 46134";i:2;s:2:"ES";}}s:5:"admin";a:4:{s:5:"email";s:16:"paisvlc@yahoo.es";s:4:"name";s:16:"Informe, Informe";s:5:"phone";s:9:"622211442";s:7:"address";a:3:{i:1;s:6:"Cuiper";i:2;s:18:"Spain, Spain 46134";i:3;s:2:"ES";}}s:4:"tech";a:4:{s:5:"email";s:16:"paisvlc@yahoo.es";s:4:"name";s:16:"Informe, Informe";s:5:"phone";s:9:"622211442";s:7:"address";a:3:{i:1;s:6:"Cuiper";i:2;s:18:"Spain, Spain 46134";i:3;s:2:"ES";}}}s:8:"regyinfo";a:4:{s:8:"referrer";s:22:"http://www.samoanic.ws";s:9:"registrar";s:9:"Samoa Nic";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:20:"ws.whois-servers.net";s:4:"args";s:10:"informe.ws";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:19:"whois.directnic.com";s:4:"args";s:10:"informe.ws";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:12:"alabanza.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:7:{s:4:"name";s:12:"alabanza.com";s:7:"nserver";a:2:{s:15:"ns.alabanza.com";s:14:"209.239.47.252";s:16:"ns2.alabanza.com";s:14:"209.239.47.201";}s:6:"status";s:6:"Locked";s:7:"changed";s:10:"2007-02-16";s:7:"created";s:10:"1996-08-18";s:7:"expires";s:10:"2013-08-17";s:7:"sponsor";s:20:"Alabanza Corporation";}s:10:"registered";s:3:"yes";s:5:"owner";a:6:{s:5:"email";s:21:"momentum@alabanza.com";s:4:"name";s:18:"Alabanza Marketing";s:12:"organization";s:20:"Alabanza Corporation";s:5:"phone";s:10:"4107791400";s:3:"fax";s:13:"+1.4107791501";s:7:"address";a:3:{i:4;s:36:"10 East Baltimore Street, Suite 1000";i:5;s:19:"Baltimore, MD 21202";i:6;s:2:"US";}}s:5:"admin";a:6:{s:5:"email";s:21:"momentum@alabanza.com";s:4:"name";s:18:"Alabanza Marketing";s:12:"organization";s:20:"Alabanza Corporation";s:5:"phone";s:10:"4107791400";s:3:"fax";s:13:"+1.4107791501";s:7:"address";a:3:{i:4;s:36:"10 East Baltimore Street, Suite 1000";i:5;s:19:"Baltimore, MD 21202";i:6;s:2:"US";}}s:4:"tech";a:6:{s:5:"email";s:21:"momentum@alabanza.com";s:4:"name";s:18:"Alabanza Marketing";s:12:"organization";s:20:"Alabanza Corporation";s:5:"phone";s:10:"4107791400";s:3:"fax";s:13:"+1.4107791501";s:7:"address";a:3:{i:4;s:36:"10 East Baltimore Street, Suite 1000";i:5;s:19:"Baltimore, MD 21202";i:6;s:2:"US";}}}s:8:"regyinfo";a:6:{s:9:"registrar";s:10:"ENOM, INC.";s:5:"whois";s:14:"whois.enom.com";s:8:"referrer";s:19:"http://www.enom.com";s:4:"args";s:13:"=alabanza.com";s:4:"port";i:43;s:4:"type";s:6:"domain";}}s:6:"nic.ru";a:2:{s:8:"regrinfo";a:3:{s:6:"domain";a:6:{s:4:"name";s:6:"nic.ru";s:7:"nserver";a:4:{s:9:"ns.spb.su";s:13:"193.124.83.69";s:14:"ns5.msk-ix.net";s:13:"193.232.128.6";s:11:"ns.ripn.net";s:13:"194.85.105.17";s:12:"ns2.ripn.net";s:13:"194.226.96.30";}s:6:"status";s:21:"REGISTERED, DELEGATED";s:7:"created";s:10:"1997-11-28";s:7:"expires";s:10:"2008-12-01";s:6:"source";s:7:"TC-RIPN";}s:5:"owner";a:4:{s:4:"type";s:9:"CORPORATE";s:12:"organization";s:39:"ANO Regional Network Information Center";s:5:"phone";s:14:"+7 499 1967278";s:3:"fax";s:14:"+7 499 1964984";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:19:"http://www.ripn.net";s:9:"registrar";s:17:"RUCENTER-REG-RIPN";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"ru.whois-servers.net";s:4:"args";s:6:"nic.ru";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:7:"ovh.com";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:7:{s:4:"name";s:7:"ovh.com";s:7:"nserver";a:4:{s:11:"dns.ovh.net";s:14:"213.186.33.102";s:13:"dns10.ovh.net";s:15:"213.251.188.129";s:10:"ns.ovh.net";s:13:"212.27.32.132";s:12:"ns10.ovh.net";s:15:"213.251.128.129";}s:6:"status";a:2:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";}s:7:"changed";s:10:"2007-07-23";s:7:"created";s:10:"2000-11-05";s:7:"expires";s:10:"2000-00-00";s:7:"sponsor";s:4:"OVH.";}s:10:"registered";s:3:"yes";s:5:"owner";a:5:{s:5:"phone";s:12:"0899 701 761";s:3:"fax";s:11:"0320200958)";s:5:"email";s:12:"oles@ovh.net";s:4:"name";s:8:"sarl OVH";s:7:"address";a:5:{i:0;s:12:"Klaba Octave";i:1;s:19:"140, quai du sartel";i:2;s:14:"Roubaix, 59100";i:3;s:2:"FR";i:4;s:1:"(";}}s:5:"admin";a:4:{s:5:"phone";s:13:"+33.899701761";s:5:"email";s:11:"lau@ovh.net";s:4:"name";s:14:"Proust Laurent";s:7:"address";a:3:{i:0;s:24:"10, rue Georges Maertens";i:1;s:12:"Lille, 59800";i:2;s:2:"FR";}}s:4:"tech";a:5:{s:5:"phone";s:13:"+33.899701761";s:3:"fax";s:14:"+33.320200958)";s:5:"email";s:12:"oles@ovh.net";s:4:"name";s:3:"OVH";s:7:"address";a:5:{i:0;s:12:"Klaba Octave";i:1;s:19:"140, quai du sartel";i:2;s:14:"Roubaix, 59100";i:3;s:2:"FR";i:4;s:1:"(";}}s:7:"billing";a:5:{s:5:"phone";s:13:"+33.899701761";s:3:"fax";s:14:"+33.320200958)";s:5:"email";s:12:"oles@ovh.net";s:4:"name";s:3:"OVH";s:7:"address";a:5:{i:0;s:12:"Klaba Octave";i:1;s:19:"140, quai du sartel";i:2;s:14:"Roubaix, 59100";i:3;s:2:"FR";i:4;s:1:"(";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:3:"OVH";s:8:"referrer";s:18:"http://www.ovh.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:15:"domain =ovh.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:13:"whois.ovh.com";s:4:"args";s:7:"ovh.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:12:"rrpproxy.net";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:7:{s:4:"name";s:12:"rrpproxy.net";s:7:"nserver";a:3:{s:24:"ns1.domaindiscount24.net";s:13:"78.47.200.155";s:24:"ns2.domaindiscount24.net";s:13:"217.11.54.127";s:24:"ns3.domaindiscount24.net";s:14:"212.227.111.27";}s:6:"status";a:1:{i:0;s:24:"clientTransferProhibited";}s:7:"changed";s:10:"2008-04-20";s:7:"created";s:10:"2001-04-19";s:7:"expires";s:10:"2009-04-19";s:7:"sponsor";s:20:"domaindiscount24.com";}s:10:"registered";s:3:"yes";s:5:"owner";a:7:{s:6:"handle";s:7:"P-JRW23";s:12:"organization";s:31:"Key-Systems GmbH d/b/a RRPproxy";s:4:"name";a:2:{s:5:"first";s:4:"Jens";s:4:"last";s:6:"Wagner";}s:7:"address";a:4:{s:6:"street";s:16:"Prager Ring 4-12";s:4:"city";s:12:"Zweibruecken";s:5:"pcode";s:5:"66482";s:7:"country";s:2:"DE";}s:5:"phone";s:16:"+49. 6332 791850";s:3:"fax";s:16:"+49. 6332 791851";s:5:"email";s:20:"support@rrpproxy.net";}s:5:"admin";a:7:{s:6:"handle";s:7:"P-JRW23";s:12:"organization";s:31:"Key-Systems GmbH d/b/a RRPproxy";s:4:"name";a:2:{s:5:"first";s:4:"Jens";s:4:"last";s:6:"Wagner";}s:7:"address";a:4:{s:6:"street";s:16:"Prager Ring 4-12";s:4:"city";s:12:"Zweibruecken";s:5:"pcode";s:5:"66482";s:7:"country";s:2:"DE";}s:5:"phone";s:16:"+49. 6332 791850";s:3:"fax";s:16:"+49. 6332 791851";s:5:"email";s:20:"support@rrpproxy.net";}s:4:"tech";a:7:{s:6:"handle";s:7:"P-JRW23";s:12:"organization";s:31:"Key-Systems GmbH d/b/a RRPproxy";s:4:"name";a:2:{s:5:"first";s:4:"Jens";s:4:"last";s:6:"Wagner";}s:7:"address";a:4:{s:6:"street";s:16:"Prager Ring 4-12";s:4:"city";s:12:"Zweibruecken";s:5:"pcode";s:5:"66482";s:7:"country";s:2:"DE";}s:5:"phone";s:16:"+49. 6332 791850";s:3:"fax";s:16:"+49. 6332 791851";s:5:"email";s:20:"support@rrpproxy.net";}s:4:"bill";a:7:{s:6:"handle";s:7:"P-JRW23";s:12:"organization";s:31:"Key-Systems GmbH d/b/a RRPproxy";s:4:"name";a:2:{s:5:"first";s:4:"Jens";s:4:"last";s:6:"Wagner";}s:7:"address";a:4:{s:6:"street";s:16:"Prager Ring 4-12";s:4:"city";s:12:"Zweibruecken";s:5:"pcode";s:5:"66482";s:7:"country";s:2:"DE";}s:5:"phone";s:16:"+49. 6332 791850";s:3:"fax";s:16:"+49. 6332 791851";s:5:"email";s:20:"support@rrpproxy.net";}}s:8:"regyinfo";a:4:{s:9:"registrar";s:16:"KEY-SYSTEMS GMBH";s:8:"referrer";s:26:"http://www.key-systems.net";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"net.whois-servers.net";s:4:"args";s:20:"domain =rrpproxy.net";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:18:"whois.rrpproxy.net";s:4:"args";s:12:"rrpproxy.net";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:19:"wildwestdomains.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:7:{s:4:"name";s:19:"wildwestdomains.com";s:7:"nserver";a:3:{s:21:"cns1.secureserver.net";s:13:"64.202.167.31";s:21:"cns2.secureserver.net";s:14:"216.69.185.100";s:21:"cns3.secureserver.net";s:13:"216.69.160.22";}s:6:"status";a:4:{i:0;s:22:"clientDeleteProhibited";i:1;s:21:"clientRenewProhibited";i:2;s:24:"clientTransferProhibited";i:3;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2006-02-03";s:7:"created";s:10:"2000-08-22";s:7:"expires";s:10:"2012-07-22";s:7:"sponsor";s:13:"WWDomains.com";}s:10:"registered";s:3:"yes";s:5:"owner";a:2:{s:4:"name";s:23:"Wild West Domains, Inc.";s:7:"address";a:3:{i:0;s:22:"14455 N Hayden Rd #219";i:1;s:25:"Scottsdale, Arizona 85260";i:2;s:13:"United States";}}s:5:"admin";a:5:{s:5:"email";s:13:"dns@jomax.net";s:4:"name";s:48:"Wild West Domains, Inc., Wild West Domains, Inc.";s:3:"fax";s:12:"- 4805058844";s:5:"phone";s:10:"4806242500";s:7:"address";a:4:{i:1;s:23:"Wild West Domains, Inc.";i:2;s:22:"14455 N Hayden Rd #219";i:3;s:25:"Scottsdale, Arizona 85260";i:4;s:13:"United States";}}s:4:"tech";a:5:{s:5:"email";s:13:"dns@jomax.net";s:4:"name";s:48:"Wild West Domains, Inc., Wild West Domains, Inc.";s:3:"fax";s:12:"- 4805058844";s:5:"phone";s:10:"4806242500";s:7:"address";a:4:{i:1;s:23:"Wild West Domains, Inc.";i:2;s:22:"14455 N Hayden Rd #219";i:3;s:25:"Scottsdale, Arizona 85260";i:4;s:13:"United States";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:23:"WILD WEST DOMAINS, INC.";s:8:"referrer";s:30:"http://www.wildwestdomains.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:27:"domain =wildwestdomains.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:25:"whois.wildwestdomains.com";s:4:"args";s:19:"wildwestdomains.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:13:"onlinenic.com";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:6:{s:4:"name";s:13:"onlinenic.com";s:7:"nserver";a:2:{s:21:"ns1.china-channel.com";s:13:"210.51.187.86";s:17:"ns1.onlinenic.net";s:11:"64.84.29.56";}s:6:"status";a:2:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";}s:7:"changed";s:10:"2007-07-11";s:7:"created";s:10:"1999-08-26";s:7:"expires";s:10:"2008-08-26";}s:10:"registered";s:3:"yes";s:5:"owner";a:4:{s:5:"phone";s:14:"+86.5925391886";s:5:"email";s:11:"xuehb@35.cn";s:4:"name";s:15:"OnlineNIC, Inc.";s:7:"address";a:3:{i:1;s:15:"OnlineNIC, Inc.";i:2;s:47:"8th,Guanri Rd,Xiamen City,Fujian Province,China";i:3;s:34:"San Francisco,California,US 361008";}}s:5:"admin";a:4:{s:5:"phone";s:13:"+1.4156656387";s:5:"email";s:22:"benjamin@onlinenic.com";s:4:"name";s:15:"OnlineNIC, Inc.";s:7:"address";a:3:{i:1;s:15:"OnlineNIC, Inc.";i:2;s:14:"2315 26th Ave.";i:3;s:33:"San Francisco,California,US 94116";}}s:4:"tech";a:4:{s:5:"phone";s:13:"+1.4156656387";s:5:"email";s:19:"xuehb@onlinenic.com";s:4:"name";s:15:"OnlineNIC, Inc.";s:7:"address";a:3:{i:1;s:15:"OnlineNIC, Inc.";i:2;s:14:"2315 26th Ave.";i:3;s:33:"San Francisco,California,US 94116";}}s:4:"bill";a:4:{s:5:"phone";s:13:"+1.4156656387";s:5:"email";s:19:"xuehb@onlinenic.com";s:4:"name";s:15:"OnlineNIC, Inc.";s:7:"address";a:3:{i:1;s:15:"OnlineNIC, Inc.";i:2;s:14:"2315 26th Ave.";i:3;s:33:"San Francisco,California,US 94116";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:15:"ONLINENIC, INC.";s:8:"referrer";s:24:"http://www.OnlineNIC.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:21:"domain =onlinenic.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:12:"whois.35.com";s:4:"args";s:13:"onlinenic.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:9:"nicco.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:6:{s:4:"name";s:9:"nicco.com";s:7:"nserver";a:2:{s:13:"ns1.nicco.com";s:12:"216.22.18.16";s:13:"ns2.nicco.com";s:12:"66.45.240.38";}s:6:"status";a:3:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";i:2;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2007-11-02";s:7:"created";s:10:"2000-11-01";s:7:"expires";s:10:"2008-11-01";}s:10:"registered";s:3:"yes";s:5:"owner";a:2:{s:4:"name";s:9:"Nicco Ltd";s:7:"address";a:3:{i:0;s:35:"Dobrolubova prospekt 11E, office 14";i:1;s:23:"Saint-Petersburg 197198";i:2;s:2:"RU";}}s:5:"admin";a:5:{s:5:"email";s:15:"admin@nicco.com";s:4:"name";s:20:"Nicco, IP Department";s:5:"phone";s:13:"+7.9213164209";s:12:"organization";s:9:"Nicco Ltd";s:7:"address";a:3:{i:0;s:35:"Dobrolubova prospekt 11E, office 14";i:1;s:23:"Saint-Petersburg 197198";i:2;s:2:"RU";}}s:4:"tech";a:5:{s:5:"email";s:15:"admin@nicco.com";s:4:"name";s:20:"Nicco, IP Department";s:5:"phone";s:13:"+7.9213164209";s:12:"organization";s:9:"Nicco Ltd";s:7:"address";a:3:{i:0;s:35:"Dobrolubova prospekt 11E, office 14";i:1;s:23:"Saint-Petersburg 197198";i:2;s:2:"RU";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:10:"NICCO LTD.";s:8:"referrer";s:20:"http://www.nicco.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:17:"domain =nicco.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:15:"whois.nicco.com";s:4:"args";s:9:"nicco.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:12:"nameking.com";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:7:{s:4:"name";s:12:"nameking.com";s:7:"nserver";a:2:{s:16:"ns1.nameking.com";s:12:"204.13.162.6";s:16:"ns2.nameking.com";s:13:"204.13.161.18";}s:6:"status";a:1:{i:0;s:24:"clientTransferProhibited";}s:7:"changed";s:10:"2006-11-24";s:7:"created";s:10:"1999-05-07";s:7:"expires";s:10:"2009-05-07";s:7:"sponsor";s:13:"NAMEKING INC.";}s:10:"registered";s:3:"yes";s:5:"owner";a:5:{s:4:"name";s:20:"Domain Administrator";s:12:"organization";s:13:"Nameking Inc.";s:5:"email";s:27:"registry-admin@nameking.com";s:7:"address";a:4:{i:0;s:10:"Suite 4400";s:6:"street";s:19:"515 S Flower Street";s:4:"city";s:30:"Los Angeles, California, 90071";s:7:"country";s:2:"US";}s:5:"phone";s:12:"1.2132205715";}s:5:"admin";a:5:{s:4:"name";s:20:"Domain Administrator";s:12:"organization";s:13:"Nameking Inc.";s:5:"email";s:27:"registry-admin@nameking.com";s:7:"address";a:4:{i:0;s:10:"Suite 4400";s:6:"street";s:19:"515 S Flower Street";s:4:"city";s:30:"Los Angeles, California, 90071";s:7:"country";s:2:"US";}s:5:"phone";s:12:"1.2132205715";}s:4:"bill";a:5:{s:4:"name";s:32:"Billing Department Administrator";s:12:"organization";s:13:"Nameking Inc.";s:5:"email";s:29:"registry-billing@nameking.com";s:7:"address";a:3:{s:6:"street";s:30:"2202 S. Figueroa St. Suite 721";s:4:"city";s:30:"Los Angeles, California, 90007";s:7:"country";s:2:"US";}s:5:"phone";s:12:"1.2132205715";}s:4:"tech";a:5:{s:4:"name";s:23:"Technical Administrator";s:12:"organization";s:13:"Nameking Inc.";s:5:"email";s:26:"registry-tech@nameking.com";s:7:"address";a:3:{s:6:"street";s:30:"2202 S. Figueroa St. Suite 721";s:4:"city";s:30:"Los Angeles, California, 90007";s:7:"country";s:2:"US";}s:5:"phone";s:12:"1.2132205715";}}s:8:"regyinfo";a:4:{s:9:"registrar";s:18:"NAMEKING.COM, INC.";s:8:"referrer";s:23:"http://www.nameking.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:20:"domain =nameking.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:18:"whois.nameking.com";s:4:"args";s:12:"nameking.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:12:"fabulous.com";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:6:{s:4:"name";s:12:"fabulous.com";s:7:"nserver";a:2:{s:19:"ns1.darkbluesea.com";s:13:"64.15.205.133";s:19:"ns2.darkbluesea.com";s:13:"64.15.205.134";}s:6:"status";a:2:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";}s:7:"changed";s:10:"2007-10-02";s:7:"created";s:10:"1997-03-16";s:7:"expires";s:10:"2016-12-07";}s:10:"registered";s:3:"yes";s:5:"owner";a:2:{s:4:"name";s:28:"DBS Administration Pty. Ltd.";s:7:"address";a:2:{i:0;s:11:"GPO Box 278";i:1;s:21:"Brisbane, QLD 4001 AU";}}s:4:"bill";a:5:{s:5:"email";s:26:"hostmaster@darkbluesea.com";s:5:"phone";s:13:"+61.730070000";s:3:"fax";s:13:"+61.730070001";s:4:"name";s:28:"DBS Administration Pty. Ltd.";s:7:"address";a:3:{i:0;s:17:"Domain Hostmaster";i:1;s:11:"GPO Box 278";i:2;s:21:"Brisbane, QLD 4001 AU";}}s:4:"tech";a:5:{s:5:"email";s:26:"hostmaster@darkbluesea.com";s:5:"phone";s:13:"+61.730070000";s:3:"fax";s:13:"+61.730070001";s:4:"name";s:28:"DBS Administration Pty. Ltd.";s:7:"address";a:3:{i:0;s:17:"Domain Hostmaster";i:1;s:11:"GPO Box 278";i:2;s:21:"Brisbane, QLD 4001 AU";}}s:5:"admin";a:5:{s:5:"email";s:26:"hostmaster@darkbluesea.com";s:5:"phone";s:13:"+61.730070000";s:3:"fax";s:13:"+61.730070001";s:4:"name";s:28:"DBS Administration Pty. Ltd.";s:7:"address";a:3:{i:0;s:17:"Domain Hostmaster";i:1;s:11:"GPO Box 278";i:2;s:21:"Brisbane, QLD 4001 AU";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:21:"FABULOUS.COM PTY LTD.";s:8:"referrer";s:23:"http://www.fabulous.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:20:"domain =fabulous.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:18:"whois.fabulous.com";s:4:"args";s:12:"fabulous.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:6:"nic.ae";a:2:{s:8:"regyinfo";a:4:{s:8:"referrer";s:17:"http://www.nic.ae";s:9:"registrar";s:6:"UAENIC";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:12:"whois.nic.ae";s:4:"args";s:6:"nic.ae";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}s:8:"regrinfo";a:6:{s:10:"registered";s:3:"yes";s:5:"admin";a:8:{s:4:"name";s:14:"Abdulla Hashim";s:7:"address";a:2:{i:0;s:5:"Dubai";i:1;s:20:"United Arab Emirates";}s:5:"phone";s:14:"+971 4 2025510";s:3:"fax";s:14:"+971 4 2948300";s:5:"email";s:22:"hashim@emirates.net.ae";s:6:"handle";s:10:"AH5-UAENIC";s:7:"changed";s:10:"2006-11-28";s:6:"source";s:6:"UAENIC";}s:4:"tech";a:8:{s:4:"name";s:16:"Sultan Al Shamsi";s:7:"address";a:2:{i:0;s:5:"Dubai";i:1;s:20:"United Arab Emirates";}s:5:"phone";s:14:"+971 4 2025537";s:3:"fax";s:14:"+971 4 2948300";s:5:"email";s:16:"sultan@uaenic.ae";s:6:"handle";s:10:"SAS-UAENIC";s:7:"changed";s:10:"2006-11-28";s:6:"source";s:6:"UAENIC";}s:4:"zone";a:8:{s:4:"name";s:14:"Abdulla Hashim";s:7:"address";a:2:{i:0;s:5:"Dubai";i:1;s:20:"United Arab Emirates";}s:5:"phone";s:14:"+971 4 2025510";s:3:"fax";s:14:"+971 4 2948300";s:5:"email";s:22:"hashim@emirates.net.ae";s:6:"handle";s:10:"AH5-UAENIC";s:7:"changed";s:10:"2006-11-28";s:6:"source";s:6:"UAENIC";}s:6:"domain";a:4:{s:6:"domain";s:6:"nic.ae";s:7:"changed";s:10:"2006-08-05";s:6:"source";s:6:"UAENIC";s:4:"name";s:6:"nic.ae";}s:5:"owner";a:2:{s:4:"name";s:25:"ETISALAT DUBAI EIM OFFICE";s:7:"address";a:3:{i:0;s:5:"Dubai";i:1;s:12:"P.O.Box 1150";i:2;s:20:"United Arab Emirates";}}}}s:6:"dns.pt";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:4:{s:4:"name";s:6:"dns.pt";s:7:"created";s:10:"1991-10-03";s:6:"status";s:6:"ACTIVE";s:7:"nserver";a:4:{s:9:"ns.dns.pt";s:11:"193.136.0.1";s:12:"ns02.fccn.pt";s:13:"193.136.2.228";s:14:"inesc.inesc.pt";s:11:"146.193.0.1";s:14:"helios.fccn.pt";s:14:"193.137.198.35";}}s:5:"owner";a:3:{s:5:"email";s:18:"secretaria@fccn.pt";s:4:"name";s:53:"Fundacao para a Computacao Cientifica Nacional - FCCN";s:7:"address";a:3:{i:0;s:22:"Av. do Brasil, no. 101";i:1;s:15:"1700-066 Lisboa";i:2;s:2:"PT";}}s:4:"bill";a:2:{s:5:"email";s:18:"secretaria@fccn.pt";s:4:"name";s:53:"Fundacao para a Computacao Cientifica Nacional - FCCN";}s:5:"admin";a:2:{s:5:"email";s:19:"pedro.veiga@fccn.pt";s:4:"name";s:26:"Pedro Manuel Barbosa Veiga";}s:4:"tech";a:2:{s:5:"email";s:14:"wg-dns@fccn.pt";s:4:"name";s:23:"Eugénio Gonçalves Pinto";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:18:"http://www.fccn.pt";s:9:"registrar";s:4:"FCCN";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"pt.whois-servers.net";s:4:"args";s:6:"dns.pt";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:9:"sex.co.za";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:3:{s:7:"changed";s:10:"2007-02-19";s:4:"name";s:9:"sex.co.za";s:7:"nserver";a:2:{s:18:"ns1.adultlistz.com";s:12:"64.235.247.6";s:18:"ns2.adultlistz.com";s:12:"64.235.247.7";}}s:5:"owner";a:3:{s:7:"address";a:1:{s:7:"address";a:1:{i:0;s:42:"22 The Meadows, Fareham, England, PO16 8UN";}}s:5:"phone";s:15:"0944-7774802792";s:5:"email";s:25:"hostmaster@adultlistz.com";}s:7:"billing";a:3:{s:4:"name";s:11:"EPCommunity";s:5:"email";s:25:"hostmaster@adultlistz.com";s:7:"address";s:42:"22 The Meadows, Fareham, England, PO16 8UN";}s:5:"admin";a:5:{s:4:"name";s:13:"Turner, James";s:12:"organization";s:11:"EPCommunity";s:7:"address";s:42:"22 The Meadows, Fareham, England, PO16 8UN";s:5:"phone";s:13:"+66 2 6419455";s:5:"email";s:24:"dnsadmin@linkbroking.com";}s:4:"tech";a:5:{s:4:"name";s:12:"Garbin, Alan";s:12:"organization";s:11:"EPCommunity";s:7:"address";s:42:"22 The Meadows, Fareham, England, PO16 8UN";s:5:"phone";s:15:"0944-7774802792";s:5:"email";s:25:"hostmaster@adultlistz.com";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:16:"http://www.co.za";s:9:"registrar";s:20:"UniForum Association";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:29:"http://co.za/cgi-bin/whois.sh";s:4:"args";s:16:"Domain=sex.co.za";s:4:"port";i:80;}}s:4:"type";s:6:"domain";}}s:10:"sex.org.za";a:2:{s:8:"regrinfo";a:7:{s:5:"owner";a:2:{s:4:"name";s:9:"FastPages";s:7:"address";a:1:{i:0;s:31:"PO Box 1264, Wingate Park, 0153";}}s:5:"admin";a:4:{s:5:"email";s:21:"admin@webonline.co.za";s:4:"name";s:25:"Admin Web Online <>";s:3:"fax";s:15:"+27 861 232 323";s:5:"phone";s:15:"+27 861 666 555";}s:4:"tech";a:4:{s:5:"email";s:23:"support@webonline.co.za";s:4:"name";s:27:"Support Web Online <>";s:3:"fax";s:15:"+27 861 232 323";s:5:"phone";s:15:"+27 861 666 555";}s:7:"billing";a:4:{s:5:"email";s:24:"accounts@webonline.co.za";s:4:"name";s:28:"Accounts Web Online <>";s:3:"fax";s:15:"+27 861 232 323";s:5:"phone";s:15:"+27 861 666 555";}s:6:"domain";a:5:{s:7:"updated";s:20:"27-Mar-2002 08:27:58";s:6:"status";s:6:"Active";s:7:"nserver";a:2:{s:20:"dns4.webonline.co.za";s:14:"160.124.112.68";s:20:"dns2.webonline.co.za";s:13:"196.25.84.199";}s:7:"handler";s:20:"SEX_1017210478_ORGZA";s:4:"name";s:10:"sex.org.za";}i:0;a:2:{i:0;s:16:"Show records for";i:1;s:24:"infullsummarydumpformat.";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:17:"http://www.org.za";s:9:"registrar";s:17:"The ORG.ZA Domain";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:32:"http://www.org.za/cgi-bin/rwhois";s:4:"args";s:29:"domain=sex.org.za&format=full";s:4:"port";i:80;}}s:4:"type";s:6:"domain";}}s:10:"smile.coop";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:8:{s:6:"handle";s:10:"4636D-COOP";s:4:"name";s:10:"smile.coop";s:7:"expires";s:10:"2009-01-30";s:6:"status";s:2:"ok";s:7:"sponsor";s:12:"domains.coop";s:7:"created";s:10:"2001-07-10";s:7:"changed";s:10:"2008-02-05";s:7:"nserver";a:2:{s:16:"ns1.netnames.net";s:14:"204.74.108.253";s:16:"ns2.netnames.net";s:14:"204.74.109.253";}}s:10:"registered";s:3:"yes";s:5:"owner";a:7:{s:6:"handle";s:11:"49056C-COOP";s:4:"name";s:21:"NetNames Luge Pravda";s:12:"organization";s:36:"Co operative Financial Services Ltd.";s:7:"address";a:4:{s:6:"street";a:2:{i:0;s:9:"1st Floor";i:1;s:13:"Miller Street";}s:4:"city";s:10:"Manchester";s:5:"pcode";s:7:"M60 0AL";s:7:"country";s:14:"United Kingdom";}s:5:"phone";s:14:"+44.2070159316";s:3:"fax";s:14:"+44.8704589404";s:5:"email";s:24:"luge.pravda@netnames.com";}s:4:"tech";a:7:{s:6:"handle";s:11:"49056C-COOP";s:4:"name";s:21:"NetNames Luge Pravda";s:12:"organization";s:36:"Co operative Financial Services Ltd.";s:7:"address";a:4:{s:6:"street";a:2:{i:0;s:9:"1st Floor";i:1;s:13:"Miller Street";}s:4:"city";s:10:"Manchester";s:5:"pcode";s:7:"M60 0AL";s:7:"country";s:14:"United Kingdom";}s:5:"phone";s:14:"+44.2070159316";s:3:"fax";s:14:"+44.8704589404";s:5:"email";s:24:"luge.pravda@netnames.com";}s:5:"admin";a:7:{s:6:"handle";s:11:"49056C-COOP";s:4:"name";s:21:"NetNames Luge Pravda";s:12:"organization";s:36:"Co operative Financial Services Ltd.";s:7:"address";a:4:{s:6:"street";a:2:{i:0;s:9:"1st Floor";i:1;s:13:"Miller Street";}s:4:"city";s:10:"Manchester";s:5:"pcode";s:7:"M60 0AL";s:7:"country";s:14:"United Kingdom";}s:5:"phone";s:14:"+44.2070159316";s:3:"fax";s:14:"+44.8704589404";s:5:"email";s:24:"luge.pravda@netnames.com";}s:7:"billing";a:7:{s:6:"handle";s:11:"49056C-COOP";s:4:"name";s:21:"NetNames Luge Pravda";s:12:"organization";s:36:"Co operative Financial Services Ltd.";s:7:"address";a:4:{s:6:"street";a:2:{i:0;s:9:"1st Floor";i:1;s:13:"Miller Street";}s:4:"city";s:10:"Manchester";s:5:"pcode";s:7:"M60 0AL";s:7:"country";s:14:"United Kingdom";}s:5:"phone";s:14:"+44.2070159316";s:3:"fax";s:14:"+44.8704589404";s:5:"email";s:24:"luge.pravda@netnames.com";}}s:8:"regyinfo";a:2:{s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:22:"coop.whois-servers.net";s:4:"args";s:10:"smile.coop";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}} \ No newline at end of file +a:122:{s:6:"nic.ag";a:2:{s:8:"regyinfo";a:4:{s:8:"referrer";s:17:"http://www.nic.ag";s:9:"registrar";s:6:"Nic AG";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"ag.whois-servers.net";s:4:"args";s:6:"nic.ag";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}s:8:"regrinfo";a:5:{s:6:"domain";a:8:{s:6:"handle";s:11:"D52707-LRCC";s:4:"name";s:6:"nic.ag";s:7:"created";s:10:"1998-05-02";s:7:"changed";s:10:"2009-05-02";s:7:"expires";s:10:"2010-05-02";s:7:"sponsor";s:26:"NicAg Registrar (R32-LRCC)";s:6:"status";s:2:"OK";s:7:"nserver";a:1:{s:10:"ns1.nic.ag";s:14:"66.101.197.226";}}s:5:"owner";a:7:{s:6:"handle";s:5:"66454";s:4:"name";s:14:"None Specified";s:12:"organization";s:11:"Nic AG Ltd.";s:7:"address";a:4:{s:6:"street";a:2:{i:0;s:14:"New Winthorpes";i:1;s:21:"Box W 1092 Woods Mall";}s:4:"city";s:10:"St. John's";s:5:"pcode";s:5:"00049";s:7:"country";s:2:"AG";}s:5:"phone";s:13:"+1.2685622556";s:3:"fax";s:13:"+1.2685622558";s:5:"email";s:14:"manager@nic.ag";}s:5:"admin";a:7:{s:6:"handle";s:5:"65672";s:4:"name";s:18:"Dr. Patrick W. Lay";s:12:"organization";s:11:"Nic AG Ltd.";s:7:"address";a:4:{s:6:"street";a:2:{i:0;s:14:"New Winthorpes";i:1;s:25:"P.O.BOX W1092, Woods Mall";}s:4:"city";s:10:"St. John's";s:5:"pcode";s:5:"00049";s:7:"country";s:2:"AG";}s:5:"phone";s:13:"+1.2685622556";s:3:"fax";s:13:"+1.2685622558";s:5:"email";s:14:"manager@nic.ag";}s:4:"tech";a:7:{s:6:"handle";s:5:"65672";s:4:"name";s:18:"Dr. Patrick W. Lay";s:12:"organization";s:11:"Nic AG Ltd.";s:7:"address";a:4:{s:6:"street";a:2:{i:0;s:14:"New Winthorpes";i:1;s:25:"P.O.BOX W1092, Woods Mall";}s:4:"city";s:10:"St. John's";s:5:"pcode";s:5:"00049";s:7:"country";s:2:"AG";}s:5:"phone";s:13:"+1.2685622556";s:3:"fax";s:13:"+1.2685622558";s:5:"email";s:14:"manager@nic.ag";}s:10:"registered";s:3:"yes";}}s:6:"nic.at";a:2:{s:8:"regyinfo";a:4:{s:8:"referrer";s:17:"http://www.nic.at";s:9:"registrar";s:6:"NIC-AT";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"at.whois-servers.net";s:4:"args";s:6:"nic.at";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}s:8:"regrinfo";a:4:{s:10:"registered";s:3:"yes";s:5:"admin";a:8:{s:4:"name";s:11:"NIC.AT Role";s:7:"address";a:4:{s:6:"street";s:23:"Jakob-Haringerstrasse 8";s:5:"pcode";s:6:"A-5020";s:4:"city";s:8:"Salzburg";s:7:"country";s:7:"Austria";}s:5:"phone";s:11:"+4366246690";s:3:"fax";s:12:"+43662466929";s:5:"email";s:9:"it@nic.at";s:6:"handle";s:16:"NAR1899634-NICAT";s:7:"changed";s:10:"2005-12-29";s:6:"source";s:6:"AT-DOM";}s:4:"tech";a:8:{s:4:"name";s:15:"Gerhard Winkler";s:12:"organization";s:17:"Vienna University";s:7:"address";a:4:{s:6:"street";s:22:"Universitaetsstrasse 7";s:5:"pcode";s:6:"A-1010";s:4:"city";s:6:"Vienna";s:7:"country";s:7:"Austria";}s:5:"phone";s:13:"+431427714035";s:5:"email";s:28:"gerhard.winkler@univie.ac.at";s:6:"handle";s:14:"GW502425-NICAT";s:7:"changed";s:10:"2006-02-02";s:6:"source";s:6:"AT-DOM";}s:6:"domain";a:6:{s:6:"domain";s:6:"nic.at";s:10:"registrant";s:17:"NAIV1902732-NICAT";s:7:"nserver";a:4:{s:19:"ns3ext.univie.ac.at";s:12:"131.130.1.11";s:19:"ns4ext.univie.ac.at";s:12:"131.130.1.12";s:16:"ns5.univie.ac.at";s:14:"193.171.255.77";s:16:"ns9.univie.ac.at";s:12:"194.0.10.100";}s:7:"changed";s:10:"2005-05-24";s:6:"source";s:6:"AT-DOM";s:4:"name";s:6:"nic.at";}}}s:14:"telstra.com.au";a:2:{s:8:"regyinfo";a:4:{s:8:"referrer";s:20:"http://www.aunic.net";s:9:"registrar";s:6:"AU-NIC";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"au.whois-servers.net";s:4:"args";s:14:"telstra.com.au";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}s:8:"regrinfo";a:4:{s:6:"domain";a:5:{s:4:"name";s:14:"telstra.com.au";s:7:"changed";s:10:"2009-09-27";s:7:"sponsor";s:12:"TPP Internet";s:6:"status";s:42:"clientUpdateProhibited (Client protection)";s:7:"nserver";a:5:{s:17:"ns.telstra.com.au";s:13:"202.12.144.10";s:18:"ns2.telstra.com.au";s:13:"202.12.144.11";s:13:"munnari.oz.au";s:12:"202.29.151.3";s:25:"muwaya.ucs.unimelb.edu.au";s:12:"128.250.20.2";s:18:"ns3.telstra.com.au";s:13:"202.12.233.10";}}s:5:"owner";a:4:{s:12:"organization";s:27:"Telecom Australia (Telstra)";s:6:"handle";s:11:"C0699190-AR";s:4:"name";s:20:"Domain Administrator";s:5:"email";s:50:"Visit whois.ausregistry.com.au for Web based WhoIs";}s:4:"tech";a:3:{s:6:"handle";s:11:"C0699192-AR";s:4:"name";s:20:"domain Administrator";s:5:"email";s:50:"Visit whois.ausregistry.com.au for Web based WhoIs";}s:10:"registered";s:3:"yes";}}s:6:"nic.be";a:2:{s:8:"regrinfo";a:4:{s:6:"domain";a:5:{s:4:"name";s:6:"nic.be";s:6:"status";s:10:"REGISTERED";s:7:"created";s:10:"1998-04-01";s:7:"nserver";a:3:{s:20:"ns.be.hostbasket.com";s:14:"195.130.154.74";s:20:"ns.nl.hostbasket.com";s:12:"80.66.133.57";s:20:"ns.fr.hostbasket.com";s:12:"212.3.226.95";}s:7:"sponsor";s:14:"HOSTBASKET nv.";}s:5:"owner";a:1:{s:4:"name";s:54:"Not shown, please visit www.dns.be for webbased whois.";}s:4:"tech";a:6:{s:4:"name";s:29:"Hostbasket Hostbasket Support";s:12:"organization";s:13:"Hostbasket NV";s:7:"address";a:3:{s:6:"street";s:20:"Antwerpsesteenweg 19";s:4:"city";s:14:"9080 Lochristi";s:7:"country";s:2:"BE";}s:5:"phone";s:12:"+32.93269090";s:3:"fax";s:12:"+32.93269098";s:5:"email";s:22:"support@hostbasket.com";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:29:"http://www.domain-registry.nl";s:9:"registrar";s:11:"DNS Belgium";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"be.whois-servers.net";s:4:"args";s:6:"nic.be";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:11:"registro.br";a:2:{s:8:"regyinfo";a:4:{s:9:"registrar";s:6:"BR-NIC";s:8:"referrer";s:17:"http://www.nic.br";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"br.whois-servers.net";s:4:"args";s:11:"registro.br";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}s:8:"regrinfo";a:3:{s:10:"registered";s:3:"yes";s:6:"domain";a:1:{s:4:"name";s:11:"registro.br";}s:5:"owner";a:1:{s:12:"organization";s:55:"Núcleo de Informação e Coordenação do Ponto BR (662379)";}}}s:7:"cira.ca";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:5:{s:6:"status";s:5:"EXIST";s:7:"created";s:10:"1998-02-05";s:7:"expires";s:10:"2011-02-05";s:7:"nserver";a:2:{s:12:"ns01.cira.ca";s:14:"192.228.26.135";s:12:"ns02.cira.ca";s:14:"192.228.26.136";}s:4:"name";s:7:"cira.ca";}s:5:"owner";a:3:{s:4:"name";s:110:"Canadian Internet Registration Authority (NFP) / Autorité Canadienne pour les enregistrements Internet (OSBL)";s:6:"handle";s:1:"1";s:12:"organization";s:23:"CA domain registration.";}s:5:"admin";a:5:{s:4:"name";s:11:"Linda Arial";s:7:"address";a:5:{i:0;s:4:"CIRA";i:1;s:40:"Canadian Internet Registration Authority";i:2;s:17:"350 Sparks Street";i:3;s:10:"Suite 306";i:4;s:25:"Ottawa ON K1R 7S8 Canada";}s:5:"phone";s:14:"(613) 237-5335";s:3:"fax";s:14:"(613) 237-0534";s:5:"email";s:15:"domains@cira.ca";}s:4:"tech";a:3:{s:4:"name";s:16:"Address Reply To";s:7:"address";a:4:{i:0;s:40:"Canadian Internet Registration Authority";i:1;s:17:"350 Sparks Street";i:2;s:10:"Suite 306";i:3;s:25:"Ottawa ON K1R 7S8 Canada";}s:5:"email";s:21:"regtrant-conf@cira.ca";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:9:"registrar";s:4:"CIRA";s:8:"referrer";s:19:"http://www.cira.ca/";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"ca.whois-servers.net";s:4:"args";s:7:"cira.ca";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:9:"creart.ch";a:2:{s:8:"regrinfo";a:4:{s:6:"domain";a:2:{s:4:"name";s:9:"creart.ch";s:7:"nserver";a:2:{s:14:"ns5.netmarq.ch";s:13:"80.74.130.203";s:14:"ns6.netmarq.ch";s:12:"80.74.144.45";}}s:5:"owner";a:2:{s:4:"name";s:19:"von Allmen Beatrice";s:7:"address";a:4:{i:0;s:20:"Schlossmattstrasse 4";i:1;s:16:"CH-3400 Burgdorf";i:2;s:11:"Switzerland";i:3;s:11:"Contractual";}}s:4:"tech";a:2:{s:4:"name";s:12:"Netmarq GmbH";s:7:"address";a:5:{i:0;s:13:"Dietrich Marc";i:1;s:7:"Hosting";i:2;s:12:"Postfach 448";i:3;s:18:"CH-3800 Interlaken";i:4;s:11:"Switzerland";}}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:17:"http://www.nic.ch";s:9:"registrar";s:31:"SWITCH Domain Name Registration";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"ch.whois-servers.net";s:4:"args";s:9:"creart.ch";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:14:"blaueskreuz.ch";a:2:{s:8:"regrinfo";a:4:{s:6:"domain";a:2:{s:4:"name";s:14:"blaueskreuz.ch";s:7:"nserver";a:2:{s:15:"ns1.interway.ch";s:15:"194.246.118.119";s:15:"ns2.interway.ch";s:12:"212.25.28.54";}}s:5:"owner";a:2:{s:4:"name";s:53:"Blaues Kreuz Kinder- & Jugendwerk, Zentralsekretariat";s:7:"address";a:6:{i:0;s:14:"Lehner Andreas";i:1;s:31:"Prävention + Gesundheitsförd.";i:2;s:12:"Lindenrain 5";i:3;s:12:"CH-3012 Bern";i:4;s:11:"Switzerland";i:5;s:11:"Contractual";}}s:4:"tech";a:2:{s:4:"name";s:18:"Frischknecht Peter";s:7:"address";a:3:{i:0;s:6:"Egg 79";i:1;s:20:"CH-9103 Schwellbrunn";i:2;s:11:"Switzerland";}}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:17:"http://www.nic.ch";s:9:"registrar";s:31:"SWITCH Domain Name Registration";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"ch.whois-servers.net";s:4:"args";s:14:"blaueskreuz.ch";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:12:"cnnic.net.cn";a:2:{s:8:"regyinfo";a:4:{s:8:"referrer";s:23:"http://www.cnnic.net.cn";s:9:"registrar";s:9:"China NIC";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"cn.whois-servers.net";s:4:"args";s:12:"cnnic.net.cn";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}s:8:"regrinfo";a:4:{s:6:"domain";a:6:{s:4:"name";s:12:"cnnic.net.cn";s:6:"status";s:24:"serverTransferProhibited";s:7:"sponsor";s:30:"中国互è”网络信æ¯ä¸­å¿ƒ";s:7:"nserver";a:5:{s:10:"a.cnnic.cn";s:12:"203.119.25.5";s:10:"b.cnnic.cn";s:12:"203.119.26.5";s:10:"c.cnnic.cn";s:12:"203.119.27.5";s:10:"d.cnnic.cn";s:12:"203.119.28.5";s:10:"e.cnnic.cn";s:12:"203.119.29.5";}s:7:"created";s:10:"1997-06-03";s:7:"expires";s:10:"2018-06-03";}s:5:"owner";a:2:{s:12:"organization";s:30:"中国互è”网络信æ¯ä¸­å¿ƒ";s:4:"name";s:9:"å­™å«ä¼š";}s:5:"admin";a:1:{s:5:"email";s:16:"service@cnnic.cn";}s:10:"registered";s:3:"yes";}}s:6:"nic.cz";a:2:{s:8:"regyinfo";a:4:{s:8:"referrer";s:17:"http://www.nic.cz";s:9:"registrar";s:6:"CZ-NIC";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"cz.whois-servers.net";s:4:"args";s:6:"nic.cz";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}s:8:"regrinfo";a:4:{s:10:"registered";s:3:"yes";s:5:"admin";a:10:{s:6:"handle";s:6:"TM-NIC";s:3:"org";s:16:"CZ.NIC, z.s.p.o.";s:4:"name";s:14:"Tomas Marsalek";s:7:"address";a:4:{i:0;s:11:"Americka 23";i:1;s:5:"Praha";i:2;s:5:"12000";i:3;s:2:"CZ";}s:5:"phone";s:14:"+420.222745111";s:3:"fax";s:14:"+420.222745112";s:5:"email";s:9:"tm@nic.cz";s:9:"registrar";s:9:"REG-CZNIC";s:7:"created";s:10:"2001-08-10";s:7:"changed";s:10:"2007-10-08";}s:5:"owner";a:9:{s:6:"handle";s:6:"CZ-NIC";s:3:"org";s:16:"CZ.NIC, z.s.p.o.";s:4:"name";s:16:"CZ.NIC, z.s.p.o.";s:7:"address";a:4:{i:0;s:11:"Americka 23";i:1;s:7:"Praha 2";i:2;s:5:"12000";i:3;s:2:"CZ";}s:5:"phone";s:14:"+420.222745111";s:3:"fax";s:14:"+420.222745112";s:5:"email";s:12:"admin@nic.cz";s:9:"registrar";s:9:"REG-CZNIC";s:7:"created";s:10:"2008-10-17";}s:6:"domain";a:8:{s:4:"name";s:6:"nic.cz";s:5:"nsset";s:6:"CZ.NIC";s:6:"keyset";s:9:"KS:NIC.CZ";s:9:"registrar";s:9:"REG-CZNIC";s:6:"status";s:38:"Sponsoring registrar change prohibited";s:7:"created";s:10:"1997-10-30";s:7:"changed";s:10:"2009-06-03";s:7:"expires";s:10:"2017-03-15";}}}s:8:"4ever.de";a:2:{s:8:"regrinfo";a:4:{s:6:"domain";a:4:{s:4:"name";s:8:"4ever.de";s:7:"nserver";a:4:{s:11:"ns.4ever.de";s:12:"195.34.187.2";s:12:"ns2.4ever.de";s:13:"200.35.149.45";s:12:"ns3.4ever.de";s:12:"67.23.32.103";s:20:"ns.does.not-exist.de";s:12:"62.159.88.13";}s:6:"status";s:7:"connect";s:7:"changed";s:10:"2004-05-13";}s:4:"tech";a:5:{s:4:"name";s:21:"Hostmaster of the day";s:7:"address";a:4:{s:6:"street";s:22:"Carl-Goerdeler-Str. 11";s:5:"pcode";s:5:"60320";s:4:"city";s:9:"Frankfurt";s:7:"country";s:2:"DE";}s:5:"phone";s:16:"+49 69 3308 2951";s:3:"fax";s:16:"+49 69 27235 239";s:5:"email";s:15:"elmi@detebe.org";}s:4:"zone";a:5:{s:4:"name";s:21:"Hostmaster of the day";s:7:"address";a:4:{s:6:"street";s:22:"Carl-Goerdeler-Str. 11";s:5:"pcode";s:5:"60320";s:4:"city";s:9:"Frankfurt";s:7:"country";s:2:"DE";}s:5:"phone";s:16:"+49 69 3308 2951";s:3:"fax";s:16:"+49 69 27235 239";s:5:"email";s:15:"elmi@detebe.org";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:9:"registrar";s:8:"DENIC eG";s:8:"referrer";s:20:"http://www.denic.de/";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"de.whois-servers.net";s:4:"args";s:18:"-T dn,ace 4ever.de";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:6:"ols.es";a:2:{s:8:"regrinfo";a:6:{s:5:"owner";a:1:{s:4:"name";s:26:"On-line Services 2000 S.L.";}s:5:"admin";a:5:{s:5:"phone";s:13:"+34.902502975";s:5:"email";s:13:"domreg@ols.es";s:4:"name";s:17:"David Saez Padros";s:7:"address";a:5:{i:0;s:17:"Pintor Vayreda, 1";i:1;s:5:"08184";i:2;s:24:"Palau Solita i Plegamans";i:3;s:9:"BARCELONA";i:4;s:2:"ES";}s:6:"handle";s:9:"DS5-ESNIC";}s:4:"tech";a:1:{s:6:"handle";s:9:"DS5-ESNIC";}s:7:"billing";a:1:{s:6:"handle";s:9:"DS5-ESNIC";}s:6:"domain";a:4:{s:7:"created";s:10:"1996-07-15";s:7:"expires";s:10:"2009-07-15";s:7:"nserver";a:2:{s:11:"b.ns.ols.es";s:13:"78.129.233.52";s:11:"a.ns.ols.es";s:13:"82.98.132.208";}s:4:"name";s:6:"ols.es";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:17:"http://www.nic.es";s:9:"registrar";s:6:"ES-NIC";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:30:"http://shop.arsys.es/whois.php";s:4:"args";s:14:"dominio=ols.es";s:4:"port";i:80;}}s:4:"type";s:6:"domain";}}s:6:"dot.fm";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:7:{s:7:"created";s:10:"2000-01-01";s:7:"expires";s:10:"2099-04-30";s:7:"changed";s:10:"2009-08-30";s:6:"status";s:6:"Active";s:7:"sponsor";s:14:"BRS Media Inc.";s:7:"nserver";a:2:{s:18:"ns2.intermedia.net";s:10:"207.5.44.2";s:18:"ns3.intermedia.net";s:11:"207.5.1.222";}s:4:"name";s:6:"dot.fm";}s:5:"owner";a:4:{s:5:"email";s:14:"gtbundy@dot.fm";s:5:"phone";s:12:"415-677-4027";s:4:"name";s:12:"George Bundy";s:7:"address";a:4:{i:0;s:14:"BRS Media Inc.";i:1;s:31:"55 New Montgomery St. Suite 622";i:2;s:28:"San Francisco, CA 94105-3432";i:3;s:2:"US";}}s:5:"admin";a:3:{s:5:"phone";s:12:"415-677-4027";s:4:"name";s:12:"George Bundy";s:7:"address";a:4:{i:0;s:14:"BRS Media Inc.";i:1;s:31:"55 New Montgomery St. Suite 622";i:2;s:28:"San Francisco, CA 94105-3432";i:3;s:2:"US";}}s:4:"tech";a:3:{s:5:"phone";s:12:"415-677-4027";s:4:"name";s:16:"dotFM Hostmaster";s:7:"address";a:4:{i:0;s:14:"BRS Media Inc.";i:1;s:31:"55 New Montgomery St. Suite 622";i:2;s:28:"San Francisco, CA 94105-3432";i:3;s:2:"US";}}s:7:"billing";a:4:{s:5:"phone";s:24:"+1.415.677.4027 ·";s:3:"fax";s:24:"+1.415.677.4025 ·";s:4:"name";s:13:"dotFM Billing";s:7:"address";a:4:{i:0;s:14:"BRS Media Inc.";i:1;s:31:"55 New Montgomery St. Suite 622";i:2;s:28:"San Francisco, CA 94105-3432";i:3;s:2:"US";}}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:17:"http://www.dot.dm";s:9:"registrar";s:5:"dotFM";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:33:"http://www.dot.fm/query_whois.cfm";s:4:"args";s:17:"domain=dot&tld=fm";s:4:"port";i:80;}}s:4:"type";s:6:"domain";}}s:6:"nic.hu";a:2:{s:8:"regrinfo";a:6:{s:10:"registered";s:3:"yes";s:5:"owner";a:5:{s:12:"organization";a:2:{i:0;s:39:"org_name_eng: Council of Hungarian ISPs";i:1;s:47:"org_name_hun: Internet Szolgáltatók Tanácsa.";}s:7:"address";a:3:{i:0;s:20:"Victor Hugo u. 18-22";i:1;s:13:"1132 Budapest";i:2;s:2:"HU";}s:5:"phone";s:14:"+36 1 238 0115";s:3:"fax";s:14:"+36 1 238 0114";s:6:"handle";s:10:"1000281292";}s:5:"admin";a:5:{s:4:"name";s:13:"Chairman CHIP";s:7:"address";a:3:{i:0;s:21:"Victor Hugo u. 18-22.";i:1;s:15:"H-1132 Budapest";i:2;s:2:"HU";}s:5:"phone";s:13:"+36 1 2380115";s:3:"fax";s:13:"+36 1 2380114";s:6:"handle";s:10:"2980810003";}s:4:"tech";a:6:{s:4:"role";s:15:"CHIP Hostmaster";s:7:"address";a:3:{i:0;s:21:"Victor Hugo u. 18-22.";i:1;s:15:"H-1132 Budapest";i:2;s:2:"HU";}s:5:"phone";s:13:"+36 1 2380115";s:3:"fax";s:13:"+36 1 2380114";s:5:"email";s:17:"hostmaster@nic.hu";s:6:"handle";s:10:"3980615001";}s:4:"zone";a:6:{s:4:"role";s:15:"CHIP Hostmaster";s:7:"address";a:3:{i:0;s:21:"Victor Hugo u. 18-22.";i:1;s:15:"H-1132 Budapest";i:2;s:2:"HU";}s:5:"phone";s:13:"+36 1 2380115";s:3:"fax";s:13:"+36 1 2380114";s:5:"email";s:17:"hostmaster@nic.hu";s:6:"handle";s:10:"3980615001";}s:6:"domain";a:5:{s:6:"domain";s:6:"nic.hu";s:7:"nserver";a:2:{s:10:"ns.iszt.hu";s:15:"193.239.149.116";s:11:"ns-s.nic.hu";s:15:"193.225.195.195";}s:7:"created";s:10:"1996-06-27";s:7:"changed";s:10:"2009-09-09";s:4:"name";s:6:"nic.hu";}}s:8:"regyinfo";a:4:{s:8:"referrer";s:17:"http://www.nic.hu";s:9:"registrar";s:5:"HUNIC";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"hu.whois-servers.net";s:4:"args";s:6:"nic.hu";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:17:"domainregistry.ie";a:2:{s:8:"regyinfo";a:4:{s:8:"referrer";s:28:"http://www.domainregistry.ie";s:9:"registrar";s:18:"IE Domain Registry";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"ie.whois-servers.net";s:4:"args";s:17:"domainregistry.ie";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}s:8:"regrinfo";a:5:{s:10:"registered";s:3:"yes";s:5:"admin";a:3:{s:4:"name";s:15:"IEDR Hostmaster";s:6:"handle";s:8:"IH4-IEDR";s:6:"source";s:4:"IEDR";}s:4:"tech";a:3:{s:4:"name";s:15:"IEDR Hostmaster";s:6:"handle";s:8:"IH4-IEDR";s:6:"source";s:4:"IEDR";}s:6:"domain";a:6:{s:6:"domain";s:17:"domainregistry.ie";s:7:"expires";s:10:"2010-03-19";s:6:"status";s:6:"Active";s:7:"nserver";a:4:{s:21:"ns0.domainregistry.ie";s:11:"193.1.32.38";s:15:"auth-ns2.ucd.ie";s:13:"137.43.132.54";s:12:"ns.heanet.ie";s:13:"193.1.193.194";s:16:"ice.netsource.ie";s:11:"212.17.32.2";}s:6:"source";s:4:"IEDR";s:4:"name";s:17:"domainregistry.ie";}s:5:"owner";a:1:{s:12:"organization";s:26:"IE Domain Registry Limited";}}}s:8:"isnic.is";a:2:{s:8:"regyinfo";a:4:{s:8:"referrer";s:19:"http://www.isnic.is";s:9:"registrar";s:5:"ISNIC";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"is.whois-servers.net";s:4:"args";s:8:"isnic.is";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}s:8:"regrinfo";a:7:{s:10:"registered";s:3:"yes";s:5:"admin";a:8:{s:4:"name";s:17:"Jens Pétur Jensen";s:7:"address";a:3:{i:0;s:29:"Internet á Íslandi hf (INTÍS)";i:1;s:9:"Dunhaga 5";i:2;s:16:"IS-107 Reykjavík";}s:5:"phone";s:13:"+354 578 2034";s:3:"fax";s:13:"+354 578 2031";s:5:"email";s:13:"jens@isnic.is";s:6:"handle";s:7:"JENS-IS";s:7:"created";s:10:"1999-12-15";s:6:"source";s:5:"ISNIC";}s:4:"tech";a:8:{s:4:"role";s:16:"ISNIC Hostmaster";s:7:"address";a:3:{i:0;s:22:"Internet á Íslandi hf.";i:1;s:9:"Dunhaga 5";i:2;s:16:"IS-107 Reykjavík";}s:5:"phone";s:13:"+354 578 2030";s:3:"fax";s:13:"+354 578 2031";s:5:"email";s:19:"hostmaster@isnic.is";s:6:"handle";s:7:"ISHM-IS";s:7:"created";s:10:"2002-05-15";s:6:"source";s:5:"ISNIC";}s:7:"billing";a:7:{s:4:"role";s:21:"Internet á Íslandi hf";s:7:"address";a:2:{i:0;s:9:"Dunhaga 5";i:1;s:16:"IS-107 Reykjavík";}s:5:"phone";s:13:"+354 578 2030";s:5:"email";s:16:"bokhald@isnic.is";s:6:"handle";s:7:"ISBC-IS";s:7:"created";s:10:"2000-11-06";s:6:"source";s:5:"ISNIC";}s:4:"zone";a:8:{s:4:"role";s:16:"ISNIC Hostmaster";s:7:"address";a:3:{i:0;s:22:"Internet á Íslandi hf.";i:1;s:9:"Dunhaga 5";i:2;s:16:"IS-107 Reykjavík";}s:5:"phone";s:13:"+354 578 2030";s:3:"fax";s:13:"+354 578 2031";s:5:"email";s:19:"hostmaster@isnic.is";s:6:"handle";s:7:"ISHM-IS";s:7:"created";s:10:"2002-05-15";s:6:"source";s:5:"ISNIC";}s:6:"domain";a:6:{s:6:"domain";s:8:"isnic.is";s:7:"nserver";a:3:{s:13:"aker.isnic.is";s:11:"193.4.58.91";s:15:"hathor.isnic.is";s:11:"193.4.58.92";s:18:"ns.colo-a.isnic.is";s:12:"193.4.241.11";}s:7:"created";s:10:"2000-09-05";s:7:"expires";s:10:"2010-09-05";s:6:"source";s:5:"ISNIC";s:4:"name";s:8:"isnic.is";}s:5:"owner";a:2:{s:4:"name";s:21:"Internet á Íslandi hf";s:7:"address";a:2:{i:0;s:9:"Dunhaga 5";i:1;s:16:"IS-107 Reykjavík";}}}}s:6:"nic.li";a:2:{s:8:"regrinfo";a:4:{s:6:"domain";a:1:{s:4:"name";s:6:"nic.li";}s:5:"owner";a:2:{s:4:"name";s:6:"SWITCH";s:7:"address";a:6:{i:0;s:18:"D'Alessandro Marco";i:1;s:14:"Marketing & PR";i:2;s:13:"Werdstrasse 2";i:3;s:15:"CH-8004 Zürich";i:4;s:11:"Switzerland";i:5;s:11:"Contractual";}}s:4:"tech";a:2:{s:4:"name";s:55:"SWITCH - Teleinformatikdienste für Lehre und Forschung";s:7:"address";a:5:{i:0;s:14:"Hostmaster .CH";i:1;s:7:"Network";i:2;s:13:"Werdstrasse 2";i:3;s:15:"CH-8004 Zürich";i:4;s:11:"Switzerland";}}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:17:"http://www.nic.ch";s:9:"registrar";s:31:"SWITCH Domain Name Registration";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"li.whois-servers.net";s:4:"args";s:6:"nic.li";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:6:"dns.lu";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:4:{s:4:"name";s:6:"dns.lu";s:6:"status";s:6:"ACTIVE";s:7:"nserver";a:6:{s:10:"ns1.dns.lu";s:12:"158.64.229.2";s:8:"k.dns.lu";s:10:"194.0.1.13";s:10:"ns5.dns.lu";s:13:"81.91.161.100";s:8:"b.dns.lu";s:14:"156.154.101.11";s:8:"a.dns.lu";s:14:"156.154.100.11";s:8:"i.dns.lu";s:14:"194.146.106.66";}s:7:"created";s:10:"1995-05-31";}s:5:"owner";a:3:{s:4:"type";s:12:"ORGANISATION";s:12:"organization";s:17:"Fondation RESTENA";s:7:"address";a:4:{i:0;s:25:"6, rue Coudenhove-Kalergi";s:5:"pcode";s:4:"1359";s:4:"city";s:10:"Luxembourg";s:7:"country";s:2:"LU";}}s:5:"admin";a:3:{s:4:"name";s:15:"Antoine BARTHEL";s:7:"address";a:5:{i:0;s:17:"Fondation RESTENA";i:1;s:25:"6, rue Coudenhove-Kalergi";s:5:"pcode";s:4:"1359";s:4:"city";s:10:"LUXEMBOURG";s:7:"country";s:2:"LU";}s:5:"email";s:16:"admin@restena.lu";}s:4:"tech";a:3:{s:4:"name";s:13:"Gilles Massen";s:7:"address";a:5:{i:0;s:17:"Fondation RESTENA";i:1;s:25:"6, rue Coudenhove-Kalergi";s:5:"pcode";s:4:"1359";s:4:"city";s:10:"Luxembourg";s:7:"country";s:2:"LU";}s:5:"email";s:24:"gilles.massen@restena.lu";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:17:"http://www.dns.lu";s:9:"registrar";s:6:"DNS-LU";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"lu.whois-servers.net";s:4:"args";s:6:"dns.lu";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:9:"domreg.lt";a:2:{s:8:"regrinfo";a:3:{s:6:"domain";a:3:{s:6:"status";s:10:"registered";s:7:"created";s:10:"1999-10-17";s:4:"name";s:9:"domreg.lt";}s:5:"owner";a:2:{s:4:"name";s:51:"KTU Informacinių technologijų plÄ—tros institutas";s:5:"email";s:20:"hostmaster@domreg.lt";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:20:"http://www.domreg.lt";s:9:"registrar";s:9:"DOMREG.LT";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"lt.whois-servers.net";s:4:"args";s:9:"domreg.lt";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:6:"nic.mx";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:6:{s:7:"created";s:10:"1997-01-15";s:7:"expires";s:10:"2013-01-14";s:7:"changed";s:10:"2009-11-01";s:7:"sponsor";s:12:"Registry .MX";s:7:"nserver";a:6:{s:10:"m.mx-ns.mx";s:12:"200.94.176.1";s:10:"e.mx-ns.mx";s:13:"189.201.244.1";s:10:"x.mx-ns.mx";s:13:"201.131.252.1";s:10:"i.mx-ns.mx";s:12:"207.248.68.1";s:10:"c.mx-ns.mx";s:13:"192.100.224.1";s:10:"o.mx-ns.mx";s:10:"200.23.1.1";}s:4:"name";s:6:"nic.mx";}s:5:"owner";a:2:{s:4:"name";s:37:"Network Information Center Mexico SC";s:7:"address";a:3:{s:4:"city";s:9:"Monterrey";s:5:"state";s:10:"Nuevo Leon";s:7:"country";s:6:"Mexico";}}s:5:"admin";a:2:{s:4:"name";s:37:"Network Information Center Mexico SC";s:7:"address";a:3:{s:4:"city";s:9:"Monterrey";s:5:"state";s:10:"Nuevo Leon";s:7:"country";s:6:"Mexico";}}s:4:"tech";a:2:{s:4:"name";s:37:"Network Information Center Mexico SC";s:7:"address";a:3:{s:4:"city";s:9:"Monterrey";s:5:"state";s:10:"Nuevo Leon";s:7:"country";s:6:"Mexico";}}s:7:"billing";a:2:{s:4:"name";s:37:"Network Information Center Mexico SC";s:7:"address";a:3:{s:4:"city";s:9:"Monterrey";s:5:"state";s:10:"Nuevo Leon";s:7:"country";s:6:"Mexico";}}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:9:"registrar";s:10:"NIC Mexico";s:8:"referrer";s:18:"http://www.nic.mx/";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"mx.whois-servers.net";s:4:"args";s:6:"nic.mx";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:18:"domain-registry.nl";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:6:{s:4:"name";s:18:"domain-registry.nl";s:6:"status";s:6:"active";s:7:"nserver";a:4:{s:11:"ns1.sidn.nl";s:13:"94.198.152.68";s:9:"ns.nl.net";s:12:"193.78.240.1";s:14:"ns1.surfnet.nl";s:14:"192.87.106.101";s:11:"ns2.sidn.nl";s:12:"194.171.17.5";}s:7:"created";s:10:"1994-09-30";s:7:"changed";s:10:"2009-09-14";s:7:"sponsor";s:18:"NL Domain Registry";}s:5:"owner";a:3:{s:4:"name";s:46:"Stichting Internet Domeinregistratie Nederland";s:7:"address";a:3:{i:0;s:16:"Utrechtseweg 310";i:1;s:14:"6812AR ARNHEM";i:2;s:11:"Netherlands";}s:6:"handle";s:15:"STI044010-SIDN2";}s:5:"admin";a:5:{s:5:"phone";s:16:"+31 (0)263525555";s:5:"email";s:15:"support@sidn.nl";s:4:"name";s:16:"G.J. van den Ham";s:7:"address";a:0:{}s:6:"handle";s:15:"HAM003802-SIDN2";}s:4:"zone";a:2:{s:4:"name";s:46:"Stichting Internet Domeinregistratie Nederland";s:7:"address";a:3:{i:0;s:16:"Utrechtseweg 310";i:1;s:14:"6812AR ARNHEM";i:2;s:11:"Netherlands";}}s:4:"tech";a:5:{s:5:"phone";s:16:"+31 (0)263525555";s:5:"email";s:15:"support@sidn.nl";s:4:"name";s:16:"Jan van Pijkeren";s:7:"address";a:0:{}s:6:"handle";s:15:"PIJ001675-SIDN2";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:29:"http://www.domain-registry.nl";s:9:"registrar";s:39:"Stichting Internet Domeinregistratie NL";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"nl.whois-servers.net";s:4:"args";s:18:"domain-registry.nl";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:10:"nunames.nu";a:2:{s:8:"regrinfo";a:2:{s:6:"domain";a:5:{s:7:"changed";s:10:"2008-12-12";s:7:"created";s:10:"1997-05-30";s:6:"status";s:15:"Active-Reserved";s:7:"nserver";a:3:{s:14:"lns0.ma.nic.nu";s:11:"69.25.75.71";s:17:"lns0.telia.nic.nu";s:12:"212.181.91.5";s:14:"lns0.de.nic.nu";s:11:"62.4.64.117";}s:4:"name";s:10:"nunames.nu";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:5:{s:5:"whois";s:12:"whois.nic.nu";s:8:"referrer";s:21:"http://www.nunames.nu";s:9:"registrar";s:15:".NU Domain, Ltd";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"nu.whois-servers.net";s:4:"args";s:10:"nunames.nu";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:6:"nic.pl";a:2:{s:8:"regrinfo";a:3:{s:5:"owner";a:1:{s:6:"handle";s:18:"wdc145 (CORPORATE)";}s:6:"domain";a:4:{s:7:"created";s:10:"1998-03-11";s:7:"changed";s:10:"2009-00-10";s:7:"nserver";a:2:{s:15:"ns1.netnames.pl";s:11:"62.181.1.10";s:15:"ns2.netnames.pl";s:11:"62.181.0.10";}s:4:"name";s:6:"nic.pl";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:36:"http://www.dns.pl/english/index.html";s:9:"registrar";s:4:"NASK";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"pl.whois-servers.net";s:4:"args";s:6:"nic.pl";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:9:"nic-se.se";a:2:{s:8:"regrinfo";a:3:{s:6:"domain";a:5:{s:6:"status";a:2:{i:0;s:6:"active";i:1;s:2:"ok";}s:4:"name";s:9:"nic-se.se";s:7:"created";s:10:"1997-11-10";s:7:"expires";s:10:"2010-12-31";s:7:"nserver";a:3:{s:9:"ns.nic.se";s:13:"212.247.7.228";s:10:"ns3.nic.se";s:12:"212.247.3.83";s:10:"ns2.nic.se";s:12:"194.17.45.54";}}s:5:"owner";a:1:{s:6:"handle";s:16:"stifte0702-00242";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:20:"http://www.nic-se.se";s:9:"registrar";s:6:"NIC-SE";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"se.whois-servers.net";s:4:"args";s:9:"nic-se.se";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:11:"olsns.co.uk";a:2:{s:8:"regrinfo";a:3:{s:5:"owner";a:2:{s:12:"organization";s:27:"On-Line Services 2000, S.L.";s:7:"address";a:4:{i:0;s:17:"Trafalgar 78 2 2B";i:1;s:7:"Unknown";i:2;s:5:"08010";i:3;s:5:"Spain";}}s:6:"domain";a:7:{s:7:"sponsor";s:42:"On-Line Services 2000, S.L. [Tag = OLS-ES]";s:7:"created";s:10:"2001-02-21";s:7:"expires";s:10:"2011-02-21";s:7:"changed";s:10:"2009-03-13";s:6:"status";a:1:{i:0;s:30:"Registered until renewal date.";}s:7:"nserver";a:2:{s:16:"a.ns.olsns.co.uk";s:13:"82.98.132.208";s:16:"b.ns.olsns.co.uk";s:13:"78.129.233.52";}s:4:"name";s:11:"olsns.co.uk";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:21:"http://www.monimet.uk";s:9:"registrar";s:10:"Nominet UK";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:23:"co.uk.whois-servers.net";s:4:"args";s:11:"olsns.co.uk";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:10:"neustar.us";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:8:{s:4:"name";s:10:"neustar.us";s:6:"handle";s:10:"D670499-US";s:7:"sponsor";s:18:"REGISTRY REGISTRAR";s:6:"status";s:22:"serverUpdateProhibited";s:7:"nserver";a:2:{s:18:"gdns1.ultradns.net";s:12:"204.74.110.1";s:18:"gdns2.ultradns.net";s:12:"204.74.111.1";}s:7:"created";s:10:"2002-04-18";s:7:"expires";s:10:"2010-04-17";s:7:"changed";s:10:"2009-06-02";}s:5:"owner";a:6:{s:6:"handle";s:7:"NEUSTAR";s:4:"name";s:7:"NEUSTAR";s:7:"address";a:5:{s:6:"street";s:19:"Loudoun Tech Center";s:4:"city";s:8:"Sterling";s:5:"state";s:2:"VA";s:5:"pcode";s:5:"20166";s:7:"country";s:13:"United States";}s:5:"phone";s:13:"+1.5714345757";s:3:"fax";s:13:"+1.5714345758";s:5:"email";s:18:"support@neustar.us";}s:5:"admin";a:6:{s:6:"handle";s:7:"NEUSTAR";s:4:"name";s:7:"NEUSTAR";s:7:"address";a:5:{s:6:"street";s:19:"Loudoun Tech Center";s:4:"city";s:8:"Sterling";s:5:"state";s:2:"VA";s:5:"pcode";s:5:"20166";s:7:"country";s:13:"United States";}s:5:"phone";s:13:"+1.5714345757";s:3:"fax";s:13:"+1.5714345758";s:5:"email";s:18:"support@neustar.us";}s:7:"billing";a:6:{s:6:"handle";s:7:"NEUSTAR";s:4:"name";s:7:"NEUSTAR";s:7:"address";a:5:{s:6:"street";s:19:"Loudoun Tech Center";s:4:"city";s:8:"Sterling";s:5:"state";s:2:"VA";s:5:"pcode";s:5:"20166";s:7:"country";s:13:"United States";}s:5:"phone";s:13:"+1.5714345757";s:3:"fax";s:13:"+1.5714345758";s:5:"email";s:18:"support@neustar.us";}s:4:"tech";a:6:{s:6:"handle";s:7:"NEUSTAR";s:4:"name";s:7:"NEUSTAR";s:7:"address";a:5:{s:6:"street";s:19:"Loudoun Tech Center";s:4:"city";s:8:"Sterling";s:5:"state";s:2:"VA";s:5:"pcode";s:5:"20166";s:7:"country";s:13:"United States";}s:5:"phone";s:13:"+1.5714345757";s:3:"fax";s:13:"+1.5714345758";s:5:"email";s:18:"support@neustar.us";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:21:"http://www.neustar.us";s:9:"registrar";s:12:"NEUSTAR INC.";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"us.whois-servers.net";s:4:"args";s:10:"neustar.us";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:11:"samoanic.ws";a:2:{s:8:"regrinfo";a:4:{s:6:"domain";a:4:{s:4:"name";s:11:"samoanic.ws";s:7:"sponsor";s:25:"Computer Services Limited";s:7:"created";s:10:"2000-03-09";s:7:"changed";s:10:"2008-08-06";}s:5:"owner";a:2:{s:12:"organization";s:3:"CSL";s:5:"email";s:3:"---";}s:5:"admin";a:2:{s:5:"email";s:24:"See registrar info above";s:5:"phone";s:24:"See registrar info above";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:22:"http://www.samoanic.ws";s:9:"registrar";s:9:"Samoa Nic";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:20:"ws.whois-servers.net";s:4:"args";s:11:"samoanic.ws";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:30:"http://samoanic.ws/whois.dhtml";s:4:"args";s:11:"samoanic.ws";s:4:"port";i:80;}}s:4:"type";s:6:"domain";}}s:14:"alldomains.com";a:2:{s:8:"regrinfo";a:2:{s:6:"domain";a:6:{s:4:"name";s:14:"alldomains.com";s:7:"nserver";a:5:{s:18:"ns1.alldomains.com";s:12:"64.124.14.32";s:18:"ns2.alldomains.com";s:14:"204.228.234.15";s:18:"ns3.alldomains.com";s:14:"208.75.133.194";s:18:"ns4.alldomains.com";s:15:"217.199.176.204";s:18:"ns5.alldomains.com";s:14:"123.242.230.66";}s:6:"status";a:3:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";i:2;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2009-06-13";s:7:"created";s:10:"1996-06-13";s:7:"expires";s:10:"2010-06-12";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:9:"registrar";s:17:"ALLINDOMAINS, LLC";s:8:"referrer";s:27:"http://www.allindomains.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:22:"domain =alldomains.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:22:"whois.allindomains.com";s:4:"args";s:14:"alldomains.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:9:"ascio.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:6:{s:4:"name";s:9:"ascio.com";s:7:"nserver";a:4:{s:18:"cgn1srv2.ascio.net";s:14:"80.237.202.145";s:17:"iapetus.ascio.net";s:11:"72.51.41.73";s:20:"ns0.netbenefit.co.uk";s:12:"212.53.64.30";s:20:"ns1.netbenefit.co.uk";s:12:"212.53.77.30";}s:6:"status";a:1:{i:0;s:24:"clientTransferProhibited";}s:7:"changed";s:10:"2009-04-03";s:7:"created";s:10:"2005-03-01";s:7:"expires";s:10:"2010-05-31";}s:10:"registered";s:3:"yes";s:5:"owner";a:2:{s:4:"name";s:38:"ASCIO Technologies Inc. (ASCIOTEC1364)";s:7:"address";a:3:{i:0;s:17:"Islands Brygge 55";i:1;s:19:"Copenhagen, S, 2300";i:2;s:2:"DK";}}s:4:"tech";a:5:{s:5:"email";s:23:"hostmaster@netnames.net";s:3:"fax";s:14:"+44.2070159375";s:5:"phone";s:14:"+44.2070159370";s:4:"name";s:29:"Hostmaster, Netnames (NH7523)";s:7:"address";a:5:{i:0;s:13:"Group NBT plc";i:1;s:24:"3rd Floor Prospero House";i:2;s:20:"241 Borough High St.";i:3;s:15:"London, SE1 1GA";i:4;s:2:"GB";}}s:5:"admin";a:5:{s:5:"email";s:25:"hostmaster@speednames.com";s:3:"fax";s:12:"+45.33886301";s:5:"phone";s:12:"+45.33886300";s:4:"name";s:30:"Hostmaster, Technical (TH6437)";s:7:"address";a:4:{i:0;s:10:"Speednames";i:1;s:13:"Rejsbygade 8a";i:2;s:20:"Copenhagen, DK, 1759";i:3;s:2:"DK";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:24:"ASCIO TECHNOLOGIES, INC.";s:8:"referrer";s:28:"http://publicwhois.ascio.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:17:"domain =ascio.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:15:"whois.ascio.com";s:4:"args";s:9:"ascio.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:13:"naturebox.com";a:2:{s:8:"regrinfo";a:4:{s:6:"domain";a:8:{s:4:"name";s:13:"naturebox.com";s:7:"nserver";a:2:{s:25:"ns2.interimnameserver.com";s:14:"206.225.91.125";s:25:"ns1.interimnameserver.com";s:15:"207.170.243.233";}s:6:"status";s:6:"ACTIVE";s:10:"epp_status";a:1:{i:0;s:2:"ok";}s:7:"changed";s:10:"2005-06-29";s:7:"created";s:10:"2005-06-29";s:7:"expires";s:10:"2006-06-29";s:7:"sponsor";s:7:"CHINESE";}s:10:"registered";s:3:"yes";s:5:"admin";a:6:{i:0;s:38:"Preston, Paul ppreston@sitedomain.net";i:1;s:17:"CyberSurfers Inc.";i:2;s:26:"712 West Broad St, Ste B-1";i:3;s:23:"Falls Church, VA 22046";i:4;s:2:"US";i:5;s:13:"+1.7035347761";}s:4:"tech";a:6:{i:0;s:38:"Preston, Paul ppreston@sitedomain.net";i:1;s:17:"CyberSurfers Inc.";i:2;s:26:"712 West Broad St, Ste B-1";i:3;s:23:"Falls Church, VA 22046";i:4;s:2:"US";i:5;s:13:"+1.7035347761";}}s:8:"regyinfo";a:6:{s:9:"registrar";s:19:"CHINESEDOMAINS, LLC";s:5:"whois";s:22:"whois.chinesedomain.cn";s:8:"referrer";s:27:"http://www.chinesedomain.cn";s:4:"args";s:14:"=naturebox.com";s:4:"port";i:43;s:4:"type";s:6:"domain";}}s:14:"buydomains.com";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:6:{s:4:"name";s:14:"buydomains.com";s:7:"nserver";a:2:{s:18:"ns3.buydomains.com";s:11:"64.95.64.94";s:18:"ns4.buydomains.com";s:11:"206.83.79.7";}s:6:"status";a:1:{i:0;s:24:"clientTransferProhibited";}s:7:"changed";s:10:"2006-04-06";s:7:"created";s:10:"1997-03-30";s:7:"expires";s:10:"2011-03-31";}s:10:"registered";s:3:"yes";s:5:"owner";a:2:{s:4:"name";s:25:"BuyDomains Holdings, Inc.";s:7:"address";a:3:{i:0;s:16:"230 Third Avenue";i:1;s:17:"Waltham, MA 02451";i:2;s:2:"US";}}s:5:"admin";a:5:{s:5:"phone";s:13:"(781)839-2800";s:3:"fax";s:13:"(781)839-2801";s:5:"email";s:24:"corporate@buydomains.com";s:4:"name";s:25:"BuyDomains Holdings, Inc.";s:7:"address";a:3:{i:0;s:16:"230 Third Avenue";i:1;s:17:"Waltham, MA 02451";i:2;s:2:"US";}}s:4:"tech";a:5:{s:5:"phone";s:13:"(781)839-2800";s:3:"fax";s:13:"(781)839-2801";s:5:"email";s:24:"corporate@buydomains.com";s:4:"name";s:25:"BuyDomains Holdings, Inc.";s:7:"address";a:3:{i:0;s:16:"230 Third Avenue";i:1;s:17:"Waltham, MA 02451";i:2;s:2:"US";}}s:4:"zone";a:5:{s:5:"phone";s:13:"(781)839-2800";s:3:"fax";s:13:"(781)839-2801";s:5:"email";s:24:"corporate@buydomains.com";s:4:"name";s:25:"BuyDomains Holdings, Inc.";s:7:"address";a:3:{i:0;s:16:"230 Third Avenue";i:1;s:17:"Waltham, MA 02451";i:2;s:2:"US";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:14:"DOMAINDISCOVER";s:8:"referrer";s:29:"http://www.domaindiscover.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:22:"domain =buydomains.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:24:"whois.domaindiscover.com";s:4:"args";s:14:"buydomains.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:19:"domaincontender.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:6:{s:4:"name";s:19:"domaincontender.com";s:7:"nserver";a:2:{s:20:"ns1.securemarket.net";s:13:"74.117.217.76";s:20:"ns2.securemarket.net";s:13:"74.117.222.28";}s:6:"status";a:3:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";i:2;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2006-01-03";s:7:"created";s:10:"2003-08-09";s:7:"expires";s:10:"2010-08-09";}s:10:"registered";s:3:"yes";s:5:"owner";a:3:{s:5:"phone";s:12:"504-274-4800";s:4:"name";s:16:"Domain Contender";s:7:"address";a:4:{i:0;s:14:"650 Poydras St";i:1;s:10:"Suite 1150";i:2;s:21:"New Orleans, LA 70130";i:3;s:2:"US";}}s:5:"admin";a:4:{s:5:"email";s:28:"registry@domaincontender.com";s:4:"name";s:16:"Solares, Sigmund";s:5:"phone";s:12:"504-274-4800";s:7:"address";a:4:{i:1;s:14:"650 Poydras St";i:2;s:10:"Suite 1150";i:3;s:21:"New Orleans, LA 70130";i:4;s:2:"US";}}s:4:"tech";a:4:{s:5:"email";s:28:"registry@domaincontender.com";s:4:"name";s:16:"Solares, Sigmund";s:5:"phone";s:12:"504-274-4800";s:7:"address";a:4:{i:1;s:14:"650 Poydras St";i:2;s:10:"Suite 1150";i:3;s:21:"New Orleans, LA 70130";i:4;s:2:"US";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:13:"ASSORTED, LTD";s:8:"referrer";s:23:"http://www.assorted.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:27:"domain =domaincontender.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:18:"whois.assorted.com";s:4:"args";s:19:"domaincontender.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:11:"corenic.com";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:7:{s:4:"name";s:11:"corenic.com";s:7:"nserver";a:3:{s:15:"dns.globvill.de";s:12:"212.20.191.2";s:12:"ns2.knipp.de";s:12:"195.253.6.52";s:12:"ns3.knipp.de";s:13:"194.64.105.66";}s:6:"status";a:3:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";i:2;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2009-09-14";s:7:"created";s:10:"1997-09-22";s:7:"expires";s:10:"2010-09-13";s:6:"handle";s:12:"D3040399-CNO";}s:10:"registered";s:3:"yes";s:5:"owner";a:4:{s:4:"name";s:16:"CORE ASSOCIATION";s:12:"organization";s:45:"INTERNET COUNCIL OF REGISTRARS - Werner Staub";s:7:"address";a:4:{s:4:"city";s:6:"Geneva";s:5:"state";s:2:"GE";s:5:"pcode";s:7:"CH-1215";s:7:"country";s:2:"CH";}s:5:"email";s:23:"secretariat@corenic.org";}s:5:"admin";a:5:{s:6:"handle";s:8:"COCO-354";s:4:"name";s:16:"CORE ASSOCIATION";s:12:"organization";s:45:"INTERNET COUNCIL OF REGISTRARS - Werner Staub";s:7:"address";a:4:{s:4:"city";s:6:"Geneva";s:5:"state";s:2:"GE";s:5:"pcode";s:7:"CH-1215";s:7:"country";s:2:"CH";}s:5:"email";s:23:"secretariat@corenic.org";}s:4:"tech";a:5:{s:6:"handle";s:8:"COCO-354";s:4:"name";s:16:"CORE ASSOCIATION";s:12:"organization";s:45:"INTERNET COUNCIL OF REGISTRARS - Werner Staub";s:7:"address";a:4:{s:4:"city";s:6:"Geneva";s:5:"state";s:2:"GE";s:5:"pcode";s:7:"CH-1215";s:7:"country";s:2:"CH";}s:5:"email";s:23:"secretariat@corenic.org";}s:4:"zone";a:5:{s:6:"handle";s:8:"COCO-354";s:4:"name";s:16:"CORE ASSOCIATION";s:12:"organization";s:45:"INTERNET COUNCIL OF REGISTRARS - Werner Staub";s:7:"address";a:4:{s:4:"city";s:6:"Geneva";s:5:"state";s:2:"GE";s:5:"pcode";s:7:"CH-1215";s:7:"country";s:2:"CH";}s:5:"email";s:23:"secretariat@corenic.org";}}s:8:"regyinfo";a:4:{s:9:"registrar";s:35:"CORE INTERNET COUNCIL OF REGISTRARS";s:8:"referrer";s:22:"http://www.corenic.net";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:19:"domain =corenic.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:17:"whois.corenic.net";s:4:"args";s:11:"corenic.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:12:"antiquea.com";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:6:{s:4:"name";s:12:"antiquea.com";s:7:"nserver";a:2:{s:16:"ns1.webmailer.de";s:12:"81.169.146.7";s:16:"ns2.webmailer.de";s:12:"85.214.0.251";}s:6:"status";a:1:{i:0;s:2:"ok";}s:7:"changed";s:10:"2009-06-09";s:7:"created";s:10:"2000-06-08";s:7:"expires";s:10:"2010-06-08";}s:10:"registered";s:3:"yes";s:5:"owner";a:2:{s:4:"name";s:16:"Olaf Braun-Elias";s:7:"address";a:3:{i:0;s:23:"Historische Bauelemente";i:1;s:18:"Baerenklauer Weg 2";i:2;s:20:"Marwitz, D-16727, DE";}}i:0;s:12:"antiquea.com";s:5:"admin";a:4:{s:5:"email";s:18:"guardian@xlink.net";s:5:"phone";s:14:"+49 3304502242";s:4:"name";s:16:"Olaf Braun-Elias";s:7:"address";a:3:{i:0;s:23:"Historische Bauelemente";i:1;s:18:"Baerenklauer Weg 2";i:2;s:20:"Marwitz, D-16727, DE";}}s:4:"tech";a:4:{s:5:"email";s:25:"hostmaster@cronon-isp.net";s:5:"phone";s:15:"+49 72166320305";s:4:"name";s:31:"Hostmaster Strato Rechenzentrum";s:7:"address";a:3:{i:0;s:34:"Cronon AG Professional IT-Services";i:1;s:20:"Emmy-Noether-Str. 10";i:2;s:22:"Karlsruhe, D-76131, DE";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:42:"CRONON AG BERLIN, NIEDERLASSUNG REGENSBURG";s:8:"referrer";s:23:"http://nsi-robo.tmag.de";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:20:"domain =antiquea.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:17:"whois.tmagnic.net";s:4:"args";s:12:"antiquea.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:13:"directnic.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:6:{s:4:"name";s:13:"directnic.com";s:7:"nserver";a:2:{s:17:"ns0.directnic.com";s:13:"74.117.217.20";s:17:"ns1.directnic.com";s:13:"74.117.222.20";}s:6:"status";a:3:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";i:2;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2009-09-14";s:7:"created";s:10:"2000-02-10";s:7:"expires";s:10:"2011-02-09";}s:10:"registered";s:3:"yes";s:5:"owner";a:4:{s:5:"phone";s:14:"1-345-745-6022";s:3:"fax";s:14:"1-345-745-6023";s:4:"name";s:14:"directNIC, LTD";s:7:"address";a:3:{i:0;s:12:"PO Box 11207";i:1;s:34:"George Town, Grand Cayman KY1-1008";i:2;s:2:"KY";}}s:5:"admin";a:5:{s:5:"email";s:24:"hostmaster@directnic.com";s:4:"name";s:21:"Administrator, Domain";s:5:"phone";s:14:"1-345-745-6022";s:3:"fax";s:14:"1-345-745-6023";s:7:"address";a:3:{i:1;s:12:"PO Box 11207";i:2;s:34:"George Town, Grand Cayman KY1-1008";i:3;s:2:"KY";}}s:4:"tech";a:5:{s:5:"email";s:24:"hostmaster@directnic.com";s:4:"name";s:21:"Administrator, Domain";s:5:"phone";s:14:"1-345-745-6022";s:3:"fax";s:14:"1-345-745-6023";s:7:"address";a:3:{i:1;s:12:"PO Box 11207";i:2;s:34:"George Town, Grand Cayman KY1-1008";i:3;s:2:"KY";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:14:"DIRECTNIC, LTD";s:8:"referrer";s:24:"http://www.directnic.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:21:"domain =directnic.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:19:"whois.directnic.com";s:4:"args";s:13:"directnic.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:14:"domainbank.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:7:{s:4:"name";s:14:"domainbank.com";s:7:"nserver";a:2:{s:19:"dns1.domainbank.com";s:14:"216.52.121.235";s:19:"dns2.domainbank.com";s:14:"66.150.161.153";}s:6:"status";a:3:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";i:2;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2008-05-19";s:7:"created";s:10:"1998-07-28";s:7:"expires";s:10:"2012-07-27";s:7:"sponsor";s:10:"DOMAINBANK";}s:10:"registered";s:3:"yes";s:5:"owner";a:2:{s:4:"name";s:12:"Dotster Inc.";s:7:"address";a:4:{i:0;s:18:"8100 NE Parkway DR";i:1;s:9:"Suite 300";i:2;s:20:"Vancouver, WA 98662";i:3;s:2:"US";}}s:5:"admin";a:5:{s:5:"email";s:17:"legal@dotster.com";s:4:"name";s:13:"Domain Admin,";s:5:"phone";s:12:"360-253-2210";s:3:"fax";s:12:"360-253-4234";s:7:"address";a:5:{i:1;s:12:"Dotster Inc.";i:2;s:18:"8100 NE Parkway DR";i:3;s:9:"Suite 300";i:4;s:20:"Vancouver, WA 98662";i:5;s:2:"US";}}s:4:"tech";a:5:{s:5:"email";s:17:"legal@dotster.com";s:4:"name";s:13:"Domain Admin,";s:5:"phone";s:12:"360-253-2210";s:3:"fax";s:12:"360-253-4234";s:7:"address";a:5:{i:1;s:12:"Dotster Inc.";i:2;s:18:"8100 NE Parkway DR";i:3;s:9:"Suite 300";i:4;s:20:"Vancouver, WA 98662";i:5;s:2:"US";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:45:"DSTR ACQUISITION PA I, LLC DBA DOMAINBANK.COM";s:8:"referrer";s:22:"http://www.dotster.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:22:"domain =domainbank.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:17:"whois.dotster.com";s:4:"args";s:14:"domainbank.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:16:"dotregistrar.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:7:{s:4:"name";s:16:"dotregistrar.com";s:7:"nserver";a:2:{s:20:"ns1.dotregistrar.net";s:13:"64.94.117.217";s:20:"ns2.dotregistrar.net";s:12:"63.251.83.80";}s:6:"status";a:3:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";i:2;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2009-03-02";s:7:"created";s:10:"1999-02-10";s:7:"expires";s:10:"2010-03-22";s:7:"sponsor";s:12:"DOTREGISTRAR";}s:10:"registered";s:3:"yes";s:5:"owner";a:2:{s:4:"name";s:18:"RegistrarAds, Inc.";s:7:"address";a:3:{i:0;s:32:"8100 NE Parkway Drive, Suite 300";i:1;s:20:"Vancouver, WA 98662";i:2;s:2:"US";}}s:5:"admin";a:5:{s:5:"email";s:21:"buysdomains@gmail.com";s:4:"name";s:13:"Admin, Domain";s:5:"phone";s:12:"360-253-2210";s:3:"fax";s:12:"360-253-4234";s:7:"address";a:4:{i:1;s:18:"RegistrarAds, Inc.";i:2;s:32:"8100 NE Parkway Drive, Suite 300";i:3;s:20:"Vancouver, WA 98662";i:4;s:2:"US";}}s:4:"tech";a:5:{s:5:"email";s:21:"buysdomains@gmail.com";s:4:"name";s:13:"Admin, Domain";s:5:"phone";s:12:"360-253-2210";s:3:"fax";s:12:"360-253-4234";s:7:"address";a:4:{i:1;s:18:"RegistrarAds, Inc.";i:2;s:32:"8100 NE Parkway Drive, Suite 300";i:3;s:20:"Vancouver, WA 98662";i:4;s:2:"US";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:18:"DOTREGISTRAR, LLC.";s:8:"referrer";s:27:"http://www.dotregistrar.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:24:"domain =dotregistrar.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:22:"whois.dotregistrar.com";s:4:"args";s:16:"dotregistrar.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:11:"dotster.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:7:{s:4:"name";s:11:"dotster.com";s:7:"nserver";a:2:{s:15:"ns1.dotster.com";s:14:"66.150.161.146";s:15:"ns2.dotster.com";s:12:"63.251.83.72";}s:6:"status";a:3:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";i:2;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2008-05-20";s:7:"created";s:10:"1999-12-29";s:7:"expires";s:10:"2011-12-12";s:7:"sponsor";s:7:"DOTSTER";}s:10:"registered";s:3:"yes";s:5:"owner";a:2:{s:4:"name";s:15:"c/o DOTSTER.COM";s:7:"address";a:3:{i:0;s:15:"P.O. Box 821650";i:1;s:20:"Vancouver, WA 98682";i:2;s:2:"US";}}s:5:"admin";a:4:{s:5:"email";s:22:"lIgs6g@privacypost.com";s:5:"phone";s:15:"+1.360-449-5933";s:4:"name";s:15:"c/o DOTSTER.COM";s:7:"address";a:3:{i:0;s:15:"P.O. Box 821650";i:1;s:20:"Vancouver, WA 98682";i:2;s:2:"US";}}s:4:"tech";a:4:{s:5:"email";s:22:"jTQ1uc@privacypost.com";s:5:"phone";s:15:"+1.360-449-5933";s:4:"name";s:15:"c/o DOTSTER.COM";s:7:"address";a:3:{i:0;s:15:"P.O. Box 821650";i:1;s:20:"Vancouver, WA 98682";i:2;s:2:"US";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:13:"DOTSTER, INC.";s:8:"referrer";s:22:"http://www.dotster.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:19:"domain =dotster.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:17:"whois.dotster.com";s:4:"args";s:11:"dotster.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:8:"enom.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:6:{s:4:"name";s:8:"enom.com";s:7:"nserver";a:3:{s:14:"dns11.enom.com";s:13:"69.64.157.102";s:14:"dns12.enom.com";s:12:"69.64.159.32";s:14:"dns13.enom.com";s:13:"69.64.145.231";}s:6:"status";s:6:"Locked";s:7:"changed";s:10:"2009-09-25";s:7:"created";s:10:"1997-10-24";s:7:"expires";s:10:"2013-09-21";}s:10:"registered";s:3:"yes";s:5:"owner";a:2:{s:4:"name";s:10:"eNom, Inc.";s:7:"address";a:1:{i:0;s:14:"DNS Manager ()";}}s:5:"admin";a:5:{s:5:"email";s:31:"domains@whoisprivacyprotect.net";s:4:"name";s:11:"DNS Manager";s:5:"phone";s:10:"4259744689";s:3:"fax";s:12:"1.4259744791";s:7:"address";a:5:{i:0;s:10:"eNom, Inc.";i:4;s:13:"P.O. Box 7449";i:5;s:30:"2002 156th Avenue NE, Ste. 300";i:6;s:18:"Bellevue, WA 98007";i:7;s:2:"US";}}s:4:"tech";a:5:{s:5:"email";s:31:"domains@whoisprivacyprotect.net";s:4:"name";s:11:"DNS Manager";s:5:"phone";s:10:"4259744689";s:3:"fax";s:12:"1.4259744791";s:7:"address";a:5:{i:0;s:10:"eNom, Inc.";i:4;s:13:"P.O. Box 7449";i:5;s:30:"2002 156th Avenue NE, Ste. 300";i:6;s:18:"Bellevue, WA 98007";i:7;s:2:"US";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:10:"ENOM, INC.";s:8:"referrer";s:19:"http://www.enom.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:16:"domain =enom.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:14:"whois.enom.com";s:4:"args";s:8:"enom.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:12:"adultlaw.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:7:{s:4:"name";s:12:"adultlaw.com";s:7:"nserver";a:2:{s:14:"ns1.apgood.com";s:13:"63.231.16.185";s:16:"ns1.carpelaw.com";s:13:"63.231.16.187";}s:6:"status";s:6:"Locked";s:7:"changed";s:10:"2006-10-28";s:7:"created";s:10:"1999-11-08";s:7:"expires";s:10:"2007-11-08";s:7:"sponsor";s:10:"eNom, Inc.";}s:10:"registered";s:3:"yes";s:5:"owner";a:6:{s:5:"email";s:16:"rob@carpelaw.com";s:4:"name";s:13:"Robert Apgood";s:12:"organization";s:13:"CarpeLaw PLLC";s:5:"phone";s:13:"+1.2066242379";s:3:"fax";s:13:"+1.2067846305";s:7:"address";a:3:{i:4;s:27:"2400 NW 80th Street Ste 130";i:5;s:22:"Seattle, WA 98117-4449";i:6;s:2:"US";}}s:5:"admin";a:6:{s:5:"email";s:16:"rob@carpelaw.com";s:4:"name";s:13:"Robert Apgood";s:12:"organization";s:13:"CarpeLaw PLLC";s:5:"phone";s:13:"+1.2066242379";s:3:"fax";s:13:"+1.2067846305";s:7:"address";a:3:{i:4;s:27:"2400 NW 80th Street Ste 130";i:5;s:22:"Seattle, WA 98117-4449";i:6;s:2:"US";}}s:4:"tech";a:6:{s:5:"email";s:16:"rob@carpelaw.com";s:4:"name";s:13:"Robert Apgood";s:12:"organization";s:13:"CarpeLaw PLLC";s:5:"phone";s:13:"+1.2066242379";s:3:"fax";s:13:"+1.2067846305";s:7:"address";a:3:{i:4;s:27:"2400 NW 80th Street Ste 130";i:5;s:22:"Seattle, WA 98117-4449";i:6;s:2:"US";}}}s:8:"regyinfo";a:6:{s:9:"registrar";s:10:"ENOM, INC.";s:5:"whois";s:14:"whois.enom.com";s:8:"referrer";s:19:"http://www.enom.com";s:4:"args";s:13:"=adultlaw.com";s:4:"port";i:43;s:4:"type";s:6:"domain";}}s:11:"godaddy.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:7:{s:4:"name";s:11:"godaddy.com";s:7:"nserver";a:3:{s:21:"cns1.secureserver.net";s:15:"208.109.255.100";s:21:"cns2.secureserver.net";s:14:"216.69.185.100";s:21:"cns3.secureserver.net";s:13:"64.202.167.31";}s:6:"status";a:4:{i:0;s:22:"clientDeleteProhibited";i:1;s:21:"clientRenewProhibited";i:2;s:24:"clientTransferProhibited";i:3;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2009-12-08";s:7:"created";s:10:"1999-03-02";s:7:"expires";s:10:"2019-03-02";s:7:"sponsor";s:42:"GoDaddy.com, Inc. (http://www.godaddy.com)";}s:10:"registered";s:3:"yes";s:5:"owner";a:2:{s:4:"name";s:17:"GoDaddy.com, Inc.";s:7:"address";a:3:{i:0;s:22:"14455 N Hayden Rd #226";i:1;s:25:"Scottsdale, Arizona 85260";i:2;s:13:"United States";}}s:5:"admin";a:6:{s:5:"email";s:13:"dns@jomax.net";s:4:"name";s:36:"GoDaddy.com, Inc., GoDaddy.com, Inc.";s:3:"fax";s:12:"- 4805058844";s:5:"phone";s:10:"4805058800";s:12:"organization";s:17:"GoDaddy.com, Inc.";s:7:"address";a:3:{i:0;s:22:"14455 N Hayden Rd #226";i:1;s:25:"Scottsdale, Arizona 85260";i:2;s:13:"United States";}}s:4:"tech";a:6:{s:5:"email";s:13:"dns@jomax.net";s:4:"name";s:36:"GoDaddy.com, Inc., GoDaddy.com, Inc.";s:3:"fax";s:12:"- 4805058844";s:5:"phone";s:10:"4805058800";s:12:"organization";s:17:"GoDaddy.com, Inc.";s:7:"address";a:3:{i:0;s:22:"14455 N Hayden Rd #226";i:1;s:25:"Scottsdale, Arizona 85260";i:2;s:13:"United States";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:17:"GODADDY.COM, INC.";s:8:"referrer";s:28:"http://registrar.godaddy.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:19:"domain =godaddy.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:17:"whois.godaddy.com";s:4:"args";s:11:"godaddy.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:11:"example.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:6:{s:4:"name";s:11:"example.com";s:7:"nserver";a:2:{s:18:"a.iana-servers.net";s:11:"192.0.34.43";s:18:"b.iana-servers.net";s:11:"193.0.0.236";}s:6:"status";a:3:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";i:2;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2004-03-26";s:7:"created";s:10:"1995-08-14";s:7:"expires";s:10:"2011-08-13";}s:10:"registered";s:3:"yes";s:5:"owner";s:0:"";s:5:"admin";s:0:"";s:4:"tech";s:0:"";}s:8:"regyinfo";a:4:{s:9:"registrar";s:44:"RESERVED-INTERNET ASSIGNED NUMBERS AUTHORITY";s:8:"referrer";s:23:"http://res-dom.iana.org";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:19:"domain =example.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:14:"whois.iana.org";s:4:"args";s:11:"example.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:10:"sexido.com";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:6:{s:4:"name";s:10:"sexido.com";s:7:"nserver";a:2:{s:21:"sk.s1.ns104.cnomy.com";s:13:"209.85.51.104";s:21:"sk.s2.ns104.cnomy.com";s:14:"209.62.105.104";}s:6:"status";a:1:{i:0;s:24:"clientTransferProhibited";}s:7:"changed";s:10:"2007-09-24";s:7:"created";s:10:"2002-09-24";s:7:"expires";s:10:"2008-09-24";}s:10:"registered";s:3:"yes";s:5:"owner";a:5:{s:5:"email";s:27:"RfhpmfLjBWv@securewhois.com";s:5:"phone";s:13:"+1.4165385428";s:3:"fax";s:13:"+1.4163520113";s:4:"name";s:17:"SecureWhois, Inc.";s:7:"address";a:3:{i:0;s:17:"SecureWhois, Inc.";i:1;s:8:"96 Mowat";i:2;s:22:"Toronto, ON M6K 3M1 CA";}}s:5:"admin";a:5:{s:5:"email";s:27:"VpFDMjMCqyQ@securewhois.com";s:5:"phone";s:13:"+1.4165385428";s:3:"fax";s:13:"+1.4163520113";s:4:"name";s:17:"SecureWhois, Inc.";s:7:"address";a:3:{i:0;s:17:"SecureWhois, Inc.";i:1;s:8:"96 Mowat";i:2;s:22:"Toronto, ON M6K 3M1 CA";}}s:7:"billing";a:5:{s:5:"email";s:27:"VpFDMjMCqyQ@securewhois.com";s:5:"phone";s:13:"+1.4165385428";s:3:"fax";s:13:"+1.4163520113";s:4:"name";s:17:"SecureWhois, Inc.";s:7:"address";a:3:{i:0;s:17:"SecureWhois, Inc.";i:1;s:8:"96 Mowat";i:2;s:22:"Toronto, ON M6K 3M1 CA";}}s:4:"tech";a:5:{s:5:"email";s:27:"VpFDMjMCqyQ@securewhois.com";s:5:"phone";s:13:"+1.4165385428";s:3:"fax";s:13:"+1.4163520113";s:4:"name";s:17:"SecureWhois, Inc.";s:7:"address";a:3:{i:0;s:17:"SecureWhois, Inc.";i:1;s:8:"96 Mowat";i:2;s:22:"Toronto, ON M6K 3M1 CA";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:39:"INNERWISE, INC. D/B/A ITSYOURDOMAIN.COM";s:8:"referrer";s:28:"http://www.itsyourdomain.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:18:"domain =sexido.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:23:"whois.itsyourdomain.com";s:4:"args";s:10:"sexido.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:16:"interdominio.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:6:{s:4:"name";s:16:"interdominio.com";s:7:"nserver";a:2:{s:19:"ns1.interdomain.net";s:15:"212.170.240.180";s:19:"ns2.interdomain.net";s:15:"212.170.240.181";}s:6:"status";a:2:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";}s:7:"changed";s:10:"2009-11-13";s:7:"created";s:10:"1997-02-10";s:7:"expires";s:10:"2018-02-11";}s:10:"registered";s:3:"yes";s:5:"owner";a:5:{s:6:"handle";s:18:"PROP-1052-00030339";s:4:"name";s:15:"INTERDOMAIN S.A";s:12:"organization";s:15:"INTERDOMAIN S.A";s:7:"address";a:5:{s:6:"street";s:30:"SOR ANGELA DE LA CRUZ, 10, 1 C";s:4:"city";s:6:"MADRID";s:5:"state";s:6:"MADRID";s:5:"pcode";s:5:"28020";s:7:"country";s:2:"ES";}s:5:"phone";s:5:"28020";}s:5:"admin";a:7:{s:6:"handle";s:13:"1052-00023552";s:4:"name";s:16:"INTERDOMAIN S.A.";s:12:"organization";s:16:"INTERDOMAIN S.A.";s:7:"address";a:5:{s:6:"street";s:39:"GENERAL PERON 38 EDIFICIO MASTER II 8º";s:4:"city";s:6:"MADRID";s:5:"state";s:6:"MADRID";s:5:"pcode";s:5:"28020";s:7:"country";s:2:"ES";}s:5:"phone";s:13:"+34.915848780";s:3:"fax";s:13:"+34.915569793";s:5:"email";s:28:"RENOVACIONES@INTERDOMAIN.ORG";}s:4:"tech";a:7:{s:6:"handle";s:13:"1052-00090330";s:4:"name";s:21:"Departamento técnico";s:12:"organization";s:15:"Interdomain S.A";s:7:"address";a:5:{s:6:"street";s:29:"C/Doctor Esquerdo, 61 Plta. 4";s:4:"city";s:6:"Madrid";s:5:"state";s:6:"Madrid";s:5:"pcode";s:5:"28007";s:7:"country";s:2:"ES";}s:5:"phone";s:13:"+34.915848780";s:3:"fax";s:13:"+34.914095650";s:5:"email";s:20:"info@interdomain.org";}}s:8:"regyinfo";a:4:{s:9:"registrar";s:17:"INTERDOMAIN, S.A.";s:8:"referrer";s:25:"http://www.interdomain.es";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:24:"domain =interdominio.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:21:"whois.interdomain.net";s:4:"args";s:16:"interdominio.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:8:"inww.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:6:{s:4:"name";s:8:"inww.com";s:7:"nserver";a:3:{s:19:"ns1.melbourneit.com";s:13:"203.27.227.50";s:19:"ns2.melbourneit.com";s:14:"203.31.199.135";s:19:"ns4.melbourneit.com";s:12:"212.81.32.34";}s:6:"status";a:2:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";}s:7:"changed";s:10:"2009-05-11";s:7:"created";s:10:"2000-03-30";s:7:"expires";s:10:"2010-11-18";}s:10:"registered";s:3:"yes";s:5:"owner";a:2:{s:4:"name";s:16:"Melbourne IT Ltd";s:7:"address";a:5:{i:0;s:24:"Level 2, 120 King Street";i:1;s:9:"Melbourne";i:2;s:4:"3000";i:3;s:3:"Vic";i:4;s:9:"AUSTRALIA";}}s:5:"admin";a:4:{s:4:"name";s:15:"Account Manager";s:7:"address";a:5:{i:0;s:24:"Level 2, 120 King Street";i:1;s:9:"Melbourne";i:2;s:4:"3000";i:3;s:3:"Vic";i:4;s:9:"AUSTRALIA";}s:5:"email";s:19:"cdm@melbourneit.com";s:5:"phone";s:13:"+61.386242465";}s:4:"tech";a:4:{s:4:"name";s:15:"Account Manager";s:7:"address";a:5:{i:0;s:24:"Level 2, 120 King Street";i:1;s:9:"Melbourne";i:2;s:4:"3000";i:3;s:3:"Vic";i:4;s:9:"AUSTRALIA";}s:5:"email";s:19:"cdm@melbourneit.com";s:5:"phone";s:13:"+61.386242465";}}s:8:"regyinfo";a:4:{s:9:"registrar";s:49:"MELBOURNE IT, LTD. D/B/A INTERNET NAMES WORLDWIDE";s:8:"referrer";s:26:"http://www.melbourneit.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:16:"domain =inww.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:21:"whois.melbourneit.com";s:4:"args";s:8:"inww.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:9:"joker.com";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:7:{s:4:"name";s:9:"joker.com";s:7:"nserver";a:3:{s:14:"j.ns.joker.com";s:14:"207.44.185.100";s:14:"k.ns.joker.com";s:12:"159.25.49.66";s:14:"l.ns.joker.com";s:13:"66.252.21.110";}s:6:"status";s:4:"lock";s:7:"changed";s:10:"2008-02-26";s:7:"created";s:10:"1994-11-27";s:7:"expires";s:10:"2012-08-03";s:7:"sponsor";a:3:{i:0;s:36:"CSL Computer Service Langenbach GmbH";i:1;s:20:"Duesseldorf, Germany";i:2;s:34:"Visit www.joker.com to get Domains";}}s:10:"registered";s:3:"yes";s:5:"admin";a:6:{s:6:"handle";s:7:"CCOM-58";s:4:"name";s:3:"n/a";s:12:"organization";s:36:"CSL Computer Service Langenbach GmbH";s:5:"email";s:15:"admin@joker.com";s:7:"address";a:4:{s:6:"street";s:18:"Hansaallee 191-193";s:4:"city";s:11:"Duesseldorf";s:5:"pcode";s:5:"40549";s:7:"country";s:2:"DE";}s:5:"phone";s:13:"+49.211867670";}s:4:"tech";a:6:{s:6:"handle";s:10:"CCOM-53728";s:4:"name";s:21:"Hostmaster of the day";s:12:"organization";s:35:"CSL Computerservice Langenbach GmbH";s:5:"email";s:20:"hostmaster@joker.com";s:7:"address";a:5:{s:6:"street";s:18:"Hansaallee 191-193";s:4:"city";s:11:"Duesseldorf";s:5:"state";s:3:"NRW";s:5:"pcode";s:5:"40549";s:7:"country";s:2:"DE";}s:5:"phone";s:13:"+49.211867670";}s:7:"billing";a:6:{s:6:"handle";s:10:"CCOM-53728";s:4:"name";s:21:"Hostmaster of the day";s:12:"organization";s:35:"CSL Computerservice Langenbach GmbH";s:5:"email";s:20:"hostmaster@joker.com";s:7:"address";a:5:{s:6:"street";s:18:"Hansaallee 191-193";s:4:"city";s:11:"Duesseldorf";s:5:"state";s:3:"NRW";s:5:"pcode";s:5:"40549";s:7:"country";s:2:"DE";}s:5:"phone";s:13:"+49.211867670";}s:5:"owner";a:5:{s:4:"name";s:3:"n/a";s:12:"organization";s:36:"CSL Computer Service Langenbach GmbH";s:5:"email";s:15:"admin@joker.com";s:5:"phone";s:13:"+49.211867670";s:7:"address";a:4:{s:6:"street";s:18:"Hansaallee 191-193";s:4:"city";s:11:"Duesseldorf";s:5:"pcode";s:5:"40549";s:7:"country";s:2:"DE";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:47:"COMPUTER SERVICES LANGENBACH GMBH DBA JOKER.COM";s:8:"referrer";s:20:"http://www.joker.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:17:"domain =joker.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:15:"whois.joker.com";s:4:"args";s:9:"joker.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:11:"moniker.com";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:6:{s:4:"name";s:11:"moniker.com";s:7:"nserver";a:4:{s:21:"ns1.domainservice.com";s:13:"208.73.210.41";s:21:"ns2.domainservice.com";s:13:"208.73.211.42";s:21:"ns3.domainservice.com";s:13:"208.73.210.43";s:21:"ns4.domainservice.com";s:13:"208.73.211.44";}s:6:"status";a:3:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";i:2;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2009-07-28";s:7:"created";s:10:"2004-03-18";s:7:"expires";s:10:"2015-03-04";}s:10:"registered";s:3:"yes";s:5:"owner";a:3:{s:5:"email";s:19:"support@moniker.com";s:4:"name";s:36:"Domain Services Domain Registrations";s:7:"address";a:7:{i:1;s:23:"Moniker Online Services";i:2;s:15:"20 SW 27th Ave.";i:3;s:9:"Suite 201";i:4;s:13:"POMPANO BEACH";i:5;s:2:"FL";i:6;s:5:"33069";i:7;s:2:"US";}}s:5:"admin";a:5:{s:5:"email";s:19:"support@moniker.com";s:4:"name";s:36:"Domain Services Domain Registrations";s:5:"phone";s:13:"+1.9549848445";s:3:"fax";s:13:"+1.9549699155";s:7:"address";a:7:{i:1;s:23:"Moniker Online Services";i:2;s:15:"20 SW 27th Ave.";i:3;s:9:"Suite 201";i:4;s:13:"POMPANO BEACH";i:5;s:2:"FL";i:6;s:5:"33069";i:7;s:2:"US";}}s:7:"billing";a:5:{s:5:"email";s:19:"support@moniker.com";s:4:"name";s:36:"Domain Services Domain Registrations";s:5:"phone";s:13:"+1.9549848445";s:3:"fax";s:13:"+1.9549699155";s:7:"address";a:7:{i:1;s:23:"Moniker Online Services";i:2;s:15:"20 SW 27th Ave.";i:3;s:9:"Suite 201";i:4;s:13:"POMPANO BEACH";i:5;s:2:"FL";i:6;s:5:"33069";i:7;s:2:"US";}}s:4:"tech";a:5:{s:5:"email";s:19:"support@moniker.com";s:4:"name";s:36:"Domain Services Domain Registrations";s:5:"phone";s:13:"+1.9549848445";s:3:"fax";s:13:"+1.9549699155";s:7:"address";a:7:{i:1;s:23:"Moniker Online Services";i:2;s:15:"20 SW 27th Ave.";i:3;s:9:"Suite 201";i:4;s:13:"POMPANO BEACH";i:5;s:2:"FL";i:6;s:5:"33069";i:7;s:2:"US";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:29:"MONIKER ONLINE SERVICES, INC.";s:8:"referrer";s:33:"http://www.moniker.com/whois.html";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:19:"domain =moniker.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:17:"whois.moniker.com";s:4:"args";s:11:"moniker.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:13:"namejuice.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:7:{s:4:"name";s:13:"namejuice.com";s:7:"nserver";a:4:{s:22:"dns1.nameresolvers.com";s:13:"216.13.106.28";s:22:"dns2.nameresolvers.com";s:13:"216.13.106.29";s:22:"dns3.nameresolvers.com";s:12:"64.34.231.21";s:22:"dns4.nameresolvers.com";s:12:"64.34.231.22";}s:6:"status";a:2:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";}s:7:"changed";s:10:"2009-04-25";s:7:"created";s:10:"2003-10-09";s:7:"expires";s:10:"2013-10-09";s:7:"sponsor";s:26:"Domain Registry of America";}s:10:"registered";s:3:"yes";s:5:"owner";a:6:{s:5:"phone";s:13:"+1.9054152681";s:3:"fax";s:13:"+1.9054152682";s:5:"email";s:23:"registrar@namejuice.com";s:4:"name";s:19:"Domain Registrar";s:12:"organization";s:35:"Brandon Gray Internet Services Inc.";s:7:"address";a:4:{i:0;s:15:"7100 Warden Ave";i:1;s:6:"Unit 8";i:2;s:7:"Markham";i:3;s:19:"ON, L3R 8B5 CA";}}s:5:"admin";a:6:{s:5:"phone";s:13:"+1.9054152681";s:3:"fax";s:13:"+1.9054152682";s:5:"email";s:23:"registrar@namejuice.com";s:4:"name";s:19:"Domain Registrar";s:12:"organization";s:35:"Brandon Gray Internet Services Inc.";s:7:"address";a:4:{i:0;s:15:"7100 Warden Ave";i:1;s:6:"Unit 8";i:2;s:7:"Markham";i:3;s:19:"ON, L3R 8B5 CA";}}s:4:"tech";a:6:{s:5:"phone";s:13:"+1.9054152681";s:3:"fax";s:13:"+1.9054152682";s:5:"email";s:23:"registrar@namejuice.com";s:4:"name";s:19:"Domain Registrar";s:12:"organization";s:35:"Brandon Gray Internet Services Inc.";s:7:"address";a:4:{i:0;s:15:"7100 Warden Ave";i:1;s:6:"Unit 8";i:2;s:7:"Markham";i:3;s:19:"ON, L3R 8B5 CA";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:54:"BRANDON GRAY INTERNET SERVICES, INC. DBA NAMEJUICE.COM";s:8:"referrer";s:24:"http://www.namejuice.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:21:"domain =namejuice.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:19:"whois.namejuice.com";s:4:"args";s:13:"namejuice.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:15:"namesdirect.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:7:{s:4:"name";s:15:"namesdirect.com";s:7:"nserver";a:2:{s:19:"ns1.namesdirect.com";s:13:"64.94.117.194";s:19:"ns2.namesdirect.com";s:12:"63.251.83.81";}s:6:"status";a:3:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";i:2;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2008-05-20";s:7:"created";s:10:"2002-06-12";s:7:"expires";s:10:"2010-10-27";s:7:"sponsor";s:11:"NAMESDIRECT";}s:10:"registered";s:3:"yes";s:5:"owner";a:2:{s:4:"name";s:12:"Dotster Inc.";s:7:"address";a:4:{i:0;s:18:"8100 NE Parkway DR";i:1;s:9:"Suite 300";i:2;s:20:"Vancouver, WA 98662";i:3;s:2:"US";}}s:5:"admin";a:5:{s:5:"email";s:17:"legal@dotster.com";s:4:"name";s:13:"Domain Admin,";s:5:"phone";s:12:"360-253-2210";s:3:"fax";s:12:"360-253-4234";s:7:"address";a:5:{i:1;s:12:"Dotster Inc.";i:2;s:18:"8100 NE Parkway DR";i:3;s:9:"Suite 300";i:4;s:20:"Vancouver, WA 98662";i:5;s:2:"US";}}s:4:"tech";a:5:{s:5:"email";s:17:"legal@dotster.com";s:4:"name";s:13:"Domain Admin,";s:5:"phone";s:12:"360-253-2210";s:3:"fax";s:12:"360-253-4234";s:7:"address";a:5:{i:1;s:12:"Dotster Inc.";i:2;s:18:"8100 NE Parkway DR";i:3;s:9:"Suite 300";i:4;s:20:"Vancouver, WA 98662";i:5;s:2:"US";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:14:"MYDOMAIN, INC.";s:8:"referrer";s:26:"http://www.namesdirect.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:23:"domain =namesdirect.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:21:"whois.namesdirect.com";s:4:"args";s:15:"namesdirect.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:20:"networksolutions.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:6:{s:4:"name";s:20:"networksolutions.com";s:7:"nserver";a:3:{s:14:"ns1.netsol.com";s:15:"205.178.190.164";s:14:"ns2.netsol.com";s:14:"205.178.184.21";s:14:"ns3.netsol.com";s:15:"205.178.190.165";}s:6:"status";a:3:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";i:2;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2009-04-26";s:7:"created";s:10:"1998-04-27";s:7:"expires";s:10:"2019-04-27";}s:10:"registered";s:3:"yes";s:5:"owner";a:3:{s:4:"name";s:22:"Network Solutions, LLC";s:12:"organization";s:21:"Network Solutions LLC";s:7:"address";a:3:{i:0;s:37:"13861 Sunrise Valley Drive, Suite 300";i:1;s:17:"HERNDON, VA 20171";i:2;s:2:"US";}}s:5:"admin";a:6:{s:5:"email";s:34:"nocsupervisor@networksolutions.com";s:4:"name";s:22:"Network Solutions, LLC";s:3:"fax";s:12:"703-668-5817";s:5:"phone";s:12:"570-708-8788";s:12:"organization";s:21:"Network Solutions LLC";s:7:"address";a:3:{i:0;s:37:"13861 Sunrise Valley Drive, Suite 300";i:1;s:17:"HERNDON, VA 20171";i:2;s:2:"US";}}s:4:"tech";a:6:{s:5:"email";s:34:"nocsupervisor@networksolutions.com";s:4:"name";s:22:"Network Solutions, LLC";s:3:"fax";s:12:"703-668-5817";s:5:"phone";s:12:"570-708-8788";s:12:"organization";s:21:"Network Solutions LLC";s:7:"address";a:3:{i:0;s:37:"13861 Sunrise Valley Drive, Suite 300";i:1;s:17:"HERNDON, VA 20171";i:2;s:2:"US";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:23:"NETWORK SOLUTIONS, LLC.";s:8:"referrer";s:31:"http://www.networksolutions.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:28:"domain =networksolutions.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:26:"whois.networksolutions.com";s:4:"args";s:20:"networksolutions.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:11:"nicline.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:6:{s:4:"name";s:11:"nicline.com";s:7:"nserver";a:2:{s:16:"dns1.nicline.com";s:14:"217.76.128.230";s:16:"dns2.nicline.com";s:14:"217.76.129.230";}s:6:"status";a:1:{i:0;s:24:"clientTransferProhibited";}s:7:"changed";s:10:"2007-04-25";s:7:"created";s:10:"2000-03-13";s:7:"expires";s:10:"2015-03-13";}s:10:"registered";s:3:"yes";s:5:"owner";a:4:{s:5:"email";s:19:"nicline@nicline.com";s:5:"phone";s:13:"+34 659950222";s:4:"name";s:28:"Nic Line, S.L. (SROW-69535)";s:7:"address";a:4:{i:0;s:14:"Nic Line, S.L.";i:1;s:11:"Barrera, 22";i:2;s:12:"Logrono 26";i:3;s:10:"26005 ES";}}s:5:"admin";a:4:{s:5:"email";s:19:"nicline@nicline.com";s:5:"phone";s:13:"+34 659950222";s:4:"name";s:29:"Nic Line, S.L. (SRCO-74144)";s:7:"address";a:3:{i:0;s:11:"Barrera, 22";i:1;s:12:"Logrono 26";i:2;s:10:"26005 ES";}}s:4:"tech";a:4:{s:5:"email";s:19:"nicline@nicline.com";s:5:"phone";s:13:"+34 659950222";s:4:"name";s:29:"Nic Line, S.L. (SRCO-74144)";s:7:"address";a:3:{i:0;s:11:"Barrera, 22";i:1;s:12:"Logrono 26";i:2;s:10:"26005 ES";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:38:"ARSYS INTERNET, S.L. D/B/A NICLINE.COM";s:8:"referrer";s:22:"http://www.nicline.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:19:"domain =nicline.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:17:"whois.nicline.com";s:4:"args";s:11:"nicline.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:13:"nominalia.com";a:2:{s:8:"regrinfo";a:4:{s:6:"domain";a:6:{s:4:"name";s:13:"nominalia.com";s:7:"nserver";a:2:{s:18:"dns1.nominalia.com";s:12:"62.97.103.68";s:18:"dns2.nominalia.com";s:15:"213.151.118.169";}s:6:"status";a:1:{i:0;s:24:"clientTransferProhibited";}s:7:"changed";s:10:"2009-09-18";s:7:"created";s:10:"2008-02-07";s:7:"expires";s:10:"2013-11-30";}s:10:"registered";s:3:"yes";s:5:"owner";a:2:{s:4:"name";s:23:"NOMINALIA INTERNET S.L.";s:7:"address";a:4:{s:6:"street";s:45:"Josep Pla, 2. Torres Diagonal Litoral, B3, 3D";s:4:"city";s:9:"Barcelona";s:5:"pcode";s:8:"ES-08019";s:7:"country";s:2:"ES";}}s:5:"admin";a:6:{s:12:"organization";s:23:"Nominalia Internet S.L.";s:4:"name";s:10:"Eric Onidi";s:7:"address";a:4:{s:6:"street";s:45:"Josep Pla, 2. Torres Diagonal Litoral, B3, 3D";s:4:"city";s:9:"Barcelona";s:5:"pcode";s:5:"08019";s:7:"country";s:2:"ES";}s:5:"email";s:24:"gestiontld@nominalia.com";s:5:"phone";s:14:"+34 935 074360";s:3:"fax";s:14:"+34 933 102360";}}s:8:"regyinfo";a:4:{s:9:"registrar";s:23:"NOMINALIA INTERNET S.L.";s:8:"referrer";s:24:"http://www.nominalia.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:21:"domain =nominalia.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:19:"whois.nominalia.com";s:4:"args";s:13:"nominalia.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:10:"tucows.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:7:{s:4:"name";s:10:"tucows.com";s:7:"nserver";a:3:{s:14:"ns1.tucows.com";s:12:"216.40.47.20";s:14:"ns2.tucows.com";s:10:"65.22.7.13";s:14:"ns3.tucows.com";s:12:"64.98.148.15";}s:6:"status";a:2:{i:0;s:24:"clientTransferProhibited";i:1;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2009-12-10";s:7:"created";s:10:"1995-09-07";s:7:"expires";s:10:"2010-09-06";s:7:"sponsor";s:12:"TUCOWS, INC.";}s:10:"registered";s:3:"yes";s:5:"owner";a:2:{s:4:"name";s:13:"Tucows.com Co";s:7:"address";a:3:{i:0;s:15:"96 Mowat Avenue";i:1;s:23:"Toronto, Ontario M6K3M1";i:2;s:2:"CA";}}s:5:"admin";a:4:{s:5:"email";s:19:"dnsadmin@tucows.com";s:4:"name";s:18:"Administrator, DNS";s:5:"phone";s:18:"+1.4165350123x0000";s:7:"address";a:3:{i:1;s:15:"96 Mowat Avenue";i:2;s:23:"Toronto, Ontario M6K3M1";i:3;s:2:"CA";}}s:4:"tech";a:4:{s:5:"email";s:19:"dnsadmin@tucows.com";s:4:"name";s:18:"Administrator, DNS";s:5:"phone";s:18:"+1.4165350123x0000";s:7:"address";a:3:{i:1;s:15:"96 Mowat Avenue";i:2;s:23:"Toronto, Ontario M6K3M1";i:3;s:2:"CA";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:11:"TUCOWS INC.";s:8:"referrer";s:29:"http://domainhelp.opensrs.net";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:18:"domain =tucows.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:16:"whois.tucows.com";s:4:"args";s:10:"tucows.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:12:"register.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:7:{s:4:"name";s:12:"register.com";s:7:"nserver";a:6:{s:16:"ns1.register.com";s:13:"216.21.227.10";s:16:"ns2.register.com";s:13:"216.21.227.11";s:16:"ns3.register.com";s:13:"216.21.227.12";s:16:"ns4.register.com";s:13:"216.21.227.13";s:16:"ns5.register.com";s:13:"216.21.237.10";s:16:"ns6.register.com";s:13:"216.21.237.11";}s:6:"status";a:3:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";i:2;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2009-08-26";s:7:"created";s:10:"1994-11-01";s:7:"expires";s:10:"2019-08-04";s:7:"sponsor";s:12:"Register.com";}s:10:"registered";s:3:"yes";s:5:"owner";a:4:{s:5:"phone";s:13:"+1.9027492701";s:5:"email";s:28:"domainregistrar@register.com";s:4:"name";s:18:"Register.Com, Inc.";s:7:"address";a:4:{i:0;s:16:"Domain Registrar";i:1;s:14:"575 8th Avenue";i:2;s:18:"New York, NY 10018";i:3;s:2:"US";}}s:5:"admin";a:4:{s:5:"phone";s:13:"+1.9027492701";s:5:"email";s:28:"domainregistrar@register.com";s:4:"name";s:18:"Register.Com, Inc.";s:7:"address";a:4:{i:0;s:16:"Domain Registrar";i:1;s:14:"575 8th Avenue";i:2;s:18:"New York, NY 10018";i:3;s:2:"US";}}s:4:"tech";a:4:{s:5:"phone";s:13:"+1.9027492701";s:5:"email";s:28:"domainregistrar@register.com";s:4:"name";s:18:"Register.Com, Inc.";s:7:"address";a:4:{i:0;s:16:"Domain Registrar";i:1;s:14:"575 8th Avenue";i:2;s:18:"New York, NY 10018";i:3;s:2:"US";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:18:"REGISTER.COM, INC.";s:8:"referrer";s:23:"http://www.register.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:20:"domain =register.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:18:"whois.register.com";s:4:"args";s:12:"register.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:11:"schlund.com";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:6:{s:4:"name";s:11:"schlund.com";s:7:"nserver";a:2:{s:14:"nsa.schlund.de";s:13:"195.20.224.98";s:15:"nsa2.schlund.de";s:12:"195.20.244.5";}s:6:"status";s:26:"CLIENT-TRANSFER-PROHIBITED";s:7:"changed";s:10:"2009-12-18";s:7:"created";s:10:"1996-10-10";s:7:"expires";s:10:"2010-10-09";}s:10:"registered";s:3:"yes";s:5:"owner";a:5:{s:4:"name";a:2:{s:5:"first";s:5:"Achim";s:4:"last";s:5:"Weiss";}s:12:"organization";s:18:"Schlund+Partner AG";s:7:"address";a:4:{s:6:"street";a:1:{i:0;s:13:"Brauerstr. 48";}s:5:"pcode";s:5:"76135";s:4:"city";s:9:"Karlsruhe";s:7:"country";s:2:"DE";}s:5:"phone";s:13:"+49.721913740";s:5:"email";s:21:"hostmaster@schlund.de";}s:5:"admin";a:5:{s:4:"name";a:2:{s:5:"first";s:5:"Achim";s:4:"last";s:5:"Weiss";}s:12:"organization";s:18:"Schlund+Partner AG";s:7:"address";a:4:{s:6:"street";a:1:{i:0;s:13:"Brauerstr. 48";}s:5:"pcode";s:5:"76135";s:4:"city";s:9:"Karlsruhe";s:7:"country";s:2:"DE";}s:5:"phone";s:13:"+49.721913740";s:5:"email";s:21:"hostmaster@schlund.de";}s:4:"tech";a:5:{s:4:"name";a:2:{s:5:"first";s:10:"Hostmaster";s:4:"last";s:7:"SCHLUND";}s:12:"organization";s:20:"Schlund + Partner AG";s:7:"address";a:4:{s:6:"street";a:1:{i:0;s:13:"Brauerstr. 48";}s:5:"pcode";s:5:"76135";s:4:"city";s:9:"Karlsruhe";s:7:"country";s:2:"DE";}s:5:"phone";s:14:"+49.7219137450";s:5:"email";s:21:"hostmaster@schlund.de";}s:7:"billing";a:5:{s:4:"name";a:2:{s:5:"first";s:10:"Hostmaster";s:4:"last";s:7:"SCHLUND";}s:12:"organization";s:20:"Schlund + Partner AG";s:7:"address";a:4:{s:6:"street";a:1:{i:0;s:13:"Brauerstr. 48";}s:5:"pcode";s:5:"76135";s:4:"city";s:9:"Karlsruhe";s:7:"country";s:2:"DE";}s:5:"phone";s:14:"+49.7219137450";s:5:"email";s:21:"hostmaster@schlund.de";}}s:8:"regyinfo";a:4:{s:9:"registrar";s:17:"1 & 1 INTERNET AG";s:8:"referrer";s:29:"http://REGISTRAR.SCHLUND.INFO";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:19:"domain =schlund.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:18:"whois.schlund.info";s:4:"args";s:11:"schlund.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:9:"olsns.com";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:6:{s:4:"name";s:9:"olsns.com";s:7:"nserver";a:2:{s:14:"a.ns.olsns.com";s:13:"82.98.132.208";s:14:"b.ns.olsns.com";s:13:"78.129.233.52";}s:6:"status";a:1:{i:0;s:24:"clientTransferProhibited";}s:7:"changed";s:10:"2009-02-17";s:7:"created";s:10:"2001-02-21";s:7:"expires";s:10:"2010-02-21";}s:10:"registered";s:3:"yes";s:5:"owner";a:5:{s:5:"email";s:13:"domreg@ols.es";s:4:"name";s:27:"On-Line Services 2000, S.L.";s:5:"phone";s:11:"34902502975";s:12:"organization";s:27:"On-Line Services 2000, S.L.";s:7:"address";a:3:{i:0;s:16:"Pintor Vayreda 1";i:1;s:33:"Palau-Solita i Plegamans, 08184";i:2;s:2:"ES";}}s:5:"admin";a:5:{s:5:"email";s:13:"domreg@ols.es";s:4:"name";s:10:"David Saez";s:5:"phone";s:13:"+34 902502975";s:12:"organization";s:27:"On-Line Services 2000, S.L.";s:7:"address";a:3:{i:0;s:16:"Pintor Vayreda 1";i:1;s:37:"Palau-Solita i Plegamans, NONE 08184";i:2;s:2:"ES";}}s:4:"tech";a:5:{s:5:"email";s:13:"domreg@ols.es";s:4:"name";s:10:"David Saez";s:5:"phone";s:13:"+34 902502975";s:12:"organization";s:27:"On-Line Services 2000, S.L.";s:7:"address";a:3:{i:0;s:16:"Pintor Vayreda 1";i:1;s:37:"Palau-Solita i Plegamans, NONE 08184";i:2;s:2:"ES";}}s:7:"billing";a:5:{s:5:"email";s:13:"domreg@ols.es";s:4:"name";s:10:"David Saez";s:5:"phone";s:13:"+34 902502975";s:12:"organization";s:27:"On-Line Services 2000, S.L.";s:7:"address";a:3:{i:0;s:16:"Pintor Vayreda 1";i:1;s:37:"Palau-Solita i Plegamans, NONE 08184";i:2;s:2:"ES";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:21:"TLDS, LLC DBA SRSPLUS";s:8:"referrer";s:22:"http://www.srsplus.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:17:"domain =olsns.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:17:"whois.srsplus.com";s:4:"args";s:9:"olsns.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:12:"stargate.com";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:6:{s:4:"name";s:12:"stargate.com";s:7:"nserver";a:2:{s:20:"dns1.stargateinc.net";s:11:"67.96.171.4";s:20:"dns2.stargateinc.net";s:11:"67.96.171.6";}s:6:"status";s:6:"LOCKED";s:7:"changed";s:10:"2008-04-29";s:7:"created";s:10:"1986-08-05";s:7:"expires";s:10:"2015-08-04";}s:10:"registered";s:3:"yes";s:5:"owner";a:6:{s:5:"email";s:24:"tchaffin@stargateinc.com";s:4:"name";s:23:"Stargate Holdings Corp.";s:5:"phone";s:13:"+1.6303691651";s:3:"fax";s:13:"+1.6303694663";s:12:"organization";s:14:"Not Applicable";s:7:"address";a:4:{i:0;s:14:"40 Shuman Blvd";i:1;s:10:"Naperville";i:2;s:8:"IL,60563";i:3;s:2:"US";}}s:5:"admin";a:6:{s:5:"email";s:17:"tomc@stargate.com";s:4:"name";s:5:"Tom C";s:5:"phone";s:13:"+1.6303691651";s:3:"fax";s:13:"+1.6303694663";s:12:"organization";s:14:"Not Applicable";s:7:"address";a:4:{i:0;s:14:"40 Shuman Blvd";i:1;s:10:"Naperville";i:2;s:8:"IL,60563";i:3;s:2:"US";}}s:4:"tech";a:6:{s:5:"email";s:17:"tomc@stargate.com";s:4:"name";s:5:"Tom C";s:5:"phone";s:13:"+1.6303691651";s:3:"fax";s:13:"+1.6303694663";s:12:"organization";s:14:"Not Applicable";s:7:"address";a:4:{i:0;s:14:"40 Shuman Blvd";i:1;s:10:"Naperville";i:2;s:8:"IL,60563";i:3;s:2:"US";}}s:7:"billing";a:6:{s:5:"email";s:17:"tomc@stargate.com";s:4:"name";s:5:"Tom C";s:5:"phone";s:13:"+1.6303691651";s:3:"fax";s:13:"+1.6303694663";s:12:"organization";s:14:"Not Applicable";s:7:"address";a:4:{i:0;s:14:"40 Shuman Blvd";i:1;s:10:"Naperville";i:2;s:8:"IL,60563";i:3;s:2:"US";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:23:"STARGATE HOLDINGS CORP.";s:8:"referrer";s:26:"http://www.stargateinc.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:20:"domain =stargate.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:21:"whois.stargateinc.com";s:4:"args";s:12:"stargate.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:6:"sex.tv";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:6:{s:4:"name";s:6:"sex.tv";s:7:"nserver";a:2:{s:18:"dns1.colosseum.com";s:12:"216.95.249.3";s:18:"dns2.colosseum.com";s:12:"216.95.249.4";}s:6:"status";s:22:"CLIENT-XFER-PROHIBITED";s:7:"changed";s:10:"2004-12-16";s:7:"created";s:10:"2002-07-23";s:7:"expires";s:10:"2022-07-23";}s:10:"registered";s:3:"yes";s:5:"owner";a:5:{s:5:"email";s:11:"info@sex.tv";s:4:"name";s:12:"Annetta Penn";s:12:"organization";s:24:"Blue Door Ventures, Inc.";s:5:"phone";s:15:"005999 734 1000";s:7:"address";a:3:{i:2;s:22:"Pasea Estate,Road Town";i:3;s:14:"Tortola, 0000";i:4;s:2:"VG";}}s:5:"admin";a:5:{s:5:"email";s:31:"info@sunsettradinglicensing.com";s:4:"name";s:63:"SUNSET TRADING AND LICENSING BV SUNSET TRADING AND LICENSING BV";s:12:"organization";s:31:"SUNSET TRADING AND LICENSING BV";s:5:"phone";s:17:"0031 20 640 96 06";s:7:"address";a:3:{i:2;s:18:"Startbaan 5A Suite";i:3;s:20:"Amstelveen, XP 1185";i:4;s:2:"NL";}}s:4:"tech";a:5:{s:5:"email";s:11:"info@sex.tv";s:4:"name";s:12:"Annetta Penn";s:12:"organization";s:24:"Blue Door Ventures, Inc.";s:5:"phone";s:15:"005999 734 1000";s:7:"address";a:3:{i:2;s:22:"Pasea Estate,Road Town";i:3;s:14:"Tortola, 0000";i:4;s:2:"VG";}}}s:8:"regyinfo";a:6:{s:9:"registrar";s:14:"TV CORPORATION";s:5:"whois";s:12:"whois.www.tv";s:8:"referrer";s:13:"http://www.tv";s:4:"args";s:6:"sex.tv";s:4:"port";i:43;s:4:"type";s:6:"domain";}}s:8:"nic.aero";a:2:{s:8:"regyinfo";a:4:{s:8:"referrer";s:19:"http://www.nic.aero";s:9:"registrar";s:61:"Societe Internationale de Telecommunications Aeronautiques SC";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:22:"aero.whois-servers.net";s:4:"args";s:8:"nic.aero";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}s:8:"regrinfo";a:6:{s:6:"domain";a:4:{s:6:"handle";s:9:"D122-AERO";s:4:"name";s:8:"nic.aero";s:7:"sponsor";s:11:"SITA (9999)";s:7:"nserver";a:2:{s:17:"ns01.afilias.info";s:13:"69.46.107.140";s:17:"ns02.afilias.info";s:14:"149.17.192.143";}}s:5:"owner";a:5:{s:6:"handle";s:12:"C223523-AERO";s:4:"name";s:12:".aero Office";s:12:"organization";s:7:"SITA SC";s:7:"address";a:4:{s:4:"city";s:6:"Geneva";s:5:"state";s:2:"GE";s:5:"pcode";s:7:"CH-1216";s:7:"country";s:2:"CH";}s:5:"email";s:24:"aero.enquiries@sita.aero";}s:5:"admin";a:5:{s:6:"handle";s:12:"C223523-AERO";s:4:"name";s:12:".aero Office";s:12:"organization";s:7:"SITA SC";s:7:"address";a:4:{s:4:"city";s:6:"Geneva";s:5:"state";s:2:"GE";s:5:"pcode";s:7:"CH-1216";s:7:"country";s:2:"CH";}s:5:"email";s:24:"aero.enquiries@sita.aero";}s:7:"billing";a:5:{s:6:"handle";s:12:"C223523-AERO";s:4:"name";s:12:".aero Office";s:12:"organization";s:7:"SITA SC";s:7:"address";a:4:{s:4:"city";s:6:"Geneva";s:5:"state";s:2:"GE";s:5:"pcode";s:7:"CH-1216";s:7:"country";s:2:"CH";}s:5:"email";s:24:"aero.enquiries@sita.aero";}s:4:"tech";a:5:{s:6:"handle";s:13:"C7433457-AERO";s:4:"name";s:15:"Afilias Limited";s:12:"organization";s:15:"Afilias Limited";s:7:"address";a:3:{s:4:"city";s:6:"Dublin";s:5:"pcode";s:9:"Dublin 24";s:7:"country";s:2:"IE";}s:5:"email";s:20:"support@afilias.info";}s:10:"registered";s:3:"yes";}}s:12:"neulevel.biz";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:8:{s:4:"name";s:12:"neulevel.biz";s:6:"handle";s:8:"D592-BIZ";s:7:"sponsor";s:18:"REGISTRY REGISTRAR";s:6:"status";s:22:"serverUpdateProhibited";s:7:"nserver";a:6:{s:18:"pdns1.ultradns.net";s:12:"204.74.108.1";s:18:"pdns2.ultradns.net";s:12:"204.74.109.1";s:18:"pdns3.ultradns.org";s:10:"199.7.68.1";s:18:"pdns4.ultradns.org";s:10:"199.7.69.1";s:19:"pdns5.ultradns.info";s:12:"204.74.114.1";s:20:"pdns6.ultradns.co.uk";s:12:"204.74.115.1";}s:7:"created";s:10:"2001-11-07";s:7:"expires";s:10:"2010-11-06";s:7:"changed";s:10:"2009-12-22";}s:5:"owner";a:7:{s:6:"handle";s:9:"NEULEVEL1";s:4:"name";s:13:"NeuStar, Inc.";s:12:"organization";s:13:"NeuStar, Inc.";s:7:"address";a:5:{s:6:"street";a:2:{i:0;s:19:"Loudoun Tech Center";i:1;s:22:"45980 Center Oak Plaza";}s:4:"city";s:8:"Sterling";s:5:"state";s:8:"Virginia";s:5:"pcode";s:5:"20166";s:7:"country";s:13:"United States";}s:5:"phone";s:13:"+1.5714345757";s:3:"fax";s:13:"+1.5714345758";s:5:"email";s:19:"support@NeuStar.biz";}s:5:"admin";a:7:{s:6:"handle";s:9:"NEULEVEL1";s:4:"name";s:13:"NeuStar, Inc.";s:12:"organization";s:13:"NeuStar, Inc.";s:7:"address";a:5:{s:6:"street";a:2:{i:0;s:19:"Loudoun Tech Center";i:1;s:22:"45980 Center Oak Plaza";}s:4:"city";s:8:"Sterling";s:5:"state";s:8:"Virginia";s:5:"pcode";s:5:"20166";s:7:"country";s:13:"United States";}s:5:"phone";s:13:"+1.5714345757";s:3:"fax";s:13:"+1.5714345758";s:5:"email";s:19:"support@NeuStar.biz";}s:7:"billing";a:7:{s:6:"handle";s:9:"NEULEVEL1";s:4:"name";s:13:"NeuStar, Inc.";s:12:"organization";s:13:"NeuStar, Inc.";s:7:"address";a:5:{s:6:"street";a:2:{i:1;s:19:"Loudoun Tech Center";i:0;s:22:"45980 Center Oak Plaza";}s:4:"city";s:8:"Sterling";s:5:"state";s:8:"Virginia";s:5:"pcode";s:5:"20166";s:7:"country";s:13:"United States";}s:5:"phone";s:13:"+1.5714345757";s:3:"fax";s:13:"+1.5714345758";s:5:"email";s:19:"support@NeuStar.biz";}s:4:"tech";a:7:{s:6:"handle";s:9:"NEULEVEL1";s:4:"name";s:13:"NeuStar, Inc.";s:12:"organization";s:13:"NeuStar, Inc.";s:7:"address";a:5:{s:6:"street";a:2:{i:0;s:19:"Loudoun Tech Center";i:1;s:22:"45980 Center Oak Plaza";}s:4:"city";s:8:"Sterling";s:5:"state";s:8:"Virginia";s:5:"pcode";s:5:"20166";s:7:"country";s:13:"United States";}s:5:"phone";s:13:"+1.5714345757";s:3:"fax";s:13:"+1.5714345758";s:5:"email";s:19:"support@NeuStar.biz";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:23:"http://www.neulevel.biz";s:9:"registrar";s:8:"NEULEVEL";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:21:"biz.whois-servers.net";s:4:"args";s:12:"neulevel.biz";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:8:"sex.coop";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:8:{s:6:"handle";s:11:"33393D-COOP";s:4:"name";s:8:"sex.coop";s:7:"expires";s:10:"2007-09-15";s:6:"status";s:24:"clientTransferProhibited";s:7:"sponsor";s:16:"Domain Bank Inc.";s:7:"created";s:10:"2004-09-15";s:7:"changed";s:10:"2006-08-23";s:7:"nserver";a:2:{s:19:"dns3.domainbank.net";s:11:"64.94.31.73";s:19:"dns4.domainbank.net";s:13:"64.94.117.211";}}s:10:"registered";s:3:"yes";s:5:"owner";a:7:{s:6:"handle";s:11:"22379C-COOP";s:4:"name";s:14:"Chris Anderson";s:12:"organization";s:18:"Chris Anderson CPA";s:7:"address";a:5:{s:6:"street";a:1:{i:0;s:26:"5373 S. Green Street, #550";}s:4:"city";s:14:"Salt Lake City";s:5:"state";s:2:"UT";s:5:"pcode";s:5:"84123";s:7:"country";s:13:"United States";}s:5:"phone";s:13:"+1.8012321149";s:3:"fax";s:13:"+1.8012748543";s:5:"email";s:19:"chris@moneymind.com";}s:4:"tech";a:7:{s:6:"handle";s:11:"22381C-COOP";s:4:"name";s:14:"Chris Anderson";s:12:"organization";s:18:"Chris Anderson CPA";s:7:"address";a:5:{s:6:"street";a:1:{i:0;s:26:"5373 S. Green Street, #550";}s:4:"city";s:14:"Salt Lake City";s:5:"state";s:2:"UT";s:5:"pcode";s:5:"84123";s:7:"country";s:13:"United States";}s:5:"phone";s:13:"+1.8012321149";s:3:"fax";s:13:"+1.8012748543";s:5:"email";s:19:"chris@moneymind.com";}s:5:"admin";a:7:{s:6:"handle";s:11:"22380C-COOP";s:4:"name";s:14:"Chris Anderson";s:12:"organization";s:18:"Chris Anderson CPA";s:7:"address";a:5:{s:6:"street";a:1:{i:0;s:26:"5373 S. Green Street, #550";}s:4:"city";s:14:"Salt Lake City";s:5:"state";s:2:"UT";s:5:"pcode";s:5:"84123";s:7:"country";s:13:"United States";}s:5:"phone";s:13:"+1.8012321149";s:3:"fax";s:13:"+1.8012748543";s:5:"email";s:19:"chris@moneymind.com";}s:7:"billing";a:7:{s:6:"handle";s:11:"22382C-COOP";s:4:"name";s:14:"Chris Anderson";s:12:"organization";s:18:"Chris Anderson CPA";s:7:"address";a:5:{s:6:"street";a:1:{i:0;s:26:"5373 S. Green Street, #550";}s:4:"city";s:14:"Salt Lake City";s:5:"state";s:2:"UT";s:5:"pcode";s:5:"84123";s:7:"country";s:13:"United States";}s:5:"phone";s:13:"+1.8012321149";s:3:"fax";s:13:"+1.8012748543";s:5:"email";s:19:"chris@moneymind.com";}}s:8:"regyinfo";a:2:{s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:22:"coop.whois-servers.net";s:4:"args";s:8:"sex.coop";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:8:"nic.coop";a:2:{s:8:"regrinfo";a:3:{s:6:"domain";a:1:{s:4:"name";s:8:"nic.coop";}s:10:"registered";s:3:"yes";s:5:"owner";a:5:{s:4:"name";s:10:"Neil Homer";s:12:"organization";s:24:"Midcounties Co-operative";s:7:"address";a:4:{s:6:"street";a:2:{i:0;s:17:"New Barclay House";i:1;s:11:"Botley Road";}s:4:"city";s:6:"Oxford";s:5:"pcode";s:6:"OX20HP";s:7:"country";s:14:"United Kingdom";}s:5:"phone";s:14:"+44.1865256297";s:5:"email";s:16:"support@nic.coop";}}s:8:"regyinfo";a:2:{s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:22:"coop.whois-servers.net";s:4:"args";s:8:"nic.coop";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:12:"berkeley.edu";a:2:{s:8:"regrinfo";a:5:{s:5:"owner";a:2:{s:4:"name";s:36:"University of California at Berkeley";s:7:"address";a:4:{i:0;s:32:"Information Systems & Technology";i:1;s:45:"Infrastructure Services - 2484 Shattuck #4894";i:2;s:23:"Berkeley, CA 94720-4894";i:3;s:13:"UNITED STATES";}}s:5:"admin";a:4:{s:5:"phone";s:14:"(510) 642-0866";s:5:"email";s:20:"noc@nak.berkeley.edu";s:4:"name";s:7:"UCB NOC";s:7:"address";a:5:{i:0;s:34:"University of California, Berkeley";i:1;s:27:"IST-Infrastructure Services";i:2;s:24:"2484 Shattuck Ave, #4894";i:3;s:23:"Berkeley, CA 94720-4894";i:4;s:13:"UNITED STATES";}}s:4:"tech";a:4:{s:5:"phone";s:14:"(510) 642-0866";s:5:"email";s:20:"noc@nak.berkeley.edu";s:4:"name";s:7:"UCB NOC";s:7:"address";a:5:{i:0;s:34:"University of California, Berkeley";i:1;s:27:"IST-Infrastructure Services";i:2;s:24:"2484 Shattuck Ave, #4894";i:3;s:23:"Berkeley, CA 94720-4894";i:4;s:13:"UNITED STATES";}}s:6:"domain";a:4:{s:7:"nserver";a:5:{s:18:"adns1.berkeley.edu";s:12:"128.32.136.3";s:18:"adns2.berkeley.edu";s:13:"128.32.136.14";s:18:"phloem.uoregon.edu";s:13:"128.223.32.35";s:18:"ns.v6.berkeley.edu";s:12:"128.32.136.6";s:19:"aodns1.berkeley.edu";s:14:"192.35.225.133";}s:7:"created";s:10:"1985-04-24";s:7:"changed";s:10:"2009-06-02";s:4:"name";s:12:"berkeley.edu";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:25:"http://whois.educause.net";s:9:"registrar";s:7:"EDUCASE";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:21:"edu.whois-servers.net";s:4:"args";s:12:"berkeley.edu";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:12:"afilias.info";a:2:{s:8:"regyinfo";a:4:{s:8:"referrer";s:25:"http://whois.afilias.info";s:9:"registrar";s:32:"Afilias Global Registry Services";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:22:"info.whois-servers.net";s:4:"args";s:12:"afilias.info";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}s:8:"regrinfo";a:6:{s:6:"domain";a:8:{s:6:"handle";s:9:"D217-LRMS";s:4:"name";s:12:"afilias.info";s:7:"created";s:10:"2001-07-25";s:7:"changed";s:10:"2007-11-29";s:7:"expires";s:10:"2011-07-25";s:7:"sponsor";s:24:"Afilias Ltd. (R145-LRMS)";s:6:"status";s:2:"OK";s:7:"nserver";a:3:{s:17:"ns01.afilias.info";s:13:"69.46.107.140";s:17:"ns02.afilias.info";s:14:"149.17.192.143";s:17:"ns03.afilias.info";s:12:"69.46.124.10";}}s:5:"owner";a:7:{s:6:"handle";s:9:"C270-LRMS";s:4:"name";s:15:"Afilias Limited";s:12:"organization";s:12:"Afilias Ltd.";s:7:"address";a:4:{s:6:"street";a:2:{i:0;s:15:"3013 Lake Drive";i:1;s:10:"Office 107";}s:4:"city";s:6:"Dublin";s:5:"pcode";s:2:"24";s:7:"country";s:2:"IE";}s:5:"phone";s:16:"+011.35314693700";s:3:"fax";s:13:"+1.2157065701";s:5:"email";s:20:"support@afilias.info";}s:5:"admin";a:7:{s:6:"handle";s:9:"C270-LRMS";s:4:"name";s:15:"Afilias Limited";s:12:"organization";s:12:"Afilias Ltd.";s:7:"address";a:4:{s:6:"street";a:2:{i:0;s:15:"3013 Lake Drive";i:1;s:10:"Office 107";}s:4:"city";s:6:"Dublin";s:5:"pcode";s:2:"24";s:7:"country";s:2:"IE";}s:5:"phone";s:16:"+011.35314693700";s:3:"fax";s:13:"+1.2157065701";s:5:"email";s:20:"support@afilias.info";}s:7:"billing";a:7:{s:6:"handle";s:9:"C270-LRMS";s:4:"name";s:15:"Afilias Limited";s:12:"organization";s:12:"Afilias Ltd.";s:7:"address";a:4:{s:6:"street";a:2:{i:0;s:15:"3013 Lake Drive";i:1;s:10:"Office 107";}s:4:"city";s:6:"Dublin";s:5:"pcode";s:2:"24";s:7:"country";s:2:"IE";}s:5:"phone";s:16:"+011.35314693700";s:3:"fax";s:13:"+1.2157065701";s:5:"email";s:20:"support@afilias.info";}s:4:"tech";a:7:{s:6:"handle";s:9:"C270-LRMS";s:4:"name";s:15:"Afilias Limited";s:12:"organization";s:12:"Afilias Ltd.";s:7:"address";a:4:{s:6:"street";a:2:{i:0;s:15:"3013 Lake Drive";i:1;s:10:"Office 107";}s:4:"city";s:6:"Dublin";s:5:"pcode";s:2:"24";s:7:"country";s:2:"IE";}s:5:"phone";s:16:"+011.35314693700";s:3:"fax";s:13:"+1.2157065701";s:5:"email";s:20:"support@afilias.info";}s:10:"registered";s:3:"yes";}}s:7:"who.int";a:2:{s:8:"regrinfo";a:5:{s:5:"owner";a:2:{s:12:"organization";s:31:"World Health Organization (WHO)";s:7:"address";a:5:{s:6:"street";a:2:{i:0;s:16:"20, Avenue Appia";i:1;s:9:"Geneva 27";}s:4:"city";s:6:"Geneva";s:5:"state";s:6:"Geneva";s:7:"country";s:11:"Switzerland";s:5:"pcode";s:7:"CH-1211";}}s:5:"admin";a:5:{s:4:"name";s:23:"WHO-HQ-NOC (at ITS/NTS)";s:7:"address";a:4:{s:6:"street";a:2:{i:0;s:16:"20, Avenue Appia";i:1;s:9:"Geneva 27";}s:4:"city";s:6:"Geneva";s:7:"country";s:11:"Switzerland";s:5:"pcode";s:7:"CH-1211";}s:5:"phone";s:15:"+41 22 791 2411";s:3:"fax";s:15:"+41 22 791 4779";s:5:"email";s:18:"hostmaster@who.int";}s:4:"tech";a:5:{s:4:"name";s:23:"WHO-HQ-NOC (at ITS/NTS)";s:7:"address";a:4:{s:6:"street";a:2:{i:0;s:16:"20, Avenue Appia";i:1;s:9:"Geneva 27";}s:4:"city";s:6:"Geneva";s:7:"country";s:11:"Switzerland";s:5:"pcode";s:7:"CH-1211";}s:5:"phone";s:15:"+41 22 791 2411";s:3:"fax";s:15:"+41 22 791 4779";s:5:"email";s:18:"hostmaster@who.int";}s:6:"domain";a:2:{s:7:"nserver";a:5:{s:15:"whqdns1.who.int";s:12:"158.232.12.5";s:15:"whqdns2.who.int";s:12:"158.232.12.6";s:15:"whqdns3.who.int";s:14:"193.220.114.96";s:17:"ext-dns-2.cern.ch";s:13:"192.91.245.85";s:16:"ns1.wpro.who.int";s:13:"123.176.64.11";}s:4:"name";s:7:"who.int";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:35:"http://www.iana.org/int-dom/int.htm";s:9:"registrar";s:35:"Internet Assigned Numbers Authority";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:21:"int.whois-servers.net";s:4:"args";s:7:"who.int";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:10:"nic.museum";a:2:{s:8:"regyinfo";a:4:{s:8:"referrer";s:22:"http://musedoma.museum";s:9:"registrar";s:36:"Museum Domain Management Association";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:24:"museum.whois-servers.net";s:4:"args";s:10:"nic.museum";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}s:8:"regrinfo";a:6:{s:6:"domain";a:6:{s:6:"handle";s:15:"D6137640-MUSEUM";s:4:"name";s:10:"nic.museum";s:7:"sponsor";s:19:"CORE-904 (Musedoma)";s:7:"created";s:10:"2005-04-02";s:7:"expires";s:10:"2015-04-02";s:7:"nserver";a:2:{s:12:"nic.icom.org";s:12:"195.7.65.253";s:10:"nic.frd.se";s:12:"83.145.59.99";}}s:5:"owner";a:5:{s:6:"handle";s:11:"C728-MUSEUM";s:4:"name";s:9:"Cary Karp";s:12:"organization";s:36:"Museum Domain Management Association";s:7:"address";a:4:{s:6:"street";s:17:"Frescativaegen 40";s:4:"city";s:9:"Stockholm";s:5:"pcode";s:6:"104 05";s:7:"country";s:2:"SE";}s:5:"email";s:13:"ck@nic.museum";}s:5:"admin";a:5:{s:6:"handle";s:11:"C728-MUSEUM";s:4:"name";s:9:"Cary Karp";s:12:"organization";s:36:"Museum Domain Management Association";s:7:"address";a:4:{s:6:"street";s:17:"Frescativaegen 40";s:4:"city";s:9:"Stockholm";s:5:"pcode";s:6:"104 05";s:7:"country";s:2:"SE";}s:5:"email";s:13:"ck@nic.museum";}s:4:"tech";a:5:{s:6:"handle";s:11:"C728-MUSEUM";s:4:"name";s:9:"Cary Karp";s:12:"organization";s:36:"Museum Domain Management Association";s:7:"address";a:4:{s:6:"street";a:1:{i:0;s:17:"Frescativaegen 40";}s:4:"city";s:9:"Stockholm";s:5:"pcode";s:6:"104 05";s:7:"country";s:2:"SE";}s:5:"email";s:13:"ck@nic.museum";}s:7:"billing";a:5:{s:6:"handle";s:11:"C728-MUSEUM";s:4:"name";s:9:"Cary Karp";s:12:"organization";s:36:"Museum Domain Management Association";s:7:"address";a:4:{s:6:"street";s:17:"Frescativaegen 40";s:4:"city";s:9:"Stockholm";s:5:"pcode";s:6:"104 05";s:7:"country";s:2:"SE";}s:5:"email";s:13:"ck@nic.museum";}s:10:"registered";s:3:"yes";}}s:17:"peter.morgan.name";a:2:{s:8:"regrinfo";a:2:{s:6:"domain";a:2:{s:4:"name";s:17:"peter.morgan.name";s:6:"status";s:2:"ok";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:20:"http://www.nic.name/";s:9:"registrar";s:20:"Global Name Registry";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:22:"name.whois-servers.net";s:4:"args";s:17:"peter.morgan.name";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:11:"example.org";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:7:{s:4:"name";s:11:"example.org";s:7:"created";s:10:"1995-08-31";s:7:"changed";s:10:"2004-02-18";s:7:"expires";s:10:"2010-08-30";s:7:"sponsor";s:54:"Internet Assigned Numbers Authority (IANA) (R193-LROR)";s:6:"status";a:4:{i:0;s:17:"DELETE PROHIBITED";i:1;s:16:"RENEW PROHIBITED";i:2;s:19:"TRANSFER PROHIBITED";i:3;s:17:"UPDATE PROHIBITED";}s:7:"nserver";a:2:{s:18:"a.iana-servers.net";s:11:"192.0.34.43";s:18:"b.iana-servers.net";s:11:"193.0.0.236";}}s:5:"owner";a:6:{s:6:"handle";s:4:"IANA";s:4:"name";s:35:"Internet Assigned Numbers Authority";s:7:"address";a:5:{s:7:"address";a:2:{i:0;s:18:"4676 Admiralty Way";i:1;s:9:"Suite 330";}s:4:"city";s:14:"Marina del Rey";s:5:"state";s:2:"CA";s:5:"pcode";s:5:"92092";s:7:"country";s:2:"US";}s:5:"phone";s:13:"+1.3108239358";s:3:"fax";s:13:"+1.3108238649";s:5:"email";s:16:"res-dom@iana.org";}s:5:"admin";a:6:{s:6:"handle";s:4:"IANA";s:4:"name";s:35:"Internet Assigned Numbers Authority";s:7:"address";a:4:{s:7:"address";a:2:{i:0;s:18:"4676 Admiralty Way";i:2;s:9:"Suite 330";}s:4:"city";s:14:"Marina del Rey";s:5:"pcode";s:5:"92092";s:7:"country";s:2:"US";}s:5:"phone";s:13:"+1.3108239358";s:3:"fax";s:13:"+1.3108238649";s:5:"email";s:16:"res-dom@iana.org";}s:4:"tech";a:6:{s:6:"handle";s:4:"IANA";s:4:"name";s:35:"Internet Assigned Numbers Authority";s:7:"address";a:4:{s:7:"address";a:2:{i:0;s:18:"4676 Admiralty Way";i:1;s:9:"Suite 330";}s:4:"city";s:14:"Marina del Rey";s:5:"pcode";s:5:"92092";s:7:"country";s:2:"US";}s:5:"phone";s:13:"+1.3108239358";s:3:"fax";s:13:"+1.3108238649";s:5:"email";s:16:"res-dom@iana.org";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:19:"http://www.pir.org/";s:9:"registrar";s:24:"Public Interest Registry";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:21:"org.whois-servers.net";s:4:"args";s:11:"example.org";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:15:"registrypro.pro";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:8:{s:6:"handle";s:10:"DN2341-RSC";s:4:"name";s:15:"registrypro.pro";s:7:"created";s:10:"2004-08-18";s:7:"changed";s:10:"2009-01-16";s:7:"expires";s:10:"2016-01-26";s:7:"sponsor";s:8:"internal";s:6:"status";s:22:"serverDeleteProhibited";s:7:"nserver";a:4:{s:10:"a.gtld.pro";s:13:"192.149.62.10";s:10:"b.gtld.pro";s:13:"192.149.63.10";s:10:"c.gtld.pro";s:13:"192.149.64.10";s:10:"d.gtld.pro";s:13:"192.149.66.10";}}s:5:"owner";a:5:{s:6:"handle";s:5:"RSC-1";s:4:"name";s:11:"RegistryPro";s:7:"address";a:5:{s:7:"address";a:1:{i:0;s:28:"425 West Randolph, 8th Floor";}s:4:"city";s:7:"Chicago";s:5:"state";s:2:"IL";s:5:"pcode";s:5:"60606";s:7:"country";s:2:"US";}s:5:"phone";s:13:"+1.3129947652";s:5:"email";s:23:"support@registrypro.pro";}s:5:"admin";a:5:{s:6:"handle";s:5:"RSC-1";s:4:"name";s:11:"RegistryPro";s:7:"address";a:4:{s:7:"address";a:1:{i:0;s:28:"425 West Randolph, 8th Floor";}s:4:"city";s:7:"Chicago";s:5:"pcode";s:5:"60606";s:7:"country";s:2:"US";}s:5:"phone";s:13:"+1.3129947652";s:5:"email";s:23:"support@registrypro.pro";}s:4:"tech";a:5:{s:6:"handle";s:5:"RSC-1";s:4:"name";s:11:"RegistryPro";s:7:"address";a:4:{s:7:"address";a:1:{i:0;s:28:"425 West Randolph, 8th Floor";}s:4:"city";s:7:"Chicago";s:5:"pcode";s:5:"60606";s:7:"country";s:2:"US";}s:5:"phone";s:13:"+1.3129947652";s:5:"email";s:23:"support@registrypro.pro";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:26:"http://www.registrypro.pro";s:9:"registrar";s:11:"RegistryPRO";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:18:"whois.registry.pro";s:4:"args";s:15:"registrypro.pro";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:12:"whois.travel";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:8:{s:4:"name";s:12:"whois.travel";s:6:"handle";s:13:"D24097-TRAVEL";s:7:"sponsor";s:15:"NEUSTAR GATEWAY";s:6:"status";s:22:"serverUpdateProhibited";s:7:"nserver";a:6:{s:18:"pdns1.ultradns.net";s:12:"204.74.108.1";s:18:"pdns2.ultradns.net";s:12:"204.74.109.1";s:18:"pdns3.ultradns.org";s:10:"199.7.68.1";s:18:"pdns4.ultradns.org";s:10:"199.7.69.1";s:19:"pdns5.ultradns.info";s:12:"204.74.114.1";s:20:"pdns6.ultradns.co.uk";s:12:"204.74.115.1";}s:7:"created";s:10:"2004-10-00";s:7:"expires";s:10:"2003-10-00";s:7:"changed";s:10:"2025-05-00";}s:5:"owner";a:5:{s:6:"handle";s:10:"TRALLIANCE";s:4:"name";s:22:"Tralliance Corporation";s:7:"address";a:5:{s:7:"address";a:1:{i:0;s:33:"110 East Broward Blvd, 14th floor";}s:4:"city";s:15:"Fort Lauderdale";s:5:"state";s:2:"FL";s:5:"pcode";s:5:"33301";s:7:"country";s:13:"United States";}s:5:"phone";s:13:"+1.9547695999";s:5:"email";s:22:"info@tralliance.travel";}s:5:"admin";a:5:{s:6:"handle";s:10:"TRALLIANCE";s:4:"name";s:22:"Tralliance Corporation";s:7:"address";a:5:{s:7:"address";a:1:{i:0;s:33:"110 East Broward Blvd, 14th floor";}s:4:"city";s:15:"Fort Lauderdale";s:5:"state";s:2:"FL";s:5:"pcode";s:5:"33301";s:7:"country";s:13:"United States";}s:5:"phone";s:13:"+1.9547695999";s:5:"email";s:22:"info@tralliance.travel";}s:4:"bill";a:5:{s:6:"handle";s:10:"TRALLIANCE";s:4:"name";s:22:"Tralliance Corporation";s:7:"address";a:5:{s:7:"address";a:1:{i:0;s:33:"110 East Broward Blvd, 14th floor";}s:4:"city";s:15:"Fort Lauderdale";s:5:"state";s:2:"FL";s:5:"pcode";s:5:"33301";s:7:"country";s:13:"United States";}s:5:"phone";s:13:"+1.9547695999";s:5:"email";s:22:"info@tralliance.travel";}s:4:"tech";a:5:{s:6:"handle";s:10:"TRALLIANCE";s:4:"name";s:22:"Tralliance Corporation";s:7:"address";a:5:{s:7:"address";a:1:{i:0;s:33:"110 East Broward Blvd, 14th floor";}s:4:"city";s:15:"Fort Lauderdale";s:5:"state";s:2:"FL";s:5:"pcode";s:5:"33301";s:7:"country";s:13:"United States";}s:5:"phone";s:13:"+1.9547695999";s:5:"email";s:22:"info@tralliance.travel";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:22:"http://www.nic.travel/";s:9:"registrar";s:22:"Tralliance Corporation";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:24:"travel.whois-servers.net";s:4:"args";s:12:"whois.travel";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:10:"66.18.70.6";a:2:{s:8:"regrinfo";a:4:{s:10:"registered";s:3:"yes";s:5:"admin";a:7:{s:4:"name";s:13:"Nonge Maxwell";s:6:"handle";s:11:"NM9-AFRINIC";s:7:"address";a:5:{i:0;s:16:"Private Bag X06,";i:1;s:9:"Honeydew,";i:2;s:4:"2040";i:3;s:17:"Johannesburg 2040";i:4;s:12:"South Africa";}s:5:"email";a:2:{i:0;s:22:"netadmin@sentechsa.net";i:1;s:20:"nongem@sentech.co.za";}s:5:"phone";s:14:"+2711 471 4575";s:3:"fax";s:14:"+2711 471 4510";s:6:"source";s:18:"AFRINIC # Filtered";}s:4:"tech";a:7:{s:4:"name";s:13:"Nonge Maxwell";s:6:"handle";s:11:"NM9-AFRINIC";s:7:"address";a:5:{i:0;s:16:"Private Bag X06,";i:1;s:9:"Honeydew,";i:2;s:4:"2040";i:3;s:17:"Johannesburg 2040";i:4;s:12:"South Africa";}s:5:"email";a:2:{i:0;s:22:"netadmin@sentechsa.net";i:1;s:20:"nongem@sentech.co.za";}s:5:"phone";s:14:"+2711 471 4575";s:3:"fax";s:14:"+2711 471 4510";s:6:"source";s:18:"AFRINIC # Filtered";}s:7:"network";a:8:{s:7:"inetnum";s:25:"66.18.70.0 - 66.18.70.255";s:4:"name";s:15:"SENTECH-ISP9-ZA";s:4:"desc";s:22:"Sentech Ltd - ISP Mail";s:7:"country";s:2:"ZA";s:6:"status";s:11:"ASSIGNED PA";s:6:"mnt-by";s:30:"TF-66-18-64-0-66-18-95-255-MNT";s:6:"source";s:18:"AFRINIC # Filtered";s:6:"parent";s:25:"66.18.64.0 - 66.18.95.255";}}s:8:"regyinfo";a:3:{s:9:"registrar";s:34:"African Network Information Center";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:14:"whois.arin.net";s:4:"args";s:10:"66.18.70.6";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:17:"whois.afrinic.net";s:4:"args";s:10:"66.18.70.6";s:4:"port";i:43;}}s:4:"type";s:2:"ip";}}s:15:"218.165.121.114";a:2:{s:8:"regrinfo";a:5:{s:10:"registered";s:3:"yes";s:5:"admin";a:10:{s:4:"name";s:17:"HINET Network-Adm";s:7:"address";a:4:{i:0;s:32:"CHTD, Chunghwa Telecom Co., Ltd.";i:1;s:45:"Data-Bldg. 6F, No. 21, Sec. 21, Hsin-Yi Rd.,";i:2;s:17:"Taipei Taiwan 100";i:3;s:2:"TW";}s:5:"phone";a:3:{i:0;s:16:"+886 2 2322 3495";i:1;s:16:"+886 2 2322 3442";i:2;s:16:"+886 2 2344 3007";}s:3:"fax";a:2:{i:0;s:16:"+886 2 2344 2513";i:1;s:16:"+886 2 2395 5671";}s:5:"email";s:21:"network-adm@hinet.net";s:6:"handle";s:7:"HN27-AP";s:7:"remarks";s:33:"same as TWNIC nic-handle HN184-TW";s:6:"mnt-by";s:14:"MAINT-TW-TWNIC";s:7:"changed";s:10:"2000-07-21";s:6:"source";s:5:"APNIC";}s:4:"tech";a:10:{s:4:"name";s:20:"HINET Network-Center";s:7:"address";a:4:{i:0;s:32:"CHTD, Chunghwa Telecom Co., Ltd.";i:1;s:45:"Data-Bldg. 6F, No. 21, Sec. 21, Hsin-Yi Rd.,";i:2;s:17:"Taipei Taiwan 100";i:3;s:2:"TW";}s:5:"phone";a:3:{i:0;s:16:"+886 2 2322 3495";i:1;s:16:"+886 2 2322 3442";i:2;s:16:"+886 2 2344 3007";}s:3:"fax";a:2:{i:0;s:16:"+886 2 2344 2513";i:1;s:16:"+886 2 2395 5671";}s:5:"email";s:24:"network-center@hinet.net";s:6:"handle";s:7:"HN28-AP";s:7:"remarks";s:33:"same as TWNIC nic-handle HN185-TW";s:6:"mnt-by";s:14:"MAINT-TW-TWNIC";s:7:"changed";s:10:"2000-07-21";s:6:"source";s:5:"APNIC";}s:7:"network";a:7:{s:7:"inetnum";s:29:"218.160.0.0 - 218.175.255.255";s:4:"name";s:5:"HINET";s:6:"mnt-by";s:14:"MAINT-TW-TWNIC";s:9:"mnt-lower";s:14:"MAINT-TW-TWNIC";s:7:"changed";s:10:"2002-10-09";s:6:"status";s:18:"ALLOCATED PORTABLE";s:6:"source";s:5:"APNIC";}s:5:"owner";a:2:{s:12:"organization";s:31:"CHTD, Chunghwa Telecom Co.,Ltd.";s:7:"address";a:3:{i:0;s:40:"Data-Bldg.6F, No.21, Sec.21, Hsin-Yi Rd.";i:1;s:17:"Taipei Taiwan 100";i:2;s:2:"TW";}}}s:8:"regyinfo";a:3:{s:9:"registrar";s:39:"Asia Pacific Network Information Centre";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:14:"whois.arin.net";s:4:"args";s:15:"218.165.121.114";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:15:"whois.apnic.net";s:4:"args";s:15:"218.165.121.114";s:4:"port";i:43;}}s:4:"type";s:2:"ip";}}s:14:"207.217.120.54";a:2:{s:8:"regrinfo";a:4:{s:5:"owner";a:3:{s:12:"organization";s:15:"EARTHLINK, Inc.";s:6:"handle";s:8:"EARTH-21";s:7:"address";a:5:{s:6:"street";s:7:"LEVEL A";s:4:"city";s:7:"ATLANTA";s:5:"state";s:2:"GA";s:5:"pcode";s:5:"30309";s:7:"country";s:2:"US";}}s:7:"network";a:8:{s:7:"inetnum";s:29:"207.217.0.0 - 207.217.255.255";s:4:"name";s:14:"EARTHLINK-CIDR";s:6:"handle";s:17:"NET-207-217-0-0-1";s:6:"status";s:17:"Direct Allocation";s:7:"nserver";a:2:{s:19:"itchy.earthlink.net";s:14:"207.69.188.196";s:22:"scratchy.earthlink.net";s:14:"207.69.188.197";}s:4:"desc";a:1:{i:0;s:44:"ADDRESSES WITHIN THIS BLOCK ARE NON-PORTABLE";}s:7:"created";s:10:"1996-10-04";s:7:"changed";s:10:"2007-06-22";}s:4:"tech";a:4:{s:6:"handle";s:13:"ELNK-ORG-ARIN";s:4:"name";s:15:"EarthLink, Inc.";s:5:"phone";s:15:"+1-404-815-0770";s:5:"email";s:34:"arin_tech@lists.corp.earthlink.net";}s:5:"abuse";a:4:{s:6:"handle";s:12:"ABUSE60-ARIN";s:4:"name";s:10:"ABUSE TEAM";s:5:"phone";s:15:"+1-404-815-0770";s:5:"email";s:25:"abuse@abuse.earthlink.net";}}s:8:"regyinfo";a:3:{s:9:"registrar";s:45:"American Registry for Internet Numbers (ARIN)";s:4:"type";s:2:"ip";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:14:"whois.arin.net";s:4:"args";s:14:"207.217.120.54";s:4:"port";i:43;}}}}s:12:"70.84.47.210";a:2:{s:8:"regrinfo";a:4:{s:5:"owner";a:3:{s:12:"organization";s:37:"ThePlanet.com Internet Services, Inc.";s:6:"handle";s:4:"TPCM";s:7:"address";a:5:{s:6:"street";s:9:"Suite 205";s:4:"city";s:7:"Houston";s:5:"state";s:2:"TX";s:5:"pcode";s:5:"77002";s:7:"country";s:2:"US";}}s:7:"network";a:7:{s:7:"inetnum";s:25:"70.84.0.0 - 70.87.255.255";s:4:"name";s:23:"NETBLK-THEPLANET-BLK-13";s:6:"handle";s:15:"NET-70-84-0-0-1";s:6:"status";s:17:"Direct Allocation";s:7:"nserver";a:2:{s:17:"ns1.theplanet.com";s:15:"207.218.247.135";s:17:"ns2.theplanet.com";s:15:"207.218.223.162";}s:7:"created";s:10:"2004-07-29";s:7:"changed";s:10:"2009-02-24";}s:4:"tech";a:4:{s:6:"handle";s:12:"TECHN33-ARIN";s:4:"name";s:17:"Technical Support";s:5:"phone";s:15:"+1-214-782-7800";s:5:"email";s:20:"admins@theplanet.com";}s:5:"abuse";a:4:{s:6:"handle";s:13:"ABUSE271-ARIN";s:4:"name";s:16:"The Planet Abuse";s:5:"phone";s:15:"+1-281-714-3560";s:5:"email";s:19:"abuse@theplanet.com";}}s:8:"regyinfo";a:3:{s:9:"registrar";s:45:"American Registry for Internet Numbers (ARIN)";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:14:"whois.arin.net";s:4:"args";s:12:"70.84.47.210";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:20:"rwhois.theplanet.com";s:4:"args";s:12:"70.84.47.210";s:4:"port";s:4:"4321";}}s:4:"type";s:2:"ip";}}s:14:"200.165.206.74";a:2:{s:8:"regrinfo";a:5:{s:10:"registered";s:3:"yes";s:5:"owner";a:5:{s:6:"handle";s:5:"HAOGO";s:4:"name";s:22:"Halliny Oliveira Gomes";s:5:"email";s:22:"mariana.bion@oi.net.br";s:7:"created";s:10:"2006-06-20";s:7:"changed";s:10:"2012-09-20";}s:4:"tech";a:5:{s:6:"handle";s:5:"CGR13";s:4:"name";s:34:"Centro de Gerencia de Rede TELEMAR";s:5:"email";s:20:"abuse@telemar.net.br";s:7:"created";s:10:"2006-00-20";s:7:"changed";s:10:"2011-09-20";}s:5:"abuse";a:5:{s:6:"handle";s:5:"CGR13";s:4:"name";s:34:"Centro de Gerencia de Rede TELEMAR";s:5:"email";s:20:"abuse@telemar.net.br";s:7:"created";s:10:"2006-00-20";s:7:"changed";s:10:"2011-09-20";}s:7:"network";a:7:{s:7:"inetnum";s:29:"200.165.0.0 - 200.165.255.255";s:7:"country";s:2:"BR";s:7:"nserver";a:2:{s:18:"ns4.telemar.net.br";s:12:"200.222.0.35";s:18:"ns2.telemar.net.br";s:14:"200.202.193.74";}s:7:"created";s:10:"2005-01-20";s:7:"changed";s:10:"2010-01-20";s:6:"handle";s:6:"AS7738";s:4:"cdir";s:10:"200.165/16";}}s:8:"regyinfo";a:3:{s:9:"registrar";s:35:"Comite Gestor da Internet do Brazil";s:7:"servers";a:3:{i:0;a:3:{s:6:"server";s:14:"whois.arin.net";s:4:"args";s:14:"200.165.206.74";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:16:"whois.lacnic.net";s:4:"args";s:14:"200.165.206.74";s:4:"port";i:43;}i:2;a:3:{s:6:"server";s:17:"whois.registro.br";s:4:"args";s:14:"200.165.206.74";s:4:"port";i:43;}}s:4:"type";s:2:"ip";}}s:15:"210.178.148.129";a:2:{s:8:"regrinfo";a:4:{s:5:"owner";a:2:{s:12:"organization";s:20:"Korea Telecom-PUBNET";s:7:"address";a:1:{s:6:"street";s:30:"Jungja, Bundang-Gu, Sungnam-ci";}}s:5:"admin";a:3:{s:4:"name";s:16:"IP Administrator";s:5:"phone";s:14:"+82-2-500-6200";s:5:"email";s:14:"lyk1004@kt.com";}s:4:"tech";a:2:{s:4:"name";s:10:"IP Manager";s:5:"phone";s:14:"+82-2-500-6200";}s:5:"abuse";a:2:{s:4:"name";s:19:"Pubnet Abuse Manger";s:5:"phone";s:15:"+82-2-3674-5890";}}s:8:"regyinfo";a:3:{s:9:"registrar";s:40:"Korea Network Information Center (KRNIC)";s:7:"servers";a:3:{i:0;a:3:{s:6:"server";s:14:"whois.arin.net";s:4:"args";s:15:"210.178.148.129";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:15:"whois.apnic.net";s:4:"args";s:15:"210.178.148.129";s:4:"port";i:43;}i:2;a:3:{s:6:"server";s:15:"whois.krnic.net";s:4:"args";s:15:"210.178.148.129";s:4:"port";i:43;}}s:4:"type";s:2:"ip";}}s:12:"200.44.33.31";a:2:{s:8:"regrinfo";a:4:{s:10:"registered";s:3:"yes";s:4:"tech";a:7:{s:6:"handle";s:3:"LUM";s:4:"name";s:13:"Ramón Cabello";s:5:"email";s:17:"ipadmin@CANTV.NET";s:7:"address";a:3:{i:0;s:56:"Segunda Avenida de los Palos Grandes, Entre Av. Fr, 000,";i:1;s:19:"1060 - Caracas - MI";s:7:"country";s:2:"VE";}s:5:"phone";s:18:"+58 212 2095609 []";s:7:"created";s:10:"2009-02-20";s:7:"changed";s:10:"2008-04-20";}s:5:"owner";a:8:{s:6:"handle";s:3:"LUM";s:4:"name";s:13:"Ramón Cabello";s:5:"email";s:17:"ipadmin@CANTV.NET";s:7:"address";a:3:{i:0;s:56:"Segunda Avenida de los Palos Grandes, Entre Av. Fr, 000,";i:1;s:19:"1060 - Caracas - MI";s:7:"country";s:2:"VE";}s:5:"phone";s:18:"+58 212 2095609 []";s:7:"created";s:10:"2009-02-20";s:7:"changed";s:10:"2008-04-20";s:12:"organization";s:26:"CANTV Servicios, Venezuela";}s:7:"network";a:8:{s:7:"inetnum";s:27:"200.44.0.0 - 200.44.255.255";s:6:"status";s:9:"allocated";s:7:"abuse-c";s:3:"LUM";s:7:"nserver";a:2:{s:14:"dns1.cantv.net";s:12:"200.44.32.10";s:14:"dns2.cantv.net";s:13:"200.11.248.11";}s:7:"remarks";s:44:"ADDRESSES WITHIN THIS BLOCK ARE NON-PORTABLE";s:7:"created";s:10:"2003-19-98";s:7:"changed";s:10:"2001-02-20";s:4:"cdir";s:9:"200.44/16";}}s:8:"regyinfo";a:3:{s:9:"registrar";s:57:"Latin American and Caribbean IP address Regional Registry";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:14:"whois.arin.net";s:4:"args";s:12:"200.44.33.31";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:16:"whois.lacnic.net";s:4:"args";s:12:"200.44.33.31";s:4:"port";i:43;}}s:4:"type";s:2:"ip";}}s:13:"62.97.102.115";a:2:{s:8:"regrinfo";a:6:{s:10:"registered";s:3:"yes";s:5:"admin";a:8:{s:4:"role";s:15:"COLT Hostmaster";s:7:"address";a:5:{i:0;s:23:"COLT Telecommunications";i:1;s:14:"Beaufort House";i:2;s:20:"15 St Botolph Street";i:3;s:6:"London";i:4;s:9:"EC3A 7QN";}s:5:"phone";s:16:"+44 20 7390 3900";s:3:"fax";s:16:"+44 20 7863 5610";s:7:"remarks";a:3:{i:0;s:64:"trouble: In the first instance email eu-ripemaster@colt.net";i:1;s:40:"trouble: or call +44 (0)800 3583667";i:2;s:48:"trouble: Abuse queries to abuse@uk.colt.net";}s:6:"handle";s:9:"CHM4-RIPE";s:6:"mnt-by";s:7:"COLT-UK";s:6:"source";s:15:"RIPE # Filtered";}s:4:"tech";a:8:{s:4:"role";s:15:"COLT Hostmaster";s:7:"address";a:5:{i:0;s:23:"COLT Telecommunications";i:1;s:14:"Beaufort House";i:2;s:20:"15 St Botolph Street";i:3;s:6:"London";i:4;s:9:"EC3A 7QN";}s:5:"phone";s:16:"+44 20 7390 3900";s:3:"fax";s:16:"+44 20 7863 5610";s:7:"remarks";a:3:{i:0;s:64:"trouble: In the first instance email eu-ripemaster@colt.net";i:1;s:40:"trouble: or call +44 (0)800 3583667";i:2;s:48:"trouble: Abuse queries to abuse@uk.colt.net";}s:6:"handle";s:9:"CHM4-RIPE";s:6:"mnt-by";s:7:"COLT-UK";s:6:"source";s:15:"RIPE # Filtered";}s:7:"network";a:9:{s:7:"inetnum";s:26:"62.97.64.0 - 62.97.127.255";s:4:"name";s:16:"UK-COLT-20010716";s:7:"country";s:2:"ES";s:3:"org";s:12:"ORG-CI9-RIPE";s:6:"status";s:12:"ALLOCATED PA";s:6:"mnt-by";s:15:"RIPE-NCC-HM-MNT";s:9:"mnt-lower";s:7:"COLT-UK";s:10:"mnt-routes";s:7:"COLT-UK";s:6:"source";s:15:"RIPE # Filtered";}s:5:"owner";a:1:{s:12:"organization";s:26:"COLT Telecom Group Limited";}s:5:"abuse";a:1:{s:5:"email";s:17:"abuse@uk.colt.net";}}s:8:"regyinfo";a:3:{s:9:"registrar";s:32:"RIPE Network Coordination Centre";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:14:"whois.arin.net";s:4:"args";s:13:"62.97.102.115";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:14:"whois.ripe.net";s:4:"args";s:13:"62.97.102.115";s:4:"port";i:43;}}s:4:"type";s:2:"ip";}}s:5:"AS220";a:2:{s:8:"regrinfo";a:3:{s:5:"owner";a:3:{s:12:"organization";s:30:"754th Electronic Systems Group";s:6:"handle";s:4:"7ESG";s:7:"address";a:5:{s:6:"street";s:18:"501 E. Moore Drive";s:4:"city";s:17:"MAFB-Gunter Annex";s:5:"state";s:2:"AL";s:5:"pcode";s:5:"36114";s:7:"country";s:2:"US";}}s:2:"AS";a:4:{s:4:"name";s:16:"OOALC-HOSTNET-AS";s:7:"created";s:10:"1988-08-12";s:7:"changed";s:10:"2008-08-18";s:6:"handle";s:5:"AS220";}s:4:"tech";a:4:{s:6:"handle";s:12:"REGIS10-ARIN";s:4:"name";s:12:"Registration";s:5:"phone";s:15:"+1-800-365-3642";s:5:"email";s:16:"REGISTRA@nic.mil";}}s:8:"regyinfo";a:3:{s:9:"registrar";s:45:"American Registry for Internet Numbers (ARIN)";s:4:"type";s:2:"AS";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:14:"whois.arin.net";s:4:"args";s:5:"AS220";s:4:"port";i:43;}}}}s:16:"bulkregister.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:6:{s:4:"name";s:16:"bulkregister.com";s:7:"nserver";a:5:{s:22:"dns4.name-services.com";s:12:"64.74.96.242";s:22:"dns2.name-services.com";s:14:"216.52.184.230";s:22:"dns5.name-services.com";s:10:"70.42.37.1";s:22:"dns3.name-services.com";s:13:"63.251.92.193";s:22:"dns1.name-services.com";s:11:"69.25.142.1";}s:6:"status";s:24:"clientTransferProhibited";s:7:"changed";s:10:"2006-12-05";s:7:"created";s:10:"1999-09-08";s:7:"expires";s:10:"2012-09-08";}s:10:"registered";s:3:"yes";s:5:"admin";a:6:{s:5:"email";s:21:"paul.stahura@enom.com";s:4:"name";s:11:"DNS Manager";s:12:"organization";s:10:"eNom, Inc.";s:5:"phone";s:13:"+1.4258838860";s:3:"fax";s:13:"+1.4258833553";s:7:"address";a:4:{i:4;s:13:"P.O. Box 7449";i:5;s:30:"2002 156th Avenue NE, Ste. 300";i:6;s:18:"Bellevue, WA 98007";i:7;s:2:"US";}}s:4:"tech";a:6:{s:5:"email";s:21:"paul.stahura@enom.com";s:4:"name";s:11:"DNS Manager";s:12:"organization";s:10:"eNom, Inc.";s:5:"phone";s:13:"+1.4258838860";s:3:"fax";s:13:"+1.4258833553";s:7:"address";a:4:{i:4;s:13:"P.O. Box 7449";i:5;s:30:"2002 156th Avenue NE, Ste. 300";i:6;s:18:"Bellevue, WA 98007";i:7;s:2:"US";}}s:5:"owner";a:2:{s:4:"name";s:44:"Registration Service Provided By: eNom, Inc.";s:7:"address";a:1:{i:0;s:30:"Contact: paul.stahura@enom.com";}}}s:8:"regyinfo";a:6:{s:9:"registrar";s:18:"BULKREGISTER, LLC.";s:5:"whois";s:22:"whois.bulkregister.com";s:8:"referrer";s:27:"http://www.bulkregister.com";s:4:"args";s:17:"=bulkregister.com";s:4:"port";i:43;s:4:"type";s:6:"domain";}}s:11:"dominis.cat";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:4:{s:4:"name";s:11:"dominis.cat";s:7:"created";s:10:"2006-04-24";s:7:"changed";s:10:"2009-06-07";s:7:"expires";s:10:"2010-04-24";}s:5:"owner";a:6:{s:6:"handle";s:14:"AT19733065-014";s:4:"name";s:22:"Ubilibet Ubilibet S.L.";s:12:"organization";s:13:"Ubilibet S.L.";s:7:"address";a:4:{s:4:"city";s:9:"Barcelona";s:5:"state";s:9:"Barcelona";s:5:"pcode";s:5:"08009";s:7:"country";s:2:"ES";}s:5:"phone";s:13:"+34.932654145";s:5:"email";s:18:"whois@ubilibet.com";}s:5:"admin";a:6:{s:6:"handle";s:14:"AT18345154-011";s:4:"name";s:40:"Information Society Consultants UBILIBET";s:12:"organization";s:8:"UBILIBET";s:7:"address";a:3:{s:4:"city";s:9:"Barcelona";s:5:"pcode";s:5:"08009";s:7:"country";s:2:"ES";}s:5:"phone";s:13:"+34.932654145";s:5:"email";s:20:"billing@ubilibet.com";}s:4:"tech";a:6:{s:6:"handle";s:14:"AT53811350-014";s:4:"name";s:40:"Information Society Consultants UBILIBET";s:12:"organization";s:8:"UBILIBET";s:7:"address";a:3:{s:4:"city";s:9:"Barcelona";s:5:"pcode";s:5:"08009";s:7:"country";s:2:"ES";}s:5:"phone";s:13:"+34.932654145";s:5:"email";s:20:"billing@ubilibet.com";}s:7:"billing";a:6:{s:6:"handle";s:14:"AT18345154-011";s:4:"name";s:40:"Information Society Consultants UBILIBET";s:12:"organization";s:8:"UBILIBET";s:7:"address";a:3:{s:4:"city";s:9:"Barcelona";s:5:"pcode";s:5:"08009";s:7:"country";s:2:"ES";}s:5:"phone";s:13:"+34.932654145";s:5:"email";s:20:"billing@ubilibet.com";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:22:"http://www.domini.cat/";s:9:"registrar";s:15:"Domini punt CAT";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:21:"cat.whois-servers.net";s:4:"args";s:11:"dominis.cat";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:11:"directi.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:7:{s:4:"name";s:11:"directi.com";s:7:"nserver";a:4:{s:16:"dns1.directi.com";s:12:"67.15.47.189";s:16:"dns2.directi.com";s:12:"74.54.56.227";s:16:"dns3.directi.com";s:13:"67.15.253.219";s:16:"dns4.directi.com";s:12:"74.52.140.82";}s:6:"status";a:3:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";i:2;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2009-09-07";s:7:"created";s:10:"1997-08-11";s:7:"expires";s:10:"2018-09-24";s:7:"sponsor";s:12:"RESELLERCLUB";}s:10:"registered";s:3:"yes";s:5:"owner";a:5:{s:5:"email";s:26:"domain.manager@directi.com";s:4:"name";s:14:"Domain Manager";s:5:"phone";s:14:"+91.2230797500";s:12:"organization";s:26:"Direct Information Pvt Ltd";s:7:"address";a:6:{i:0;s:11:"Directiplex";i:1;s:41:"Next to Andheri Subway, Old Nagardas Road";i:2;s:14:"Andheri (East)";i:3;s:6:"Mumbai";i:4;s:18:"Maharashtra,400069";i:5;s:2:"IN";}}s:5:"admin";a:5:{s:5:"email";s:26:"domain.manager@directi.com";s:4:"name";s:14:"Domain Manager";s:5:"phone";s:14:"+91.2230797500";s:12:"organization";s:26:"Direct Information Pvt Ltd";s:7:"address";a:6:{i:0;s:11:"Directiplex";i:1;s:41:"Next to Andheri Subway, Old Nagardas Road";i:2;s:14:"Andheri (East)";i:3;s:6:"Mumbai";i:4;s:18:"Maharashtra,400069";i:5;s:2:"IN";}}s:4:"tech";a:5:{s:5:"email";s:26:"domain.manager@directi.com";s:4:"name";s:14:"Domain Manager";s:5:"phone";s:14:"+91.2230797500";s:12:"organization";s:26:"Direct Information Pvt Ltd";s:7:"address";a:6:{i:0;s:11:"Directiplex";i:1;s:41:"Next to Andheri Subway, Old Nagardas Road";i:2;s:14:"Andheri (East)";i:3;s:6:"Mumbai";i:4;s:18:"Maharashtra,400069";i:5;s:2:"IN";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:67:"DIRECTI INTERNET SOLUTIONS PVT. LTD. D/B/A PUBLICDOMAINREGISTRY.COM";s:8:"referrer";s:35:"http://www.PublicDomainRegistry.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:19:"domain =directi.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:30:"whois.PublicDomainRegistry.com";s:4:"args";s:11:"directi.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:10:"dnc.org.nz";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:7:{s:4:"name";s:10:"dnc.org.nz";s:6:"status";s:10:"200 Active";s:7:"created";s:10:"2002-04-23";s:7:"expires";s:10:"2010-01-23";s:7:"changed";s:10:"2009-12-23";s:7:"sponsor";s:24:"Domain Name Commissioner";s:7:"nserver";a:3:{s:21:"ns1.internetnz.net.nz";s:13:"202.46.176.51";s:19:"ns3.catalyst.net.nz";s:13:"202.78.244.33";s:16:"ns1.serion.co.nz";s:11:"202.20.5.39";}}s:5:"owner";a:5:{s:4:"name";s:33:"Internet New Zealand Incorporated";s:7:"address";a:4:{s:7:"address";a:1:{i:0;s:13:"PO Box 11-881";}s:4:"city";s:10:"Wellington";s:5:"pcode";s:4:"6001";s:7:"country";s:16:"NZ (NEW ZEALAND)";}s:5:"phone";s:14:"+64 4 472 1600";s:3:"fax";s:14:"+64 4 495 2115";s:5:"email";s:25:"exe.dir@internetnz.net.nz";}s:5:"admin";a:5:{s:4:"name";s:18:"Executive Director";s:7:"address";a:4:{s:7:"address";a:2:{i:0;s:10:"InternetNZ";i:1;s:13:"PO Box 11-881";}s:4:"city";s:10:"Wellington";s:5:"pcode";s:4:"6001";s:7:"country";s:16:"NZ (NEW ZEALAND)";}s:5:"phone";s:14:"+64 4 472 1600";s:3:"fax";s:14:"+64 4 495 2115";s:5:"email";s:25:"exe.dir@internetnz.net.nz";}s:4:"tech";a:5:{s:4:"name";s:17:"Technical Manager";s:7:"address";a:4:{s:7:"address";a:1:{i:2;s:10:"InternetNZ";}s:4:"city";s:10:"Wellington";s:5:"pcode";s:4:"6001";s:7:"country";s:16:"NZ (NEW ZEALAND)";}s:5:"phone";s:14:"+64 4 472 1600";s:3:"fax";s:14:"+64 4 495 2115";s:5:"email";s:21:"soa@internetnz.net.nz";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:21:"http://www.dnc.org.nz";s:9:"registrar";s:40:"New Zealand Domain Name Registry Limited";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"nz.whois-servers.net";s:4:"args";s:10:"dnc.org.nz";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:8:"admin.sc";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:8:{s:6:"handle";s:12:"D223056-LRCC";s:4:"name";s:8:"admin.sc";s:7:"created";s:10:"2006-01-19";s:7:"changed";s:10:"2009-01-19";s:7:"expires";s:10:"2010-01-19";s:7:"sponsor";s:20:"InternetX (R24-LRCC)";s:6:"status";s:2:"OK";s:7:"nserver";a:2:{s:14:"ns1.ns-srv.net";s:13:"87.106.14.107";s:14:"ns2.ns-srv.net";s:11:"91.121.82.6";}}s:5:"owner";a:7:{s:6:"handle";s:13:"INX-884387-SC";s:4:"name";s:13:"Domain Master";s:12:"organization";s:11:"KoyDoX Ltd.";s:7:"address";a:5:{s:6:"street";a:1:{i:0;s:23:"69 Great Hampton Street";}s:4:"city";s:10:"Birmingham";s:5:"state";s:2:"GB";s:5:"pcode";s:7:"B18 6EW";s:7:"country";s:3:":GB";}s:5:"phone";s:14:"+44.8712180718";s:3:"fax";s:14:"+44.8712180719";s:5:"email";s:21:"hostmaster@koydox.com";}s:5:"admin";a:7:{s:6:"handle";s:13:"INX-884387-SC";s:4:"name";s:13:"Domain Master";s:12:"organization";s:11:"KoyDoX Ltd.";s:7:"address";a:5:{s:6:"street";a:1:{i:0;s:23:"69 Great Hampton Street";}s:4:"city";s:10:"Birmingham";s:5:"state";s:2:"GB";s:5:"pcode";s:7:"B18 6EW";s:7:"country";s:2:"GB";}s:5:"phone";s:14:"+44.8712180718";s:3:"fax";s:14:"+44.8712180719";s:5:"email";s:21:"hostmaster@koydox.com";}s:7:"billing";a:7:{s:6:"handle";s:13:"INX-884387-SC";s:4:"name";s:13:"Domain Master";s:12:"organization";s:11:"KoyDoX Ltd.";s:7:"address";a:5:{s:6:"street";a:1:{i:1;s:23:"69 Great Hampton Street";}s:4:"city";s:10:"Birmingham";s:5:"state";s:2:"GB";s:5:"pcode";s:7:"B18 6EW";s:7:"country";s:2:"GB";}s:5:"phone";s:14:"+44.8712180718";s:3:"fax";s:14:"+44.8712180719";s:5:"email";s:21:"hostmaster@koydox.com";}s:4:"tech";a:7:{s:6:"handle";s:13:"INX-884388-SC";s:4:"name";s:13:"Domain Master";s:12:"organization";s:18:"XXX Solutions Ltd.";s:7:"address";a:5:{s:6:"street";a:1:{i:0;s:23:"69 Great Hampton Street";}s:4:"city";s:10:"Birmingham";s:5:"state";s:2:"GB";s:5:"pcode";s:7:"B18 6EW";s:7:"country";s:2:"GB";}s:5:"phone";s:14:"+44.7005806807";s:3:"fax";s:14:"+44.7005806808";s:5:"email";s:28:"hostmaster@xxx-solutions.net";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:17:"http://www.nic.sc";s:9:"registrar";s:17:"VCS (Pty) Limited";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:22:"whois2.afilias-grs.net";s:4:"args";s:8:"admin.sc";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:9:"mtld.mobi";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:6:{s:4:"name";s:9:"mtld.mobi";s:7:"created";s:10:"2006-05-11";s:7:"expires";s:10:"2010-05-11";s:7:"sponsor";s:21:"MarkMonitor Inc (292)";s:6:"status";s:24:"CLIENT UPDATE PROHIBITED";s:7:"nserver";a:2:{s:16:"ns7.zoneedit.com";s:13:"216.122.7.155";s:16:"ns3.zoneedit.com";s:12:"76.74.236.21";}}s:5:"owner";a:7:{s:9:"trademark";a:4:{s:4:"name";s:22:"Registry Reserved Name";s:7:"country";s:2:"IE";s:7:"applied";s:10:"2000-01-01";s:10:"registered";s:10:"2006-01-01";}s:6:"handle";s:12:"mmr-14552653";s:4:"name";s:20:"Domain Administrator";s:12:"organization";s:26:"mTLD Top Level Domain, Ltd";s:7:"address";a:4:{s:7:"address";a:2:{i:0;s:17:"11 Exchange Place";i:1;s:4:"IFSC";}s:4:"city";s:6:"Dublin";s:5:"pcode";s:1:"1";s:7:"country";s:2:"IE";}s:5:"phone";s:13:"+353.18541100";s:5:"email";s:18:"reserved@mtld.mobi";}s:5:"admin";a:5:{s:6:"handle";s:12:"mmr-14552653";s:4:"name";s:20:"Domain Administrator";s:7:"address";a:4:{s:7:"address";a:2:{i:0;s:17:"11 Exchange Place";i:2;s:4:"IFSC";}s:4:"city";s:6:"Dublin";s:5:"pcode";s:1:"1";s:7:"country";s:2:"IE";}s:5:"phone";s:13:"+353.18541100";s:5:"email";s:18:"reserved@mtld.mobi";}s:4:"tech";a:6:{s:6:"handle";s:12:"mmr-14552653";s:4:"name";s:20:"Domain Administrator";s:7:"address";a:4:{s:7:"address";a:2:{i:0;s:17:"11 Exchange Place";i:1;s:4:"IFSC";}s:4:"city";s:6:"Dublin";s:5:"pcode";s:1:"1";s:7:"country";s:2:"IE";}s:5:"phone";s:13:"+353.18541100";s:3:"fax";s:13:"+353.17918569";s:5:"email";s:18:"reserved@mtld.mobi";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:21:"http://www.mtld.mobi/";s:9:"registrar";s:17:"Dot Mobi Registry";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:25:"whois.dotmobiregistry.net";s:4:"args";s:9:"mtld.mobi";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:11:"registry.in";a:2:{s:8:"regyinfo";a:4:{s:8:"referrer";s:24:"http://whois.registry.in";s:9:"registrar";s:10:"INRegistry";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"in.whois-servers.net";s:4:"args";s:11:"registry.in";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}s:8:"regrinfo";a:5:{s:6:"domain";a:8:{s:6:"handle";s:10:"D8120-AFIN";s:4:"name";s:11:"registry.in";s:7:"created";s:10:"2004-12-16";s:7:"changed";s:10:"2008-12-30";s:7:"expires";s:10:"2009-12-30";s:7:"sponsor";s:46:"National Internet Exchange of India (R36-AFIN)";s:6:"status";a:5:{i:0;s:24:"CLIENT DELETE PROHIBITED";i:1;s:23:"CLIENT RENEW PROHIBITED";i:2;s:26:"CLIENT TRANSFER PROHIBITED";i:3;s:24:"CLIENT UPDATE PROHIBITED";i:4;s:17:"DELETE PROHIBITED";}s:7:"nserver";a:3:{s:17:"ns01.afilias.info";s:13:"69.46.107.140";s:17:"ns02.afilias.info";s:14:"149.17.192.143";s:17:"ns03.afilias.info";s:12:"69.46.124.10";}}s:5:"owner";a:6:{s:6:"handle";s:16:"FR-1187763823079";s:4:"name";s:35:"National Internet Exchange of India";s:7:"address";a:5:{s:6:"street";a:2:{i:0;s:27:"Incube Business Center,18 ,";i:1;s:11:"Nehru Palce";}s:4:"city";s:9:"New Delhi";s:5:"state";s:5:"Delhi";s:5:"pcode";s:6:"110019";s:7:"country";s:2:"IN";}s:5:"phone";s:14:"+91.1130614624";s:3:"fax";s:14:"+91.1130614629";s:5:"email";s:20:"registration@nixi.in";}s:5:"admin";a:6:{s:6:"handle";s:16:"FR-1187763823079";s:4:"name";s:35:"National Internet Exchange of India";s:7:"address";a:5:{s:6:"street";a:2:{i:0;s:27:"Incube Business Center,18 ,";i:1;s:11:"Nehru Palce";}s:4:"city";s:9:"New Delhi";s:5:"state";s:5:"Delhi";s:5:"pcode";s:6:"110019";s:7:"country";s:2:"IN";}s:5:"phone";s:14:"+91.1130614624";s:3:"fax";s:14:"+91.1130614629";s:5:"email";s:20:"registration@nixi.in";}s:4:"tech";a:6:{s:6:"handle";s:16:"FR-1187763823079";s:4:"name";s:35:"National Internet Exchange of India";s:7:"address";a:5:{s:6:"street";a:2:{i:0;s:27:"Incube Business Center,18 ,";i:1;s:11:"Nehru Palce";}s:4:"city";s:9:"New Delhi";s:5:"state";s:5:"Delhi";s:5:"pcode";s:6:"110019";s:7:"country";s:2:"IN";}s:5:"phone";s:14:"+91.1130614624";s:3:"fax";s:14:"+91.1130614629";s:5:"email";s:20:"registration@nixi.in";}s:10:"registered";s:3:"yes";}}s:8:"nic.jobs";a:2:{s:8:"regrinfo";a:4:{s:6:"domain";a:6:{s:4:"name";s:8:"nic.jobs";s:7:"nserver";a:2:{s:17:"ns2.registry.jobs";s:14:"207.54.137.254";s:17:"ns1.registry.jobs";s:14:"207.54.136.251";}s:6:"status";a:1:{i:0;s:6:"ACTIVE";}s:7:"changed";s:10:"2009-02-20";s:7:"created";s:10:"2006-02-21";s:7:"expires";s:10:"2010-02-21";}s:10:"registered";s:3:"yes";s:8:"regrinfo";a:5:{s:6:"domain";a:1:{s:4:"name";s:8:"NIC.JOBS";}s:5:"owner";a:3:{s:4:"name";s:16:"Registry-Reserve";s:12:"organization";s:16:"Employ Media LLC";s:7:"address";a:5:{s:6:"street";a:1:{i:0;s:20:"3029 Prospect Avenue";}s:4:"city";s:9:"Cleveland";s:5:"state";s:2:"OH";s:5:"pcode";s:5:"44115";s:7:"country";s:13:"United States";}}s:5:"admin";a:6:{s:4:"name";s:16:"Registry-Reserve";s:12:"organization";s:16:"Employ Media LLC";s:7:"address";a:5:{s:6:"street";a:1:{i:0;s:20:"3029 Prospect Avenue";}s:4:"city";s:9:"Cleveland";s:5:"state";s:2:"OH";s:5:"pcode";s:5:"44115";s:7:"country";s:13:"United States";}s:5:"phone";s:13:"+1.2164261500";s:3:"fax";s:13:"+1.2165881558";s:5:"email";s:26:"registry-reserve@goto.jobs";}s:4:"tech";a:6:{s:4:"name";s:16:"Registry-Reserve";s:12:"organization";s:16:"Employ Media LLC";s:7:"address";a:5:{s:6:"street";a:1:{i:0;s:20:"3029 Prospect Avenue";}s:4:"city";s:9:"Cleveland";s:5:"state";s:2:"OH";s:5:"pcode";s:5:"44115";s:7:"country";s:13:"United States";}s:5:"phone";s:13:"+1.2164261500";s:3:"fax";s:13:"+1.2165881558";s:5:"email";s:26:"registry-reserve@goto.jobs";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:2:{s:8:"referrer";s:22:"http://www.encirca.biz";s:9:"registrar";s:7:"ENCIRCA";}}s:8:"regyinfo";a:4:{s:9:"registrar";s:12:"ENCIRCA, INC";s:8:"referrer";s:22:"http://www.encirca.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:26:"jobswhois.verisign-grs.com";s:4:"args";s:8:"nic.jobs";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:17:"whois.encirca.com";s:4:"args";s:8:"nic.jobs";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:10:"urllog.net";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:6:{s:4:"name";s:10:"urllog.net";s:7:"nserver";a:2:{s:19:"a.dns-rootserver.de";s:13:"82.139.201.66";s:19:"ns10.schlundtech.de";s:14:"62.116.163.100";}s:6:"status";s:4:"LOCK";s:7:"changed";s:10:"2009-07-26";s:7:"created";s:10:"2004-07-25";s:7:"expires";s:10:"2010-07-25";}s:10:"registered";s:3:"yes";s:5:"owner";a:5:{s:4:"name";a:2:{s:5:"first";s:8:"Philippe";s:4:"last";s:4:"Kück";}s:7:"address";a:5:{s:6:"street";s:15:"Schillerstr. 24";s:4:"city";s:7:"Giessen";s:5:"pcode";s:5:"35390";s:7:"country";s:2:"DE";s:5:"state";s:2:"DE";}s:5:"phone";s:17:"+49-180-500295659";s:3:"fax";s:11:"+49-000-000";s:5:"email";s:47:"6f4922f45568161a8cdf4ad2299f6d23@blue.cycnet.de";}s:5:"admin";a:5:{s:4:"name";a:2:{s:5:"first";s:8:"Philippe";s:4:"last";s:4:"Kück";}s:7:"address";a:5:{s:6:"street";s:15:"Schillerstr. 24";s:4:"city";s:7:"Giessen";s:5:"pcode";s:5:"35390";s:7:"country";s:2:"DE";s:5:"state";s:2:"DE";}s:5:"phone";s:17:"+49-180-500295659";s:3:"fax";s:11:"+49-000-000";s:5:"email";s:47:"6f4922f45568161a8cdf4ad2299f6d23@blue.cycnet.de";}s:4:"tech";a:6:{s:4:"name";a:2:{s:5:"first";s:8:"Philippe";s:4:"last";s:4:"Kück";}s:12:"organization";s:20:"Schwetz EDV Services";s:7:"address";a:5:{s:6:"street";s:15:"Schillerstr. 24";s:4:"city";s:7:"Giessen";s:5:"pcode";s:5:"35390";s:7:"country";s:2:"DE";s:5:"state";s:2:"DE";}s:5:"phone";s:17:"+49-180-500295659";s:3:"fax";s:17:"+49-180-540252592";s:5:"email";s:22:"hostmaster@unixadm.org";}s:4:"zone";a:6:{s:4:"name";a:2:{s:5:"first";s:8:"Philippe";s:4:"last";s:4:"Kück";}s:12:"organization";s:20:"Schwetz EDV Services";s:7:"address";a:5:{s:6:"street";s:15:"Schillerstr. 24";s:4:"city";s:7:"Giessen";s:5:"pcode";s:5:"35390";s:7:"country";s:2:"DE";s:5:"state";s:2:"DE";}s:5:"phone";s:17:"+49-180-500295659";s:3:"fax";s:17:"+49-180-540252592";s:5:"email";s:22:"hostmaster@unixadm.org";}}s:8:"regyinfo";a:4:{s:9:"registrar";s:30:"PSI-USA, INC. DBA DOMAIN ROBOT";s:8:"referrer";s:23:"http://www.psi-usa.info";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"net.whois-servers.net";s:4:"args";s:18:"domain =urllog.net";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:18:"whois.psi-usa.info";s:4:"args";s:10:"urllog.net";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:6:"www.tv";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:7:{s:4:"name";s:6:"www.tv";s:7:"nserver";a:4:{s:12:"a4.nstld.com";s:10:"192.5.6.33";s:12:"f4.nstld.com";s:12:"192.35.51.33";s:12:"g4.nstld.com";s:12:"192.42.93.33";s:12:"l4.nstld.com";s:13:"192.41.162.33";}s:6:"status";a:2:{i:0;s:22:"CLIENT-XFER-PROHIBITED";i:1;s:24:"CLIENT-UPDATE-PROHIBITED";}s:7:"changed";s:10:"2009-01-08";s:7:"created";s:10:"2000-05-01";s:7:"expires";s:10:"2038-01-19";s:7:"sponsor";s:12:"TUCOWS, INC.";}s:10:"registered";s:3:"yes";s:5:"owner";a:2:{s:4:"name";s:13:"VeriSign, Inc";s:7:"address";a:3:{i:0;s:23:"487 East Middlefield Rd";i:1;s:23:"Mountain View, CA 94043";i:2;s:2:"US";}}s:5:"admin";a:5:{s:5:"email";s:24:"admin@melbourneitdbs.com";s:4:"name";s:23:"IT DBS, Inc., Melbourne";s:3:"fax";s:13:"+1.6502378883";s:5:"phone";s:13:"+1.8669073267";s:7:"address";a:3:{i:1;s:22:"487 E. Middlefield Rd.";i:2;s:23:"Mountain View, CA 94043";i:3;s:2:"US";}}s:4:"tech";a:5:{s:5:"email";s:23:"tech@melbourneitdbs.com";s:4:"name";s:18:"Tech, Melbourne IT";s:3:"fax";s:13:"+1.6502378883";s:5:"phone";s:13:"+1.8669073267";s:7:"address";a:3:{i:1;s:22:"487 E. Middlefield Rd.";i:2;s:23:"Mountain View, CA 94043";i:3;s:2:"US";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:11:"TUCOWS INC.";s:8:"referrer";s:29:"http://domainhelp.opensrs.net";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:20:"tv.whois-servers.net";s:4:"args";s:6:"www.tv";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:16:"whois.tucows.com";s:4:"args";s:6:"www.tv";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:8:"eurid.eu";a:2:{s:8:"regrinfo";a:4:{s:6:"domain";a:3:{s:4:"name";s:8:"eurid.eu";s:9:"registrar";a:2:{s:4:"name";s:14:"EURid vzw/asbl";s:3:"url";s:12:"www.eurid.eu";}s:7:"nserver";a:5:{s:8:"a.nic.eu";s:13:"91.200.16.100";s:11:"b.eu.dns.be";s:15:"193.190.135.100";s:8:"l.nic.eu";s:14:"195.66.241.178";s:8:"m.nic.eu";s:12:"217.29.76.13";s:12:"www.eurid.eu";s:14:"195.234.53.204";}}s:5:"owner";a:2:{i:0;s:14:"NOT DISCLOSED!";i:1;s:38:"Visit www.eurid.eu for webbased whois.";}s:4:"tech";a:5:{s:4:"name";s:30:"EURid vzw/asbl Technical staff";s:12:"organization";s:14:"EURid vzw/asbl";s:5:"phone";s:12:"+32.24012750";s:3:"fax";s:12:"+32.24012751";s:5:"email";s:13:"tech@eurid.eu";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:19:"http://www.eurid.eu";s:9:"registrar";s:5:"EURID";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"eu.whois-servers.net";s:4:"args";s:8:"eurid.eu";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:10:"sex.za.net";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:3:{s:4:"name";s:10:"sex.za.net";s:7:"created";s:10:"1998-09-15";s:7:"nserver";a:2:{s:15:"cyberhost.co.za";s:13:"196.41.124.12";s:24:"dinkytoy.cyberhost.co.za";s:16:"(DOES NOT EXIST)";}}s:5:"owner";a:1:{s:4:"name";s:18:"Cyberhost Internet";}s:5:"admin";a:5:{s:5:"email";s:21:"admin@cyberhost.co.za";s:4:"name";s:11:"Ian Ward <>";s:5:"phone";s:14:"+27 21 7628512";s:3:"fax";s:14:"+27 12 7628683";s:7:"address";a:6:{i:1;s:18:"Cyberhost Internet";i:2;s:18:"42c Goldbourne St.";i:3;s:10:"Kenilworth";i:4;s:2:"WC";i:5;s:4:"7700";i:6;s:2:"ZA";}}s:4:"tech";a:5:{s:5:"email";s:19:"dns@cyberhost.co.za";s:4:"name";s:11:"Ian Ward <>";s:5:"phone";s:14:"+27 21 7628512";s:3:"fax";s:14:"+27 12 7628683";s:7:"address";a:6:{i:1;s:18:"Cyberhost Internet";i:2;s:18:"42c Goldbourne St.";i:3;s:10:"Kenilworth";i:4;s:2:"WC";i:5;s:4:"7700";i:6;s:2:"ZA";}}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:18:"http://www.za.net/";s:9:"registrar";s:6:"ZA NiC";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:12:"whois.za.net";s:4:"args";s:10:"sex.za.net";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:11:"63.95.254.3";a:2:{s:8:"regrinfo";a:5:{s:5:"owner";a:3:{i:0;a:3:{s:12:"organization";s:56:"MCI Communications Services, Inc. d/b/a Verizon Business";s:6:"handle";s:5:"MCICS";s:7:"address";a:5:{s:6:"street";s:25:"22001 Loudoun County Pkwy";s:4:"city";s:7:"Ashburn";s:5:"state";s:2:"VA";s:5:"pcode";s:5:"20147";s:7:"country";s:2:"US";}}i:1;a:3:{s:12:"organization";s:24:"GEORGIA PUBLIC WEB, INC.";s:6:"handle";s:3:"GPW";s:7:"address";a:5:{s:6:"street";s:23:"1470 RIVER EDGE PARKWAY";s:4:"city";s:7:"ATLANTA";s:5:"state";s:2:"GA";s:5:"pcode";s:5:"30328";s:7:"country";s:2:"US";}}i:2;a:1:{s:12:"organization";s:21:"8.org.gapublicweb.net";}}s:7:"network";a:3:{i:0;a:8:{s:7:"inetnum";s:26:"63.64.0.0 - 63.127.255.255";s:4:"name";s:7:"UUNET63";s:6:"handle";s:15:"NET-63-64-0-0-1";s:6:"status";s:17:"Direct Allocation";s:7:"nserver";a:2:{i:0;s:16:"AUTH03.NS.UU.NET";i:1;s:16:"AUTH00.NS.UU.NET";}s:4:"desc";a:1:{i:0;s:44:"ADDRESSES WITHIN THIS BLOCK ARE NON-PORTABLE";}s:7:"created";s:10:"1999-01-22";s:7:"changed";s:10:"2006-12-14";}i:1;a:7:{s:7:"inetnum";s:27:"63.95.254.0 - 63.95.255.255";s:4:"name";s:15:"UU-63-95-254-D4";s:6:"handle";s:17:"NET-63-95-254-0-1";s:6:"status";s:11:"Reallocated";s:4:"desc";a:1:{i:0;s:45:"Addresses within this block are non-portable.";}s:7:"created";s:10:"2002-10-17";s:7:"changed";s:10:"2002-10-17";}i:2;a:5:{s:6:"handle";s:17:"31.63.95.254.0/24";s:4:"name";s:13:"gpw-63.95.254";s:7:"inetnum";s:14:"63.95.254.0/24";s:7:"created";s:10:"2004-02-09";s:7:"changed";s:10:"2004-02-09";}}s:4:"tech";a:3:{i:0;a:4:{s:6:"handle";s:10:"SWIPP-ARIN";s:4:"name";s:7:"swipper";s:5:"phone";s:15:"+1-800-900-0241";s:5:"email";s:27:"swipper@verizonbusiness.com";}i:1;a:4:{s:6:"handle";s:11:"NELSO2-ARIN";s:4:"name";s:15:"Nelson, Frank A";s:5:"phone";s:15:"+1-770-661-2783";s:5:"email";s:23:"fnelson@gapublicweb.net";}i:2;a:1:{s:5:"email";s:22:"8.cont.gapublicweb.net";}}s:5:"abuse";a:2:{i:0;a:4:{s:6:"handle";s:11:"ABUSE3-ARIN";s:4:"name";s:5:"abuse";s:5:"phone";s:15:"+1-800-900-0241";s:5:"email";s:30:"abuse-mail@verizonbusiness.com";}i:1;a:4:{s:6:"handle";s:10:"GPWNO-ARIN";s:4:"name";s:6:"GPWNOC";s:5:"phone";s:15:"+1-888-662-6324";s:5:"email";s:26:"telecomnoc@gapublicweb.net";}}s:5:"admin";a:1:{i:0;a:1:{s:5:"email";s:22:"8.cont.gapublicweb.net";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:45:"American Registry for Internet Numbers (ARIN)";s:7:"netname";s:15:"NET-63-64-0-0-1";s:7:"servers";a:4:{i:0;a:3:{s:6:"server";s:14:"whois.arin.net";s:4:"args";s:11:"63.95.254.3";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:14:"whois.arin.net";s:4:"args";s:16:"!NET-63-64-0-0-1";s:4:"port";i:43;}i:2;a:3:{s:6:"server";s:14:"whois.arin.net";s:4:"args";s:18:"!NET-63-95-254-0-1";s:4:"port";i:43;}i:3;a:3:{s:6:"server";s:22:"rwhois.gapublicweb.net";s:4:"args";s:11:"63.95.254.3";s:4:"port";s:4:"4321";}}s:4:"type";s:2:"ip";}}s:10:"informe.ws";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:6:{s:4:"name";s:10:"informe.ws";s:7:"sponsor";s:23:"Intercosmos Media Group";s:7:"created";s:10:"2007-01-03";s:7:"changed";s:10:"2007-01-03";s:7:"expires";s:10:"2008-01-03";s:7:"nserver";a:2:{s:17:"ns0.directnic.com";s:14:"204.251.10.100";s:17:"ns1.directnic.com";s:13:"206.251.177.2";}}s:10:"registered";s:3:"yes";s:5:"owner";a:3:{s:5:"phone";s:9:"622211442";s:4:"name";s:7:"Informe";s:7:"address";a:3:{i:0;s:6:"Cuiper";i:1;s:18:"Spain, Spain 46134";i:2;s:2:"ES";}}s:5:"admin";a:4:{s:5:"email";s:16:"paisvlc@yahoo.es";s:4:"name";s:16:"Informe, Informe";s:5:"phone";s:9:"622211442";s:7:"address";a:3:{i:1;s:6:"Cuiper";i:2;s:18:"Spain, Spain 46134";i:3;s:2:"ES";}}s:4:"tech";a:4:{s:5:"email";s:16:"paisvlc@yahoo.es";s:4:"name";s:16:"Informe, Informe";s:5:"phone";s:9:"622211442";s:7:"address";a:3:{i:1;s:6:"Cuiper";i:2;s:18:"Spain, Spain 46134";i:3;s:2:"ES";}}}s:8:"regyinfo";a:4:{s:8:"referrer";s:22:"http://www.samoanic.ws";s:9:"registrar";s:9:"Samoa Nic";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:20:"ws.whois-servers.net";s:4:"args";s:10:"informe.ws";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:19:"whois.directnic.com";s:4:"args";s:10:"informe.ws";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:12:"alabanza.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:7:{s:4:"name";s:12:"alabanza.com";s:7:"nserver";a:2:{s:15:"ns.alabanza.com";s:14:"209.239.47.252";s:16:"ns2.alabanza.com";s:14:"209.239.47.201";}s:6:"status";s:6:"Locked";s:7:"changed";s:10:"2007-02-16";s:7:"created";s:10:"1996-08-18";s:7:"expires";s:10:"2013-08-17";s:7:"sponsor";s:20:"Alabanza Corporation";}s:10:"registered";s:3:"yes";s:5:"owner";a:6:{s:5:"email";s:21:"momentum@alabanza.com";s:4:"name";s:18:"Alabanza Marketing";s:12:"organization";s:20:"Alabanza Corporation";s:5:"phone";s:10:"4107791400";s:3:"fax";s:13:"+1.4107791501";s:7:"address";a:3:{i:4;s:36:"10 East Baltimore Street, Suite 1000";i:5;s:19:"Baltimore, MD 21202";i:6;s:2:"US";}}s:5:"admin";a:6:{s:5:"email";s:21:"momentum@alabanza.com";s:4:"name";s:18:"Alabanza Marketing";s:12:"organization";s:20:"Alabanza Corporation";s:5:"phone";s:10:"4107791400";s:3:"fax";s:13:"+1.4107791501";s:7:"address";a:3:{i:4;s:36:"10 East Baltimore Street, Suite 1000";i:5;s:19:"Baltimore, MD 21202";i:6;s:2:"US";}}s:4:"tech";a:6:{s:5:"email";s:21:"momentum@alabanza.com";s:4:"name";s:18:"Alabanza Marketing";s:12:"organization";s:20:"Alabanza Corporation";s:5:"phone";s:10:"4107791400";s:3:"fax";s:13:"+1.4107791501";s:7:"address";a:3:{i:4;s:36:"10 East Baltimore Street, Suite 1000";i:5;s:19:"Baltimore, MD 21202";i:6;s:2:"US";}}}s:8:"regyinfo";a:6:{s:9:"registrar";s:10:"ENOM, INC.";s:5:"whois";s:14:"whois.enom.com";s:8:"referrer";s:19:"http://www.enom.com";s:4:"args";s:13:"=alabanza.com";s:4:"port";i:43;s:4:"type";s:6:"domain";}}s:6:"nic.ru";a:2:{s:8:"regrinfo";a:3:{s:6:"domain";a:6:{s:4:"name";s:6:"nic.ru";s:7:"nserver";a:4:{s:11:"ns.ripn.net";s:13:"194.85.105.17";s:9:"ns.spb.su";s:13:"193.124.83.69";s:12:"ns2.ripn.net";s:13:"194.226.96.30";s:14:"ns5.msk-ix.net";s:13:"193.232.128.6";}s:6:"status";s:31:"REGISTERED, DELEGATED, VERIFIED";s:7:"created";s:10:"1997-11-28";s:7:"expires";s:10:"2010-12-01";s:6:"source";s:3:"TCI";}s:5:"owner";a:4:{s:4:"type";s:9:"CORPORATE";s:12:"organization";s:35:"Regional Network Information Center";s:5:"phone";s:14:"+7 499 1967278";s:3:"fax";s:14:"+7 499 1964984";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:19:"http://www.ripn.net";s:9:"registrar";s:17:"RUCENTER-REG-RIPN";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"ru.whois-servers.net";s:4:"args";s:6:"nic.ru";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:7:"ovh.com";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:7:{s:4:"name";s:7:"ovh.com";s:7:"nserver";a:4:{s:11:"dns.ovh.net";s:14:"213.186.33.102";s:13:"dns10.ovh.net";s:15:"213.251.188.129";s:10:"ns.ovh.net";s:15:"213.251.128.136";s:12:"ns10.ovh.net";s:15:"213.251.128.129";}s:6:"status";a:2:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";}s:7:"changed";s:10:"2009-02-17";s:7:"created";s:10:"2000-11-05";s:7:"expires";s:10:"2000-00-00";s:7:"sponsor";s:4:"OVH.";}s:10:"registered";s:3:"yes";s:5:"owner";a:5:{s:5:"phone";s:13:"+33.899701761";s:3:"fax";s:14:"+33.320200958)";s:5:"email";s:12:"oles@ovh.net";s:4:"name";s:7:"OVH Sas";s:7:"address";a:5:{i:0;s:12:"Klaba Octave";i:1;s:19:"140, quai du sartel";i:2;s:14:"Roubaix, 59100";i:3;s:2:"FR";i:4;s:1:"(";}}s:5:"admin";a:4:{s:5:"phone";s:13:"+33.979941499";s:5:"email";s:10:"ed@ovh.net";s:4:"name";s:16:"Vanbelle Edouard";s:7:"address";a:3:{i:0;s:19:"38 rue Jeanne D Arc";i:1;s:12:"Lille, 59000";i:2;s:2:"FR";}}s:4:"tech";a:5:{s:5:"phone";s:13:"+33.899701761";s:3:"fax";s:14:"+33.320200958)";s:5:"email";s:12:"oles@ovh.net";s:4:"name";s:3:"OVH";s:7:"address";a:5:{i:0;s:12:"Klaba Octave";i:1;s:16:"2 rue Kellermann";i:2;s:14:"Roubaix, 59100";i:3;s:2:"FR";i:4;s:1:"(";}}s:7:"billing";a:5:{s:5:"phone";s:13:"+33.899701761";s:3:"fax";s:14:"+33.320200958)";s:5:"email";s:12:"oles@ovh.net";s:4:"name";s:3:"OVH";s:7:"address";a:5:{i:0;s:12:"Klaba Octave";i:1;s:16:"2 rue Kellermann";i:2;s:14:"Roubaix, 59100";i:3;s:2:"FR";i:4;s:1:"(";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:3:"OVH";s:8:"referrer";s:18:"http://www.ovh.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:15:"domain =ovh.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:13:"whois.ovh.com";s:4:"args";s:7:"ovh.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:12:"rrpproxy.net";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:7:{s:4:"name";s:12:"rrpproxy.net";s:7:"nserver";a:3:{s:24:"ns1.domaindiscount24.net";s:13:"88.198.17.120";s:24:"ns2.domaindiscount24.net";s:13:"217.11.52.234";s:24:"ns3.domaindiscount24.net";s:13:"193.46.215.55";}s:6:"status";a:1:{i:0;s:24:"clientTransferProhibited";}s:7:"changed";s:10:"2009-04-20";s:7:"created";s:10:"2001-04-19";s:7:"expires";s:10:"2010-04-19";s:7:"sponsor";s:20:"domaindiscount24.com";}s:10:"registered";s:3:"yes";s:5:"owner";a:7:{s:6:"handle";s:7:"P-JRW23";s:12:"organization";s:16:"Key-Systems GmbH";s:4:"name";a:2:{s:5:"first";s:6:"Domain";s:4:"last";s:5:"Admin";}s:7:"address";a:4:{s:6:"street";s:16:"Prager Ring 4-12";s:4:"city";s:12:"Zweibruecken";s:5:"pcode";s:5:"66482";s:7:"country";s:2:"DE";}s:5:"phone";s:16:"+49. 6332 791850";s:3:"fax";s:16:"+49. 6332 791851";s:5:"email";s:20:"info@key-systems.net";}s:5:"admin";a:7:{s:6:"handle";s:7:"P-JRW23";s:12:"organization";s:16:"Key-Systems GmbH";s:4:"name";a:2:{s:5:"first";s:6:"Domain";s:4:"last";s:5:"Admin";}s:7:"address";a:4:{s:6:"street";s:16:"Prager Ring 4-12";s:4:"city";s:12:"Zweibruecken";s:5:"pcode";s:5:"66482";s:7:"country";s:2:"DE";}s:5:"phone";s:16:"+49. 6332 791850";s:3:"fax";s:16:"+49. 6332 791851";s:5:"email";s:20:"info@key-systems.net";}s:4:"tech";a:7:{s:6:"handle";s:7:"P-JRW23";s:12:"organization";s:16:"Key-Systems GmbH";s:4:"name";a:2:{s:5:"first";s:6:"Domain";s:4:"last";s:5:"Admin";}s:7:"address";a:4:{s:6:"street";s:16:"Prager Ring 4-12";s:4:"city";s:12:"Zweibruecken";s:5:"pcode";s:5:"66482";s:7:"country";s:2:"DE";}s:5:"phone";s:16:"+49. 6332 791850";s:3:"fax";s:16:"+49. 6332 791851";s:5:"email";s:20:"info@key-systems.net";}s:4:"bill";a:7:{s:6:"handle";s:7:"P-JRW23";s:12:"organization";s:16:"Key-Systems GmbH";s:4:"name";a:2:{s:5:"first";s:6:"Domain";s:4:"last";s:5:"Admin";}s:7:"address";a:4:{s:6:"street";s:16:"Prager Ring 4-12";s:4:"city";s:12:"Zweibruecken";s:5:"pcode";s:5:"66482";s:7:"country";s:2:"DE";}s:5:"phone";s:16:"+49. 6332 791850";s:3:"fax";s:16:"+49. 6332 791851";s:5:"email";s:20:"info@key-systems.net";}}s:8:"regyinfo";a:4:{s:9:"registrar";s:16:"KEY-SYSTEMS GMBH";s:8:"referrer";s:26:"http://www.key-systems.net";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"net.whois-servers.net";s:4:"args";s:20:"domain =rrpproxy.net";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:18:"whois.rrpproxy.net";s:4:"args";s:12:"rrpproxy.net";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:19:"wildwestdomains.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:7:{s:4:"name";s:19:"wildwestdomains.com";s:7:"nserver";a:3:{s:21:"cns1.secureserver.net";s:15:"208.109.255.100";s:21:"cns2.secureserver.net";s:14:"216.69.185.100";s:21:"cns3.secureserver.net";s:13:"64.202.167.31";}s:6:"status";a:4:{i:0;s:22:"clientDeleteProhibited";i:1;s:21:"clientRenewProhibited";i:2;s:24:"clientTransferProhibited";i:3;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2009-12-08";s:7:"created";s:10:"2000-08-22";s:7:"expires";s:10:"2019-07-22";s:7:"sponsor";s:13:"WWDomains.com";}s:10:"registered";s:3:"yes";s:5:"owner";a:2:{s:4:"name";s:23:"Wild West Domains, Inc.";s:7:"address";a:3:{i:0;s:22:"14455 N Hayden Rd #219";i:1;s:25:"Scottsdale, Arizona 85260";i:2;s:13:"United States";}}s:5:"admin";a:5:{s:5:"email";s:23:"dns@wildwestdomains.com";s:4:"name";s:48:"Wild West Domains, Inc., Wild West Domains, Inc.";s:3:"fax";s:12:"- 4805058844";s:5:"phone";s:10:"4805058800";s:7:"address";a:4:{i:1;s:23:"Wild West Domains, Inc.";i:2;s:22:"14455 N Hayden Rd #219";i:3;s:25:"Scottsdale, Arizona 85260";i:4;s:13:"United States";}}s:4:"tech";a:5:{s:5:"email";s:23:"dns@wildwestdomains.com";s:4:"name";s:48:"Wild West Domains, Inc., Wild West Domains, Inc.";s:3:"fax";s:12:"- 4805058844";s:5:"phone";s:10:"4805058800";s:7:"address";a:4:{i:1;s:23:"Wild West Domains, Inc.";i:2;s:22:"14455 N Hayden Rd #219";i:3;s:25:"Scottsdale, Arizona 85260";i:4;s:13:"United States";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:23:"WILD WEST DOMAINS, INC.";s:8:"referrer";s:30:"http://www.wildwestdomains.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:27:"domain =wildwestdomains.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:25:"whois.wildwestdomains.com";s:4:"args";s:19:"wildwestdomains.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:13:"onlinenic.com";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:6:{s:4:"name";s:13:"onlinenic.com";s:7:"nserver";a:2:{s:17:"ns1.onlinenic.net";s:11:"64.84.29.56";s:17:"ns5.onlinenic.net";s:14:"210.51.187.187";}s:6:"status";a:1:{i:0;s:24:"clientTransferProhibited";}s:7:"changed";s:10:"2008-12-29";s:7:"created";s:10:"1999-08-26";s:7:"expires";s:10:"2015-08-26";}s:10:"registered";s:3:"yes";s:5:"owner";a:4:{s:5:"phone";s:13:"+1.5107698492";s:5:"email";s:19:"kitty@onlinenic.com";s:4:"name";s:15:"OnlineNIC, Inc.";s:7:"address";a:3:{i:1;s:15:"OnlineNIC, Inc.";i:2;s:18:"351 Embarcadero E.";i:3;s:24:"Oakland,Oakland,US 94606";}}s:5:"admin";a:4:{s:4:"name";s:17:"(OnlineNIC, Inc.)";s:5:"email";s:19:"kitty@onlinenic.com";s:7:"address";a:6:{i:0;s:18:"351 Embarcadero E.";i:1;s:7:"Oakland";i:2;s:8:"Oakland,";i:3;s:2:"US";i:4;s:5:"94606";i:7;s:15:"OnlineNIC, Inc.";}s:5:"phone";s:13:"+1.5107698492";}s:4:"tech";a:4:{s:4:"name";s:17:"(OnlineNIC, Inc.)";s:5:"email";s:19:"kitty@onlinenic.com";s:7:"address";a:6:{i:0;s:18:"351 Embarcadero E.";i:1;s:7:"Oakland";i:2;s:8:"Oakland,";i:3;s:2:"US";i:4;s:5:"94606";i:7;s:15:"OnlineNIC, Inc.";}s:5:"phone";s:13:"+1.5107698492";}s:7:"billing";a:4:{s:4:"name";s:17:"(OnlineNIC, Inc.)";s:5:"email";s:19:"kitty@onlinenic.com";s:7:"address";a:6:{i:0;s:18:"351 Embarcadero E.";i:1;s:7:"Oakland";i:2;s:8:"Oakland,";i:3;s:2:"US";i:4;s:5:"94606";i:7;s:15:"OnlineNIC, Inc.";}s:5:"phone";s:13:"+1.5107698492";}}s:8:"regyinfo";a:4:{s:9:"registrar";s:15:"ONLINENIC, INC.";s:8:"referrer";s:24:"http://www.OnlineNIC.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:21:"domain =onlinenic.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:19:"whois.onlinenic.com";s:4:"args";s:13:"onlinenic.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:9:"nicco.com";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:6:{s:4:"name";s:9:"nicco.com";s:7:"nserver";a:2:{s:13:"ns1.nicco.com";s:13:"66.45.246.210";s:13:"ns2.nicco.com";s:12:"64.20.45.186";}s:6:"status";a:3:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";i:2;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2009-11-02";s:7:"created";s:10:"2000-11-01";s:7:"expires";s:10:"2010-11-01";}s:10:"registered";s:3:"yes";s:5:"owner";a:5:{s:12:"organization";s:10:"Nicco Ltd.";s:4:"name";s:13:"Administrator";s:7:"address";a:4:{s:4:"city";s:16:"Saint-Petersburg";s:6:"street";a:1:{i:0;s:33:"Dobrolubova prospect 11 Office 14";}s:7:"country";s:2:"RU";s:3:"zip";s:6:"197198";}s:5:"phone";s:16:"7 (921) 316-4209";s:5:"email";s:23:"accreditation@nicco.com";}s:4:"tech";a:5:{s:12:"organization";s:10:"Nicco Ltd.";s:4:"name";s:13:"Administrator";s:7:"address";a:4:{s:4:"city";s:16:"Saint-Petersburg";s:6:"street";a:1:{i:0;s:33:"Dobrolubova prospect 11 Office 14";}s:7:"country";s:2:"RU";s:3:"zip";s:6:"197198";}s:5:"phone";s:16:"7 (921) 316-4209";s:5:"email";s:23:"accreditation@nicco.com";}s:5:"admin";a:5:{s:12:"organization";s:10:"Nicco Ltd.";s:4:"name";s:13:"Administrator";s:7:"address";a:4:{s:4:"city";s:16:"Saint-Petersburg";s:6:"street";a:1:{i:0;s:33:"Dobrolubova prospect 11 Office 14";}s:7:"country";s:2:"RU";s:3:"zip";s:6:"197198";}s:5:"phone";s:16:"7 (921) 316-4209";s:5:"email";s:23:"accreditation@nicco.com";}}s:8:"regyinfo";a:4:{s:9:"registrar";s:10:"NICCO LTD.";s:8:"referrer";s:20:"http://www.nicco.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:17:"domain =nicco.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:15:"whois.nicco.com";s:4:"args";s:9:"nicco.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:12:"nameking.com";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:7:{s:4:"name";s:12:"nameking.com";s:7:"nserver";a:2:{s:16:"ns1.nameking.com";s:12:"204.13.162.6";s:16:"ns2.nameking.com";s:13:"204.13.161.18";}s:6:"status";a:3:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";i:2;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2009-05-08";s:7:"created";s:10:"1999-05-07";s:7:"expires";s:10:"2010-05-07";s:7:"sponsor";s:13:"NAMEKING INC.";}s:10:"registered";s:3:"yes";s:5:"owner";a:5:{s:4:"name";s:20:"Domain Administrator";s:12:"organization";s:13:"Nameking Inc.";s:5:"email";s:27:"registry-admin@nameking.com";s:7:"address";a:4:{s:6:"street";s:19:"515 S Flower Street";s:4:"city";s:30:"Los Angeles, California, 90071";s:7:"country";s:2:"US";i:0;s:10:"Suite 4400";}s:5:"phone";s:12:"1.2132205715";}s:5:"admin";a:5:{s:4:"name";s:20:"Domain Administrator";s:12:"organization";s:13:"Nameking Inc.";s:5:"email";s:27:"registry-admin@nameking.com";s:7:"address";a:4:{s:6:"street";s:19:"515 S Flower Street";s:4:"city";s:30:"Los Angeles, California, 90071";s:7:"country";s:2:"US";i:0;s:10:"Suite 4400";}s:5:"phone";s:12:"1.2132205715";}s:7:"billing";a:5:{s:4:"name";s:32:"Billing Department Administrator";s:12:"organization";s:13:"Nameking Inc.";s:5:"email";s:29:"registry-billing@nameking.com";s:7:"address";a:4:{s:6:"street";s:20:"515 S. Flower Street";s:4:"city";s:30:"Los Angeles, California, 90071";s:7:"country";s:2:"US";i:0;s:10:"Suite 4400";}s:5:"phone";s:12:"1.2132205715";}s:4:"tech";a:5:{s:4:"name";s:23:"Technical Administrator";s:12:"organization";s:13:"Nameking Inc.";s:5:"email";s:26:"registry-tech@nameking.com";s:7:"address";a:4:{s:6:"street";s:19:"515 S Flower Street";s:4:"city";s:30:"Los Angeles, California, 90071";s:7:"country";s:2:"US";i:0;s:10:"Suite 4400";}s:5:"phone";s:12:"1.2132205715";}}s:8:"regyinfo";a:4:{s:9:"registrar";s:18:"NAMEKING.COM, INC.";s:8:"referrer";s:23:"http://www.nameking.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:20:"domain =nameking.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:18:"whois.nameking.com";s:4:"args";s:12:"nameking.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:12:"fabulous.com";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:6:{s:4:"name";s:12:"fabulous.com";s:7:"nserver";a:2:{s:19:"ns1.darkbluesea.com";s:13:"64.15.205.133";s:19:"ns2.darkbluesea.com";s:13:"64.15.205.134";}s:6:"status";a:3:{i:0;s:22:"clientDeleteProhibited";i:1;s:24:"clientTransferProhibited";i:2;s:22:"clientUpdateProhibited";}s:7:"changed";s:10:"2009-08-07";s:7:"created";s:10:"1997-03-16";s:7:"expires";s:10:"2016-12-07";}s:10:"registered";s:3:"yes";s:5:"owner";a:2:{s:4:"name";s:20:"Fabulous.com Pty Ltd";s:7:"address";a:2:{i:0;s:27:"Level 10, 243 Edward Street";i:1;s:21:"Brisbane, QLD 4000 AU";}}s:7:"billing";a:4:{s:5:"email";s:33:"domain_hostmaster@darkbluesea.com";s:5:"phone";s:13:"+617.30070070";s:4:"name";s:20:"Fabulous.com Pty Ltd";s:7:"address";a:3:{i:0;s:17:"Domain Hostmaster";i:1;s:27:"Level 10, 243 Edward Street";i:2;s:21:"Brisbane, QLD 4000 AU";}}s:4:"tech";a:4:{s:5:"email";s:33:"domain_hostmaster@darkbluesea.com";s:5:"phone";s:13:"+617.30070070";s:4:"name";s:20:"Fabulous.com Pty Ltd";s:7:"address";a:3:{i:0;s:17:"Domain Hostmaster";i:1;s:27:"Level 10, 243 Edward Street";i:2;s:21:"Brisbane, QLD 4000 AU";}}s:5:"admin";a:4:{s:5:"email";s:33:"domain_hostmaster@darkbluesea.com";s:5:"phone";s:13:"+617.30070070";s:4:"name";s:20:"Fabulous.com Pty Ltd";s:7:"address";a:3:{i:0;s:17:"Domain Hostmaster";i:1;s:27:"Level 10, 243 Edward Street";i:2;s:21:"Brisbane, QLD 4000 AU";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:21:"FABULOUS.COM PTY LTD.";s:8:"referrer";s:23:"http://www.fabulous.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:20:"domain =fabulous.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:18:"whois.fabulous.com";s:4:"args";s:12:"fabulous.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:6:"nic.ae";a:1:{s:8:"regyinfo";a:1:{s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:12:"whois.nic.ae";s:4:"args";s:6:"nic.ae";s:4:"port";i:43;}}}}s:6:"dns.pt";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:4:{s:4:"name";s:6:"dns.pt";s:7:"created";s:10:"1991-10-03";s:6:"status";s:6:"ACTIVE";s:7:"nserver";a:4:{s:12:"ns02.fccn.pt";s:13:"193.136.2.228";s:14:"inesc.inesc.pt";s:11:"146.193.0.1";s:14:"helios.fccn.pt";s:14:"193.137.198.35";s:9:"ns.dns.pt";s:11:"193.136.0.1";}}s:5:"owner";a:3:{s:5:"email";s:18:"secretaria@fccn.pt";s:4:"name";s:53:"Fundação para a Computação Cientifica Nacional - FCCN";s:7:"address";a:3:{i:0;s:22:"Av. do Brasil, no. 101";i:1;s:15:"1700-066 Lisboa";i:2;s:2:"PT";}}s:7:"billing";a:2:{s:5:"email";s:18:"secretaria@fccn.pt";s:4:"name";s:53:"Fundação para a Computação Cientifica Nacional - FCCN";}s:5:"admin";a:2:{s:5:"email";s:19:"pedro.veiga@fccn.pt";s:4:"name";s:26:"Pedro Manuel Barbosa Veiga";}s:4:"tech";a:2:{s:5:"email";s:14:"wg-dns@fccn.pt";s:4:"name";s:23:"Eugénio Gonçalves Pinto";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:18:"http://www.fccn.pt";s:9:"registrar";s:4:"FCCN";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"pt.whois-servers.net";s:4:"args";s:6:"dns.pt";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:9:"sex.co.za";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:3:{s:7:"changed";s:10:"2008-08-29";s:4:"name";s:9:"sex.co.za";s:7:"nserver";a:2:{s:16:"ns21.apthost.com";s:14:"174.120.37.213";s:16:"ns22.apthost.com";s:13:"174.120.37.99";}}s:5:"owner";a:3:{s:7:"address";a:1:{s:7:"address";a:1:{i:0;s:42:"22 The Meadows, Fareham, England, PO16 8UN";}}s:5:"phone";s:15:"0944-7774802792";s:5:"email";s:25:"hostmaster@adultlistz.com";}s:7:"billing";a:3:{s:4:"name";s:11:"EPCommunity";s:5:"email";s:25:"hostmaster@adultlistz.com";s:7:"address";s:42:"22 The Meadows, Fareham, England, PO16 8UN";}s:5:"admin";a:5:{s:4:"name";s:13:"Turner, James";s:12:"organization";s:11:"EPCommunity";s:7:"address";s:42:"22 The Meadows, Fareham, England, PO16 8UN";s:5:"phone";s:13:"+66 2 6419455";s:5:"email";s:19:"dnsadmin@zedxxx.com";}s:4:"tech";a:5:{s:4:"name";s:12:"Garbin, Alan";s:12:"organization";s:11:"EPCommunity";s:7:"address";s:42:"22 The Meadows, Fareham, England, PO16 8UN";s:5:"phone";s:15:"0944-7774802792";s:5:"email";s:25:"hostmaster@adultlistz.com";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:16:"http://www.co.za";s:9:"registrar";s:20:"UniForum Association";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:29:"http://co.za/cgi-bin/whois.sh";s:4:"args";s:16:"Domain=sex.co.za";s:4:"port";i:80;}}s:4:"type";s:6:"domain";}}s:10:"sex.org.za";a:2:{s:8:"regrinfo";a:6:{s:5:"owner";a:2:{s:4:"name";s:9:"FastPages";s:7:"address";a:1:{i:0;s:31:"PO Box 1264, Wingate Park, 0153";}}s:5:"admin";a:4:{s:5:"email";s:21:"admin@webonline.co.za";s:4:"name";s:25:"Admin Web Online <>";s:3:"fax";s:15:"+27 861 232 323";s:5:"phone";s:15:"+27 861 666 555";}s:4:"tech";a:4:{s:5:"email";s:23:"support@webonline.co.za";s:4:"name";s:27:"Support Web Online <>";s:3:"fax";s:15:"+27 861 232 323";s:5:"phone";s:15:"+27 861 666 555";}s:7:"billing";a:4:{s:5:"email";s:24:"accounts@webonline.co.za";s:4:"name";s:28:"Accounts Web Online <>";s:3:"fax";s:15:"+27 861 232 323";s:5:"phone";s:15:"+27 861 666 555";}s:6:"domain";a:5:{s:7:"updated";s:20:"27-Mar-2002 08:27:58";s:6:"status";s:6:"Active";s:7:"nserver";a:2:{s:20:"dns4.webonline.co.za";s:14:"160.124.112.68";s:20:"dns2.webonline.co.za";s:13:"196.25.84.199";}s:7:"handler";s:20:"SEX_1017210478_ORGZA";s:4:"name";s:10:"sex.org.za";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:17:"http://www.org.za";s:9:"registrar";s:17:"The ORG.ZA Domain";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:32:"http://www.org.za/cgi-bin/rwhois";s:4:"args";s:29:"domain=sex.org.za&format=full";s:4:"port";i:80;}}s:4:"type";s:6:"domain";}}s:10:"smile.coop";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:8:{s:6:"handle";s:10:"4636D-COOP";s:4:"name";s:10:"smile.coop";s:7:"expires";s:10:"2011-01-30";s:6:"status";s:2:"ok";s:7:"sponsor";s:12:"domains.coop";s:7:"created";s:10:"2001-07-10";s:7:"changed";s:10:"2009-12-28";s:7:"nserver";a:2:{s:16:"ns1.netnames.net";s:14:"204.74.108.253";s:16:"ns2.netnames.net";s:13:"62.128.146.40";}}s:10:"registered";s:3:"yes";s:5:"owner";a:7:{s:6:"handle";s:11:"49056C-COOP";s:4:"name";s:8:"NetNames";s:12:"organization";s:36:"Co operative Financial Services Ltd.";s:7:"address";a:5:{s:6:"street";a:2:{i:0;s:9:"1st Floor";i:1;s:13:"Miller Street";}s:4:"city";s:10:"Manchester";s:5:"state";s:18:"Manchester(Cityof)";s:5:"pcode";s:7:"M60 0AL";s:7:"country";s:14:"United Kingdom";}s:5:"phone";s:14:"+44.2070159316";s:3:"fax";s:14:"+44.8704589404";s:5:"email";s:31:"corporate-services@netnames.com";}s:4:"tech";a:7:{s:6:"handle";s:11:"49056C-COOP";s:4:"name";s:8:"NetNames";s:12:"organization";s:36:"Co operative Financial Services Ltd.";s:7:"address";a:5:{s:6:"street";a:2:{i:0;s:9:"1st Floor";i:1;s:13:"Miller Street";}s:4:"city";s:10:"Manchester";s:5:"state";s:18:"Manchester(Cityof)";s:5:"pcode";s:7:"M60 0AL";s:7:"country";s:14:"United Kingdom";}s:5:"phone";s:14:"+44.2070159316";s:3:"fax";s:14:"+44.8704589404";s:5:"email";s:31:"corporate-services@netnames.com";}s:5:"admin";a:7:{s:6:"handle";s:11:"49056C-COOP";s:4:"name";s:8:"NetNames";s:12:"organization";s:36:"Co operative Financial Services Ltd.";s:7:"address";a:5:{s:6:"street";a:2:{i:0;s:9:"1st Floor";i:1;s:13:"Miller Street";}s:4:"city";s:10:"Manchester";s:5:"state";s:18:"Manchester(Cityof)";s:5:"pcode";s:7:"M60 0AL";s:7:"country";s:14:"United Kingdom";}s:5:"phone";s:14:"+44.2070159316";s:3:"fax";s:14:"+44.8704589404";s:5:"email";s:31:"corporate-services@netnames.com";}s:7:"billing";a:7:{s:6:"handle";s:11:"49056C-COOP";s:4:"name";s:8:"NetNames";s:12:"organization";s:36:"Co operative Financial Services Ltd.";s:7:"address";a:5:{s:6:"street";a:2:{i:0;s:9:"1st Floor";i:1;s:13:"Miller Street";}s:4:"city";s:10:"Manchester";s:5:"state";s:18:"Manchester(Cityof)";s:5:"pcode";s:7:"M60 0AL";s:7:"country";s:14:"United Kingdom";}s:5:"phone";s:14:"+44.2070159316";s:3:"fax";s:14:"+44.8704589404";s:5:"email";s:31:"corporate-services@netnames.com";}}s:8:"regyinfo";a:2:{s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:22:"coop.whois-servers.net";s:4:"args";s:10:"smile.coop";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:9:"ficora.fi";a:2:{s:8:"regrinfo";a:3:{s:6:"domain";a:5:{s:4:"name";s:9:"ficora.fi";s:6:"status";s:7:"Granted";s:7:"created";s:10:"2001-06-29";s:7:"expires";s:10:"2012-08-31";s:7:"nserver";a:2:{s:12:"ns-fi.sn.net";s:12:"195.10.143.2";s:12:"ns-no.sn.net";s:10:"62.65.30.9";}}s:5:"owner";a:3:{s:4:"name";a:2:{i:0;s:16:"Viestintävirasto";i:1;s:8:"07090192";}s:7:"address";a:4:{i:0;s:14:"Tietotekniikka";i:1;s:6:"PL 313";i:2;s:5:"00181";i:3;s:8:"Helsinki";}s:5:"phone";s:10:"+358969661";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:25:"https://domain.ficora.fi/";s:9:"registrar";s:43:"Finnish Communications Regulatory Authority";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"fi.whois-servers.net";s:4:"args";s:9:"ficora.fi";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:6:"nic.fr";a:2:{s:8:"regrinfo";a:6:{s:10:"registered";s:3:"yes";s:5:"admin";a:12:{s:6:"handle";s:10:"NFC1-FRNIC";s:4:"type";s:4:"ROLE";s:7:"contact";s:18:"NIC France Contact";s:7:"address";a:6:{i:0;s:5:"AFNIC";i:1;s:22:"immeuble international";i:2;s:17:"2, rue Stephenson";i:3;s:22:"Montigny le Bretonneux";i:4;s:37:"78181 Saint Quentin en Yvelines Cedex";s:7:"country";s:2:"FR";}s:5:"phone";s:17:"+33 1 39 30 83 00";s:5:"email";s:17:"hostmaster@nic.fr";s:7:"admin-c";s:10:"NFC1-FRNIC";s:6:"tech-c";a:9:{i:0;s:10:"PL12-FRNIC";i:1;s:8:"JP-FRNIC";i:2;s:12:"MS1887-FRNIC";i:3;s:8:"VL-FRNIC";i:4;s:12:"PR1249-FRNIC";i:5;s:11:"PV827-FRNIC";i:6;s:11:"GO661-FRNIC";i:7;s:8:"MS-FRNIC";i:8;s:9:"AI1-FRNIC";}s:7:"changed";s:10:"2005-08-23";s:9:"anonymous";s:2:"NO";s:9:"obsoleted";s:2:"NO";s:6:"source";s:5:"FRNIC";}s:4:"tech";a:12:{s:6:"handle";s:10:"NFC1-FRNIC";s:4:"type";s:4:"ROLE";s:7:"contact";s:18:"NIC France Contact";s:7:"address";a:6:{i:0;s:5:"AFNIC";i:1;s:22:"immeuble international";i:2;s:17:"2, rue Stephenson";i:3;s:22:"Montigny le Bretonneux";i:4;s:37:"78181 Saint Quentin en Yvelines Cedex";s:7:"country";s:2:"FR";}s:5:"phone";s:17:"+33 1 39 30 83 00";s:5:"email";s:17:"hostmaster@nic.fr";s:7:"admin-c";s:10:"NFC1-FRNIC";s:6:"tech-c";a:9:{i:0;s:10:"PL12-FRNIC";i:1;s:8:"JP-FRNIC";i:2;s:12:"MS1887-FRNIC";i:3;s:8:"VL-FRNIC";i:4;s:12:"PR1249-FRNIC";i:5;s:11:"PV827-FRNIC";i:6;s:11:"GO661-FRNIC";i:7;s:8:"MS-FRNIC";i:8;s:9:"AI1-FRNIC";}s:7:"changed";s:10:"2005-08-23";s:9:"anonymous";s:2:"NO";s:9:"obsoleted";s:2:"NO";s:6:"source";s:5:"FRNIC";}s:4:"zone";a:12:{s:6:"handle";s:10:"NFC1-FRNIC";s:4:"type";s:4:"ROLE";s:7:"contact";s:18:"NIC France Contact";s:7:"address";a:6:{i:0;s:5:"AFNIC";i:1;s:22:"immeuble international";i:2;s:17:"2, rue Stephenson";i:3;s:22:"Montigny le Bretonneux";i:4;s:37:"78181 Saint Quentin en Yvelines Cedex";s:7:"country";s:2:"FR";}s:5:"phone";s:17:"+33 1 39 30 83 00";s:5:"email";s:17:"hostmaster@nic.fr";s:7:"admin-c";s:10:"NFC1-FRNIC";s:6:"tech-c";a:9:{i:0;s:10:"PL12-FRNIC";i:1;s:8:"JP-FRNIC";i:2;s:12:"MS1887-FRNIC";i:3;s:8:"VL-FRNIC";i:4;s:12:"PR1249-FRNIC";i:5;s:11:"PV827-FRNIC";i:6;s:11:"GO661-FRNIC";i:7;s:8:"MS-FRNIC";i:8;s:9:"AI1-FRNIC";}s:7:"changed";s:10:"2005-08-23";s:9:"anonymous";s:2:"NO";s:9:"obsoleted";s:2:"NO";s:6:"source";s:5:"FRNIC";}s:5:"owner";a:9:{s:6:"handle";s:12:"AFNI21-FRNIC";s:4:"type";s:12:"ORGANIZATION";s:7:"contact";s:34:"ASS FRANC NOMMAGE INTERNET EN COOP";s:7:"address";a:4:{i:0;s:22:"immeuble international";i:1;s:17:"2, rue Stephenson";i:2;s:28:"78181 Montigny le Bretonneux";s:7:"country";s:2:"FR";}s:7:"changed";s:10:"2009-12-02";s:9:"anonymous";s:2:"NO";s:9:"obsoleted";s:2:"NO";s:8:"idstatus";s:2:"ok";s:6:"source";s:5:"FRNIC";}s:6:"domain";a:9:{s:6:"status";s:6:"ACTIVE";s:4:"hold";s:2:"NO";s:7:"sponsor";s:14:"AFNIC registry";s:7:"created";s:10:"1995-01-01";s:7:"changed";s:10:"2009-07-28";s:6:"source";s:5:"FRNIC";s:6:"handle";s:13:"NSL8702-FRNIC";s:7:"nserver";a:7:{s:10:"ns1.nic.fr";s:10:"192.93.0.1";s:10:"ns2.nic.fr";s:10:"192.93.0.4";s:10:"ns3.nic.fr";s:12:"192.134.0.49";s:14:"ns1.ext.nic.fr";s:13:"193.51.208.13";s:14:"ns2.ext.nic.fr";s:10:"194.2.0.30";s:14:"ns3.ext.nic.fr";s:10:"194.2.0.60";s:14:"ns4.ext.nic.fr";s:11:"193.0.0.196";}s:4:"name";s:6:"nic.fr";}}s:8:"regyinfo";a:4:{s:8:"referrer";s:17:"http://www.nic.fr";s:9:"registrar";s:5:"AFNIC";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"fr.whois-servers.net";s:4:"args";s:6:"nic.fr";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:11:"lemonade.fr";a:2:{s:8:"regrinfo";a:5:{s:10:"registered";s:3:"yes";s:5:"admin";a:10:{s:6:"handle";s:12:"ACN385-FRNIC";s:4:"type";s:6:"PERSON";s:7:"contact";s:22:"Admin-C Nettraffic. Fr";s:7:"address";a:4:{i:0;s:32:"5, avenue albert durand Aeropole";i:1;s:10:"batiment 1";i:2;s:13:"31700 Blagnac";s:7:"country";s:2:"FR";}s:5:"phone";s:17:"+33 9 70 46 73 11";s:5:"email";s:21:"contact@nettraffic.fr";s:7:"changed";s:10:"2009-12-23";s:9:"anonymous";s:2:"NO";s:9:"obsoleted";s:2:"NO";s:6:"source";s:5:"FRNIC";}s:4:"tech";a:11:{s:6:"handle";s:11:"ER507-FRNIC";s:4:"type";s:4:"ROLE";s:7:"contact";s:9:"EDNS ROLE";s:7:"address";a:4:{i:0;s:12:"EuroDNS S.A.";i:1;s:16:"41, z.a. am Bann";i:2;s:15:"3372 Leudelange";i:3;s:2:"LU";}s:5:"email";s:23:"dnsfr@admin.eurodns.com";s:7:"admin-c";s:12:"MM2096-FRNIC";s:6:"tech-c";s:10:"PYG1-FRNIC";s:7:"changed";s:10:"2006-05-15";s:9:"anonymous";s:2:"NO";s:9:"obsoleted";s:2:"NO";s:6:"source";s:5:"FRNIC";}s:5:"owner";a:11:{s:6:"handle";s:11:"N2591-FRNIC";s:4:"type";s:12:"ORGANIZATION";s:7:"contact";s:13:"NetTraffic.fr";s:7:"address";a:4:{i:0;s:32:"5, avenue albert durand Aeropole";i:1;s:10:"batiment 1";i:2;s:13:"31700 Blagnac";s:7:"country";s:2:"FR";}s:5:"phone";s:17:"+33 9 70 46 73 11";s:5:"email";s:21:"contact@nettraffic.fr";s:7:"changed";s:10:"2009-12-23";s:9:"anonymous";s:2:"NO";s:9:"obsoleted";s:2:"NO";s:8:"idstatus";s:2:"ok";s:6:"source";s:5:"FRNIC";}s:6:"domain";a:9:{s:6:"status";s:6:"ACTIVE";s:4:"hold";s:2:"NO";s:7:"sponsor";s:12:"EURODNS S.A.";s:7:"created";s:10:"2007-08-29";s:7:"changed";s:10:"2008-08-05";s:6:"source";s:5:"FRNIC";s:6:"handle";s:13:"NSL4892-FRNIC";s:7:"nserver";a:2:{s:15:"ns1.eurodns.com";s:10:"80.92.65.2";s:15:"ns2.eurodns.com";s:12:"80.92.67.140";}s:4:"name";s:11:"lemonade.fr";}}s:8:"regyinfo";a:4:{s:8:"referrer";s:17:"http://www.nic.fr";s:9:"registrar";s:5:"AFNIC";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"fr.whois-servers.net";s:4:"args";s:11:"lemonade.fr";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:6:"nic.it";a:3:{s:8:"regrinfo";a:5:{s:6:"domain";a:4:{s:4:"name";s:6:"nic.it";s:6:"status";s:6:"ACTIVE";s:7:"expires";s:10:"2013-12-31";s:7:"nserver";a:6:{s:10:"dns.nic.it";s:12:"192.12.192.5";s:17:"nameserver.cnr.it";s:14:"194.119.192.34";s:16:"itgeo.mix-it.net";s:11:"217.29.76.5";s:10:"ns2.nic.it";s:12:"192.12.192.3";s:8:"r.dns.it";s:14:"193.206.141.46";s:8:"c.dns.it";s:10:"194.0.1.22";}}s:5:"owner";a:6:{s:4:"name";s:30:"ccTLD '.it' Registry - IIT/CNR";s:12:"organization";s:30:"ccTLD '.it' Registry - IIT/CNR";s:6:"handle";s:11:"CCTL1-ITNIC";s:7:"address";a:5:{i:0;s:22:"Via Giuseppe Moruzzi 1";i:1;s:4:"Pisa";i:2;s:5:"56124";i:3;s:2:"PI";i:4;s:2:"IT";}s:7:"created";s:10:"2007-03-01";s:7:"changed";s:10:"2008-04-01";}s:5:"admin";a:6:{s:4:"name";s:18:"Domenico Laforenza";s:12:"organization";s:67:"Istituto di Informatica e Telematica del CNR - ccTLD ".it" Registry";s:6:"handle";s:9:"DL1-ITNIC";s:7:"address";a:5:{i:0;s:23:"Via Giuseppe Moruzzi, 1";i:1;s:4:"Pisa";i:2;s:5:"56124";i:3;s:2:"PI";i:4;s:2:"IT";}s:7:"created";s:10:"2008-07-11";s:7:"changed";s:10:"2008-07-11";}s:4:"tech";a:6:{s:4:"name";s:19:"Maurizio Martinelli";s:12:"organization";s:67:"Istituto di Informatica e Telematica del CNR - ccTLD ".it" Registry";s:6:"handle";s:10:"MM13-ITNIC";s:7:"address";a:10:{i:0;s:23:"Via Giuseppe Moruzzi, 1";i:1;s:23:"Via Giuseppe Moruzzi, 1";i:2;s:4:"Pisa";i:3;s:5:"56124";i:4;s:2:"PI";i:5;s:2:"IT";i:6;s:4:"Pisa";i:7;s:5:"56124";i:8;s:2:"PI";i:9;s:2:"IT";}s:7:"created";s:10:"1998-04-14";s:7:"changed";s:10:"2007-03-01";}s:10:"registered";s:3:"yes";}s:6:"domain";a:1:{s:9:"registrar";s:37:"Organization: ccTLD 'it' Registry";}s:8:"regyinfo";a:4:{s:9:"registrar";s:6:"IT-Nic";s:8:"referrer";s:18:"http://www.nic.it/";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"it.whois-servers.net";s:4:"args";s:6:"nic.it";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:7:"news.su";a:2:{s:8:"regrinfo";a:3:{s:6:"domain";a:4:{s:4:"name";s:7:"news.su";s:6:"status";s:37:"REGISTERED, NOT DELEGATED, UNVERIFIED";s:7:"created";s:10:"2003-06-27";s:7:"expires";s:10:"2010-06-27";}s:5:"owner";a:3:{s:4:"name";s:15:"ALEX G BULUSHEV";s:5:"phone";s:15:"+7 095 725 7611";s:5:"email";s:12:"bag@demos.su";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:19:"http://www.ripn.net";s:9:"registrar";s:17:"RUCENTER-REG-RIPN";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"su.whois-servers.net";s:4:"args";s:7:"news.su";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:6:"nic.ve";a:2:{s:8:"regrinfo";a:6:{s:5:"owner";a:5:{s:5:"email";s:17:"hostmaster@nic.ve";s:4:"name";s:59:"Centro Nacional de Tecnologias de Informacion (nic.ve-dom)";s:3:"fax";s:13:"+582127718599";s:5:"phone";s:13:"+582127718584";s:7:"address";a:3:{i:1;s:15:"CNTI - Reacciun";i:2;s:48:"Av. Universidad esq. el Chorro Torre MCT Piso 11";i:3;s:15:"Caracas, DF VE";}}s:6:"domain";a:5:{s:4:"name";s:6:"nic.ve";s:7:"changed";s:19:"2006-07-27 16:18:35";s:7:"created";s:19:"2005-11-15 14:50:14";s:6:"status";s:6:"ACTIVO";s:7:"nserver";a:2:{s:16:"dns2.reacciun.ve";s:13:"150.188.4.212";s:15:"dns.reacciun.ve";s:13:"150.188.4.210";}}s:5:"admin";a:5:{s:5:"email";s:14:"fobispo@nic.ve";s:4:"name";s:31:"Obispo, Francisco (nic.ve-adm)";s:3:"fax";s:13:"+582127718599";s:5:"phone";s:13:"+582127718584";s:7:"address";a:3:{i:1;s:15:"CNTI - Reacciun";i:2;s:48:"Av. Universidad esq. el Chorro Torre MCT Piso 11";i:3;s:15:"Caracas, DF VE";}}s:4:"tech";a:5:{s:5:"email";s:14:"fobispo@nic.ve";s:4:"name";s:31:"Obispo, Francisco (nic.ve-tec)";s:3:"fax";s:13:"+582127718599";s:5:"phone";s:13:"+582127718584";s:7:"address";a:3:{i:1;s:15:"CNTI - Reacciun";i:2;s:48:"Av. Universidad esq. el Chorro Torre MCT Piso 11";i:3;s:15:"Caracas, DF VE";}}s:7:"billing";a:5:{s:5:"email";s:14:"fobispo@nic.ve";s:4:"name";s:31:"Obispo, Francisco (nic.ve-bil)";s:3:"fax";s:13:"+582127718599";s:5:"phone";s:13:"+582127718584";s:7:"address";a:3:{i:1;s:15:"CNTI - Reacciun";i:2;s:48:"Av. Universidad esq. el Chorro Torre MCT Piso 11";i:3;s:15:"Caracas, DF VE";}}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:22:"http://registro.nic.ve";s:9:"registrar";s:20:"NIC-Venezuela - CNTI";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:12:"whois.nic.ve";s:4:"args";s:6:"nic.ve";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:7:"surf.ws";a:2:{s:8:"regrinfo";a:5:{s:6:"domain";a:6:{s:4:"name";s:7:"surf.ws";s:7:"sponsor";s:15:"SpinDomains.com";s:7:"created";s:10:"2006-05-08";s:7:"changed";s:10:"2009-10-23";s:7:"expires";s:10:"2010-05-08";s:7:"nserver";a:2:{s:15:"ns1.goldkey.com";s:12:"64.95.64.222";s:15:"ns2.goldkey.com";s:12:"206.83.79.29";}}s:5:"owner";a:4:{s:12:"organization";s:24:"See registrar info above";s:5:"email";s:24:"See registrar info above";s:4:"name";s:16:"Brett Blake Inc.";s:7:"address";a:3:{i:0;s:10:"PO Box 202";i:1;s:29:"Chino Hills, California 91709";i:2;s:13:"United States";}}s:5:"admin";a:5:{s:5:"email";s:18:"admin@geekblue.com";s:5:"phone";s:10:"9096063030";s:4:"name";s:13:"Admin, Domain";s:3:"fax";s:1:"-";s:7:"address";a:3:{i:1;s:10:"PO Box 202";i:2;s:29:"Chino Hills, California 91709";i:3;s:13:"United States";}}s:10:"registered";s:3:"yes";s:4:"tech";a:5:{s:5:"email";s:17:"tech@geekblue.com";s:4:"name";s:12:"Tech, Domain";s:3:"fax";s:1:"-";s:5:"phone";s:10:"9096063030";s:7:"address";a:3:{i:1;s:10:"PO Box 202";i:2;s:29:"Chino Hills, California 91709";i:3;s:13:"United States";}}}s:8:"regyinfo";a:4:{s:8:"referrer";s:22:"http://www.samoanic.ws";s:9:"registrar";s:9:"Samoa Nic";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:20:"ws.whois-servers.net";s:4:"args";s:7:"surf.ws";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:25:"whois.wildwestdomains.com";s:4:"args";s:7:"surf.ws";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:17:"itsyourdomain.com";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:6:{s:4:"name";s:17:"itsyourdomain.com";s:7:"nserver";a:2:{s:21:"ns1.itsyourdomain.com";s:12:"216.40.45.27";s:21:"ns2.itsyourdomain.com";s:12:"216.40.45.30";}s:6:"status";a:1:{i:0;s:24:"clientTransferProhibited";}s:7:"changed";s:10:"2008-04-21";s:7:"created";s:10:"1999-03-05";s:7:"expires";s:10:"2013-06-03";}s:10:"registered";s:3:"yes";s:5:"owner";a:4:{s:5:"email";s:19:"dnsadmin@tucows.com";s:5:"phone";s:13:"+1.4165312084";s:4:"name";s:14:"Tucows.com Co.";s:7:"address";a:3:{i:0;s:14:"Tucows.com Co.";i:1;s:8:"96 Mowat";i:2;s:27:"Toronto, Ontario M6K 3M1 CA";}}s:5:"admin";a:5:{s:5:"email";s:15:"support@iyd.com";s:5:"phone";s:13:"+1.8478954301";s:3:"fax";s:13:"+1.8478954123";s:4:"name";s:13:"ItsYourDomain";s:7:"address";a:3:{i:0;s:17:"ItsYourDomain.com";i:1;s:27:"1005 W. Wise Road Suite 201";i:2;s:23:"Schaumburg, IL 60193 US";}}s:7:"billing";a:5:{s:5:"email";s:15:"support@iyd.com";s:5:"phone";s:13:"+1.8478954301";s:3:"fax";s:13:"+1.8478954123";s:4:"name";s:13:"ItsYourDomain";s:7:"address";a:3:{i:0;s:17:"ItsYourDomain.com";i:1;s:27:"1005 W. Wise Road Suite 201";i:2;s:23:"Schaumburg, IL 60193 US";}}s:4:"tech";a:5:{s:5:"email";s:15:"support@iyd.com";s:5:"phone";s:13:"+1.8478954301";s:3:"fax";s:13:"+1.8478954123";s:4:"name";s:13:"ItsYourDomain";s:7:"address";a:3:{i:0;s:17:"ItsYourDomain.com";i:1;s:27:"1005 W. Wise Road Suite 201";i:2;s:23:"Schaumburg, IL 60193 US";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:39:"INNERWISE, INC. D/B/A ITSYOURDOMAIN.COM";s:8:"referrer";s:28:"http://www.itsyourdomain.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:25:"domain =itsyourdomain.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:23:"whois.itsyourdomain.com";s:4:"args";s:17:"itsyourdomain.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:13:"namevault.com";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:6:{s:4:"name";s:13:"namevault.com";s:7:"nserver";a:2:{s:17:"ns3.namevault.com";s:13:"69.79.127.136";s:17:"ns4.namevault.com";s:13:"69.79.127.137";}s:6:"status";s:6:"ACTIVE";s:7:"changed";s:10:"2009-04-06";s:7:"created";s:10:"1999-01-17";s:7:"expires";s:10:"2018-01-17";}s:10:"registered";s:3:"yes";s:5:"owner";a:6:{s:5:"email";s:19:"whois@namevault.com";s:4:"name";s:20:"Domain Administrator";s:5:"phone";s:12:"+800.8829010";s:3:"fax";s:12:"+800.8860640";s:12:"organization";s:13:"NameVault.com";s:7:"address";a:5:{i:0;s:13:"PO Box N-3944";i:1;s:23:"Kings Court, Bay Street";i:2;s:6:"Nassau";i:3;s:8:"null,N/A";i:4;s:2:"BS";}}s:5:"admin";a:6:{s:5:"email";s:19:"whois@namevault.com";s:4:"name";s:20:"Domain Administrator";s:5:"phone";s:12:"+800.8829010";s:3:"fax";s:12:"+800.8860640";s:12:"organization";s:13:"NameVault.com";s:7:"address";a:5:{i:0;s:13:"PO Box N-3944";i:1;s:23:"Kings Court, Bay Street";i:2;s:6:"Nassau";i:3;s:8:"null,N/A";i:4;s:2:"BS";}}s:4:"tech";a:6:{s:5:"email";s:19:"whois@namevault.com";s:4:"name";s:20:"Domain Administrator";s:5:"phone";s:12:"+800.8829010";s:3:"fax";s:12:"+800.8860640";s:12:"organization";s:13:"NameVault.com";s:7:"address";a:5:{i:0;s:13:"PO Box N-3944";i:1;s:23:"Kings Court, Bay Street";i:2;s:6:"Nassau";i:3;s:8:"null,N/A";i:4;s:2:"BS";}}s:7:"billing";a:6:{s:5:"email";s:19:"whois@namevault.com";s:4:"name";s:20:"Domain Administrator";s:5:"phone";s:12:"+800.8829010";s:3:"fax";s:12:"+800.8860640";s:12:"organization";s:13:"NameVault.com";s:7:"address";a:5:{i:0;s:13:"PO Box N-3944";i:1;s:23:"Kings Court, Bay Street";i:2;s:6:"Nassau";i:3;s:8:"null,N/A";i:4;s:2:"BS";}}}s:8:"regyinfo";a:4:{s:9:"registrar";s:35:"HOMESTEAD LIMITED DBA NAMEVAULT.COM";s:8:"referrer";s:24:"http://www.namevault.com";s:7:"servers";a:2:{i:0;a:3:{s:6:"server";s:21:"com.whois-servers.net";s:4:"args";s:21:"domain =namevault.com";s:4:"port";i:43;}i:1;a:3:{s:6:"server";s:19:"whois.namevault.com";s:4:"args";s:13:"namevault.com";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:8:"nic.asia";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:7:{s:6:"handle";s:11:"D24374-ASIA";s:4:"name";s:8:"nic.asia";s:7:"created";s:10:"2007-10-26";s:7:"expires";s:10:"2017-10-26";s:7:"changed";s:10:"2007-10-31";s:7:"sponsor";s:29:"Afilias Ltd. R118-ASIA (9992)";s:7:"nserver";a:3:{s:17:"ns01.afilias.info";s:13:"69.46.107.140";s:17:"ns02.afilias.info";s:14:"149.17.192.143";s:17:"ns03.afilias.info";s:12:"69.46.124.10";}}s:5:"owner";a:7:{s:6:"handle";s:9:"Afilias-1";s:4:"name";s:15:"Afilias Limited";s:12:"organization";s:12:"Afilias Ltd.";s:7:"address";a:4:{s:6:"street";a:2:{i:0;s:10:"Office 125";i:1;s:17:"52 Broomhill Road";}s:4:"city";s:8:"Tallaght";s:7:"country";s:2:"IE";s:5:"pcode";s:9:"Dublin 24";}s:5:"phone";s:13:"+1.2157065700";s:3:"fax";s:13:"+1.2157065701";s:5:"email";s:27:"techsupport@ca.afilias.info";}s:5:"admin";a:7:{s:6:"handle";s:9:"Afilias-1";s:4:"name";s:15:"Afilias Limited";s:12:"organization";s:12:"Afilias Ltd.";s:7:"address";a:4:{s:6:"street";a:2:{i:0;s:10:"Office 125";i:1;s:17:"52 Broomhill Road";}s:4:"city";s:8:"Tallaght";s:7:"country";s:2:"IE";s:5:"pcode";s:9:"Dublin 24";}s:5:"phone";s:13:"+1.2157065700";s:3:"fax";s:13:"+1.2157065701";s:5:"email";s:27:"techsupport@ca.afilias.info";}s:4:"tech";a:7:{s:6:"handle";s:9:"Afilias-1";s:4:"name";s:15:"Afilias Limited";s:12:"organization";s:12:"Afilias Ltd.";s:7:"address";a:4:{s:6:"street";a:2:{i:0;s:10:"Office 125";i:1;s:17:"52 Broomhill Road";}s:4:"city";s:8:"Tallaght";s:7:"country";s:2:"IE";s:5:"pcode";s:9:"Dublin 24";}s:5:"phone";s:13:"+1.2157065700";s:3:"fax";s:13:"+1.2157065701";s:5:"email";s:27:"techsupport@ca.afilias.info";}s:7:"billing";a:7:{s:6:"handle";s:9:"Afilias-1";s:4:"name";s:15:"Afilias Limited";s:12:"organization";s:12:"Afilias Ltd.";s:7:"address";a:4:{s:6:"street";a:2:{i:0;s:10:"Office 125";i:1;s:17:"52 Broomhill Road";}s:4:"city";s:8:"Tallaght";s:7:"country";s:2:"IE";s:5:"pcode";s:9:"Dublin 24";}s:5:"phone";s:13:"+1.2157065700";s:3:"fax";s:13:"+1.2157065701";s:5:"email";s:27:"techsupport@ca.afilias.info";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:23:"http://www.dotasia.org/";s:9:"registrar";s:7:"DotAsia";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:22:"asia.whois-servers.net";s:4:"args";s:8:"nic.asia";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:9:"domain.me";a:2:{s:8:"regyinfo";a:4:{s:8:"referrer";s:16:"http://domain.me";s:9:"registrar";s:5:"doMEn";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"whois.meregistry.net";s:4:"args";s:9:"domain.me";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}s:8:"regrinfo";a:5:{s:6:"domain";a:8:{s:6:"handle";s:8:"D2628-ME";s:4:"name";s:9:"domain.me";s:7:"created";s:10:"2008-04-29";s:7:"changed";s:10:"2008-09-02";s:7:"expires";s:10:"2013-04-29";s:7:"sponsor";s:20:"doMEn reserved R5-ME";s:6:"status";s:2:"OK";s:7:"nserver";a:2:{s:15:"ans01.domain.me";s:13:"216.69.185.40";s:15:"ans02.domain.me";s:14:"208.109.255.40";}}s:5:"owner";a:6:{s:6:"handle";s:8:"ME-00002";s:4:"name";s:5:"doMEn";s:12:"organization";s:22:"REGISTRY RESERVED NAME";s:7:"address";a:4:{s:6:"street";a:1:{i:0;s:22:"Dzordza Vasingtona bb.";}s:4:"city";s:9:"Podgorica";s:7:"country";s:2:"ME";s:5:"pcode";s:5:"81000";}s:5:"phone";s:13:"+382.78107711";s:5:"email";s:18:"reserved@domain.me";}s:5:"admin";a:6:{s:6:"handle";s:8:"ME-00002";s:4:"name";s:5:"doMEn";s:12:"organization";s:22:"REGISTRY RESERVED NAME";s:7:"address";a:4:{s:6:"street";a:1:{i:0;s:22:"Dzordza Vasingtona bb.";}s:4:"city";s:9:"Podgorica";s:7:"country";s:2:"ME";s:5:"pcode";s:5:"81000";}s:5:"phone";s:13:"+382.78107711";s:5:"email";s:18:"reserved@domain.me";}s:4:"tech";a:6:{s:6:"handle";s:8:"ME-00002";s:4:"name";s:5:"doMEn";s:12:"organization";s:22:"REGISTRY RESERVED NAME";s:7:"address";a:4:{s:6:"street";a:1:{i:0;s:22:"Dzordza Vasingtona bb.";}s:4:"city";s:9:"Podgorica";s:7:"country";s:2:"ME";s:5:"pcode";s:5:"81000";}s:5:"phone";s:13:"+382.78107711";s:5:"email";s:18:"reserved@domain.me";}s:10:"registered";s:3:"yes";}}s:8:"arnes.si";a:2:{s:8:"regyinfo";a:4:{s:8:"referrer";s:19:"http://www.arnes.si";s:9:"registrar";s:5:"ARNES";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"si.whois-servers.net";s:4:"args";s:8:"arnes.si";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}s:8:"regrinfo";a:4:{s:10:"registered";s:3:"yes";s:5:"owner";a:7:{s:12:"organization";s:5:"ARNES";s:6:"handle";s:6:"G31071";s:5:"email";s:16:"Dom-reg@arnes.si";s:5:"phone";s:13:"+386.14798800";s:6:"fax-no";s:13:"+386.14798899";s:7:"address";a:3:{i:0;s:9:"Jamova 39";i:1;s:14:"1000 Ljubljana";i:2;s:2:"SI";}s:6:"source";s:5:"ARNES";}s:4:"tech";a:3:{s:5:"email";s:14:"arnes@arnes.si";s:6:"handle";s:7:"O167450";s:6:"source";s:5:"ARNES";}s:6:"domain";a:9:{s:6:"domain";s:8:"arnes.si";s:9:"registrar";s:5:"Arnes";s:13:"registrar-url";s:27:"http://www.arnes.si/domene/";s:10:"nameserver";a:5:{i:0;s:12:"ns4.arnes.eu";i:1;s:44:"niobe.ijs.si (193.2.4.24,2001:1470:ff80::24)";i:2;s:27:"kanin.arnes.si (193.2.1.87)";i:3;s:27:"nanos.arnes.si (193.2.1.72)";i:4;s:12:"ns8.arnes.eu";}s:6:"status";s:2:"ok";s:7:"created";s:10:"1992-01-01";s:6:"expire";s:10:"2010-06-06";s:6:"source";s:5:"ARNES";s:4:"name";s:8:"arnes.si";}}}s:8:"china.cn";a:2:{s:8:"regyinfo";a:4:{s:8:"referrer";s:23:"http://www.cnnic.net.cn";s:9:"registrar";s:9:"China NIC";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"cn.whois-servers.net";s:4:"args";s:8:"china.cn";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}s:8:"regrinfo";a:4:{s:6:"domain";a:6:{s:4:"name";s:8:"china.cn";s:6:"status";s:24:"serverTransferProhibited";s:7:"sponsor";s:12:"网络中心";s:7:"nserver";a:2:{s:16:"ns1.china.org.cn";s:14:"202.130.245.13";s:23:"ns1.china-online.com.cn";s:13:"210.72.21.251";}s:7:"created";s:10:"2003-03-10";s:7:"expires";s:10:"2013-05-08";}s:5:"owner";a:2:{s:12:"organization";s:24:"国务院新闻办公室";s:4:"name";s:6:"方楠";}s:5:"admin";a:1:{s:5:"email";s:20:"fangnan@china.org.cn";}s:10:"registered";s:3:"yes";}}s:12:"ks2-hanau.de";a:2:{s:8:"regrinfo";a:4:{s:6:"domain";a:4:{s:4:"name";s:12:"ks2-hanau.de";s:7:"nserver";a:2:{s:12:"ks2-hanau.de";s:13:"89.149.219.30";s:16:"www.ks2-hanau.de";s:13:"89.149.219.30";}s:6:"status";s:7:"connect";s:7:"changed";s:10:"2008-10-20";}s:4:"tech";a:6:{s:4:"name";s:12:"Role Contact";s:12:"organization";s:13:"RADIUS EUROPE";s:7:"address";a:4:{s:6:"street";s:25:"36 Wood Street, Wakefield";s:5:"pcode";s:6:"WF12HB";s:4:"city";s:14:"West Yorkshire";s:7:"country";s:2:"GB";}s:5:"phone";s:14:"+44.2289822770";s:3:"fax";s:14:"+44.1924850461";s:5:"email";s:23:"radius.europe@gmail.com";}s:4:"zone";a:6:{s:4:"name";s:17:"Business Services";s:12:"organization";s:8:"DENIC eG";s:7:"address";a:5:{s:6:"street";s:19:"Kaiserstraße 75-77";s:5:"pcode";s:5:"60329";s:4:"city";s:9:"Frankfurt";s:7:"country";s:2:"DE";i:0;s:22:"Sip: sip:";}s:5:"phone";s:16:"+49 69 27235 272";s:3:"fax";s:16:"+49 69 27235 235";s:5:"email";s:12:"272@denic.de";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:9:"registrar";s:8:"DENIC eG";s:8:"referrer";s:20:"http://www.denic.de/";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:20:"de.whois-servers.net";s:4:"args";s:22:"-T dn,ace ks2-hanau.de";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}s:7:"nic.tel";a:2:{s:8:"regrinfo";a:6:{s:6:"domain";a:7:{s:4:"name";s:7:"nic.tel";s:6:"handle";s:11:"D583364-TEL";s:7:"sponsor";s:18:"REGISTRY REGISTRAR";s:6:"status";s:13:"pendingCreate";s:7:"created";s:10:"2009-03-23";s:7:"expires";s:10:"2012-03-22";s:7:"changed";s:10:"2009-03-31";}s:5:"owner";a:7:{s:6:"handle";s:13:"TELNICCONTACT";s:4:"name";s:6:"TELNIC";s:12:"organization";s:11:"Telnic Ltd.";s:7:"address";a:4:{s:6:"street";a:1:{i:0;s:15:"37 Percy Street";}s:4:"city";s:6:"London";s:5:"pcode";s:7:"W1T 2DJ";s:7:"country";s:14:"UNITED KINGDOM";}s:5:"phone";s:14:"+44.2074746450";s:3:"fax";s:14:"+44.2074676451";s:5:"email";s:25:"tel-admin-contact@nic.tel";}s:5:"admin";a:7:{s:6:"handle";s:13:"TELNICCONTACT";s:4:"name";s:6:"TELNIC";s:12:"organization";s:11:"Telnic Ltd.";s:7:"address";a:4:{s:6:"street";a:1:{i:0;s:15:"37 Percy Street";}s:4:"city";s:6:"London";s:5:"pcode";s:7:"W1T 2DJ";s:7:"country";s:14:"UNITED KINGDOM";}s:5:"phone";s:14:"+44.2074746450";s:3:"fax";s:14:"+44.2074676451";s:5:"email";s:25:"tel-admin-contact@nic.tel";}s:7:"billing";a:7:{s:6:"handle";s:13:"TELNICCONTACT";s:4:"name";s:6:"TELNIC";s:12:"organization";s:11:"Telnic Ltd.";s:7:"address";a:4:{s:6:"street";a:1:{i:1;s:15:"37 Percy Street";}s:4:"city";s:6:"London";s:5:"pcode";s:7:"W1T 2DJ";s:7:"country";s:14:"UNITED KINGDOM";}s:5:"phone";s:14:"+44.2074746450";s:3:"fax";s:14:"+44.2074676451";s:5:"email";s:25:"tel-admin-contact@nic.tel";}s:4:"tech";a:7:{s:6:"handle";s:14:"TELNICCONTACT2";s:4:"name";s:22:".tel Technical Contact";s:12:"organization";s:11:"Telnic Ltd.";s:7:"address";a:4:{s:6:"street";a:1:{i:0;s:16:"8 Wilfred Street";}s:4:"city";s:6:"London";s:5:"pcode";s:8:"SW1E 6PL";s:7:"country";s:14:"UNITED KINGDOM";}s:5:"phone";s:14:"+44.2074746450";s:3:"fax";s:14:"+44.2074676451";s:5:"email";s:24:"tel-tech-contact@nic.tel";}s:10:"registered";s:3:"yes";}s:8:"regyinfo";a:4:{s:8:"referrer";s:21:"http://www.telnic.org";s:9:"registrar";s:6:"Telnic";s:7:"servers";a:1:{i:0;a:3:{s:6:"server";s:21:"tel.whois-servers.net";s:4:"args";s:7:"nic.tel";s:4:"port";i:43;}}s:4:"type";s:6:"domain";}}} \ No newline at end of file diff --git a/whois.gtld.domainbank.php b/whois.gtld.domainbank.php deleted file mode 100644 index 6704770..0000000 --- a/whois.gtld.domainbank.php +++ /dev/null @@ -1,68 +0,0 @@ - */ - -if (!defined('__DOMAINBANK_HANDLER__')) - define('__DOMAINBANK_HANDLER__', 1); - -require_once('whois.parser.php'); - -class domainbank_handler - { - - function parse($data_str, $query) - { - - $items = array( - 'owner' => 'Registrant:', - 'admin' => 'Administrative', - 'tech' => 'Technical', - 'zone' => 'Zone', - 'domain.name' => 'Domain:', - 'domain.nserver.' => 'Domain servers in listed order:', - 'domain.created' => 'Record created on ', - 'domain.expires' => 'Record expires on ', - 'domain.changed' => 'Record last updated ', - 'domain.sponsor' => 'Registrar:' - ); - - $r = get_blocks($data_str, $items); - - if (isset($r['owner'])) - $r['owner'] = get_contact($r['owner']); - if (isset($r['admin'])) - $r['admin'] = get_contact($r['admin']); - if (isset($r['tech'])) - $r['tech'] = get_contact($r['tech']); - if (isset($r['zone'])) - $r['zone'] = get_contact($r['zone']); - - return ($r); - } - } -?>