2.4.0 release

master
Sven Slootweg 10 years ago
commit 992839d9fb

@ -29,6 +29,12 @@ The manual (including install instructions) can be found in the doc/ directory.
* Nameservers
* Optional WHOIS data normalization
* Attempts to intelligently reformat WHOIS data for better (human) readability
* Converts various abbreviation types to full locality names
* Airport codes
* Country names (2- and 3-letter ISO codes)
* US states and territories
* Canadian states and territories
* Australian states
* `pwhois`, a simple WHOIS tool using pythonwhois
* Easily readable output format
* Can also output raw WHOIS data
@ -39,6 +45,8 @@ The manual (including install instructions) can be found in the doc/ directory.
## Important update notes
*2.4.0 and up*: A lot of changes were made to the normalization, and the performance under Python 2.x was significantly improved. The average parsing time under Python 2.7 has dropped by 94% (!), and on my system averages out at 18ms. Performance under Python 3.x is [unchanged](https://github.com/joepie91/python-whois/issues/27). `pythonwhois` will now expand a lot of abbreviations in normalized mode, such as airport codes, ISO country codes, and US/CA/AU state abbreviations. The consequence of this is that the library is now bigger (as it ships a list of these abbreviations). Also note that there *may* be licensing consequences, in particular regarding the airport code database. More information about that can be found below.
*2.3.0 and up*: Python 3 support was fixed. Creation date parsing for contacts was fixed; correct timestamps will now be returned, rather than unformatted ones - if your application relies on the broken variant, you'll need to change your code. Some additional parameters were added to the `net` and `parse` methods to facilitate NIC handle lookups; the defaults are backwards-compatible, and these changes should not have any consequences for your code. Thai WHOIS parsing was implemented, but is a little spotty - data may occasionally be incorrectly split up. Please submit a bug report if you run across any issues.
*2.2.0 and up*: The internal workings of `get_whois_raw` have been changed, to better facilitate parsing of WHOIS data from registries that may return multiple partial matches for a query, such as `whois.verisign-grs.com`. This change means that, by default, `get_whois_raw` will now strip out the part of such a response that does not pertain directly to the requested domain. If your application requires an unmodified raw WHOIS response and is calling `get_whois_raw` directly, you should use the new `never_cut` parameter to keep pythonwhois from doing this post-processing. As this is a potentially breaking behaviour change, the minor version has been bumped.
@ -51,6 +59,23 @@ The manual (including install instructions) can be found in the doc/ directory.
If any of those apply, don't hesitate to file an issue! The goal is 100% coverage, and we need your feedback to reach that goal.
## License
This library may be used under the WTFPL - or, if you take issue with that, consider it to be under the CC0.
## Data sources
This library uses a number of third-party datasets for normalization:
* `airports.dat`: [OpenFlights Airports Database](http://openflights.org/data.html) ([Open Database License 1.0](http://opendatacommons.org/licenses/odbl/1.0/), [Database Contents License 1.0](http://opendatacommons.org/licenses/dbcl/1.0/))
* `countries.dat`: [Country List](https://github.com/umpirsky/country-list) (MIT license)
* `countries3.dat`: [ISO countries list](https://gist.github.com/eparreno/205900) (license unspecified)
* `states_au.dat`: Part of `pythonwhois` (WTFPL/CC0)
* `states_us.dat`: [State Table](http://statetable.com/) (license unspecified, free reuse encouraged)
* `states_ca.dat`: [State Table](http://statetable.com/) (license unspecified, free reuse encouraged)
Be aware that the OpenFlights database in particular has potential licensing consequences; if you do not wish to be bound by these potential consequences, you may simply delete the `airports.dat` file from your distribution. `pythonwhois` will assume there is no database available, and will not perform airport code conversion (but still function correctly otherwise). This also applies to other included datasets.
## Contributing
Feel free to fork and submit pull requests (to the `develop` branch)! If you change any parsing or normalization logic, ensure to run the full test suite before opening a pull request. Instructions for that are below.

@ -1,6 +1,6 @@
#!/usr/bin/env python2
import argparse, pythonwhois, json, datetime
import argparse, pythonwhois, json, datetime, sys
try:
from collections import OrderedDict
except ImportError as e:
@ -100,7 +100,15 @@ else:
for key, value in data_map.items():
if key in contact_data and contact_data[key] is not None:
label = " " + value + (" " * (widest_label - len(value))) + " :"
actual_data = contact_data[key]
if sys.version_info < (3, 0):
if type(contact_data[key]) == str:
actual_data = contact_data[key].decode("utf-8")
elif type(contact_data[key]) == datetime.datetime:
actual_data = unicode(contact_data[key])
else:
actual_data = contact_data[key]
else:
actual_data = str(contact_data[key])
if "\n" in actual_data: # Indent multi-line values properly
lines = actual_data.split("\n")
actual_data = "\n".join([lines[0]] + [(" " * (widest_label + 7)) + line for line in lines[1:]])

File diff suppressed because it is too large Load Diff

@ -0,0 +1,265 @@
iso,name
AF,Afghanistan
AL,Albania
DZ,Algeria
AS,"American Samoa"
AD,Andorra
AO,Angola
AI,Anguilla
AQ,Antarctica
AG,"Antigua and Barbuda"
AR,Argentina
AM,Armenia
AW,Aruba
AU,Australia
AT,Austria
AZ,Azerbaijan
BS,Bahamas
BH,Bahrain
BD,Bangladesh
BB,Barbados
BY,Belarus
BE,Belgium
BZ,Belize
BJ,Benin
BM,Bermuda
BT,Bhutan
BO,Bolivia
BA,"Bosnia and Herzegovina"
BW,Botswana
BV,"Bouvet Island"
BR,Brazil
BQ,"British Antarctic Territory"
IO,"British Indian Ocean Territory"
VG,"British Virgin Islands"
BN,Brunei
BG,Bulgaria
BF,"Burkina Faso"
BI,Burundi
KH,Cambodia
CM,Cameroon
CA,Canada
CT,"Canton and Enderbury Islands"
CV,"Cape Verde"
KY,"Cayman Islands"
CF,"Central African Republic"
TD,Chad
CL,Chile
CN,China
CX,"Christmas Island"
CC,"Cocos [Keeling] Islands"
CO,Colombia
KM,Comoros
CG,"Congo - Brazzaville"
CD,"Congo - Kinshasa"
CK,"Cook Islands"
CR,"Costa Rica"
HR,Croatia
CU,Cuba
CY,Cyprus
CZ,"Czech Republic"
CI,"Côte dIvoire"
DK,Denmark
DJ,Djibouti
DM,Dominica
DO,"Dominican Republic"
NQ,"Dronning Maud Land"
DD,"East Germany"
EC,Ecuador
EG,Egypt
SV,"El Salvador"
GQ,"Equatorial Guinea"
ER,Eritrea
EE,Estonia
ET,Ethiopia
FK,"Falkland Islands"
FO,"Faroe Islands"
FJ,Fiji
FI,Finland
FR,France
GF,"French Guiana"
PF,"French Polynesia"
TF,"French Southern Territories"
FQ,"French Southern and Antarctic Territories"
GA,Gabon
GM,Gambia
GE,Georgia
DE,Germany
GH,Ghana
GI,Gibraltar
GR,Greece
GL,Greenland
GD,Grenada
GP,Guadeloupe
GU,Guam
GT,Guatemala
GG,Guernsey
GN,Guinea
GW,Guinea-Bissau
GY,Guyana
HT,Haiti
HM,"Heard Island and McDonald Islands"
HN,Honduras
HK,"Hong Kong"
HU,Hungary
IS,Iceland
IN,India
ID,Indonesia
IR,Iran
IQ,Iraq
IE,Ireland
IM,"Isle of Man"
IL,Israel
IT,Italy
JM,Jamaica
JP,Japan
JE,Jersey
JT,"Johnston Island"
JO,Jordan
KZ,Kazakhstan
KE,Kenya
KI,Kiribati
KW,Kuwait
KG,Kyrgyzstan
LA,Laos
LV,Latvia
LB,Lebanon
LS,Lesotho
LR,Liberia
LY,Libya
LI,Liechtenstein
LT,Lithuania
LU,Luxembourg
MO,"Macau SAR China"
MK,Macedonia
MG,Madagascar
MW,Malawi
MY,Malaysia
MV,Maldives
ML,Mali
MT,Malta
MH,"Marshall Islands"
MQ,Martinique
MR,Mauritania
MU,Mauritius
YT,Mayotte
FX,"Metropolitan France"
MX,Mexico
FM,Micronesia
MI,"Midway Islands"
MD,Moldova
MC,Monaco
MN,Mongolia
ME,Montenegro
MS,Montserrat
MA,Morocco
MZ,Mozambique
MM,"Myanmar [Burma]"
NA,Namibia
NR,Nauru
NP,Nepal
NL,Netherlands
AN,"Netherlands Antilles"
NT,"Neutral Zone"
NC,"New Caledonia"
NZ,"New Zealand"
NI,Nicaragua
NE,Niger
NG,Nigeria
NU,Niue
NF,"Norfolk Island"
KP,"North Korea"
VD,"North Vietnam"
MP,"Northern Mariana Islands"
NO,Norway
OM,Oman
PC,"Pacific Islands Trust Territory"
PK,Pakistan
PW,Palau
PS,"Palestinian Territories"
PA,Panama
PZ,"Panama Canal Zone"
PG,"Papua New Guinea"
PY,Paraguay
YD,"People's Democratic Republic of Yemen"
PE,Peru
PH,Philippines
PN,"Pitcairn Islands"
PL,Poland
PT,Portugal
PR,"Puerto Rico"
QA,Qatar
RO,Romania
RU,Russia
RW,Rwanda
RE,Réunion
BL,"Saint Barthélemy"
SH,"Saint Helena"
KN,"Saint Kitts and Nevis"
LC,"Saint Lucia"
MF,"Saint Martin"
PM,"Saint Pierre and Miquelon"
VC,"Saint Vincent and the Grenadines"
WS,Samoa
SM,"San Marino"
SA,"Saudi Arabia"
SN,Senegal
RS,Serbia
CS,"Serbia and Montenegro"
SC,Seychelles
SL,"Sierra Leone"
SG,Singapore
SK,Slovakia
SI,Slovenia
SB,"Solomon Islands"
SO,Somalia
ZA,"South Africa"
GS,"South Georgia and the South Sandwich Islands"
KR,"South Korea"
ES,Spain
LK,"Sri Lanka"
SD,Sudan
SR,Suriname
SJ,"Svalbard and Jan Mayen"
SZ,Swaziland
SE,Sweden
CH,Switzerland
SY,Syria
ST,"São Tomé and Príncipe"
TW,Taiwan
TJ,Tajikistan
TZ,Tanzania
TH,Thailand
TL,Timor-Leste
TG,Togo
TK,Tokelau
TO,Tonga
TT,"Trinidad and Tobago"
TN,Tunisia
TR,Turkey
TM,Turkmenistan
TC,"Turks and Caicos Islands"
TV,Tuvalu
UM,"U.S. Minor Outlying Islands"
PU,"U.S. Miscellaneous Pacific Islands"
VI,"U.S. Virgin Islands"
UG,Uganda
UA,Ukraine
SU,"Union of Soviet Socialist Republics"
AE,"United Arab Emirates"
GB,"United Kingdom"
US,"United States"
ZZ,"Unknown or Invalid Region"
UY,Uruguay
UZ,Uzbekistan
VU,Vanuatu
VA,"Vatican City"
VE,Venezuela
VN,Vietnam
WK,"Wake Island"
WF,"Wallis and Futuna"
EH,"Western Sahara"
YE,Yemen
ZM,Zambia
ZW,Zimbabwe
AX,"Åland Islands"

@ -0,0 +1,240 @@
"name","iso_name","iso2","iso3","numcode"
"Antigua and Barbuda","ANTIGUA AND BARBUDA","AG","ATG",28
"Bosnia and Herzegovina","BOSNIA AND HERZEGOVINA","BA","BIH",70
"Cocos (Keeling) Islands","COCOS (KEELING) ISLANDS","CC","\N","\N"
"Congo, the Democratic Republic of the","CONGO, THE DEMOCRATIC REPUBLIC OF THE","CD","COD",180
"Cote D'Ivoire","COTE D'IVOIRE","CI","CIV",384
"Fiji","FIJI","FJ","FJI",242
"French Southern Territories","FRENCH SOUTHERN TERRITORIES","TF","\N","\N"
"Heard Island and Mcdonald Islands","HEARD ISLAND AND MCDONALD ISLANDS","HM","\N","\N"
"Holy See (Vatican City State)","HOLY SEE (VATICAN CITY STATE)","VA","VAT",336
"Iran, Islamic Republic of","IRAN, ISLAMIC REPUBLIC OF","IR","IRN",364
"Korea, Democratic People's Republic of","KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF","KP","PRK",408
"Korea, Republic of","KOREA, REPUBLIC OF","KR","KOR",410
"Belarus","BELARUS","BY","BLR",112
"Lao People's Democratic Republic","LAO PEOPLE'S DEMOCRATIC REPUBLIC","LA","LAO",418
"Macedonia, the Former Yugoslav Republic of","MACEDONIA, THE FORMER YUGOSLAV REPUBLIC OF","MK","MKD",807
"United States","UNITED STATES","US","USA",840
"Micronesia, Federated States of","MICRONESIA, FEDERATED STATES OF","FM","FSM",583
"Moldova, Republic of","MOLDOVA, REPUBLIC OF","MD","MDA",498
"Palestinian Territory, Occupied","PALESTINIAN TERRITORY, OCCUPIED","PS","\N","\N"
"Pitcairn","PITCAIRN","PN","PCN",612
"Reunion","REUNION","RE","REU",638
"Saint Helena","SAINT HELENA","SH","SHN",654
"Saint Kitts and Nevis","SAINT KITTS AND NEVIS","KN","KNA",659
"Saint Pierre and Miquelon","SAINT PIERRE AND MIQUELON","PM","SPM",666
"Sao Tome and Principe","SAO TOME AND PRINCIPE","ST","STP",678
"Serbia and Montenegro","SERBIA AND MONTENEGRO","CS","\N","\N"
"South Georgia and the South Sandwich Islands","SOUTH GEORGIA AND THE SOUTH SANDWICH ISLANDS","GS","\N","\N"
"Svalbard and Jan Mayen","SVALBARD AND JAN MAYEN","SJ","SJM",744
"Syrian Arab Republic","SYRIAN ARAB REPUBLIC","SY","SYR",760
"Taiwan, Province of China","TAIWAN, PROVINCE OF CHINA","TW","TWN",158
"Tanzania, United Republic of","TANZANIA, UNITED REPUBLIC OF","TZ","TZA",834
"Timor-Leste","TIMOR-LESTE","TL","\N","\N"
"Trinidad and Tobago","TRINIDAD AND TOBAGO","TT","TTO",780
"Mexico","MEXICO","MX","MEX",484
"Myanmar","MYANMAR","MM","MMR",104
"Virgin Islands, British","VIRGIN ISLANDS, BRITISH","VG","VGB",92
"Virgin Islands, U.s.","VIRGIN ISLANDS, U.S.","VI","VIR",850
"Wallis and Futuna","WALLIS AND FUTUNA","WF","WLF",876
"Albania","ALBANIA","AL","ALB",8
"Algeria","ALGERIA","DZ","DZA",12
"American Samoa","AMERICAN SAMOA","AS","ASM",16
"Vanuatu","VANUATU","VU","VUT",548
"Yemen","YEMEN","YE","YEM",887
"Andorra","ANDORRA","AD","AND",20
"Angola","ANGOLA","AO","AGO",24
"Anguilla","ANGUILLA","AI","AIA",660
"Argentina","ARGENTINA","AR","ARG",32
"Armenia","ARMENIA","AM","ARM",51
"Aruba","ARUBA","AW","ABW",533
"Australia","AUSTRALIA","AU","AUS",36
"Austria","AUSTRIA","AT","AUT",40
"Azerbaijan","AZERBAIJAN","AZ","AZE",31
"Bahamas","BAHAMAS","BS","BHS",44
"Bahrain","BAHRAIN","BH","BHR",48
"Bangladesh","BANGLADESH","BD","BGD",50
"Barbados","BARBADOS","BB","BRB",52
"Belgium","BELGIUM","BE","BEL",56
"Benin","BENIN","BJ","BEN",204
"Bermuda","BERMUDA","BM","BMU",60
"Bhutan","BHUTAN","BT","BTN",64
"Bolivia","BOLIVIA","BO","BOL",68
"Botswana","BOTSWANA","BW","BWA",72
"Bouvet Island","BOUVET ISLAND","BV","\N","\N"
"Brazil","BRAZIL","BR","BRA",76
"British Indian Ocean Territory","BRITISH INDIAN OCEAN TERRITORY","IO","\N","\N"
"Brunei Darussalam","BRUNEI DARUSSALAM","BN","BRN",96
"Bulgaria","BULGARIA","BG","BGR",100
"Burkina Faso","BURKINA FASO","BF","BFA",854
"Burundi","BURUNDI","BI","BDI",108
"Cambodia","CAMBODIA","KH","KHM",116
"Cameroon","CAMEROON","CM","CMR",120
"Canada","CANADA","CA","CAN",124
"Cape Verde","CAPE VERDE","CV","CPV",132
"Malta","MALTA","MT","MLT",470
"Cayman Islands","CAYMAN ISLANDS","KY","CYM",136
"Chad","CHAD","TD","TCD",148
"Chile","CHILE","CL","CHL",152
"China","CHINA","CN","CHN",156
"Christmas Island","CHRISTMAS ISLAND","CX","\N","\N"
"Colombia","COLOMBIA","CO","COL",170
"Comoros","COMOROS","KM","COM",174
"Cook Islands","COOK ISLANDS","CK","COK",184
"Costa Rica","COSTA RICA","CR","CRI",188
"Croatia","CROATIA","HR","HRV",191
"Cuba","CUBA","CU","CUB",192
"Cyprus","CYPRUS","CY","CYP",196
"Czech Republic","CZECH REPUBLIC","CZ","CZE",203
"Denmark","DENMARK","DK","DNK",208
"Djibouti","DJIBOUTI","DJ","DJI",262
"Dominica","DOMINICA","DM","DMA",212
"Dominican Republic","DOMINICAN REPUBLIC","DO","DOM",214
"Ecuador","ECUADOR","EC","ECU",218
"Egypt","EGYPT","EG","EGY",818
"Equatorial Guinea","EQUATORIAL GUINEA","GQ","GNQ",226
"Eritrea","ERITREA","ER","ERI",232
"Estonia","ESTONIA","EE","EST",233
"Ethiopia","ETHIOPIA","ET","ETH",231
"Faroe Islands","FAROE ISLANDS","FO","FRO",234
"Finland","FINLAND","FI","FIN",246
"France","FRANCE","FR","FRA",250
"French Guiana","FRENCH GUIANA","GF","GUF",254
"French Polynesia","FRENCH POLYNESIA","PF","PYF",258
"Gabon","GABON","GA","GAB",266
"Gambia","GAMBIA","GM","GMB",270
"Georgia","GEORGIA","GE","GEO",268
"Germany","GERMANY","DE","DEU",276
"Ghana","GHANA","GH","GHA",288
"Gibraltar","GIBRALTAR","GI","GIB",292
"Greece","GREECE","GR","GRC",300
"Greenland","GREENLAND","GL","GRL",304
"Grenada","GRENADA","GD","GRD",308
"Guadeloupe","GUADELOUPE","GP","GLP",312
"Guam","GUAM","GU","GUM",316
"Guatemala","GUATEMALA","GT","GTM",320
"Guinea","GUINEA","GN","GIN",324
"Guinea-Bissau","GUINEA-BISSAU","GW","GNB",624
"Guyana","GUYANA","GY","GUY",328
"Haiti","HAITI","HT","HTI",332
"Honduras","HONDURAS","HN","HND",340
"Hong Kong","HONG KONG","HK","HKG",344
"Hungary","HUNGARY","HU","HUN",348
"Iceland","ICELAND","IS","ISL",352
"India","INDIA","IN","IND",356
"Indonesia","INDONESIA","ID","IDN",360
"Iraq","IRAQ","IQ","IRQ",368
"Israel","ISRAEL","IL","ISR",376
"Italy","ITALY","IT","ITA",380
"Jamaica","JAMAICA","JM","JAM",388
"Japan","JAPAN","JP","JPN",392
"Jordan","JORDAN","JO","JOR",400
"Kazakhstan","KAZAKHSTAN","KZ","KAZ",398
"Kenya","KENYA","KE","KEN",404
"Kiribati","KIRIBATI","KI","KIR",296
"Kuwait","KUWAIT","KW","KWT",414
"Kyrgyzstan","KYRGYZSTAN","KG","KGZ",417
"Latvia","LATVIA","LV","LVA",428
"Lesotho","LESOTHO","LS","LSO",426
"Liberia","LIBERIA","LR","LBR",430
"Libyan Arab Jamahiriya","LIBYAN ARAB JAMAHIRIYA","LY","LBY",434
"Lithuania","LITHUANIA","LT","LTU",440
"Luxembourg","LUXEMBOURG","LU","LUX",442
"Macao","MACAO","MO","MAC",446
"Madagascar","MADAGASCAR","MG","MDG",450
"Malawi","MALAWI","MW","MWI",454
"Malaysia","MALAYSIA","MY","MYS",458
"Maldives","MALDIVES","MV","MDV",462
"Mali","MALI","ML","MLI",466
"Marshall Islands","MARSHALL ISLANDS","MH","MHL",584
"Martinique","MARTINIQUE","MQ","MTQ",474
"Mauritius","MAURITIUS","MU","MUS",480
"Mayotte","MAYOTTE","YT","\N","\N"
"Monaco","MONACO","MC","MCO",492
"Mongolia","MONGOLIA","MN","MNG",496
"Montserrat","MONTSERRAT","MS","MSR",500
"Morocco","MOROCCO","MA","MAR",504
"Mozambique","MOZAMBIQUE","MZ","MOZ",508
"Namibia","NAMIBIA","NA","NAM",516
"Nauru","NAURU","NR","NRU",520
"Nepal","NEPAL","NP","NPL",524
"Netherlands","NETHERLANDS","NL","NLD",528
"New Caledonia","NEW CALEDONIA","NC","NCL",540
"New Zealand","NEW ZEALAND","NZ","NZL",554
"Nicaragua","NICARAGUA","NI","NIC",558
"Niger","NIGER","NE","NER",562
"Nigeria","NIGERIA","NG","NGA",566
"Niue","NIUE","NU","NIU",570
"Norfolk Island","NORFOLK ISLAND","NF","NFK",574
"Northern Mariana Islands","NORTHERN MARIANA ISLANDS","MP","MNP",580
"Norway","NORWAY","NO","NOR",578
"Oman","OMAN","OM","OMN",512
"Pakistan","PAKISTAN","PK","PAK",586
"Palau","PALAU","PW","PLW",585
"Panama","PANAMA","PA","PAN",591
"Paraguay","PARAGUAY","PY","PRY",600
"Peru","PERU","PE","PER",604
"Philippines","PHILIPPINES","PH","PHL",608
"Poland","POLAND","PL","POL",616
"Portugal","PORTUGAL","PT","PRT",620
"Puerto Rico","PUERTO RICO","PR","PRI",630
"Qatar","QATAR","QA","QAT",634
"Romania","ROMANIA","RO","ROM",642
"Russian Federation","RUSSIAN FEDERATION","RU","RUS",643
"Rwanda","RWANDA","RW","RWA",646
"Saint Lucia","SAINT LUCIA","LC","LCA",662
"Saint Vincent and the Grenadines","SAINT VINCENT AND THE GRENADINES","VC","VCT",670
"Samoa","SAMOA","WS","WSM",882
"San Marino","SAN MARINO","SM","SMR",674
"Senegal","SENEGAL","SN","SEN",686
"Seychelles","SEYCHELLES","SC","SYC",690
"Sierra Leone","SIERRA LEONE","SL","SLE",694
"Singapore","SINGAPORE","SG","SGP",702
"Slovakia","SLOVAKIA","SK","SVK",703
"Slovenia","SLOVENIA","SI","SVN",705
"Solomon Islands","SOLOMON ISLANDS","SB","SLB",90
"Somalia","SOMALIA","SO","SOM",706
"South Africa","SOUTH AFRICA","ZA","ZAF",710
"Spain","SPAIN","ES","ESP",724
"Sri Lanka","SRI LANKA","LK","LKA",144
"Sudan","SUDAN","SD","SDN",736
"Suriname","SURINAME","SR","SUR",740
"Swaziland","SWAZILAND","SZ","SWZ",748
"Sweden","SWEDEN","SE","SWE",752
"Switzerland","SWITZERLAND","CH","CHE",756
"Thailand","THAILAND","TH","THA",764
"Togo","TOGO","TG","TGO",768
"Tokelau","TOKELAU","TK","TKL",772
"Tonga","TONGA","TO","TON",776
"Tunisia","TUNISIA","TN","TUN",788
"Turkey","TURKEY","TR","TUR",792
"Turkmenistan","TURKMENISTAN","TM","TKM",795
"Turks and Caicos Islands","TURKS AND CAICOS ISLANDS","TC","TCA",796
"Tuvalu","TUVALU","TV","TUV",798
"Uganda","UGANDA","UG","UGA",800
"Ukraine","UKRAINE","UA","UKR",804
"United Kingdom","UNITED KINGDOM","GB","GBR",826
"United States Minor Outlying Islands","UNITED STATES MINOR OUTLYING ISLANDS","UM","\N","\N"
"Uruguay","URUGUAY","UY","URY",858
"Uzbekistan","UZBEKISTAN","UZ","UZB",860
"Venezuela","VENEZUELA","VE","VEN",862
"Viet Nam","VIET NAM","VN","VNM",704
"Western Sahara","WESTERN SAHARA","EH","ESH",732
"Zambia","ZAMBIA","ZM","ZMB",894
"Zimbabwe","ZIMBABWE","ZW","ZWE",716
"Antarctica","ANTARCTICA","AQ","\N","\N"
"Belize","BELIZE","BZ","BLZ",84
"Central African Republic","CENTRAL AFRICAN REPUBLIC","CF","CAF",140
"El Salvador","EL SALVADOR","SV","SLV",222
"Ireland","IRELAND","IE","IRL",372
"Lebanon","LEBANON","LB","LBN",422
"Liechtenstein","LIECHTENSTEIN","LI","LIE",438
"Mauritania","MAURITANIA","MR","MRT",478
"Afghanistan","AFGHANISTAN","AF","AFG",4
"Falkland Islands (Malvinas)","FALKLAND ISLANDS (MALVINAS)","FK","FLK",238
"Netherlands Antilles","NETHERLANDS ANTILLES","AN","ANT",530
"Congo","CONGO","CG","COG",178
"Papua New Guinea","PAPUA NEW GUINEA","PG","PNG",598
"Saudi Arabia","SAUDI ARABIA","SA","SAU",682
"Tajikistan","TAJIKISTAN","TJ","TJK",762
"United Arab Emirates","UNITED ARAB EMIRATES","AE","ARE",784

@ -1,7 +1,56 @@
from __future__ import print_function
import re, sys, datetime
import re, sys, datetime, csv, pkgutil
from . import net, shared
try:
from io import StringIO
except ImportError:
from cStringIO import StringIO
def pkgdata(name):
data = pkgutil.get_data("pythonwhois", name)
if sys.version_info < (3, 0):
return data
else:
return data.decode("utf-8")
def read_dataset(filename, destination, abbrev_key, name_key, is_dict=False):
try:
if is_dict:
reader = csv.DictReader(pkgdata(filename).splitlines())
else:
reader = csv.reader(pkgdata(filename).splitlines())
for line in reader:
destination[line[abbrev_key]] = line[name_key]
except IOError as e:
pass
airports = {}
countries = {}
states_au = {}
states_us = {}
states_ca = {}
try:
reader = csv.reader(pkgdata("airports.dat").splitlines())
for line in reader:
airports[line[4]] = line[2]
airports[line[5]] = line[2]
except IOError as e:
# The distributor likely removed airports.dat for licensing reasons. We'll just leave an empty dict.
pass
read_dataset("countries.dat", countries, "iso", "name", is_dict=True)
read_dataset("countries3.dat", countries, "iso3", "name", is_dict=True)
read_dataset("states_au.dat", states_au, 0, 1)
read_dataset("states_us.dat", states_us, "abbreviation", "name", is_dict=True)
read_dataset("states_ca.dat", states_ca, "abbreviation", "name", is_dict=True)
def precompile_regexes(source, flags=0):
return [re.compile(regex, flags) for regex in source]
grammar = {
"_data": {
'id': ['Domain ID:[ ]*(?P<val>.+)'],
@ -324,6 +373,49 @@ nic_contact_regexes = [
"nic-hdl:\s*(?P<handle>.+)\ntype:\s*(?P<type>.+)\ncontact:\s*(?P<name>.+)\n(?:.+\n)*?(?:address:\s*(?P<street1>.+)\n)?(?:address:\s*(?P<street2>.+)\n)?(?:address:\s*(?P<street3>.+)\n)?(?:address:\s*(?P<street4>.+)\n)?country:\s*(?P<country>.+)\n(?:phone:\s*(?P<phone>.+)\n)?(?:fax-no:\s*(?P<fax>.+)\n)?(?:.+\n)*?(?:e-mail:\s*(?P<email>.+)\n)?(?:.+\n)*?changed:\s*(?P<changedate>[0-9]{2}\/[0-9]{2}\/[0-9]{4}).*\n", # AFNIC madness with country field
]
organization_regexes = (
r"\sltd\.?($|\s)",
r"\sco\.?($|\s)",
r"\scorp\.?($|\s)",
r"\sinc\.?($|\s)",
r"\ss\.?p\.?a\.?($|\s)",
r"\ss\.?(c\.?)?r\.?l\.?($|\s)",
r"\ss\.?a\.?s\.?($|\s)",
r"\sa\.?g\.?($|\s)",
r"\sn\.?v\.?($|\s)",
r"\sb\.?v\.?($|\s)",
r"\sp\.?t\.?y\.?($|\s)",
r"\sp\.?l\.?c\.?($|\s)",
r"\sv\.?o\.?f\.?($|\s)",
r"\sb\.?v\.?b\.?a\.?($|\s)",
r"\sg\.?m\.?b\.?h\.?($|\s)",
r"\ss\.?a\.?r\.?l\.?($|\s)",
)
grammar["_data"]["id"] = precompile_regexes(grammar["_data"]["id"], re.IGNORECASE)
grammar["_data"]["status"] = precompile_regexes(grammar["_data"]["status"], re.IGNORECASE)
grammar["_data"]["creation_date"] = precompile_regexes(grammar["_data"]["creation_date"], re.IGNORECASE)
grammar["_data"]["expiration_date"] = precompile_regexes(grammar["_data"]["expiration_date"], re.IGNORECASE)
grammar["_data"]["updated_date"] = precompile_regexes(grammar["_data"]["updated_date"], re.IGNORECASE)
grammar["_data"]["registrar"] = precompile_regexes(grammar["_data"]["registrar"], re.IGNORECASE)
grammar["_data"]["whois_server"] = precompile_regexes(grammar["_data"]["whois_server"], re.IGNORECASE)
grammar["_data"]["nameservers"] = precompile_regexes(grammar["_data"]["nameservers"], re.IGNORECASE)
grammar["_data"]["emails"] = precompile_regexes(grammar["_data"]["emails"], re.IGNORECASE)
grammar["_dateformats"] = precompile_regexes(grammar["_dateformats"], re.IGNORECASE)
registrant_regexes = precompile_regexes(registrant_regexes)
tech_contact_regexes = precompile_regexes(tech_contact_regexes)
billing_contact_regexes = precompile_regexes(billing_contact_regexes)
admin_contact_regexes = precompile_regexes(admin_contact_regexes)
nic_contact_regexes = precompile_regexes(nic_contact_regexes)
organization_regexes = precompile_regexes(organization_regexes, re.IGNORECASE)
nic_contact_references["registrant"] = precompile_regexes(nic_contact_references["registrant"])
nic_contact_references["tech"] = precompile_regexes(nic_contact_references["tech"])
nic_contact_references["admin"] = precompile_regexes(nic_contact_references["admin"])
nic_contact_references["billing"] = precompile_regexes(nic_contact_references["billing"])
if sys.version_info < (3, 0):
def is_string(data):
"""Test for string with support for python 2."""
@ -344,7 +436,7 @@ def parse_raw_whois(raw_data, normalized=[], never_query_handles=True, handle_se
if (rule_key in data) == False:
for line in segment.splitlines():
for regex in rule_regexes:
result = re.search(regex, line, re.IGNORECASE)
result = re.search(regex, line)
if result is not None:
val = result.group("val").strip()
@ -540,6 +632,15 @@ def normalize_data(data, normalized):
for contact_type, contact in data['contacts'].items():
if contact is not None:
if 'country' in contact and contact['country'] in countries:
contact['country'] = countries[contact['country']]
if 'city' in contact and contact['city'] in airports:
contact['city'] = airports[contact['city']]
if 'country' in contact and 'state' in contact:
for country, source in (("united states", states_us), ("australia", states_au), ("canada", states_ca)):
if country in contact["country"].lower() and contact["state"] in source:
contact["state"] = source[contact["state"]]
for key in ("email",):
if key in contact and contact[key] is not None and (normalized == True or key in normalized):
if is_string(contact[key]):
@ -554,10 +655,38 @@ def normalize_data(data, normalized):
for key in ("city", "organization", "state", "country"):
if key in contact and contact[key] is not None and (normalized == True or key in normalized):
contact[key] = normalize_name(contact[key], abbreviation_threshold=3, length_threshold=3)
if "name" in contact and "organization" not in contact:
lines = [x.strip() for x in contact["name"].splitlines()]
new_lines = []
for i, line in enumerate(lines):
for regex in organization_regexes:
if re.search(regex, line):
new_lines.append(line)
del lines[i]
break
if len(lines) > 0:
contact["name"] = "\n".join(lines)
else:
del contact["name"]
if len(new_lines) > 0:
contact["organization"] = "\n".join(new_lines)
if "street" in contact and "organization" not in contact:
lines = [x.strip() for x in contact["street"].splitlines()]
if len(lines) > 1:
for regex in organization_regexes:
if re.search(regex, lines[0]):
contact["organization"] = lines[0]
contact["street"] = "\n".join(lines[1:])
break
for key in list(contact.keys()):
try:
contact[key] = contact[key].strip(", ")
if contact[key] == "-" or contact[key].lower() == "n/a":
del contact[key]
except AttributeError as e:
pass # Not a string
return data
@ -612,7 +741,7 @@ def parse_dates(dates):
for date in dates:
for rule in grammar['_dateformats']:
result = re.match(rule, date, re.IGNORECASE)
result = re.match(rule, date)
if result is not None:
try:

@ -0,0 +1,6 @@
NSW,"New South Wales"
QLD,"Queensland"
SA,"South Australia"
TAS,"Tasmania"
VIC,"Victoria"
WA,"Western Australia"

@ -0,0 +1,14 @@
id,name,abbreviation
"60","Alberta","AB"
"61","British Columbia","BC"
"62","Manitoba","MB"
"63","New Brunswick","NB"
"64","Newfoundland and Labrador","NL"
"65","Nova Scotia","NS"
"66","Ontario","ON"
"67","Prince Edward Island","PE"
"68","Quebec","QC"
"69","Saskatchewan","SK"
"70","Northwest Territories","NT"
"71","Nunavut","NU"
"72","Yukon Territory","YT"

@ -0,0 +1,56 @@
id,name,abbreviation
"1","Alabama","AL"
"2","Alaska","AK"
"3","Arizona","AZ"
"4","Arkansas","AR"
"5","California","CA"
"6","Colorado","CO"
"7","Connecticut","CT"
"8","Delaware","DE"
"9","Florida","FL"
"10","Georgia","GA"
"11","Hawaii","HI"
"12","Idaho","ID"
"13","Illinois","IL"
"14","Indiana","IN"
"15","Iowa","IA"
"16","Kansas","KS"
"17","Kentucky","KY"
"18","Louisiana","LA"
"19","Maine","ME"
"20","Maryland","MD"
"21","Massachusetts","MA"
"22","Michigan","MI"
"23","Minnesota","MN"
"24","Mississippi","MS"
"25","Missouri","MO"
"26","Montana","MT"
"27","Nebraska","NE"
"28","Nevada","NV"
"29","New Hampshire","NH"
"30","New Jersey","NJ"
"31","New Mexico","NM"
"32","New York","NY"
"33","North Carolina","NC"
"34","North Dakota","ND"
"35","Ohio","OH"
"36","Oklahoma","OK"
"37","Oregon","OR"
"38","Pennsylvania","PA"
"39","Rhode Island","RI"
"40","South Carolina","SC"
"41","South Dakota","SD"
"42","Tennessee","TN"
"43","Texas","TX"
"44","Utah","UT"
"45","Vermont","VT"
"46","Virginia","VA"
"47","Washington","WA"
"48","West Virginia","WV"
"49","Wisconsin","WI"
"50","Wyoming","WY"
"52","Puerto Rico","PR"
"53","U.S. Virgin Islands","VI"
"54","American Samoa","AS"
"55","Guam","GU"
"56","Northern Mariana Islands","MP"

@ -1,12 +1,14 @@
from setuptools import setup
setup(name='pythonwhois',
version='2.3.0',
version='2.4.0',
description='Module for retrieving and parsing the WHOIS data for a domain. Supports most domains. No dependencies.',
author='Sven Slootweg',
author_email='pythonwhois@cryto.net',
url='http://cryto.net/pythonwhois',
packages=['pythonwhois'],
package_dir={"pythonwhois":"pythonwhois"},
package_data={"pythonwhois":["*.dat"]},
install_requires=['argparse'],
provides=['pythonwhois'],
scripts=["pwhois"],

@ -1,6 +1,6 @@
#!/usr/bin/env python2
import sys, argparse, os, pythonwhois, json, datetime, codecs
import sys, argparse, os, pythonwhois, json, datetime, codecs, time
import pkgutil
import encodings
@ -94,6 +94,8 @@ else:
targets.sort()
if args.mode[0] == "run":
times_default = []
times_normalized = []
errors = False
suites = []
for target in targets:
@ -134,7 +136,9 @@ if args.mode[0] == "run":
total = len(suites) * 2
for target, data, target_default, target_normalized in suites:
for normalization in (True, []):
start_time = time.time()
parsed = pythonwhois.parse.parse_raw_whois(data, normalized=normalization)
time_taken = (time.time() - start_time) * 1000 # in ms
parsed = json.loads(encoded_json_dumps(parsed)) # Stupid Unicode hack
if normalization == True:
@ -155,6 +159,10 @@ if args.mode[0] == "run":
sys.stdout.write(OK)
sys.stdout.write(progress_prefix + "%s passed in %s mode.\n" % (target, mode))
sys.stderr.write(ENDC)
if normalization == True:
times_normalized.append(time_taken)
else:
times_default.append(time_taken)
total_passed += 1
else:
sys.stderr.write(FAIL)
@ -169,6 +177,18 @@ if args.mode[0] == "run":
total_failed += 1
done += 1
if len(times_default) > 0:
average_default = int(sum(times_default) / float(len(times_default)))
min_default = min(times_default)
max_default = max(times_default)
sys.stdout.write("Timing in default mode: %dms avg, %dms min, %dms max\n" % (average_default, min_default, max_default))
if len(times_normalized) > 0:
average_normalized = int(sum(times_normalized) / float(len(times_normalized)))
min_normalized = min(times_normalized)
max_normalized = max(times_normalized)
sys.stdout.write("Timing in normalized mode: %dms avg, %dms min, %dms max\n" % (average_normalized, min_normalized, max_normalized))
if total_failed == 0:
sys.stdout.write(OK)
sys.stdout.write("All tests passed!\n")

@ -1 +1 @@
{"status": ["connect"], "updated_date": ["2013-04-03T00:14:26", "2008-05-27T16:56:58"], "contacts": {"admin": {"city": "Lilienthal", "fax": "+49.4298939488", "name": "Mechelke Jens", "country": "DE", "changed": "2008-05-27T16:56:58+02:00", "phone": "+49.4298939487", "street": "Heidberger Strasse 1a", "postalcode": "28865", "type": "PERSON", "email": "jens@mechelke.de"}, "tech": {"city": "Lilienthal", "fax": "+49.4298939488", "name": "Mechelke Jens", "country": "DE", "changed": "2008-05-27T16:56:58+02:00", "phone": "+49.4298939487", "street": "Heidberger Strasse 1a", "postalcode": "28865", "type": "PERSON", "email": "jens@mechelke.de"}, "registrant": null, "billing": null}, "nameservers": ["ns1.parkingcrew.net", "ns2.parkingcrew.net"], "raw": ["% Copyright (c) 2010 by DENIC\n% Version: 2.0\n% \n% Restricted rights.\n% \n% Terms and Conditions of Use\n% \n% The data in this record is provided by DENIC for informational purposes only.\n% DENIC does not guarantee its accuracy and cannot, under any circumstances,\n% be held liable in case the stored information would prove to be wrong,\n% incomplete or not accurate in any sense.\n% \n% All the domain data that is visible in the whois service is protected by law.\n% It is not permitted to use it for any purpose other than technical or\n% administrative requirements associated with the operation of the Internet.\n% It is explicitly forbidden to extract, copy and/or use or re-utilise in any\n% form and by any means (electronically or not) the whole or a quantitatively\n% or qualitatively substantial part of the contents of the whois database\n% without prior and explicit written permission by DENIC.\n% It is prohibited, in particular, to use it for transmission of unsolicited\n% and/or commercial and/or advertising by phone, fax, e-mail or for any similar\n% purposes.\n% \n% By maintaining the connection you assure that you have a legitimate interest\n% in the data and that you will only use it for the stated purposes. You are\n% aware that DENIC maintains the right to initiate legal proceedings against\n% you in the event of any breach of this assurance and to bar you from using\n% its whois service.\n% \n% The DENIC whois service on port 43 never discloses any information concerning\n% the domain holder/administrative contact. Information concerning the domain\n% holder/administrative contact can be obtained through use of our web-based\n% whois service available at the DENIC website:\n% http://www.denic.de/en/domains/whois-service/web-whois.html\n% \n\nDomain: b\u00e4ckerei.de\nDomain-Ace: xn--bckerei-5wa.de\nNserver: ns1.parkingcrew.net\nNserver: ns2.parkingcrew.net\nStatus: connect\nChanged: 2013-04-03T00:14:26+02:00\n\n[Tech-C]\nType: PERSON\nName: Mechelke Jens\nAddress: Heidberger Strasse 1a\nPostalCode: 28865\nCity: Lilienthal\nCountryCode: DE\nPhone: +49.4298939487\nFax: +49.4298939488\nEmail: jens@mechelke.de\nChanged: 2008-05-27T16:56:58+02:00\n\n[Zone-C]\nType: PERSON\nName: Mechelke Jens\nAddress: Heidberger Strasse 1a\nPostalCode: 28865\nCity: Lilienthal\nCountryCode: DE\nPhone: +49.4298939487\nFax: +49.4298939488\nEmail: jens@mechelke.de\nChanged: 2008-05-27T16:56:58+02:00\n\n"]}
{"status": ["connect"], "updated_date": ["2013-04-03T00:14:26", "2008-05-27T16:56:58"], "contacts": {"admin": {"city": "Lilienthal", "fax": "+49.4298939488", "name": "Mechelke Jens", "changed": "2008-05-27T16:56:58+02:00", "phone": "+49.4298939487", "street": "Heidberger Strasse 1a", "country": "DE", "postalcode": "28865", "type": "PERSON", "email": "jens@mechelke.de"}, "tech": {"city": "Lilienthal", "fax": "+49.4298939488", "name": "Mechelke Jens", "changed": "2008-05-27T16:56:58+02:00", "phone": "+49.4298939487", "street": "Heidberger Strasse 1a", "country": "DE", "postalcode": "28865", "type": "PERSON", "email": "jens@mechelke.de"}, "registrant": null, "billing": null}, "nameservers": ["ns1.parkingcrew.net", "ns2.parkingcrew.net"], "raw": ["% Copyright (c) 2010 by DENIC\n% Version: 2.0\n% \n% Restricted rights.\n% \n% Terms and Conditions of Use\n% \n% The data in this record is provided by DENIC for informational purposes only.\n% DENIC does not guarantee its accuracy and cannot, under any circumstances,\n% be held liable in case the stored information would prove to be wrong,\n% incomplete or not accurate in any sense.\n% \n% All the domain data that is visible in the whois service is protected by law.\n% It is not permitted to use it for any purpose other than technical or\n% administrative requirements associated with the operation of the Internet.\n% It is explicitly forbidden to extract, copy and/or use or re-utilise in any\n% form and by any means (electronically or not) the whole or a quantitatively\n% or qualitatively substantial part of the contents of the whois database\n% without prior and explicit written permission by DENIC.\n% It is prohibited, in particular, to use it for transmission of unsolicited\n% and/or commercial and/or advertising by phone, fax, e-mail or for any similar\n% purposes.\n% \n% By maintaining the connection you assure that you have a legitimate interest\n% in the data and that you will only use it for the stated purposes. You are\n% aware that DENIC maintains the right to initiate legal proceedings against\n% you in the event of any breach of this assurance and to bar you from using\n% its whois service.\n% \n% The DENIC whois service on port 43 never discloses any information concerning\n% the domain holder/administrative contact. Information concerning the domain\n% holder/administrative contact can be obtained through use of our web-based\n% whois service available at the DENIC website:\n% http://www.denic.de/en/domains/whois-service/web-whois.html\n% \n\nDomain: b\u00e4ckerei.de\nDomain-Ace: xn--bckerei-5wa.de\nNserver: ns1.parkingcrew.net\nNserver: ns2.parkingcrew.net\nStatus: connect\nChanged: 2013-04-03T00:14:26+02:00\n\n[Tech-C]\nType: PERSON\nName: Mechelke Jens\nAddress: Heidberger Strasse 1a\nPostalCode: 28865\nCity: Lilienthal\nCountryCode: DE\nPhone: +49.4298939487\nFax: +49.4298939488\nEmail: jens@mechelke.de\nChanged: 2008-05-27T16:56:58+02:00\n\n[Zone-C]\nType: PERSON\nName: Mechelke Jens\nAddress: Heidberger Strasse 1a\nPostalCode: 28865\nCity: Lilienthal\nCountryCode: DE\nPhone: +49.4298939487\nFax: +49.4298939488\nEmail: jens@mechelke.de\nChanged: 2008-05-27T16:56:58+02:00\n\n"]}

@ -1 +1 @@
{"status": ["connect"], "updated_date": ["2013-04-10T11:11:41", "2013-03-19T14:16:18", "2013-08-05T11:43:45"], "contacts": {"admin": {"city": "Berlin", "fax": "+49.3026312342", "name": "Christian Zantop", "country": "DE", "changed": "2013-03-19T14:16:18+01:00", "phone": "+49.3026312604", "street": "Luetzowplatz 11-13", "postalcode": "10785", "organization": "Stiftung Warentest", "type": "PERSON", "email": "webmaster@stiftung-warentest.de"}, "tech": {"city": "Eibelstadt", "fax": "+49.9303982879", "name": "Domainservice", "country": "DE", "changed": "2013-08-05T11:43:45+02:00", "phone": "+49.9303982860", "street": "Mainparkring 4", "postalcode": "97246", "organization": "iWelt AG", "type": "ROLE", "email": "support@iwelt.de"}, "registrant": null, "billing": null}, "nameservers": ["dns.iwelt-ag.net", "dns2.iwelt-ag.net", "dns3.iwelt-ag.de"], "raw": ["% Copyright (c) 2010 by DENIC\n% Version: 2.0\n% \n% Restricted rights.\n% \n% Terms and Conditions of Use\n% \n% The data in this record is provided by DENIC for informational purposes only.\n% DENIC does not guarantee its accuracy and cannot, under any circumstances,\n% be held liable in case the stored information would prove to be wrong,\n% incomplete or not accurate in any sense.\n% \n% All the domain data that is visible in the whois service is protected by law.\n% It is not permitted to use it for any purpose other than technical or\n% administrative requirements associated with the operation of the Internet.\n% It is explicitly forbidden to extract, copy and/or use or re-utilise in any\n% form and by any means (electronically or not) the whole or a quantitatively\n% or qualitatively substantial part of the contents of the whois database\n% without prior and explicit written permission by DENIC.\n% It is prohibited, in particular, to use it for transmission of unsolicited\n% and/or commercial and/or advertising by phone, fax, e-mail or for any similar\n% purposes.\n% \n% By maintaining the connection you assure that you have a legitimate interest\n% in the data and that you will only use it for the stated purposes. You are\n% aware that DENIC maintains the right to initiate legal proceedings against\n% you in the event of any breach of this assurance and to bar you from using\n% its whois service.\n% \n% The DENIC whois service on port 43 never discloses any information concerning\n% the domain holder/administrative contact. Information concerning the domain\n% holder/administrative contact can be obtained through use of our web-based\n% whois service available at the DENIC website:\n% http://www.denic.de/en/domains/whois-service/web-whois.html\n% \n\nDomain: test.de\nNserver: dns.iwelt-ag.net\nNserver: dns2.iwelt-ag.net\nNserver: dns3.iwelt-ag.de\nStatus: connect\nChanged: 2013-04-10T11:11:41+02:00\n\n[Tech-C]\nType: PERSON\nName: Christian Zantop\nOrganisation: Stiftung Warentest\nAddress: Luetzowplatz 11-13\nPostalCode: 10785\nCity: Berlin\nCountryCode: DE\nPhone: +49.3026312604\nFax: +49.3026312342\nEmail: webmaster@stiftung-warentest.de\nChanged: 2013-03-19T14:16:18+01:00\n\n[Zone-C]\nType: ROLE\nName: Domainservice\nOrganisation: iWelt AG\nAddress: Mainparkring 4\nPostalCode: 97246\nCity: Eibelstadt\nCountryCode: DE\nPhone: +49.9303982860\nFax: +49.9303982879\nEmail: support@iwelt.de\nChanged: 2013-08-05T11:43:45+02:00\n\n"]}
{"status": ["connect"], "updated_date": ["2013-04-10T11:11:41", "2013-03-19T14:16:18", "2013-08-05T11:43:45"], "contacts": {"admin": {"city": "Berlin", "fax": "+49.3026312342", "name": "Christian Zantop", "changed": "2013-03-19T14:16:18+01:00", "phone": "+49.3026312604", "street": "Luetzowplatz 11-13", "country": "DE", "postalcode": "10785", "organization": "Stiftung Warentest", "type": "PERSON", "email": "webmaster@stiftung-warentest.de"}, "tech": {"city": "Eibelstadt", "fax": "+49.9303982879", "name": "Domainservice", "changed": "2013-08-05T11:43:45+02:00", "phone": "+49.9303982860", "street": "Mainparkring 4", "country": "DE", "postalcode": "97246", "organization": "iWelt AG", "type": "ROLE", "email": "support@iwelt.de"}, "registrant": null, "billing": null}, "nameservers": ["dns.iwelt-ag.net", "dns2.iwelt-ag.net", "dns3.iwelt-ag.de"], "raw": ["% Copyright (c) 2010 by DENIC\n% Version: 2.0\n% \n% Restricted rights.\n% \n% Terms and Conditions of Use\n% \n% The data in this record is provided by DENIC for informational purposes only.\n% DENIC does not guarantee its accuracy and cannot, under any circumstances,\n% be held liable in case the stored information would prove to be wrong,\n% incomplete or not accurate in any sense.\n% \n% All the domain data that is visible in the whois service is protected by law.\n% It is not permitted to use it for any purpose other than technical or\n% administrative requirements associated with the operation of the Internet.\n% It is explicitly forbidden to extract, copy and/or use or re-utilise in any\n% form and by any means (electronically or not) the whole or a quantitatively\n% or qualitatively substantial part of the contents of the whois database\n% without prior and explicit written permission by DENIC.\n% It is prohibited, in particular, to use it for transmission of unsolicited\n% and/or commercial and/or advertising by phone, fax, e-mail or for any similar\n% purposes.\n% \n% By maintaining the connection you assure that you have a legitimate interest\n% in the data and that you will only use it for the stated purposes. You are\n% aware that DENIC maintains the right to initiate legal proceedings against\n% you in the event of any breach of this assurance and to bar you from using\n% its whois service.\n% \n% The DENIC whois service on port 43 never discloses any information concerning\n% the domain holder/administrative contact. Information concerning the domain\n% holder/administrative contact can be obtained through use of our web-based\n% whois service available at the DENIC website:\n% http://www.denic.de/en/domains/whois-service/web-whois.html\n% \n\nDomain: test.de\nNserver: dns.iwelt-ag.net\nNserver: dns2.iwelt-ag.net\nNserver: dns3.iwelt-ag.de\nStatus: connect\nChanged: 2013-04-10T11:11:41+02:00\n\n[Tech-C]\nType: PERSON\nName: Christian Zantop\nOrganisation: Stiftung Warentest\nAddress: Luetzowplatz 11-13\nPostalCode: 10785\nCity: Berlin\nCountryCode: DE\nPhone: +49.3026312604\nFax: +49.3026312342\nEmail: webmaster@stiftung-warentest.de\nChanged: 2013-03-19T14:16:18+01:00\n\n[Zone-C]\nType: ROLE\nName: Domainservice\nOrganisation: iWelt AG\nAddress: Mainparkring 4\nPostalCode: 97246\nCity: Eibelstadt\nCountryCode: DE\nPhone: +49.9303982860\nFax: +49.9303982879\nEmail: support@iwelt.de\nChanged: 2013-08-05T11:43:45+02:00\n\n"]}

File diff suppressed because one or more lines are too long

@ -1 +1 @@
{"status": ["active"], "updated_date": ["2012-07-03T00:00:00"], "contacts": {"admin": {"city": "Waltham", "fax": "6172608696", "name": "Jason Scott", "country": "US", "phone": "6172608696", "state": "MA", "street": "738 Main Street #383", "postalcode": "02453", "organization": "Archive Team", "email": "hostmaster@dot.am"}, "tech": {"city": "Waltham", "fax": "6172608696", "name": "Jason Scott", "country": "US", "phone": "6172608696", "state": "MA", "street": "738 Main Street #383", "postalcode": "02453", "organization": "Archive Team", "email": "hostmaster@dot.am"}, "registrant": {"city": "Waltham", "name": "Archive Team", "country": "US", "state": "MA", "street": "738 Main Street #383", "postalcode": "02453"}, "billing": null}, "nameservers": ["ns1.easydns.com", "ns2.easydns.com", "ns3.easydns.org", "ns6.easydns.net", "remote1.easydns.com", "remote2.easydns.com"], "expiration_date": ["2015-08-12T00:00:00"], "creation_date": ["2009-08-12T00:00:00"], "raw": ["%\n%AM TLD whois server #2\n%\n\n Domain name: urlte.am\n Registrar: abcdomain\n Status: active\n\n Registrant:\n Archive Team\n 738 Main Street #383\n Waltham MA, 02453\n US\n\n Administrative contact:\n Jason Scott\n Archive Team\n 738 Main Street #383\n Waltham MA, 02453\n US\n hostmaster@dot.am\n 6172608696\n 6172608696\n\n Technical contact:\n Jason Scott\n Archive Team\n 738 Main Street #383\n Waltham MA, 02453\n US\n hostmaster@dot.am\n 6172608696\n 6172608696\n\n DNS servers:\n ns1.easydns.com\n ns2.easydns.com\n remote1.easydns.com\n remote2.easydns.com\n ns3.easydns.org\n ns6.easydns.net\n\n Registered: 2009-08-12\n Last modified: 2012-07-03\n Expires: 2015-08-12\n\n\n"], "registrar": ["abcdomain"]}
{"status": ["active"], "updated_date": ["2012-07-03T00:00:00"], "contacts": {"admin": {"city": "Waltham", "fax": "6172608696", "name": "Jason Scott", "country": "US", "phone": "6172608696", "state": "MA", "street": "738 Main Street #383", "postalcode": "02453", "organization": "Archive Team", "email": "hostmaster@dot.am"}, "tech": {"city": "Waltham", "fax": "6172608696", "name": "Jason Scott", "country": "US", "phone": "6172608696", "state": "MA", "street": "738 Main Street #383", "postalcode": "02453", "organization": "Archive Team", "email": "hostmaster@dot.am"}, "registrant": {"city": "Waltham", "name": "Archive Team", "country": "US", "state": "MA", "street": "738 Main Street #383", "postalcode": "02453"}, "billing": null}, "nameservers": ["ns1.easydns.com", "ns2.easydns.com", "remote1.easydns.com", "remote2.easydns.com", "ns3.easydns.org", "ns6.easydns.net"], "expiration_date": ["2015-08-12T00:00:00"], "creation_date": ["2009-08-12T00:00:00"], "raw": ["%\n%AM TLD whois server #2\n%\n\n Domain name: urlte.am\n Registrar: abcdomain\n Status: active\n\n Registrant:\n Archive Team\n 738 Main Street #383\n Waltham MA, 02453\n US\n\n Administrative contact:\n Jason Scott\n Archive Team\n 738 Main Street #383\n Waltham MA, 02453\n US\n hostmaster@dot.am\n 6172608696\n 6172608696\n\n Technical contact:\n Jason Scott\n Archive Team\n 738 Main Street #383\n Waltham MA, 02453\n US\n hostmaster@dot.am\n 6172608696\n 6172608696\n\n DNS servers:\n ns1.easydns.com\n ns2.easydns.com\n remote1.easydns.com\n remote2.easydns.com\n ns3.easydns.org\n ns6.easydns.net\n\n Registered: 2009-08-12\n Last modified: 2012-07-03\n Expires: 2015-08-12\n\n\n"], "registrar": ["abcdomain"]}

File diff suppressed because one or more lines are too long

@ -1 +1 @@
{"status": ["ok"], "contacts": {"admin": {"city": "Stockholm", "handle": "C728-MUSEUM", "name": "Cary Karp", "street": "Frescativaegen 40", "country": "SE", "postalcode": "104 05", "organization": "Museum Domain Management Association", "email": "ck@nic.museum"}, "tech": {"city": "Stockholm", "handle": "C728-MUSEUM", "name": "Cary Karp", "street": "Frescativaegen 40", "country": "SE", "postalcode": "104 05", "organization": "Museum Domain Management Association", "email": "ck@nic.museum"}, "registrant": {"city": "Stockholm", "handle": "C728-MUSEUM", "name": "Cary Karp", "street": "Frescativaegen 40", "country": "SE", "postalcode": "104 05", "organization": "Museum Domain Management Association", "email": "ck@nic.museum"}, "billing": {"city": "Stockholm", "handle": "C728-MUSEUM", "name": "Cary Karp", "street": "Frescativaegen 40", "country": "SE", "postalcode": "104 05", "organization": "Museum Domain Management Association", "email": "ck@nic.museum"}}, "nameservers": ["nic.frd.se", "nic.museum"], "expiration_date": ["2015-02-04T19:32:48"], "creation_date": ["2005-02-04T19:32:48", "2005-02-04T19:32:48"], "raw": ["% Musedoma Whois Server Copyright (C) 2007 Museum Domain Management Association\n%\n% NOTICE: Access to Musedoma Whois information is provided to assist in\n% determining the contents of an object name registration record in the\n% Musedoma database. The data in this record is provided by Musedoma for\n% informational purposes only, and Musedoma does not guarantee its\n% accuracy. This service is intended only for query-based access. You\n% agree that you will use this data only for lawful purposes and that,\n% under no circumstances will you use this data to: (a) allow, enable,\n% or otherwise support the transmission by e-mail, telephone or\n% facsimile of unsolicited, commercial advertising or solicitations; or\n% (b) enable automated, electronic processes that send queries or data\n% to the systems of Musedoma or registry operators, except as reasonably\n% necessary to register object names or modify existing registrations.\n% All rights reserved. Musedoma reserves the right to modify these terms at\n% any time. By submitting this query, you agree to abide by this policy.\n%\n% WARNING: THIS RESPONSE IS NOT AUTHENTIC\n%\n% The selected character encoding \"US-ASCII\" is not able to represent all\n% characters in this output. Those characters that could not be represented\n% have been replaced with the unaccented ASCII equivalents. Please\n% resubmit your query with a suitable character encoding in order to receive\n% an authentic response.\n%\nDomain ID: D6137686-MUSEUM\nDomain Name: about.museum\nDomain Name ACE: about.museum\nDomain Language: \nRegistrar ID: CORE-904 (Musedoma)\nCreated On: 2005-02-04 19:32:48 GMT\nExpiration Date: 2015-02-04 19:32:48 GMT\nMaintainer: http://musedoma.museum\nStatus: ok\nRegistrant ID: C728-MUSEUM\nRegistrant Name: Cary Karp\nRegistrant Organization: Museum Domain Management Association\nRegistrant Street: Frescativaegen 40\nRegistrant City: Stockholm\nRegistrant State/Province: \nRegistrant Postal Code: 104 05\nRegistrant Country: SE\nRegistrant Phone: \nRegistrant Phone Ext: \nRegistrant Fax: \nRegistrant Fax Ext: \nRegistrant Email: ck@nic.museum\nAdmin ID: C728-MUSEUM\nAdmin Name: Cary Karp\nAdmin Organization: Museum Domain Management Association\nAdmin Street: Frescativaegen 40\nAdmin City: Stockholm\nAdmin State/Province: \nAdmin Postal Code: 104 05\nAdmin Country: SE\nAdmin Phone: \nAdmin Phone Ext: \nAdmin Fax: \nAdmin Fax Ext: \nAdmin Email: ck@nic.museum\nTech ID: C728-MUSEUM\nTech Name: Cary Karp\nTech Organization: Museum Domain Management Association\nTech Street: Frescativaegen 40\nTech City: Stockholm\nTech State/Province: \nTech Postal Code: 104 05\nTech Country: SE\nTech Phone: \nTech Phone Ext: \nTech Fax: \nTech Fax Ext: \nTech Email: ck@nic.museum\nBilling ID: C728-MUSEUM\nBilling Name: Cary Karp\nBilling Organization: Museum Domain Management Association\nBilling Street: Frescativaegen 40\nBilling City: Stockholm\nBilling State/Province: \nBilling Postal Code: 104 05\nBilling Country: SE\nBilling Phone: \nBilling Phone Ext: \nBilling Fax: \nBilling Fax Ext: \nBilling Email: ck@nic.museum\nName Server: nic.frd.se \nName Server ACE: nic.frd.se \nName Server: nic.museum 130.242.24.5\nName Server ACE: nic.museum 130.242.24.5\n\n\n"], "id": ["D6137686-MUSEUM"]}
{"status": ["ok"], "contacts": {"admin": {"city": "Stockholm", "handle": "C728-MUSEUM", "name": "Cary Karp", "street": "Frescativaegen 40", "country": "Sweden", "postalcode": "104 05", "organization": "Museum Domain Management Association", "email": "ck@nic.museum"}, "tech": {"city": "Stockholm", "handle": "C728-MUSEUM", "name": "Cary Karp", "street": "Frescativaegen 40", "country": "Sweden", "postalcode": "104 05", "organization": "Museum Domain Management Association", "email": "ck@nic.museum"}, "registrant": {"city": "Stockholm", "handle": "C728-MUSEUM", "name": "Cary Karp", "street": "Frescativaegen 40", "country": "Sweden", "postalcode": "104 05", "organization": "Museum Domain Management Association", "email": "ck@nic.museum"}, "billing": {"city": "Stockholm", "handle": "C728-MUSEUM", "name": "Cary Karp", "street": "Frescativaegen 40", "country": "Sweden", "postalcode": "104 05", "organization": "Museum Domain Management Association", "email": "ck@nic.museum"}}, "nameservers": ["nic.frd.se", "nic.museum"], "expiration_date": ["2015-02-04T19:32:48"], "creation_date": ["2005-02-04T19:32:48", "2005-02-04T19:32:48"], "raw": ["% Musedoma Whois Server Copyright (C) 2007 Museum Domain Management Association\n%\n% NOTICE: Access to Musedoma Whois information is provided to assist in\n% determining the contents of an object name registration record in the\n% Musedoma database. The data in this record is provided by Musedoma for\n% informational purposes only, and Musedoma does not guarantee its\n% accuracy. This service is intended only for query-based access. You\n% agree that you will use this data only for lawful purposes and that,\n% under no circumstances will you use this data to: (a) allow, enable,\n% or otherwise support the transmission by e-mail, telephone or\n% facsimile of unsolicited, commercial advertising or solicitations; or\n% (b) enable automated, electronic processes that send queries or data\n% to the systems of Musedoma or registry operators, except as reasonably\n% necessary to register object names or modify existing registrations.\n% All rights reserved. Musedoma reserves the right to modify these terms at\n% any time. By submitting this query, you agree to abide by this policy.\n%\n% WARNING: THIS RESPONSE IS NOT AUTHENTIC\n%\n% The selected character encoding \"US-ASCII\" is not able to represent all\n% characters in this output. Those characters that could not be represented\n% have been replaced with the unaccented ASCII equivalents. Please\n% resubmit your query with a suitable character encoding in order to receive\n% an authentic response.\n%\nDomain ID: D6137686-MUSEUM\nDomain Name: about.museum\nDomain Name ACE: about.museum\nDomain Language: \nRegistrar ID: CORE-904 (Musedoma)\nCreated On: 2005-02-04 19:32:48 GMT\nExpiration Date: 2015-02-04 19:32:48 GMT\nMaintainer: http://musedoma.museum\nStatus: ok\nRegistrant ID: C728-MUSEUM\nRegistrant Name: Cary Karp\nRegistrant Organization: Museum Domain Management Association\nRegistrant Street: Frescativaegen 40\nRegistrant City: Stockholm\nRegistrant State/Province: \nRegistrant Postal Code: 104 05\nRegistrant Country: SE\nRegistrant Phone: \nRegistrant Phone Ext: \nRegistrant Fax: \nRegistrant Fax Ext: \nRegistrant Email: ck@nic.museum\nAdmin ID: C728-MUSEUM\nAdmin Name: Cary Karp\nAdmin Organization: Museum Domain Management Association\nAdmin Street: Frescativaegen 40\nAdmin City: Stockholm\nAdmin State/Province: \nAdmin Postal Code: 104 05\nAdmin Country: SE\nAdmin Phone: \nAdmin Phone Ext: \nAdmin Fax: \nAdmin Fax Ext: \nAdmin Email: ck@nic.museum\nTech ID: C728-MUSEUM\nTech Name: Cary Karp\nTech Organization: Museum Domain Management Association\nTech Street: Frescativaegen 40\nTech City: Stockholm\nTech State/Province: \nTech Postal Code: 104 05\nTech Country: SE\nTech Phone: \nTech Phone Ext: \nTech Fax: \nTech Fax Ext: \nTech Email: ck@nic.museum\nBilling ID: C728-MUSEUM\nBilling Name: Cary Karp\nBilling Organization: Museum Domain Management Association\nBilling Street: Frescativaegen 40\nBilling City: Stockholm\nBilling State/Province: \nBilling Postal Code: 104 05\nBilling Country: SE\nBilling Phone: \nBilling Phone Ext: \nBilling Fax: \nBilling Fax Ext: \nBilling Email: ck@nic.museum\nName Server: nic.frd.se \nName Server ACE: nic.frd.se \nName Server: nic.museum 130.242.24.5\nName Server ACE: nic.museum 130.242.24.5\n\n\n"], "id": ["D6137686-MUSEUM"]}

File diff suppressed because one or more lines are too long

@ -1 +1 @@
{"updated_date": ["2013-04-06T00:00:00"], "contacts": {"admin": {"city": "Dordrecht", "fax": "+1.5555555555", "name": "Sven Slootweg", "state": "Zuid-holland", "phone": "+31.626519955", "street": "Wijnstraat 211", "country": "NL", "postalcode": "3311BV", "email": "jamsoftgamedev@gmail.com"}, "tech": {"city": "Dordrecht", "fax": "+1.5555555555", "name": "Sven Slootweg", "state": "Zuid-holland", "phone": "+31.626519955", "street": "Wijnstraat 211", "country": "NL", "postalcode": "3311BV", "email": "jamsoftgamedev@gmail.com"}, "registrant": {"city": "Dordrecht", "name": "Sven Slootweg", "state": "Zuid-holland", "street": "Wijnstraat 211", "country": "NL", "postalcode": "3311BV"}, "billing": null}, "nameservers": ["ns1.he.net", "ns2.he.net", "ns3.he.net", "ns4.he.net", "ns5.he.net"], "expiration_date": ["2014-04-07T19:40:22"], "creation_date": ["2012-04-07T12:40:00"], "raw": ["\n\nDomain Name: ANONNE.WS\nCreation Date: 2012-04-07 12:40:00Z\nRegistrar Registration Expiration Date: 2014-04-07 19:40:22Z\nRegistrar: ENOM, INC.\nReseller: NAMECHEAP.COM\nRegistrant Name: SVEN SLOOTWEG\nRegistrant Organization: \nRegistrant Street: WIJNSTRAAT 211\nRegistrant City: DORDRECHT\nRegistrant State/Province: ZUID-HOLLAND\nRegistrant Postal Code: 3311BV\nRegistrant Country: NL\nAdmin Name: SVEN SLOOTWEG\nAdmin Organization: \nAdmin Street: WIJNSTRAAT 211\nAdmin City: DORDRECHT\nAdmin State/Province: ZUID-HOLLAND\nAdmin Postal Code: 3311BV\nAdmin Country: NL\nAdmin Phone: +31.626519955\nAdmin Phone Ext: \nAdmin Fax: +1.5555555555\nAdmin Fax Ext:\nAdmin Email: JAMSOFTGAMEDEV@GMAIL.COM\nTech Name: SVEN SLOOTWEG\nTech Organization: \nTech Street: WIJNSTRAAT 211\nTech City: DORDRECHT\nTech State/Province: ZUID-HOLLAND\nTech Postal Code: 3311BV\nTech Country: NL\nTech Phone: +31.626519955\nTech Phone Ext: \nTech Fax: +1.5555555555\nTech Fax Ext: \nTech Email: JAMSOFTGAMEDEV@GMAIL.COM\nName Server: NS1.HE.NET\nName Server: NS2.HE.NET\nName Server: NS3.HE.NET\nName Server: NS4.HE.NET\nName Server: NS5.HE.NET\n\nThe data in this whois database is provided to you for information\npurposes only, that is, to assist you in obtaining information about or\nrelated to a domain name registration record. We make this information\navailable \"as is,\" and do not guarantee its accuracy. By submitting a\nwhois query, you agree that you will use this data only for lawful\npurposes and that, under no circumstances will you use this data to: (1)\nenable high volume, automated, electronic processes that stress or load\nthis whois database system providing you this information; or (2) allow,\nenable, or otherwise support the transmission of mass unsolicited,\ncommercial advertising or solicitations via direct mail, electronic\nmail, or by telephone. The compilation, repackaging, dissemination or\nother use of this data is expressly prohibited without prior written\nconsent from us. \n\nWe reserve the right to modify these terms at any time. By submitting \nthis query, you agree to abide by these terms.\nVersion 6.3 4/3/2002\n", "\n\nWelcome to the .WS Whois Server\n\nUse of this service for any purpose other\nthan determining the availability of a domain\nin the .WS TLD to be registered is strictly\nprohibited.\n\n Domain Name: ANONNE.WS\n\n Registrant Name: Use registrar whois listed below\n Registrant Email: Use registrar whois listed below\n\n Administrative Contact Email: Use registrar whois listed below\n Administrative Contact Telephone: Use registrar whois listed below\n\n Registrar Name: eNom\n Registrar Email: info@enom.com\n Registrar Telephone: 425-974-4500\n Registrar Whois: whois.enom.com\n\n Domain Created: 2012-04-07\n Domain Last Updated: 2013-04-06\n Domain Currently Expires: 2014-04-07\n\n Current Nameservers:\n\n ns1.he.net\n ns2.he.net\n ns3.he.net\n ns4.he.net\n ns5.he.net\n\n\n\n"], "whois_server": ["whois.enom.com"], "registrar": ["Enom, INC."]}
{"updated_date": ["2013-04-06T00:00:00"], "contacts": {"admin": {"city": "Dordrecht", "fax": "+1.5555555555", "name": "Sven Slootweg", "state": "Zuid-holland", "phone": "+31.626519955", "street": "Wijnstraat 211", "country": "Netherlands", "postalcode": "3311BV", "email": "jamsoftgamedev@gmail.com"}, "tech": {"city": "Dordrecht", "fax": "+1.5555555555", "name": "Sven Slootweg", "state": "Zuid-holland", "phone": "+31.626519955", "street": "Wijnstraat 211", "country": "Netherlands", "postalcode": "3311BV", "email": "jamsoftgamedev@gmail.com"}, "registrant": {"city": "Dordrecht", "name": "Sven Slootweg", "state": "Zuid-holland", "street": "Wijnstraat 211", "country": "Netherlands", "postalcode": "3311BV"}, "billing": null}, "nameservers": ["ns1.he.net", "ns2.he.net", "ns3.he.net", "ns4.he.net", "ns5.he.net"], "expiration_date": ["2014-04-07T19:40:22"], "creation_date": ["2012-04-07T12:40:00"], "raw": ["\n\nDomain Name: ANONNE.WS\nCreation Date: 2012-04-07 12:40:00Z\nRegistrar Registration Expiration Date: 2014-04-07 19:40:22Z\nRegistrar: ENOM, INC.\nReseller: NAMECHEAP.COM\nRegistrant Name: SVEN SLOOTWEG\nRegistrant Organization: \nRegistrant Street: WIJNSTRAAT 211\nRegistrant City: DORDRECHT\nRegistrant State/Province: ZUID-HOLLAND\nRegistrant Postal Code: 3311BV\nRegistrant Country: NL\nAdmin Name: SVEN SLOOTWEG\nAdmin Organization: \nAdmin Street: WIJNSTRAAT 211\nAdmin City: DORDRECHT\nAdmin State/Province: ZUID-HOLLAND\nAdmin Postal Code: 3311BV\nAdmin Country: NL\nAdmin Phone: +31.626519955\nAdmin Phone Ext: \nAdmin Fax: +1.5555555555\nAdmin Fax Ext:\nAdmin Email: JAMSOFTGAMEDEV@GMAIL.COM\nTech Name: SVEN SLOOTWEG\nTech Organization: \nTech Street: WIJNSTRAAT 211\nTech City: DORDRECHT\nTech State/Province: ZUID-HOLLAND\nTech Postal Code: 3311BV\nTech Country: NL\nTech Phone: +31.626519955\nTech Phone Ext: \nTech Fax: +1.5555555555\nTech Fax Ext: \nTech Email: JAMSOFTGAMEDEV@GMAIL.COM\nName Server: NS1.HE.NET\nName Server: NS2.HE.NET\nName Server: NS3.HE.NET\nName Server: NS4.HE.NET\nName Server: NS5.HE.NET\n\nThe data in this whois database is provided to you for information\npurposes only, that is, to assist you in obtaining information about or\nrelated to a domain name registration record. We make this information\navailable \"as is,\" and do not guarantee its accuracy. By submitting a\nwhois query, you agree that you will use this data only for lawful\npurposes and that, under no circumstances will you use this data to: (1)\nenable high volume, automated, electronic processes that stress or load\nthis whois database system providing you this information; or (2) allow,\nenable, or otherwise support the transmission of mass unsolicited,\ncommercial advertising or solicitations via direct mail, electronic\nmail, or by telephone. The compilation, repackaging, dissemination or\nother use of this data is expressly prohibited without prior written\nconsent from us. \n\nWe reserve the right to modify these terms at any time. By submitting \nthis query, you agree to abide by these terms.\nVersion 6.3 4/3/2002\n", "\n\nWelcome to the .WS Whois Server\n\nUse of this service for any purpose other\nthan determining the availability of a domain\nin the .WS TLD to be registered is strictly\nprohibited.\n\n Domain Name: ANONNE.WS\n\n Registrant Name: Use registrar whois listed below\n Registrant Email: Use registrar whois listed below\n\n Administrative Contact Email: Use registrar whois listed below\n Administrative Contact Telephone: Use registrar whois listed below\n\n Registrar Name: eNom\n Registrar Email: info@enom.com\n Registrar Telephone: 425-974-4500\n Registrar Whois: whois.enom.com\n\n Domain Created: 2012-04-07\n Domain Last Updated: 2013-04-06\n Domain Currently Expires: 2014-04-07\n\n Current Nameservers:\n\n ns1.he.net\n ns2.he.net\n ns3.he.net\n ns4.he.net\n ns5.he.net\n\n\n\n"], "whois_server": ["whois.enom.com"], "registrar": ["Enom, INC."]}

@ -1 +1 @@
{"status": ["Client Transfer Prohibited", "Renewperiod"], "updated_date": ["2013-11-16T12:22:49"], "contacts": {"admin": {"city": "Panama", "handle": "INTErkiewm5586ze", "name": "Domain Administrator", "phone": "+507.65995877", "street": "Attn: anonnews.org\nAptds. 0850-00056", "country": "PA", "postalcode": "Zona 15", "organization": "Fundacion Private Whois", "email": "52300fa7x2yb6oe6@5225b4d0pi3627q9.privatewhois.net"}, "tech": {"city": "Panama", "handle": "INTEl92g5h18b12w", "name": "Domain Administrator", "phone": "+507.65995877", "street": "Attn: anonnews.org\nAptds. 0850-00056", "country": "PA", "postalcode": "Zona 15", "organization": "Fundacion Private Whois", "email": "52300fa6vwq931xf@5225b4d0pi3627q9.privatewhois.net"}, "registrant": {"city": "Panama", "handle": "INTE381xro4k9z0m", "name": "Domain Administrator", "phone": "+507.65995877", "street": "Attn: anonnews.org\nAptds. 0850-00056", "country": "PA", "postalcode": "Zona 15", "organization": "Fundacion Private Whois", "email": "52300fa6c2nzfacc@5225b4d0pi3627q9.privatewhois.net"}, "billing": null}, "nameservers": ["lisa.ns.cloudflare.com", "ed.ns.cloudflare.com"], "expiration_date": ["2014-12-12T20:31:54"], "raw": ["Access to .ORG WHOIS information is provided to assist persons in \ndetermining the contents of a domain name registration record in the \nPublic Interest Registry registry database. The data in this record is provided by \nPublic Interest Registry for informational purposes only, and Public Interest Registry does not \nguarantee its accuracy. This service is intended only for query-based \naccess. You agree that you will use this data only for lawful purposes \nand that, under no circumstances will you use this data to: (a) allow, \nenable, or otherwise support the transmission by e-mail, telephone, or \nfacsimile of mass unsolicited, commercial advertising or solicitations \nto entities other than the data recipient's own existing customers; or \n(b) enable high volume, automated, electronic processes that send \nqueries or data to the systems of Registry Operator, a Registrar, or \nAfilias except as reasonably necessary to register domain names or \nmodify existing registrations. All rights reserved. Public Interest Registry reserves \nthe right to modify these terms at any time. By submitting this query, \nyou agree to abide by this policy. \n\nDomain ID:D160909486-LROR\nDomain Name:ANONNEWS.ORG\nCreated On:12-Dec-2010 20:31:54 UTC\nLast Updated On:16-Nov-2013 12:22:49 UTC\nExpiration Date:12-Dec-2014 20:31:54 UTC\nSponsoring Registrar:Internet.bs Corp. (R1601-LROR)\nStatus:CLIENT TRANSFER PROHIBITED\nStatus:RENEWPERIOD\nRegistrant ID:INTE381xro4k9z0m\nRegistrant Name:Domain Administrator\nRegistrant Organization:Fundacion Private Whois\nRegistrant Street1:Attn: anonnews.org\nRegistrant Street2:Aptds. 0850-00056\nRegistrant Street3:\nRegistrant City:Panama\nRegistrant State/Province:\nRegistrant Postal Code:Zona 15\nRegistrant Country:PA\nRegistrant Phone:+507.65995877\nRegistrant Phone Ext.:\nRegistrant FAX:\nRegistrant FAX Ext.:\nRegistrant Email:52300fa6c2nzfacc@5225b4d0pi3627q9.privatewhois.net\nAdmin ID:INTErkiewm5586ze\nAdmin Name:Domain Administrator\nAdmin Organization:Fundacion Private Whois\nAdmin Street1:Attn: anonnews.org\nAdmin Street2:Aptds. 0850-00056\nAdmin Street3:\nAdmin City:Panama\nAdmin State/Province:\nAdmin Postal Code:Zona 15\nAdmin Country:PA\nAdmin Phone:+507.65995877\nAdmin Phone Ext.:\nAdmin FAX:\nAdmin FAX Ext.:\nAdmin Email:52300fa7x2yb6oe6@5225b4d0pi3627q9.privatewhois.net\nTech ID:INTEl92g5h18b12w\nTech Name:Domain Administrator\nTech Organization:Fundacion Private Whois\nTech Street1:Attn: anonnews.org\nTech Street2:Aptds. 0850-00056\nTech Street3:\nTech City:Panama\nTech State/Province:\nTech Postal Code:Zona 15\nTech Country:PA\nTech Phone:+507.65995877\nTech Phone Ext.:\nTech FAX:\nTech FAX Ext.:\nTech Email:52300fa6vwq931xf@5225b4d0pi3627q9.privatewhois.net\nName Server:LISA.NS.CLOUDFLARE.COM\nName Server:ED.NS.CLOUDFLARE.COM\nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nDNSSEC:Unsigned\n\n\n\n"], "registrar": ["Internet.bs Corp. (R1601-LROR)"], "creation_date": ["2010-12-12T20:31:54", "2010-12-12T20:31:54"], "id": ["D160909486-LROR"]}
{"status": ["Client Transfer Prohibited", "Renewperiod"], "updated_date": ["2013-11-16T12:22:49"], "contacts": {"admin": {"city": "Panama", "handle": "INTErkiewm5586ze", "name": "Domain Administrator", "phone": "+507.65995877", "street": "Attn: anonnews.org\nAptds. 0850-00056", "country": "Panama", "postalcode": "Zona 15", "organization": "Fundacion Private Whois", "email": "52300fa7x2yb6oe6@5225b4d0pi3627q9.privatewhois.net"}, "tech": {"city": "Panama", "handle": "INTEl92g5h18b12w", "name": "Domain Administrator", "phone": "+507.65995877", "street": "Attn: anonnews.org\nAptds. 0850-00056", "country": "Panama", "postalcode": "Zona 15", "organization": "Fundacion Private Whois", "email": "52300fa6vwq931xf@5225b4d0pi3627q9.privatewhois.net"}, "registrant": {"city": "Panama", "handle": "INTE381xro4k9z0m", "name": "Domain Administrator", "phone": "+507.65995877", "street": "Attn: anonnews.org\nAptds. 0850-00056", "country": "Panama", "postalcode": "Zona 15", "organization": "Fundacion Private Whois", "email": "52300fa6c2nzfacc@5225b4d0pi3627q9.privatewhois.net"}, "billing": null}, "nameservers": ["lisa.ns.cloudflare.com", "ed.ns.cloudflare.com"], "expiration_date": ["2014-12-12T20:31:54"], "raw": ["Access to .ORG WHOIS information is provided to assist persons in \ndetermining the contents of a domain name registration record in the \nPublic Interest Registry registry database. The data in this record is provided by \nPublic Interest Registry for informational purposes only, and Public Interest Registry does not \nguarantee its accuracy. This service is intended only for query-based \naccess. You agree that you will use this data only for lawful purposes \nand that, under no circumstances will you use this data to: (a) allow, \nenable, or otherwise support the transmission by e-mail, telephone, or \nfacsimile of mass unsolicited, commercial advertising or solicitations \nto entities other than the data recipient's own existing customers; or \n(b) enable high volume, automated, electronic processes that send \nqueries or data to the systems of Registry Operator, a Registrar, or \nAfilias except as reasonably necessary to register domain names or \nmodify existing registrations. All rights reserved. Public Interest Registry reserves \nthe right to modify these terms at any time. By submitting this query, \nyou agree to abide by this policy. \n\nDomain ID:D160909486-LROR\nDomain Name:ANONNEWS.ORG\nCreated On:12-Dec-2010 20:31:54 UTC\nLast Updated On:16-Nov-2013 12:22:49 UTC\nExpiration Date:12-Dec-2014 20:31:54 UTC\nSponsoring Registrar:Internet.bs Corp. (R1601-LROR)\nStatus:CLIENT TRANSFER PROHIBITED\nStatus:RENEWPERIOD\nRegistrant ID:INTE381xro4k9z0m\nRegistrant Name:Domain Administrator\nRegistrant Organization:Fundacion Private Whois\nRegistrant Street1:Attn: anonnews.org\nRegistrant Street2:Aptds. 0850-00056\nRegistrant Street3:\nRegistrant City:Panama\nRegistrant State/Province:\nRegistrant Postal Code:Zona 15\nRegistrant Country:PA\nRegistrant Phone:+507.65995877\nRegistrant Phone Ext.:\nRegistrant FAX:\nRegistrant FAX Ext.:\nRegistrant Email:52300fa6c2nzfacc@5225b4d0pi3627q9.privatewhois.net\nAdmin ID:INTErkiewm5586ze\nAdmin Name:Domain Administrator\nAdmin Organization:Fundacion Private Whois\nAdmin Street1:Attn: anonnews.org\nAdmin Street2:Aptds. 0850-00056\nAdmin Street3:\nAdmin City:Panama\nAdmin State/Province:\nAdmin Postal Code:Zona 15\nAdmin Country:PA\nAdmin Phone:+507.65995877\nAdmin Phone Ext.:\nAdmin FAX:\nAdmin FAX Ext.:\nAdmin Email:52300fa7x2yb6oe6@5225b4d0pi3627q9.privatewhois.net\nTech ID:INTEl92g5h18b12w\nTech Name:Domain Administrator\nTech Organization:Fundacion Private Whois\nTech Street1:Attn: anonnews.org\nTech Street2:Aptds. 0850-00056\nTech Street3:\nTech City:Panama\nTech State/Province:\nTech Postal Code:Zona 15\nTech Country:PA\nTech Phone:+507.65995877\nTech Phone Ext.:\nTech FAX:\nTech FAX Ext.:\nTech Email:52300fa6vwq931xf@5225b4d0pi3627q9.privatewhois.net\nName Server:LISA.NS.CLOUDFLARE.COM\nName Server:ED.NS.CLOUDFLARE.COM\nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nDNSSEC:Unsigned\n\n\n\n"], "registrar": ["Internet.bs Corp. (R1601-LROR)"], "creation_date": ["2010-12-12T20:31:54", "2010-12-12T20:31:54"], "id": ["D160909486-LROR"]}

File diff suppressed because one or more lines are too long

@ -1 +1 @@
{"status": ["Active"], "updated_date": ["2013-12-25T00:00:00"], "contacts": {"admin": null, "tech": {"city": "Bangkok", "handle": "85476", "street": "296 Phayathai Road Ratchathewi", "country": "TH", "postalcode": "10400", "organization": "Asia Hotel Public Co.,Ltd."}, "registrant": {"city": "Bangkok", "street": "296 Phayathai Road Ratchathewi", "country": "TH", "postalcode": "10400", "organization": "Asia Hotel Public Co., Ltd. ( \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e40\u0e2d\u0e40\u0e0a\u0e35\u0e22\u0e42\u0e2e\u0e40\u0e15\u0e47\u0e25 \u0e08\u0e33\u0e01\u0e31\u0e14 (\u0e21\u0e2b\u0e32\u0e0a\u0e19) )"}, "billing": null}, "nameservers": ["ns1.asiahotel.co.th", "ns2.asiahotel.co.th"], "expiration_date": ["2017-01-16T00:00:00"], "creation_date": ["1999-01-17T00:00:00", "1999-01-17T00:00:00"], "raw": ["\nWhois Server Version 2.1.2\n\nDomain: ASIAHOTEL.CO.TH\nRegistrar: T.H.NIC Co., Ltd.\nName Server: NS1.ASIAHOTEL.CO.TH\nName Server: NS2.ASIAHOTEL.CO.TH\nStatus: ACTIVE\nUpdated date: 25 Dec 2013\nCreated date: 17 Jan 1999\nRenew date: 17 Jan 2014\nExp date: 16 Jan 2017\nDomain Holder: Asia Hotel Public Co., Ltd. ( \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e40\u0e2d\u0e40\u0e0a\u0e35\u0e22\u0e42\u0e2e\u0e40\u0e15\u0e47\u0e25 \u0e08\u0e33\u0e01\u0e31\u0e14 (\u0e21\u0e2b\u0e32\u0e0a\u0e19) )\n296 Phayathai Road Ratchathewi, Bangkok\n10400\nTH\n\nTech Contact: 85476\nAsia Hotel Public Co.,Ltd.\n296 Phayathai Road Ratchathewi, Bangkok\n10400\nTH\n\n\n\n>>> Last update of whois data: Fri, 27 Jun 2014 14:54:30 UTC+7 <<<\n\nFor more information please visit: https://www.thnic.co.th/whois\n\n\n"], "registrar": ["T.H.NIC Co., Ltd."]}
{"status": ["Active"], "updated_date": ["2013-12-25T00:00:00"], "contacts": {"admin": null, "tech": {"city": "Bangkok", "handle": "85476", "street": "296 Phayathai Road Ratchathewi", "country": "Thailand", "postalcode": "10400", "organization": "Asia Hotel Public Co.,Ltd."}, "registrant": {"city": "Bangkok", "street": "296 Phayathai Road Ratchathewi", "country": "Thailand", "postalcode": "10400", "organization": "Asia Hotel Public Co., Ltd. ( \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e40\u0e2d\u0e40\u0e0a\u0e35\u0e22\u0e42\u0e2e\u0e40\u0e15\u0e47\u0e25 \u0e08\u0e33\u0e01\u0e31\u0e14 (\u0e21\u0e2b\u0e32\u0e0a\u0e19) )"}, "billing": null}, "nameservers": ["ns1.asiahotel.co.th", "ns2.asiahotel.co.th"], "expiration_date": ["2017-01-16T00:00:00"], "creation_date": ["1999-01-17T00:00:00", "1999-01-17T00:00:00"], "raw": ["\nWhois Server Version 2.1.2\n\nDomain: ASIAHOTEL.CO.TH\nRegistrar: T.H.NIC Co., Ltd.\nName Server: NS1.ASIAHOTEL.CO.TH\nName Server: NS2.ASIAHOTEL.CO.TH\nStatus: ACTIVE\nUpdated date: 25 Dec 2013\nCreated date: 17 Jan 1999\nRenew date: 17 Jan 2014\nExp date: 16 Jan 2017\nDomain Holder: Asia Hotel Public Co., Ltd. ( \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e40\u0e2d\u0e40\u0e0a\u0e35\u0e22\u0e42\u0e2e\u0e40\u0e15\u0e47\u0e25 \u0e08\u0e33\u0e01\u0e31\u0e14 (\u0e21\u0e2b\u0e32\u0e0a\u0e19) )\n296 Phayathai Road Ratchathewi, Bangkok\n10400\nTH\n\nTech Contact: 85476\nAsia Hotel Public Co.,Ltd.\n296 Phayathai Road Ratchathewi, Bangkok\n10400\nTH\n\n\n\n>>> Last update of whois data: Fri, 27 Jun 2014 14:54:30 UTC+7 <<<\n\nFor more information please visit: https://www.thnic.co.th/whois\n\n\n"], "registrar": ["T.H.NIC Co., Ltd."]}

@ -1 +1 @@
{"status": ["OK"], "updated_date": ["2013-06-20T04:41:04"], "contacts": {"admin": {"city": "Tulsa", "handle": "WP684-GANDI", "name": "William Pitcock", "state": "OK", "phone": "+1.9188949052", "street": "217 E Zion St", "country": "US", "postalcode": "74106", "email": "f4256b942aa5a0a7e65f2a91e62e95c2-1580801@contact.gandi.net"}, "tech": {"city": "Tulsa", "handle": "WP684-GANDI", "name": "William Pitcock", "state": "OK", "phone": "+1.9188949052", "street": "217 E Zion St", "country": "US", "postalcode": "74106", "email": "f4256b942aa5a0a7e65f2a91e62e95c2-1580801@contact.gandi.net"}, "registrant": {"city": "Tulsa", "handle": "0-1280133-GANDI", "name": "William Pitcock", "phone": "+1.9188949052", "street": "217 E Zion St", "country": "US", "postalcode": "74106", "organization": "atheme.org", "email": "e370de2cae0d52f8b0c6da942578cef1-815986@contact.gandi.net"}, "billing": null}, "nameservers": ["c.dns.gandi.net", "b.dns.gandi.net", "a.dns.gandi.net"], "expiration_date": ["2014-06-19T22:15:59"], "raw": ["Access to .ORG WHOIS information is provided to assist persons in \ndetermining the contents of a domain name registration record in the \nPublic Interest Registry registry database. The data in this record is provided by \nPublic Interest Registry for informational purposes only, and Public Interest Registry does not \nguarantee its accuracy. This service is intended only for query-based \naccess. You agree that you will use this data only for lawful purposes \nand that, under no circumstances will you use this data to: (a) allow, \nenable, or otherwise support the transmission by e-mail, telephone, or \nfacsimile of mass unsolicited, commercial advertising or solicitations \nto entities other than the data recipient's own existing customers; or \n(b) enable high volume, automated, electronic processes that send \nqueries or data to the systems of Registry Operator, a Registrar, or \nAfilias except as reasonably necessary to register domain names or \nmodify existing registrations. All rights reserved. Public Interest Registry reserves \nthe right to modify these terms at any time. By submitting this query, \nyou agree to abide by this policy. \n\nDomain ID:D106661323-LROR\nDomain Name:ATHEME.ORG\nCreated On:19-Jun-2005 22:15:59 UTC\nLast Updated On:20-Jun-2013 04:41:04 UTC\nExpiration Date:19-Jun-2014 22:15:59 UTC\nSponsoring Registrar:Gandi SAS (R42-LROR)\nStatus:OK\nRegistrant ID:0-1280133-GANDI\nRegistrant Name:William Pitcock\nRegistrant Organization:atheme.org\nRegistrant Street1:217 E Zion St\nRegistrant Street2:\nRegistrant Street3:\nRegistrant City:Tulsa\nRegistrant State/Province:\nRegistrant Postal Code:74106\nRegistrant Country:US\nRegistrant Phone:+1.9188949052\nRegistrant Phone Ext.:\nRegistrant FAX:\nRegistrant FAX Ext.:\nRegistrant Email:e370de2cae0d52f8b0c6da942578cef1-815986@contact.gandi.net\nAdmin ID:WP684-GANDI\nAdmin Name:William Pitcock\nAdmin Street1:217 E Zion St\nAdmin Street2:\nAdmin Street3:\nAdmin City:Tulsa\nAdmin State/Province:OK\nAdmin Postal Code:74106\nAdmin Country:US\nAdmin Phone:+1.9188949052\nAdmin Phone Ext.:\nAdmin FAX:\nAdmin FAX Ext.:\nAdmin Email:f4256b942aa5a0a7e65f2a91e62e95c2-1580801@contact.gandi.net\nTech ID:WP684-GANDI\nTech Name:William Pitcock\nTech Street1:217 E Zion St\nTech Street2:\nTech Street3:\nTech City:Tulsa\nTech State/Province:OK\nTech Postal Code:74106\nTech Country:US\nTech Phone:+1.9188949052\nTech Phone Ext.:\nTech FAX:\nTech FAX Ext.:\nTech Email:f4256b942aa5a0a7e65f2a91e62e95c2-1580801@contact.gandi.net\nName Server:C.DNS.GANDI.NET\nName Server:B.DNS.GANDI.NET\nName Server:A.DNS.GANDI.NET\nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nDNSSEC:Unsigned\n\n\n"], "registrar": ["Gandi SAS (R42-LROR)"], "creation_date": ["2005-06-19T22:15:59", "2005-06-19T22:15:59"], "id": ["D106661323-LROR"]}
{"status": ["OK"], "updated_date": ["2013-06-20T04:41:04"], "contacts": {"admin": {"city": "Tulsa", "handle": "WP684-GANDI", "name": "William Pitcock", "state": "Oklahoma", "phone": "+1.9188949052", "street": "217 E Zion St", "country": "United States", "postalcode": "74106", "email": "f4256b942aa5a0a7e65f2a91e62e95c2-1580801@contact.gandi.net"}, "tech": {"city": "Tulsa", "handle": "WP684-GANDI", "name": "William Pitcock", "state": "Oklahoma", "phone": "+1.9188949052", "street": "217 E Zion St", "country": "United States", "postalcode": "74106", "email": "f4256b942aa5a0a7e65f2a91e62e95c2-1580801@contact.gandi.net"}, "registrant": {"city": "Tulsa", "handle": "0-1280133-GANDI", "name": "William Pitcock", "phone": "+1.9188949052", "street": "217 E Zion St", "country": "United States", "postalcode": "74106", "organization": "atheme.org", "email": "e370de2cae0d52f8b0c6da942578cef1-815986@contact.gandi.net"}, "billing": null}, "nameservers": ["c.dns.gandi.net", "b.dns.gandi.net", "a.dns.gandi.net"], "expiration_date": ["2014-06-19T22:15:59"], "raw": ["Access to .ORG WHOIS information is provided to assist persons in \ndetermining the contents of a domain name registration record in the \nPublic Interest Registry registry database. The data in this record is provided by \nPublic Interest Registry for informational purposes only, and Public Interest Registry does not \nguarantee its accuracy. This service is intended only for query-based \naccess. You agree that you will use this data only for lawful purposes \nand that, under no circumstances will you use this data to: (a) allow, \nenable, or otherwise support the transmission by e-mail, telephone, or \nfacsimile of mass unsolicited, commercial advertising or solicitations \nto entities other than the data recipient's own existing customers; or \n(b) enable high volume, automated, electronic processes that send \nqueries or data to the systems of Registry Operator, a Registrar, or \nAfilias except as reasonably necessary to register domain names or \nmodify existing registrations. All rights reserved. Public Interest Registry reserves \nthe right to modify these terms at any time. By submitting this query, \nyou agree to abide by this policy. \n\nDomain ID:D106661323-LROR\nDomain Name:ATHEME.ORG\nCreated On:19-Jun-2005 22:15:59 UTC\nLast Updated On:20-Jun-2013 04:41:04 UTC\nExpiration Date:19-Jun-2014 22:15:59 UTC\nSponsoring Registrar:Gandi SAS (R42-LROR)\nStatus:OK\nRegistrant ID:0-1280133-GANDI\nRegistrant Name:William Pitcock\nRegistrant Organization:atheme.org\nRegistrant Street1:217 E Zion St\nRegistrant Street2:\nRegistrant Street3:\nRegistrant City:Tulsa\nRegistrant State/Province:\nRegistrant Postal Code:74106\nRegistrant Country:US\nRegistrant Phone:+1.9188949052\nRegistrant Phone Ext.:\nRegistrant FAX:\nRegistrant FAX Ext.:\nRegistrant Email:e370de2cae0d52f8b0c6da942578cef1-815986@contact.gandi.net\nAdmin ID:WP684-GANDI\nAdmin Name:William Pitcock\nAdmin Street1:217 E Zion St\nAdmin Street2:\nAdmin Street3:\nAdmin City:Tulsa\nAdmin State/Province:OK\nAdmin Postal Code:74106\nAdmin Country:US\nAdmin Phone:+1.9188949052\nAdmin Phone Ext.:\nAdmin FAX:\nAdmin FAX Ext.:\nAdmin Email:f4256b942aa5a0a7e65f2a91e62e95c2-1580801@contact.gandi.net\nTech ID:WP684-GANDI\nTech Name:William Pitcock\nTech Street1:217 E Zion St\nTech Street2:\nTech Street3:\nTech City:Tulsa\nTech State/Province:OK\nTech Postal Code:74106\nTech Country:US\nTech Phone:+1.9188949052\nTech Phone Ext.:\nTech FAX:\nTech FAX Ext.:\nTech Email:f4256b942aa5a0a7e65f2a91e62e95c2-1580801@contact.gandi.net\nName Server:C.DNS.GANDI.NET\nName Server:B.DNS.GANDI.NET\nName Server:A.DNS.GANDI.NET\nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nDNSSEC:Unsigned\n\n\n"], "registrar": ["Gandi SAS (R42-LROR)"], "creation_date": ["2005-06-19T22:15:59", "2005-06-19T22:15:59"], "id": ["D106661323-LROR"]}

@ -1 +1 @@
{"status": ["Active"], "updated_date": ["2009-07-18T00:00:00"], "contacts": {"admin": null, "tech": {"city": "Bangkok", "handle": "74252", "street": "304 Suapha Rd.\nPomprab\nPomprab Suttruphai", "country": "TH", "postalcode": "10110", "organization": "Loxley Information Services Co., Ltd."}, "registrant": {"city": "Bangkok", "street": "BTS Building\nPhaholyothin Rd.,Lardpao\nChatujak", "country": "TH", "postalcode": "10900", "organization": "Bangkok Mass Transit System Public Company Limited (\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e23\u0e30\u0e1a\u0e1a\u0e02\u0e19\u0e2a\u0e48\u0e07\u0e21\u0e27\u0e25\u0e0a\u0e19\u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e \u0e08\u0e33\u0e01\u0e31\u0e14 (\u0e21\u0e2b\u0e32\u0e0a\u0e19))"}, "billing": null}, "nameservers": ["ns.loxinfo.co.th", "ns.tnet.co.th"], "expiration_date": ["2021-08-03T00:00:00"], "creation_date": ["1999-08-04T00:00:00", "1999-08-04T00:00:00"], "raw": ["\nWhois Server Version 2.1.2\n\nDomain: BTS.CO.TH\nRegistrar: T.H.NIC Co., Ltd.\nName Server: NS.LOXINFO.CO.TH\nName Server: NS.TNET.CO.TH\nStatus: ACTIVE\nUpdated date: 18 Jul 2009\nCreated date: 4 Aug 1999\nRenew date: 4 Aug 1999\nExp date: 3 Aug 2021\nDomain Holder: Bangkok Mass Transit System Public Company Limited (\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e23\u0e30\u0e1a\u0e1a\u0e02\u0e19\u0e2a\u0e48\u0e07\u0e21\u0e27\u0e25\u0e0a\u0e19\u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e \u0e08\u0e33\u0e01\u0e31\u0e14 (\u0e21\u0e2b\u0e32\u0e0a\u0e19))\nBTS Building, Phaholyothin Rd.,Lardpao, Chatujak, Bangkok\n10900\nTH\n\nTech Contact: 74252\nLoxley Information Services Co., Ltd.\n304 Suapha Rd., Pomprab, Pomprab Suttruphai, Bangkok\n10110\nTH\n\n\n\n>>> Last update of whois data: Fri, 27 Jun 2014 16:32:41 UTC+7 <<<\n\nFor more information please visit: https://www.thnic.co.th/whois\n\n\n"], "registrar": ["T.H.NIC Co., Ltd."]}
{"status": ["Active"], "updated_date": ["2009-07-18T00:00:00"], "contacts": {"admin": null, "tech": {"city": "Bangkok", "handle": "74252", "street": "304 Suapha Rd.\nPomprab\nPomprab Suttruphai", "country": "Thailand", "postalcode": "10110", "organization": "Loxley Information Services Co., Ltd."}, "registrant": {"city": "Bangkok", "street": "BTS Building\nPhaholyothin Rd.,Lardpao\nChatujak", "country": "Thailand", "postalcode": "10900", "organization": "Bangkok Mass Transit System Public Company Limited (\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e23\u0e30\u0e1a\u0e1a\u0e02\u0e19\u0e2a\u0e48\u0e07\u0e21\u0e27\u0e25\u0e0a\u0e19\u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e \u0e08\u0e33\u0e01\u0e31\u0e14 (\u0e21\u0e2b\u0e32\u0e0a\u0e19))"}, "billing": null}, "nameservers": ["ns.loxinfo.co.th", "ns.tnet.co.th"], "expiration_date": ["2021-08-03T00:00:00"], "creation_date": ["1999-08-04T00:00:00", "1999-08-04T00:00:00"], "raw": ["\nWhois Server Version 2.1.2\n\nDomain: BTS.CO.TH\nRegistrar: T.H.NIC Co., Ltd.\nName Server: NS.LOXINFO.CO.TH\nName Server: NS.TNET.CO.TH\nStatus: ACTIVE\nUpdated date: 18 Jul 2009\nCreated date: 4 Aug 1999\nRenew date: 4 Aug 1999\nExp date: 3 Aug 2021\nDomain Holder: Bangkok Mass Transit System Public Company Limited (\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e23\u0e30\u0e1a\u0e1a\u0e02\u0e19\u0e2a\u0e48\u0e07\u0e21\u0e27\u0e25\u0e0a\u0e19\u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e \u0e08\u0e33\u0e01\u0e31\u0e14 (\u0e21\u0e2b\u0e32\u0e0a\u0e19))\nBTS Building, Phaholyothin Rd.,Lardpao, Chatujak, Bangkok\n10900\nTH\n\nTech Contact: 74252\nLoxley Information Services Co., Ltd.\n304 Suapha Rd., Pomprab, Pomprab Suttruphai, Bangkok\n10110\nTH\n\n\n\n>>> Last update of whois data: Fri, 27 Jun 2014 16:32:41 UTC+7 <<<\n\nFor more information please visit: https://www.thnic.co.th/whois\n\n\n"], "registrar": ["T.H.NIC Co., Ltd."]}

@ -1 +1 @@
{"status": ["Connect"], "updated_date": ["2013-04-03T00:14:26", "2008-05-27T16:56:58"], "contacts": {"admin": {"city": "Lilienthal", "fax": "+49.4298939488", "name": "Mechelke Jens", "country": "DE", "changed": "2008-05-27T16:56:58+02:00", "phone": "+49.4298939487", "street": "Heidberger Strasse 1a", "postalcode": "28865", "type": "PERSON", "email": "jens@mechelke.de"}, "tech": {"city": "Lilienthal", "fax": "+49.4298939488", "name": "Mechelke Jens", "country": "DE", "changed": "2008-05-27T16:56:58+02:00", "phone": "+49.4298939487", "street": "Heidberger Strasse 1a", "postalcode": "28865", "type": "PERSON", "email": "jens@mechelke.de"}, "registrant": null, "billing": null}, "nameservers": ["ns1.parkingcrew.net", "ns2.parkingcrew.net"], "raw": ["% Copyright (c) 2010 by DENIC\n% Version: 2.0\n% \n% Restricted rights.\n% \n% Terms and Conditions of Use\n% \n% The data in this record is provided by DENIC for informational purposes only.\n% DENIC does not guarantee its accuracy and cannot, under any circumstances,\n% be held liable in case the stored information would prove to be wrong,\n% incomplete or not accurate in any sense.\n% \n% All the domain data that is visible in the whois service is protected by law.\n% It is not permitted to use it for any purpose other than technical or\n% administrative requirements associated with the operation of the Internet.\n% It is explicitly forbidden to extract, copy and/or use or re-utilise in any\n% form and by any means (electronically or not) the whole or a quantitatively\n% or qualitatively substantial part of the contents of the whois database\n% without prior and explicit written permission by DENIC.\n% It is prohibited, in particular, to use it for transmission of unsolicited\n% and/or commercial and/or advertising by phone, fax, e-mail or for any similar\n% purposes.\n% \n% By maintaining the connection you assure that you have a legitimate interest\n% in the data and that you will only use it for the stated purposes. You are\n% aware that DENIC maintains the right to initiate legal proceedings against\n% you in the event of any breach of this assurance and to bar you from using\n% its whois service.\n% \n% The DENIC whois service on port 43 never discloses any information concerning\n% the domain holder/administrative contact. Information concerning the domain\n% holder/administrative contact can be obtained through use of our web-based\n% whois service available at the DENIC website:\n% http://www.denic.de/en/domains/whois-service/web-whois.html\n% \n\nDomain: b\u00e4ckerei.de\nDomain-Ace: xn--bckerei-5wa.de\nNserver: ns1.parkingcrew.net\nNserver: ns2.parkingcrew.net\nStatus: connect\nChanged: 2013-04-03T00:14:26+02:00\n\n[Tech-C]\nType: PERSON\nName: Mechelke Jens\nAddress: Heidberger Strasse 1a\nPostalCode: 28865\nCity: Lilienthal\nCountryCode: DE\nPhone: +49.4298939487\nFax: +49.4298939488\nEmail: jens@mechelke.de\nChanged: 2008-05-27T16:56:58+02:00\n\n[Zone-C]\nType: PERSON\nName: Mechelke Jens\nAddress: Heidberger Strasse 1a\nPostalCode: 28865\nCity: Lilienthal\nCountryCode: DE\nPhone: +49.4298939487\nFax: +49.4298939488\nEmail: jens@mechelke.de\nChanged: 2008-05-27T16:56:58+02:00\n\n"]}
{"status": ["Connect"], "updated_date": ["2013-04-03T00:14:26", "2008-05-27T16:56:58"], "contacts": {"admin": {"city": "Lilienthal", "fax": "+49.4298939488", "name": "Mechelke Jens", "changed": "2008-05-27T16:56:58+02:00", "phone": "+49.4298939487", "street": "Heidberger Strasse 1a", "country": "Germany", "postalcode": "28865", "type": "PERSON", "email": "jens@mechelke.de"}, "tech": {"city": "Lilienthal", "fax": "+49.4298939488", "name": "Mechelke Jens", "changed": "2008-05-27T16:56:58+02:00", "phone": "+49.4298939487", "street": "Heidberger Strasse 1a", "country": "Germany", "postalcode": "28865", "type": "PERSON", "email": "jens@mechelke.de"}, "registrant": null, "billing": null}, "nameservers": ["ns1.parkingcrew.net", "ns2.parkingcrew.net"], "raw": ["% Copyright (c) 2010 by DENIC\n% Version: 2.0\n% \n% Restricted rights.\n% \n% Terms and Conditions of Use\n% \n% The data in this record is provided by DENIC for informational purposes only.\n% DENIC does not guarantee its accuracy and cannot, under any circumstances,\n% be held liable in case the stored information would prove to be wrong,\n% incomplete or not accurate in any sense.\n% \n% All the domain data that is visible in the whois service is protected by law.\n% It is not permitted to use it for any purpose other than technical or\n% administrative requirements associated with the operation of the Internet.\n% It is explicitly forbidden to extract, copy and/or use or re-utilise in any\n% form and by any means (electronically or not) the whole or a quantitatively\n% or qualitatively substantial part of the contents of the whois database\n% without prior and explicit written permission by DENIC.\n% It is prohibited, in particular, to use it for transmission of unsolicited\n% and/or commercial and/or advertising by phone, fax, e-mail or for any similar\n% purposes.\n% \n% By maintaining the connection you assure that you have a legitimate interest\n% in the data and that you will only use it for the stated purposes. You are\n% aware that DENIC maintains the right to initiate legal proceedings against\n% you in the event of any breach of this assurance and to bar you from using\n% its whois service.\n% \n% The DENIC whois service on port 43 never discloses any information concerning\n% the domain holder/administrative contact. Information concerning the domain\n% holder/administrative contact can be obtained through use of our web-based\n% whois service available at the DENIC website:\n% http://www.denic.de/en/domains/whois-service/web-whois.html\n% \n\nDomain: b\u00e4ckerei.de\nDomain-Ace: xn--bckerei-5wa.de\nNserver: ns1.parkingcrew.net\nNserver: ns2.parkingcrew.net\nStatus: connect\nChanged: 2013-04-03T00:14:26+02:00\n\n[Tech-C]\nType: PERSON\nName: Mechelke Jens\nAddress: Heidberger Strasse 1a\nPostalCode: 28865\nCity: Lilienthal\nCountryCode: DE\nPhone: +49.4298939487\nFax: +49.4298939488\nEmail: jens@mechelke.de\nChanged: 2008-05-27T16:56:58+02:00\n\n[Zone-C]\nType: PERSON\nName: Mechelke Jens\nAddress: Heidberger Strasse 1a\nPostalCode: 28865\nCity: Lilienthal\nCountryCode: DE\nPhone: +49.4298939487\nFax: +49.4298939488\nEmail: jens@mechelke.de\nChanged: 2008-05-27T16:56:58+02:00\n\n"]}

File diff suppressed because one or more lines are too long

@ -1 +1 @@
{"status": ["Client Transfer Prohibited"], "updated_date": ["2013-05-03T20:53:09"], "contacts": {"admin": {"city": "San Mateo", "handle": "CP-157087", "name": "Reg 11 c/o Dynadot Privacy", "state": "CA", "phone": "+1.6505854708", "street": "PO Box 701", "country": "US", "postalcode": "94401", "email": "privacy@dynadot.com"}, "tech": {"city": "San Mateo", "handle": "CP-157087", "name": "Reg 11 c/o Dynadot Privacy", "state": "CA", "phone": "+1.6505854708", "street": "PO Box 701", "country": "US", "postalcode": "94401", "email": "privacy@dynadot.com"}, "registrant": {"city": "San Mateo", "handle": "CP-157087", "name": "Reg 11 c/o Dynadot Privacy", "state": "CA", "phone": "+1.6505854708", "street": "PO Box 701", "country": "US", "postalcode": "94401", "email": "privacy@dynadot.com"}, "billing": null}, "nameservers": ["ns4.he.net", "ns5.he.net"], "expiration_date": ["2013-12-18T00:52:32"], "raw": ["WHOIS TERMS & CONDITIONS: Access to .ME WHOIS information is provided to \nassist persons in determining the contents of a domain name registration \nrecord in the .ME registry database. The data in this record is provided by \n.ME Registry for informational purposes only, and .ME Registry does not \nguarantee its accuracy. This service is intended only for query-based \naccess. You agree that you will use this data only for lawful purposes \nand that, under no circumstances will you use this data to: (a) allow, \nenable, or otherwise support the transmission by e-mail, telephone, \nfacsimile, or other electronic processes of mass unsolicited, commercial \nadvertising or solicitations to entities other than the data recipient's own \nexisting customers; or (b) enable high volume, automated, electronic \nprocesses that send queries or data to the systems of Registry Operator, \nexcept as reasonably necessary to register domain names or modify existing \nregistrations. All rights reserved. .ME Registry reserves the right to modify \nthese terms at any time. By submitting this query, you agree to abide by this \npolicy.\n\nDomain ID:D6684477-ME\nDomain Name:DEFUNCTKERNEL.ME\nDomain Create Date:18-Dec-2012 00:52:32 UTC\nDomain Last Updated Date:03-May-2013 20:53:09 UTC\nDomain Expiration Date:18-Dec-2013 00:52:32 UTC\nLast Transferred Date:\nSponsoring Registrar:Dynadot LLC R30-ME\nCreated by:Dynadot LLC R30-ME\nLast Updated by Registrar:Dynadot LLC R30-ME\nDomain Status:CLIENT TRANSFER PROHIBITED\nRegistrant ID:CP-157087\nRegistrant Name:Reg 11 c/o Dynadot Privacy\nRegistrant Organization:\nRegistrant Address:PO Box 701\nRegistrant Address2:\nRegistrant Address3:\nRegistrant City:San Mateo\nRegistrant State/Province:CA\nRegistrant Country/Economy:US\nRegistrant Postal Code:94401\nRegistrant Phone:+1.6505854708\nRegistrant Phone Ext.:\nRegistrant FAX:\nRegistrant FAX Ext.:\nRegistrant E-mail:privacy@dynadot.com\nAdmin ID:CP-157087\nAdmin Name:Reg 11 c/o Dynadot Privacy\nAdmin Organization:\nAdmin Address:PO Box 701\nAdmin Address2:\nAdmin Address3:\nAdmin City:San Mateo\nAdmin State/Province:CA\nAdmin Country/Economy:US\nAdmin Postal Code:94401\nAdmin Phone:+1.6505854708\nAdmin Phone Ext.:\nAdmin FAX:\nAdmin FAX Ext.:\nAdmin E-mail:privacy@dynadot.com\nTech ID:CP-157087\nTech Name:Reg 11 c/o Dynadot Privacy\nTech Organization:\nTech Address:PO Box 701\nTech Address2:\nTech Address3:\nTech City:San Mateo\nTech State/Province:CA\nTech Country/Economy:US\nTech Postal Code:94401\nTech Phone:+1.6505854708\nTech Phone Ext.:\nTech FAX:\nTech FAX Ext.:\nTech E-mail:privacy@dynadot.com\nNameservers:NS4.HE.NET\nNameservers:NS5.HE.NET\nNameservers: \nNameservers: \nNameservers: \nNameservers: \nNameservers: \nNameservers: \nNameservers: \nNameservers: \nNameservers: \nNameservers: \nNameservers: \nDNSSEC:Unsigned\n\n\n\n"], "registrar": ["Dynadot LLC R30-ME"], "creation_date": ["2012-12-18T00:52:32", "2012-12-18T00:52:32"], "id": ["D6684477-ME"]}
{"status": ["Client Transfer Prohibited"], "updated_date": ["2013-05-03T20:53:09"], "contacts": {"admin": {"city": "San Mateo", "handle": "CP-157087", "name": "Reg 11 c/o Dynadot Privacy", "state": "California", "phone": "+1.6505854708", "street": "PO Box 701", "country": "United States", "postalcode": "94401", "email": "privacy@dynadot.com"}, "tech": {"city": "San Mateo", "handle": "CP-157087", "name": "Reg 11 c/o Dynadot Privacy", "state": "California", "phone": "+1.6505854708", "street": "PO Box 701", "country": "United States", "postalcode": "94401", "email": "privacy@dynadot.com"}, "registrant": {"city": "San Mateo", "handle": "CP-157087", "name": "Reg 11 c/o Dynadot Privacy", "state": "California", "phone": "+1.6505854708", "street": "PO Box 701", "country": "United States", "postalcode": "94401", "email": "privacy@dynadot.com"}, "billing": null}, "nameservers": ["ns4.he.net", "ns5.he.net"], "expiration_date": ["2013-12-18T00:52:32"], "raw": ["WHOIS TERMS & CONDITIONS: Access to .ME WHOIS information is provided to \nassist persons in determining the contents of a domain name registration \nrecord in the .ME registry database. The data in this record is provided by \n.ME Registry for informational purposes only, and .ME Registry does not \nguarantee its accuracy. This service is intended only for query-based \naccess. You agree that you will use this data only for lawful purposes \nand that, under no circumstances will you use this data to: (a) allow, \nenable, or otherwise support the transmission by e-mail, telephone, \nfacsimile, or other electronic processes of mass unsolicited, commercial \nadvertising or solicitations to entities other than the data recipient's own \nexisting customers; or (b) enable high volume, automated, electronic \nprocesses that send queries or data to the systems of Registry Operator, \nexcept as reasonably necessary to register domain names or modify existing \nregistrations. All rights reserved. .ME Registry reserves the right to modify \nthese terms at any time. By submitting this query, you agree to abide by this \npolicy.\n\nDomain ID:D6684477-ME\nDomain Name:DEFUNCTKERNEL.ME\nDomain Create Date:18-Dec-2012 00:52:32 UTC\nDomain Last Updated Date:03-May-2013 20:53:09 UTC\nDomain Expiration Date:18-Dec-2013 00:52:32 UTC\nLast Transferred Date:\nSponsoring Registrar:Dynadot LLC R30-ME\nCreated by:Dynadot LLC R30-ME\nLast Updated by Registrar:Dynadot LLC R30-ME\nDomain Status:CLIENT TRANSFER PROHIBITED\nRegistrant ID:CP-157087\nRegistrant Name:Reg 11 c/o Dynadot Privacy\nRegistrant Organization:\nRegistrant Address:PO Box 701\nRegistrant Address2:\nRegistrant Address3:\nRegistrant City:San Mateo\nRegistrant State/Province:CA\nRegistrant Country/Economy:US\nRegistrant Postal Code:94401\nRegistrant Phone:+1.6505854708\nRegistrant Phone Ext.:\nRegistrant FAX:\nRegistrant FAX Ext.:\nRegistrant E-mail:privacy@dynadot.com\nAdmin ID:CP-157087\nAdmin Name:Reg 11 c/o Dynadot Privacy\nAdmin Organization:\nAdmin Address:PO Box 701\nAdmin Address2:\nAdmin Address3:\nAdmin City:San Mateo\nAdmin State/Province:CA\nAdmin Country/Economy:US\nAdmin Postal Code:94401\nAdmin Phone:+1.6505854708\nAdmin Phone Ext.:\nAdmin FAX:\nAdmin FAX Ext.:\nAdmin E-mail:privacy@dynadot.com\nTech ID:CP-157087\nTech Name:Reg 11 c/o Dynadot Privacy\nTech Organization:\nTech Address:PO Box 701\nTech Address2:\nTech Address3:\nTech City:San Mateo\nTech State/Province:CA\nTech Country/Economy:US\nTech Postal Code:94401\nTech Phone:+1.6505854708\nTech Phone Ext.:\nTech FAX:\nTech FAX Ext.:\nTech E-mail:privacy@dynadot.com\nNameservers:NS4.HE.NET\nNameservers:NS5.HE.NET\nNameservers: \nNameservers: \nNameservers: \nNameservers: \nNameservers: \nNameservers: \nNameservers: \nNameservers: \nNameservers: \nNameservers: \nNameservers: \nDNSSEC:Unsigned\n\n\n\n"], "registrar": ["Dynadot LLC R30-ME"], "creation_date": ["2012-12-18T00:52:32", "2012-12-18T00:52:32"], "id": ["D6684477-ME"]}

@ -1 +1 @@
{"nameservers": ["auth50.ns.de.uu.net", "auth00.ns.de.uu.net", "ns0.ja.net", "ns2.ja.net", "ns3.ja.net", "ns4.ja.net", "ns1.surfnet.nl"], "status": ["No registration status listed."], "contacts": {"admin": null, "tech": null, "registrant": {"city": "London", "name": "UK Cabinet Office", "street": "Government Digital Service\nAviation House, 6th floor\n125 Kingsway", "country": "GB", "postalcode": "OX11 OSG"}, "billing": null}, "registrar": ["No registrar listed. This domain is directly registered with Nominet."], "raw": [" Domain name:\n gov.uk\n\n Registrant:\n UK Cabinet Office\n\n Registrant type:\n UK Government Body\n\n Registrant's address:\n Government Digital Service\n Aviation House, 6th floor\n 125 Kingsway\n London\n OX11 OSG\n GB\n\n Registrar:\n No registrar listed. This domain is directly registered with Nominet.\n\n Relevant dates:\n Registered on: before Aug-1996\n Registration status:\n No registration status listed.\n\n Name servers:\n ns0.ja.net. \n ns2.ja.net. \n ns3.ja.net. \n ns4.ja.net. \n auth50.ns.de.uu.net. \n auth00.ns.de.uu.net. \n ns1.surfnet.nl. \n\n\n WHOIS lookup made at 16:56:04 23-May-2014\n\n-- \nThis WHOIS information is provided for free by Nominet UK the central registry\nfor .uk domain names. This information and the .uk WHOIS are:\n\n Copyright Nominet UK 1996 - 2014.\n\nYou may not access the .uk WHOIS or use any data from it except as permitted\nby the terms of use available in full at http://www.nominet.org.uk/whoisterms,\nwhich includes restrictions on: (A) use of the data for advertising, or its\nrepackaging, recompilation, redistribution or reuse (B) obscuring, removing\nor hiding any or all of this notice and (C) exceeding query rate or volume\nlimits. The data is provided on an 'as-is' basis and may lag behind the\nregister. Access may be withdrawn or restricted at any time. \n\n"]}
{"nameservers": ["auth50.ns.de.uu.net", "auth00.ns.de.uu.net", "ns0.ja.net", "ns2.ja.net", "ns3.ja.net", "ns4.ja.net", "ns1.surfnet.nl"], "status": ["No registration status listed."], "contacts": {"admin": null, "tech": null, "registrant": {"city": "London", "name": "UK Cabinet Office", "street": "Government Digital Service\nAviation House, 6th floor\n125 Kingsway", "country": "United Kingdom", "postalcode": "OX11 OSG"}, "billing": null}, "registrar": ["No registrar listed. This domain is directly registered with Nominet."], "raw": [" Domain name:\n gov.uk\n\n Registrant:\n UK Cabinet Office\n\n Registrant type:\n UK Government Body\n\n Registrant's address:\n Government Digital Service\n Aviation House, 6th floor\n 125 Kingsway\n London\n OX11 OSG\n GB\n\n Registrar:\n No registrar listed. This domain is directly registered with Nominet.\n\n Relevant dates:\n Registered on: before Aug-1996\n Registration status:\n No registration status listed.\n\n Name servers:\n ns0.ja.net. \n ns2.ja.net. \n ns3.ja.net. \n ns4.ja.net. \n auth50.ns.de.uu.net. \n auth00.ns.de.uu.net. \n ns1.surfnet.nl. \n\n\n WHOIS lookup made at 16:56:04 23-May-2014\n\n-- \nThis WHOIS information is provided for free by Nominet UK the central registry\nfor .uk domain names. This information and the .uk WHOIS are:\n\n Copyright Nominet UK 1996 - 2014.\n\nYou may not access the .uk WHOIS or use any data from it except as permitted\nby the terms of use available in full at http://www.nominet.org.uk/whoisterms,\nwhich includes restrictions on: (A) use of the data for advertising, or its\nrepackaging, recompilation, redistribution or reuse (B) obscuring, removing\nor hiding any or all of this notice and (C) exceeding query rate or volume\nlimits. The data is provided on an 'as-is' basis and may lag behind the\nregister. Access may be withdrawn or restricted at any time. \n\n"]}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -1 +1 @@
{"status": ["ok"], "updated_date": ["2013-08-11T19:48:03"], "contacts": {"admin": {"city": "Bruxelles", "fax": "+32.22355699", "handle": "Edns-a3324733", "name": "Dulieu Arnaud", "phone": "+32.25374400", "street": "Globe village chaussee Alsemberg 1001", "country": "BE", "postalcode": "1180", "organization": "Mostra s.a.", "email": "webadmin@mostra.com"}, "tech": {"city": "Leudelange", "handle": "edns-Technical", "name": "Anouar Adlani", "phone": "+352.263725200", "street": "2 Rue Leon Laval", "country": "LU", "postalcode": "L-3372", "organization": "Eurodns S.A.", "email": "hostmaster@eurodns.com"}, "registrant": {"city": "Bruxelles", "fax": "+32.22355699", "handle": "Edns-r2265236", "name": "Dulieu Arnaud", "phone": "+32.25374400", "street": "Globe village chaussee Alsemberg 1001", "country": "BE", "postalcode": "1180", "organization": "Mostra s.a.", "email": "webadmin@mostra.com"}, "billing": null}, "nameservers": ["ns1.eurodns.com", "ns2.eurodns.com", "ns3.eurodns.com", "ns4.eurodns.com"], "expiration_date": ["2014-05-28T12:21:28"], "raw": ["Domain Name:EVALSED.INFO\nDomain ID: D2689149-LRMS\nCreation Date: 2003-05-28T12:21:28Z\nUpdated Date: 2013-08-11T19:48:03Z\nRegistry Expiry Date: 2014-05-28T12:21:28Z\nSponsoring Registrar:EuroDNS SA (R505-LRMS)\nSponsoring Registrar IANA ID: 1052\nWHOIS Server: \nReferral URL: \nDomain Status: ok\nRegistrant ID:Edns-r2265236\nRegistrant Name:Dulieu Arnaud\nRegistrant Organization:Mostra s.a.\nRegistrant Street: Globe village chaussee Alsemberg 1001\nRegistrant City:Bruxelles\nRegistrant State/Province:\nRegistrant Postal Code:1180\nRegistrant Country:BE\nRegistrant Phone:+32.25374400\nRegistrant Phone Ext: \nRegistrant Fax: +32.22355699\nRegistrant Fax Ext: \nRegistrant Email:webadmin@mostra.com\nAdmin ID:Edns-a3324733\nAdmin Name:Dulieu Arnaud\nAdmin Organization:Mostra s.a.\nAdmin Street: Globe village chaussee Alsemberg 1001\nAdmin City:Bruxelles\nAdmin State/Province:\nAdmin Postal Code:1180\nAdmin Country:BE\nAdmin Phone:+32.25374400\nAdmin Phone Ext: \nAdmin Fax: +32.22355699\nAdmin Fax Ext: \nAdmin Email:webadmin@mostra.com\nBilling ID:Edns-b3324733\nBilling Name:Dulieu Arnaud\nBilling Organization:Mostra s.a.\nBilling Street: Globe village chaussee Alsemberg 1001\nBilling City:Bruxelles\nBilling State/Province:\nBilling Postal Code:1180\nBilling Country:BE\nBilling Phone:+32.25374400\nBilling Phone Ext: \nBilling Fax: +32.22355699\nBilling Fax Ext: \nBilling Email:webadmin@mostra.com\nTech ID:edns-Technical\nTech Name:Anouar Adlani\nTech Organization:Eurodns S.A.\nTech Street: 2 Rue Leon Laval\nTech City:Leudelange\nTech State/Province:\nTech Postal Code:L-3372\nTech Country:LU\nTech Phone:+352.263725200\nTech Phone Ext: \nTech Fax: \nTech Fax Ext: \nTech Email:hostmaster@eurodns.com\nName Server:NS1.EURODNS.COM\nName Server:NS2.EURODNS.COM\nName Server:NS3.EURODNS.COM\nName Server:NS4.EURODNS.COM\nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nDNSSEC:Unsigned\n\nAccess to AFILIAS WHOIS information is provided to assist persons in determining the contents of a domain name registration record in the Afilias registry database. The data in this record is provided by Afilias Limited for informational purposes only, and Afilias does not guarantee its accuracy. This service is intended only for query-based access. You agree that you will use this data only for lawful purposes and that, under no circumstances will you use this data to(a) allow, enable, or otherwise support the transmission by e-mail, telephone, or facsimile of mass unsolicited, commercial advertising or solicitations to entities other than the data recipient's own existing customers; or (b) enable high volume, automated, electronic processes that send queries or data to the systems of Registry Operator, a Registrar, or Afilias except as reasonably necessary to register domain names or modify existing registrations. All rights reserved. Afilias reserves the right to modify these terms at any time. By submitting this query, you agree to abide by this policy.\n\n\n\n"], "registrar": ["EuroDNS SA (R505-LRMS)"], "creation_date": ["2003-05-28T12:21:28"], "id": ["D2689149-LRMS"]}
{"status": ["ok"], "updated_date": ["2013-08-11T19:48:03"], "contacts": {"admin": {"city": "Bruxelles", "fax": "+32.22355699", "handle": "Edns-a3324733", "name": "Dulieu Arnaud", "phone": "+32.25374400", "street": "Globe village chaussee Alsemberg 1001", "country": "Belgium", "postalcode": "1180", "organization": "Mostra s.a.", "email": "webadmin@mostra.com"}, "tech": {"city": "Leudelange", "handle": "edns-Technical", "name": "Anouar Adlani", "phone": "+352.263725200", "street": "2 Rue Leon Laval", "country": "Luxembourg", "postalcode": "L-3372", "organization": "Eurodns S.A.", "email": "hostmaster@eurodns.com"}, "registrant": {"city": "Bruxelles", "fax": "+32.22355699", "handle": "Edns-r2265236", "name": "Dulieu Arnaud", "phone": "+32.25374400", "street": "Globe village chaussee Alsemberg 1001", "country": "Belgium", "postalcode": "1180", "organization": "Mostra s.a.", "email": "webadmin@mostra.com"}, "billing": null}, "nameservers": ["ns1.eurodns.com", "ns2.eurodns.com", "ns3.eurodns.com", "ns4.eurodns.com"], "expiration_date": ["2014-05-28T12:21:28"], "raw": ["Domain Name:EVALSED.INFO\nDomain ID: D2689149-LRMS\nCreation Date: 2003-05-28T12:21:28Z\nUpdated Date: 2013-08-11T19:48:03Z\nRegistry Expiry Date: 2014-05-28T12:21:28Z\nSponsoring Registrar:EuroDNS SA (R505-LRMS)\nSponsoring Registrar IANA ID: 1052\nWHOIS Server: \nReferral URL: \nDomain Status: ok\nRegistrant ID:Edns-r2265236\nRegistrant Name:Dulieu Arnaud\nRegistrant Organization:Mostra s.a.\nRegistrant Street: Globe village chaussee Alsemberg 1001\nRegistrant City:Bruxelles\nRegistrant State/Province:\nRegistrant Postal Code:1180\nRegistrant Country:BE\nRegistrant Phone:+32.25374400\nRegistrant Phone Ext: \nRegistrant Fax: +32.22355699\nRegistrant Fax Ext: \nRegistrant Email:webadmin@mostra.com\nAdmin ID:Edns-a3324733\nAdmin Name:Dulieu Arnaud\nAdmin Organization:Mostra s.a.\nAdmin Street: Globe village chaussee Alsemberg 1001\nAdmin City:Bruxelles\nAdmin State/Province:\nAdmin Postal Code:1180\nAdmin Country:BE\nAdmin Phone:+32.25374400\nAdmin Phone Ext: \nAdmin Fax: +32.22355699\nAdmin Fax Ext: \nAdmin Email:webadmin@mostra.com\nBilling ID:Edns-b3324733\nBilling Name:Dulieu Arnaud\nBilling Organization:Mostra s.a.\nBilling Street: Globe village chaussee Alsemberg 1001\nBilling City:Bruxelles\nBilling State/Province:\nBilling Postal Code:1180\nBilling Country:BE\nBilling Phone:+32.25374400\nBilling Phone Ext: \nBilling Fax: +32.22355699\nBilling Fax Ext: \nBilling Email:webadmin@mostra.com\nTech ID:edns-Technical\nTech Name:Anouar Adlani\nTech Organization:Eurodns S.A.\nTech Street: 2 Rue Leon Laval\nTech City:Leudelange\nTech State/Province:\nTech Postal Code:L-3372\nTech Country:LU\nTech Phone:+352.263725200\nTech Phone Ext: \nTech Fax: \nTech Fax Ext: \nTech Email:hostmaster@eurodns.com\nName Server:NS1.EURODNS.COM\nName Server:NS2.EURODNS.COM\nName Server:NS3.EURODNS.COM\nName Server:NS4.EURODNS.COM\nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nName Server: \nDNSSEC:Unsigned\n\nAccess to AFILIAS WHOIS information is provided to assist persons in determining the contents of a domain name registration record in the Afilias registry database. The data in this record is provided by Afilias Limited for informational purposes only, and Afilias does not guarantee its accuracy. This service is intended only for query-based access. You agree that you will use this data only for lawful purposes and that, under no circumstances will you use this data to(a) allow, enable, or otherwise support the transmission by e-mail, telephone, or facsimile of mass unsolicited, commercial advertising or solicitations to entities other than the data recipient's own existing customers; or (b) enable high volume, automated, electronic processes that send queries or data to the systems of Registry Operator, a Registrar, or Afilias except as reasonably necessary to register domain names or modify existing registrations. All rights reserved. Afilias reserves the right to modify these terms at any time. By submitting this query, you agree to abide by this policy.\n\n\n\n"], "registrar": ["EuroDNS SA (R505-LRMS)"], "creation_date": ["2003-05-28T12:21:28"], "id": ["D2689149-LRMS"]}

File diff suppressed because one or more lines are too long

@ -1 +1 @@
{"status": ["clientTransferProhibited"], "updated_date": ["1970-01-01T00:00:00"], "contacts": {"admin": {"city": "Charlotte", "name": "Joshua Theze", "state": "North Carolina", "phone": "+1.7049570414", "street": "4637 Carmel Vista Lane", "country": "US", "postalcode": "28226", "email": "joshua.theze@gmail.com"}, "tech": {"city": "Charlotte", "name": "Joshua Theze", "state": "North Carolina", "phone": "+1.7049570414", "street": "4637 Carmel Vista Lane", "country": "US", "postalcode": "28226", "email": "joshua.theze@gmail.com"}, "registrant": {"city": "Charlotte", "name": "Joshua Theze", "state": "North Carolina", "phone": "+1.7049570414", "street": "4637 Carmel Vista Lane", "country": "US", "postalcode": "28226", "email": "joshua.theze@gmail.com"}, "billing": null}, "nameservers": ["ns1.hopcount.nl", "ns2.hopcount.nl", "ns3.hopcount.nl"], "expiration_date": ["2014-01-02T23:46:37"], "creation_date": ["2013-01-02T23:46:37"], "raw": ["Domain Name: FOXIEPA.WS\nRegistrar WHOIS Server: whois.dynadot.com\nRegistrar URL: http://www.dynadot.com\nUpdated Date: 1970-01-01T00:00:00.0Z\nCreation Date: 2013-01-02T23:46:37.0Z\nRegistrar Registration Expiration Date: 2014-01-02T23:46:37.0Z\nRegistrar: DYNADOT LLC\nRegistrar IANA ID: 472\nRegistrar Abuse Contact Email: abuse@dynadot.com\nRegistrar Abuse Contact Phone: +1.6502620100\nDomain Status: clientTransferProhibited\nRegistrant Name: Joshua Theze\nRegistrant Street: 4637 Carmel Vista Lane\nRegistrant City: Charlotte\nRegistrant State/Province: North Carolina\nRegistrant Postal Code: 28226\nRegistrant Country: US\nRegistrant Phone: +1.7049570414\nRegistrant Email: joshua.theze@gmail.com\nAdmin Name: Joshua Theze\nAdmin Street: 4637 Carmel Vista Lane\nAdmin City: Charlotte\nAdmin State/Province: North Carolina\nAdmin Postal Code: 28226\nAdmin Country: US\nAdmin Phone: +1.7049570414\nAdmin Email: joshua.theze@gmail.com\nTech Name: Joshua Theze\nTech Street: 4637 Carmel Vista Lane\nTech City: Charlotte\nTech State/Province: North Carolina\nTech Postal Code: 28226\nTech Country: US\nTech Phone: +1.7049570414\nTech Email: joshua.theze@gmail.com\nName Server: ns1.hopcount.nl\nName Server: ns2.hopcount.nl\nName Server: ns3.hopcount.nl\nDNSSEC: notApplicable\nURL of the ICANN WHOIS Data Problem Reporting System: http://wdprs.internic.net/\n>>> Last update of WHOIS database: 2013-11-24 08:56:59 -0800 <<<\n\n", "\n\nWelcome to the .WS Whois Server\n\nUse of this service for any purpose other\nthan determining the availability of a domain\nin the .WS TLD to be registered is strictly\nprohibited.\n\n Domain Name: FOXIEPA.WS\n\n Registrant Name: Use registrar whois listed below\n Registrant Email: Use registrar whois listed below\n\n Administrative Contact Email: Use registrar whois listed below\n Administrative Contact Telephone: Use registrar whois listed below\n\n Registrar Name: Dynadot\n Registrar Email: info@dynadot.com\n Registrar Telephone: (650) 585-1961\n Registrar Whois: whois.dynadot.com\n\n Domain Created: 2013-01-02\n Domain Last Updated: 2013-01-02\n Domain Currently Expires: 2014-01-02\n\n Current Nameservers:\n\n ns1.hopcount.nl\n ns2.hopcount.nl\n ns3.hopcount.nl\n\n\n\n"], "whois_server": ["whois.dynadot.com"], "registrar": ["Dynadot LLC"], "emails": ["abuse@dynadot.com"]}
{"status": ["clientTransferProhibited"], "updated_date": ["1970-01-01T00:00:00"], "contacts": {"admin": {"city": "Charlotte", "name": "Joshua Theze", "state": "North Carolina", "phone": "+1.7049570414", "street": "4637 Carmel Vista Lane", "country": "United States", "postalcode": "28226", "email": "joshua.theze@gmail.com"}, "tech": {"city": "Charlotte", "name": "Joshua Theze", "state": "North Carolina", "phone": "+1.7049570414", "street": "4637 Carmel Vista Lane", "country": "United States", "postalcode": "28226", "email": "joshua.theze@gmail.com"}, "registrant": {"city": "Charlotte", "name": "Joshua Theze", "state": "North Carolina", "phone": "+1.7049570414", "street": "4637 Carmel Vista Lane", "country": "United States", "postalcode": "28226", "email": "joshua.theze@gmail.com"}, "billing": null}, "nameservers": ["ns1.hopcount.nl", "ns2.hopcount.nl", "ns3.hopcount.nl"], "expiration_date": ["2014-01-02T23:46:37"], "creation_date": ["2013-01-02T23:46:37"], "raw": ["Domain Name: FOXIEPA.WS\nRegistrar WHOIS Server: whois.dynadot.com\nRegistrar URL: http://www.dynadot.com\nUpdated Date: 1970-01-01T00:00:00.0Z\nCreation Date: 2013-01-02T23:46:37.0Z\nRegistrar Registration Expiration Date: 2014-01-02T23:46:37.0Z\nRegistrar: DYNADOT LLC\nRegistrar IANA ID: 472\nRegistrar Abuse Contact Email: abuse@dynadot.com\nRegistrar Abuse Contact Phone: +1.6502620100\nDomain Status: clientTransferProhibited\nRegistrant Name: Joshua Theze\nRegistrant Street: 4637 Carmel Vista Lane\nRegistrant City: Charlotte\nRegistrant State/Province: North Carolina\nRegistrant Postal Code: 28226\nRegistrant Country: US\nRegistrant Phone: +1.7049570414\nRegistrant Email: joshua.theze@gmail.com\nAdmin Name: Joshua Theze\nAdmin Street: 4637 Carmel Vista Lane\nAdmin City: Charlotte\nAdmin State/Province: North Carolina\nAdmin Postal Code: 28226\nAdmin Country: US\nAdmin Phone: +1.7049570414\nAdmin Email: joshua.theze@gmail.com\nTech Name: Joshua Theze\nTech Street: 4637 Carmel Vista Lane\nTech City: Charlotte\nTech State/Province: North Carolina\nTech Postal Code: 28226\nTech Country: US\nTech Phone: +1.7049570414\nTech Email: joshua.theze@gmail.com\nName Server: ns1.hopcount.nl\nName Server: ns2.hopcount.nl\nName Server: ns3.hopcount.nl\nDNSSEC: notApplicable\nURL of the ICANN WHOIS Data Problem Reporting System: http://wdprs.internic.net/\n>>> Last update of WHOIS database: 2013-11-24 08:56:59 -0800 <<<\n\n", "\n\nWelcome to the .WS Whois Server\n\nUse of this service for any purpose other\nthan determining the availability of a domain\nin the .WS TLD to be registered is strictly\nprohibited.\n\n Domain Name: FOXIEPA.WS\n\n Registrant Name: Use registrar whois listed below\n Registrant Email: Use registrar whois listed below\n\n Administrative Contact Email: Use registrar whois listed below\n Administrative Contact Telephone: Use registrar whois listed below\n\n Registrar Name: Dynadot\n Registrar Email: info@dynadot.com\n Registrar Telephone: (650) 585-1961\n Registrar Whois: whois.dynadot.com\n\n Domain Created: 2013-01-02\n Domain Last Updated: 2013-01-02\n Domain Currently Expires: 2014-01-02\n\n Current Nameservers:\n\n ns1.hopcount.nl\n ns2.hopcount.nl\n ns3.hopcount.nl\n\n\n\n"], "whois_server": ["whois.dynadot.com"], "registrar": ["Dynadot LLC"], "emails": ["abuse@dynadot.com"]}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -1 +1 @@
{"status": ["Active"], "updated_date": ["2014-06-19T00:00:00"], "contacts": {"admin": null, "tech": {"city": "Boise", "handle": "491182", "state": "ID", "street": "391 N. Ancestor PL", "country": "US", "postalcode": "83704", "organization": "Markmonitor"}, "registrant": {"city": "Mountain View", "state": "CA", "street": "1600 Amphitheatre Parkway", "country": "US", "postalcode": "94043", "organization": "Google Inc."}, "billing": null}, "nameservers": ["ns1.google.com", "ns2.google.com", "ns3.google.com", "ns4.google.com"], "expiration_date": ["2014-10-07T00:00:00"], "creation_date": ["2004-10-08T00:00:00", "2004-10-08T00:00:00"], "raw": ["\nWhois Server Version 2.1.2\n\nDomain: GOOGLE.CO.TH\nRegistrar: T.H.NIC Co., Ltd.\nName Server: NS1.GOOGLE.COM\nName Server: NS2.GOOGLE.COM\nName Server: NS3.GOOGLE.COM\nName Server: NS4.GOOGLE.COM\nStatus: ACTIVE\nUpdated date: 19 Jun 2014\nCreated date: 8 Oct 2004\nRenew date: 8 Oct 2013\nExp date: 7 Oct 2014\nDomain Holder: Google Inc.\n1600 Amphitheatre Parkway\nMountain View, CA 94043\n94043\nUS\n\nTech Contact: 491182\nMarkmonitor\n391 N. Ancestor PL \nBoise ID\n83704\nUS\n\n\n\n>>> Last update of whois data: Fri, 27 Jun 2014 15:46:58 UTC+7 <<<\n\nFor more information please visit: https://www.thnic.co.th/whois\n\n\n"], "registrar": ["T.H.NIC Co., Ltd."]}
{"status": ["Active"], "updated_date": ["2014-06-19T00:00:00"], "contacts": {"admin": null, "tech": {"city": "Boise", "handle": "491182", "state": "Idaho", "street": "391 N. Ancestor PL", "country": "United States", "postalcode": "83704", "organization": "Markmonitor"}, "registrant": {"city": "Mountain View", "state": "California", "street": "1600 Amphitheatre Parkway", "country": "United States", "postalcode": "94043", "organization": "Google Inc."}, "billing": null}, "nameservers": ["ns1.google.com", "ns2.google.com", "ns3.google.com", "ns4.google.com"], "expiration_date": ["2014-10-07T00:00:00"], "creation_date": ["2004-10-08T00:00:00", "2004-10-08T00:00:00"], "raw": ["\nWhois Server Version 2.1.2\n\nDomain: GOOGLE.CO.TH\nRegistrar: T.H.NIC Co., Ltd.\nName Server: NS1.GOOGLE.COM\nName Server: NS2.GOOGLE.COM\nName Server: NS3.GOOGLE.COM\nName Server: NS4.GOOGLE.COM\nStatus: ACTIVE\nUpdated date: 19 Jun 2014\nCreated date: 8 Oct 2004\nRenew date: 8 Oct 2013\nExp date: 7 Oct 2014\nDomain Holder: Google Inc.\n1600 Amphitheatre Parkway\nMountain View, CA 94043\n94043\nUS\n\nTech Contact: 491182\nMarkmonitor\n391 N. Ancestor PL \nBoise ID\n83704\nUS\n\n\n\n>>> Last update of whois data: Fri, 27 Jun 2014 15:46:58 UTC+7 <<<\n\nFor more information please visit: https://www.thnic.co.th/whois\n\n\n"], "registrar": ["T.H.NIC Co., Ltd."]}

@ -1 +1 @@
{"updated_date": ["2014-01-13T00:00:00"], "status": ["Registered until expiry date."], "contacts": {"admin": null, "tech": null, "registrant": {"city": "Mountain View", "name": "Google Inc.", "state": "CA", "street": "1600 Amphitheatre Parkway", "country": "United States", "postalcode": "94043"}, "billing": null}, "nameservers": ["ns1.google.com", "ns2.google.com", "ns3.google.com", "ns4.google.com"], "expiration_date": ["2015-02-14T00:00:00"], "creation_date": ["1999-02-14T00:00:00", "1999-02-14T00:00:00", "1999-02-14T00:00:00"], "raw": ["\n Domain name:\n google.co.uk\n\n Registrant:\n Google Inc.\n\n Registrant type:\n Non-UK Corporation\n\n Registrant's address:\n 1600 Amphitheatre Parkway\n Mountain View\n CA\n 94043\n United States\n\n Registrar:\n Markmonitor Inc. t/a Markmonitor [Tag = MARKMONITOR]\n URL: http://www.markmonitor.com\n\n Relevant dates:\n Registered on: 14-Feb-1999\n Expiry date: 14-Feb-2015\n Last updated: 13-Jan-2014\n\n Registration status:\n Registered until expiry date.\n\n Name servers:\n ns1.google.com\n ns2.google.com\n ns3.google.com\n ns4.google.com\n\n WHOIS lookup made at 19:54:09 09-Apr-2014\n\n-- \nThis WHOIS information is provided for free by Nominet UK the central registry\nfor .uk domain names. This information and the .uk WHOIS are:\n\n Copyright Nominet UK 1996 - 2014.\n\nYou may not access the .uk WHOIS or use any data from it except as permitted\nby the terms of use available in full at http://www.nominet.org.uk/whoisterms,\nwhich includes restrictions on: (A) use of the data for advertising, or its\nrepackaging, recompilation, redistribution or reuse (B) obscuring, removing\nor hiding any or all of this notice and (C) exceeding query rate or volume\nlimits. The data is provided on an 'as-is' basis and may lag behind the\nregister. Access may be withdrawn or restricted at any time. \n\n"], "registrar": ["Markmonitor Inc. t/a Markmonitor [Tag = MARKMONITOR]"]}
{"updated_date": ["2014-01-13T00:00:00"], "status": ["Registered until expiry date."], "contacts": {"admin": null, "tech": null, "registrant": {"city": "Mountain View", "state": "California", "street": "1600 Amphitheatre Parkway", "country": "United States", "postalcode": "94043", "organization": "Google Inc."}, "billing": null}, "nameservers": ["ns1.google.com", "ns2.google.com", "ns3.google.com", "ns4.google.com"], "expiration_date": ["2015-02-14T00:00:00"], "creation_date": ["1999-02-14T00:00:00", "1999-02-14T00:00:00", "1999-02-14T00:00:00"], "raw": ["\n Domain name:\n google.co.uk\n\n Registrant:\n Google Inc.\n\n Registrant type:\n Non-UK Corporation\n\n Registrant's address:\n 1600 Amphitheatre Parkway\n Mountain View\n CA\n 94043\n United States\n\n Registrar:\n Markmonitor Inc. t/a Markmonitor [Tag = MARKMONITOR]\n URL: http://www.markmonitor.com\n\n Relevant dates:\n Registered on: 14-Feb-1999\n Expiry date: 14-Feb-2015\n Last updated: 13-Jan-2014\n\n Registration status:\n Registered until expiry date.\n\n Name servers:\n ns1.google.com\n ns2.google.com\n ns3.google.com\n ns4.google.com\n\n WHOIS lookup made at 19:54:09 09-Apr-2014\n\n-- \nThis WHOIS information is provided for free by Nominet UK the central registry\nfor .uk domain names. This information and the .uk WHOIS are:\n\n Copyright Nominet UK 1996 - 2014.\n\nYou may not access the .uk WHOIS or use any data from it except as permitted\nby the terms of use available in full at http://www.nominet.org.uk/whoisterms,\nwhich includes restrictions on: (A) use of the data for advertising, or its\nrepackaging, recompilation, redistribution or reuse (B) obscuring, removing\nor hiding any or all of this notice and (C) exceeding query rate or volume\nlimits. The data is provided on an 'as-is' basis and may lag behind the\nregister. Access may be withdrawn or restricted at any time. \n\n"], "registrar": ["Markmonitor Inc. t/a Markmonitor [Tag = MARKMONITOR]"]}

File diff suppressed because one or more lines are too long

@ -1 +1 @@
{"contacts": {"admin": {"phone": "+1.6502530000", "fax": "+1.6506188571", "name": "DNS Admin", "email": "dns-admin@google.com"}, "tech": {"phone": "+1.6502530000", "fax": "+1.6506188571", "name": "DNS Admin", "email": "dns-admin@google.com"}, "registrant": {"city": "Mountain View", "fax": "+1.6506188571", "name": "DNS Admin", "country": "US", "phone": "+1.6502530000", "state": "CA", "street": "1600 Amphitheatre Parkway", "organization": "Google Inc.", "email": "dns-admin@google.com"}, "billing": null}, "nameservers": ["ns1.google.com", "ns2.google.com", "ns3.google.com", "ns4.google.com"], "expiration_date": ["2014-11-09T00:00:00", "2014-11-09T00:00:00"], "creation_date": ["2000-08-29T00:00:00", "2000-08-29T00:00:00"], "raw": ["Domain Name: google.com.tw\n Registrant:\n Google Inc.\n DNS Admin dns-admin@google.com\n +1.6502530000\n +1.6506188571\n 1600 Amphitheatre Parkway \n Mountain View, CA\n US\n\n Administrative Contact:\n DNS Admin dns-admin@google.com\n +1.6502530000\n +1.6506188571\n\n Technical Contact:\n DNS Admin dns-admin@google.com\n +1.6502530000\n +1.6506188571\n\n Record expires on 2014-11-09 (YYYY-MM-DD)\n Record created on 2000-08-29 (YYYY-MM-DD)\n\n Domain servers in listed order:\n ns1.google.com \n ns2.google.com \n ns3.google.com \n ns4.google.com \n\nRegistration Service Provider: Markmonitor, Inc.\n\n[Provided by NeuStar Registry Gateway Services]\n\n"], "registrar": ["Markmonitor, Inc."]}
{"contacts": {"admin": {"phone": "+1.6502530000", "fax": "+1.6506188571", "name": "DNS Admin", "email": "dns-admin@google.com"}, "tech": {"phone": "+1.6502530000", "fax": "+1.6506188571", "name": "DNS Admin", "email": "dns-admin@google.com"}, "registrant": {"city": "Mountain View", "fax": "+1.6506188571", "name": "DNS Admin", "country": "United States", "phone": "+1.6502530000", "state": "California", "street": "1600 Amphitheatre Parkway", "organization": "Google Inc.", "email": "dns-admin@google.com"}, "billing": null}, "nameservers": ["ns1.google.com", "ns2.google.com", "ns3.google.com", "ns4.google.com"], "expiration_date": ["2014-11-09T00:00:00", "2014-11-09T00:00:00"], "creation_date": ["2000-08-29T00:00:00", "2000-08-29T00:00:00"], "raw": ["Domain Name: google.com.tw\n Registrant:\n Google Inc.\n DNS Admin dns-admin@google.com\n +1.6502530000\n +1.6506188571\n 1600 Amphitheatre Parkway \n Mountain View, CA\n US\n\n Administrative Contact:\n DNS Admin dns-admin@google.com\n +1.6502530000\n +1.6506188571\n\n Technical Contact:\n DNS Admin dns-admin@google.com\n +1.6502530000\n +1.6506188571\n\n Record expires on 2014-11-09 (YYYY-MM-DD)\n Record created on 2000-08-29 (YYYY-MM-DD)\n\n Domain servers in listed order:\n ns1.google.com \n ns2.google.com \n ns3.google.com \n ns4.google.com \n\nRegistration Service Provider: Markmonitor, Inc.\n\n[Provided by NeuStar Registry Gateway Services]\n\n"], "registrar": ["Markmonitor, Inc."]}

@ -1 +1 @@
{"status": ["ok"], "updated_date": ["2014-05-07T00:52:45", "2013-04-21T01:05:35"], "contacts": {"admin": {"city": "Dublin", "handle": "DUP142437129", "name": "Tsao Tu", "state": "IE", "street": "70 Sir John Rogersons Quay", "country": "IE", "postalcode": "2", "organization": "Tu Tsao", "creationdate": "2013-04-21T01:05:35", "changedate": "2013-04-21T01:05:35"}, "tech": {"city": "Dublin", "handle": "DUP430692088", "name": "Google Ireland Holdings", "state": "IE", "street": "70 Sir John Rogersons Quay", "country": "IE", "postalcode": "2", "organization": "Google Ireland Holdings", "creationdate": "2013-04-21T01:05:35", "changedate": "2013-04-21T01:05:35"}, "registrant": {"city": "Dublin", "handle": "DUP430692088", "name": "Google Ireland Holdings", "state": "IE", "street": "70 Sir John Rogersons Quay", "country": "IE", "postalcode": "2", "organization": "Google Ireland Holdings", "creationdate": "2013-04-21T01:05:35", "changedate": "2013-04-21T01:05:35"}, "billing": null}, "nameservers": ["ns1.google.com", "ns4.google.com", "ns2.google.com", "ns3.google.com"], "expiration_date": ["2015-04-21T00:00:00"], "creation_date": ["1999-12-10T00:00:00", "2013-04-21T01:05:35"], "raw": ["\n*********************************************************************\n* Please note that the following result could be a subgroup of *\n* the data contained in the database. *\n* *\n* Additional information can be visualized at: *\n* http://www.nic.it/cgi-bin/Whois/whois.cgi *\n*********************************************************************\n\nDomain: google.it\nStatus: ok\nCreated: 1999-12-10 00:00:00\nLast Update: 2014-05-07 00:52:45\nExpire Date: 2015-04-21\n\nRegistrant\n Name: Google Ireland Holdings\n Organization: Google Ireland Holdings\n ContactID: DUP430692088\n Address: 70 Sir John Rogersons Quay\n Dublin\n 2\n IE\n IE\n Created: 2013-04-21 01:05:35\n Last Update: 2013-04-21 01:05:35\n\nAdmin Contact\n Name: Tsao Tu\n Organization: Tu Tsao\n ContactID: DUP142437129\n Address: 70 Sir John Rogersons Quay\n Dublin\n 2\n IE\n IE\n Created: 2013-04-21 01:05:35\n Last Update: 2013-04-21 01:05:35\n\nTechnical Contacts\n Name: Google Ireland Holdings\n Organization: Google Ireland Holdings\n ContactID: DUP430692088\n Address: 70 Sir John Rogersons Quay\n Dublin\n 2\n IE\n IE\n Created: 2013-04-21 01:05:35\n Last Update: 2013-04-21 01:05:35\n\nRegistrar\n Organization: MarkMonitor International Limited\n Name: MARKMONITOR-REG\n Web: https://www.markmonitor.com/\n\nNameservers\n ns1.google.com\n ns4.google.com\n ns2.google.com\n ns3.google.com\n\n\n"], "registrar": ["MarkMonitor International Limited"]}
{"status": ["ok"], "updated_date": ["2014-05-07T00:52:45", "2013-04-21T01:05:35"], "contacts": {"admin": {"city": "Dublin", "handle": "DUP142437129", "name": "Tsao Tu", "state": "IE", "street": "70 Sir John Rogersons Quay", "country": "Ireland", "postalcode": "2", "organization": "Tu Tsao", "creationdate": "2013-04-21T01:05:35", "changedate": "2013-04-21T01:05:35"}, "tech": {"city": "Dublin", "handle": "DUP430692088", "name": "Google Ireland Holdings", "state": "IE", "street": "70 Sir John Rogersons Quay", "country": "Ireland", "postalcode": "2", "organization": "Google Ireland Holdings", "creationdate": "2013-04-21T01:05:35", "changedate": "2013-04-21T01:05:35"}, "registrant": {"city": "Dublin", "handle": "DUP430692088", "name": "Google Ireland Holdings", "state": "IE", "street": "70 Sir John Rogersons Quay", "country": "Ireland", "postalcode": "2", "organization": "Google Ireland Holdings", "creationdate": "2013-04-21T01:05:35", "changedate": "2013-04-21T01:05:35"}, "billing": null}, "nameservers": ["ns1.google.com", "ns4.google.com", "ns2.google.com", "ns3.google.com"], "expiration_date": ["2015-04-21T00:00:00"], "creation_date": ["1999-12-10T00:00:00", "2013-04-21T01:05:35"], "raw": ["\n*********************************************************************\n* Please note that the following result could be a subgroup of *\n* the data contained in the database. *\n* *\n* Additional information can be visualized at: *\n* http://www.nic.it/cgi-bin/Whois/whois.cgi *\n*********************************************************************\n\nDomain: google.it\nStatus: ok\nCreated: 1999-12-10 00:00:00\nLast Update: 2014-05-07 00:52:45\nExpire Date: 2015-04-21\n\nRegistrant\n Name: Google Ireland Holdings\n Organization: Google Ireland Holdings\n ContactID: DUP430692088\n Address: 70 Sir John Rogersons Quay\n Dublin\n 2\n IE\n IE\n Created: 2013-04-21 01:05:35\n Last Update: 2013-04-21 01:05:35\n\nAdmin Contact\n Name: Tsao Tu\n Organization: Tu Tsao\n ContactID: DUP142437129\n Address: 70 Sir John Rogersons Quay\n Dublin\n 2\n IE\n IE\n Created: 2013-04-21 01:05:35\n Last Update: 2013-04-21 01:05:35\n\nTechnical Contacts\n Name: Google Ireland Holdings\n Organization: Google Ireland Holdings\n ContactID: DUP430692088\n Address: 70 Sir John Rogersons Quay\n Dublin\n 2\n IE\n IE\n Created: 2013-04-21 01:05:35\n Last Update: 2013-04-21 01:05:35\n\nRegistrar\n Organization: MarkMonitor International Limited\n Name: MARKMONITOR-REG\n Web: https://www.markmonitor.com/\n\nNameservers\n ns1.google.com\n ns4.google.com\n ns2.google.com\n ns3.google.com\n\n\n"], "registrar": ["MarkMonitor International Limited"]}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -1 +1 @@
{"status": ["Live"], "nameservers": ["ns-1016.awsdns-63.net", "ns-1722.awsdns-23.co.uk", "ns-1095.awsdns-08.org", "ns-337.awsdns-42.com"], "raw": ["\nDomain : keybase.io\nStatus : Live\nExpiry : 2014-09-06\n\nNS 1 : ns-1016.awsdns-63.net\nNS 2 : ns-1722.awsdns-23.co.uk\nNS 3 : ns-1095.awsdns-08.org\nNS 4 : ns-337.awsdns-42.com\n\nOwner : Krohn, Maxwell\n : CrashMix.org\n : 902 Broadway, 4th Floor\n : New York\n : NY\n : United States\n\n\n"], "contacts": {"admin": null, "tech": null, "registrant": {"city": "New York", "name": "Krohn, Maxwell", "country": "United States", "state": "NY", "street": "902 Broadway, 4th Floor", "organization": "CrashMix.org"}, "billing": null}, "expiration_date": ["2014-09-06T00:00:00"]}
{"status": ["Live"], "nameservers": ["ns-1016.awsdns-63.net", "ns-1722.awsdns-23.co.uk", "ns-1095.awsdns-08.org", "ns-337.awsdns-42.com"], "raw": ["\nDomain : keybase.io\nStatus : Live\nExpiry : 2014-09-06\n\nNS 1 : ns-1016.awsdns-63.net\nNS 2 : ns-1722.awsdns-23.co.uk\nNS 3 : ns-1095.awsdns-08.org\nNS 4 : ns-337.awsdns-42.com\n\nOwner : Krohn, Maxwell\n : CrashMix.org\n : 902 Broadway, 4th Floor\n : New York\n : NY\n : United States\n\n\n"], "contacts": {"admin": null, "tech": null, "registrant": {"city": "New York", "name": "Krohn, Maxwell", "country": "United States", "state": "New York", "street": "902 Broadway, 4th Floor", "organization": "CrashMix.org"}, "billing": null}, "expiration_date": ["2014-09-06T00:00:00"]}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -1 +1 @@
{"updated_date": ["2010-05-09T00:00:00"], "contacts": {"admin": {"fax": "+98 21 2229 5700", "handle": "ir00-irnic", "phone": "+98 21 2229 0306", "street": "Shahid Bahonar (Niavaran) Sq.", "city": "Tehran", "country": "IR", "state": "Tehran", "organization": "Dot-IR (.ir) ccTLD Registry, Institute for Studies in Theoretical Physics and Mathematics (IPM)", "email": "info@nic.ir"}, "tech": {"handle": "as51-irnic", "name": "Alireza Saleh", "email": "arsaleh@gmail.com"}, "registrant": {"fax": "+98 21 2229 5700", "handle": "ir00-irnic", "phone": "+98 21 2229 0306", "street": "Shahid Bahonar (Niavaran) Sq.", "city": "Tehran", "country": "IR", "state": "Tehran", "organization": "Dot-IR (.ir) ccTLD Registry, Institute for Studies in Theoretical Physics and Mathematics (IPM)", "email": "info@nic.ir"}, "billing": null}, "nameservers": ["ns1.nic.ir", "ns.nic.ir", "ns5.univie.ac.at", "auth51.ns.uu.net"], "expiration_date": ["2015-05-26T00:00:00"], "raw": ["% This is the IRNIC Whois server v1.6.2.\n% Available on web at http://whois.nic.ir/\n% Find the terms and conditions of use on http://www.nic.ir/\n% \n% This server uses UTF-8 as the encoding for requests and responses.\n\n% NOTE: This output has been filtered.\n\n% Information related to 'nic.ir'\n\n\ndomain:\t\tnic.ir\nascii:\t\tnic.ir\nremarks:\t(Domain Holder) Dot-IR (.ir) ccTLD Registry, Institute for Studies in Theoretical Physics and Mathematics (IPM)\nremarks:\t(Domain Holder Address) Shahid Bahonar (Niavaran) Sq., Tehran, Tehran, IR\nholder-c:\tir00-irnic\nadmin-c:\tir00-irnic\ntech-c:\t\tas51-irnic\nnserver:\tns1.nic.ir\nnserver:\tns.nic.ir\nnserver:\tns5.univie.ac.at\nnserver:\tauth51.ns.uu.net\nlast-updated:\t2010-05-09\nexpire-date:\t2015-05-26\nsource:\t\tIRNIC # Filtered\n\nnic-hdl:\tir00-irnic\norg:\t\tDot-IR (.ir) ccTLD Registry, Institute for Studies in Theoretical Physics and Mathematics (IPM)\ne-mail:\t\tinfo@nic.ir\naddress:\tShahid Bahonar (Niavaran) Sq., Tehran, Tehran, IR\nphone:\t\t+98 21 2229 0306\nfax-no:\t\t+98 21 2229 5700\nsource:\t\tIRNIC # Filtered\n\nnic-hdl:\tas51-irnic\nperson:\t\tAlireza Saleh\ne-mail:\t\tarsaleh@gmail.com\nsource:\t\tIRNIC # Filtered\n\ndomain:\t\tnic.ir\nascii:\t\tnic.ir\nremarks:\tThis domain is only available for registration under certain conditions\nsource:\t\tIRNIC # Filtered\n\n\n"]}
{"updated_date": ["2010-05-09T00:00:00"], "contacts": {"admin": {"fax": "+98 21 2229 5700", "handle": "ir00-irnic", "phone": "+98 21 2229 0306", "street": "Shahid Bahonar (Niavaran) Sq.", "city": "Tehran", "country": "Iran", "state": "Tehran", "organization": "Dot-IR (.ir) ccTLD Registry, Institute for Studies in Theoretical Physics and Mathematics (IPM)", "email": "info@nic.ir"}, "tech": {"handle": "as51-irnic", "name": "Alireza Saleh", "email": "arsaleh@gmail.com"}, "registrant": {"fax": "+98 21 2229 5700", "handle": "ir00-irnic", "phone": "+98 21 2229 0306", "street": "Shahid Bahonar (Niavaran) Sq.", "city": "Tehran", "country": "Iran", "state": "Tehran", "organization": "Dot-IR (.ir) ccTLD Registry, Institute for Studies in Theoretical Physics and Mathematics (IPM)", "email": "info@nic.ir"}, "billing": null}, "nameservers": ["ns1.nic.ir", "ns.nic.ir", "ns5.univie.ac.at", "auth51.ns.uu.net"], "expiration_date": ["2015-05-26T00:00:00"], "raw": ["% This is the IRNIC Whois server v1.6.2.\n% Available on web at http://whois.nic.ir/\n% Find the terms and conditions of use on http://www.nic.ir/\n% \n% This server uses UTF-8 as the encoding for requests and responses.\n\n% NOTE: This output has been filtered.\n\n% Information related to 'nic.ir'\n\n\ndomain:\t\tnic.ir\nascii:\t\tnic.ir\nremarks:\t(Domain Holder) Dot-IR (.ir) ccTLD Registry, Institute for Studies in Theoretical Physics and Mathematics (IPM)\nremarks:\t(Domain Holder Address) Shahid Bahonar (Niavaran) Sq., Tehran, Tehran, IR\nholder-c:\tir00-irnic\nadmin-c:\tir00-irnic\ntech-c:\t\tas51-irnic\nnserver:\tns1.nic.ir\nnserver:\tns.nic.ir\nnserver:\tns5.univie.ac.at\nnserver:\tauth51.ns.uu.net\nlast-updated:\t2010-05-09\nexpire-date:\t2015-05-26\nsource:\t\tIRNIC # Filtered\n\nnic-hdl:\tir00-irnic\norg:\t\tDot-IR (.ir) ccTLD Registry, Institute for Studies in Theoretical Physics and Mathematics (IPM)\ne-mail:\t\tinfo@nic.ir\naddress:\tShahid Bahonar (Niavaran) Sq., Tehran, Tehran, IR\nphone:\t\t+98 21 2229 0306\nfax-no:\t\t+98 21 2229 5700\nsource:\t\tIRNIC # Filtered\n\nnic-hdl:\tas51-irnic\nperson:\t\tAlireza Saleh\ne-mail:\t\tarsaleh@gmail.com\nsource:\t\tIRNIC # Filtered\n\ndomain:\t\tnic.ir\nascii:\t\tnic.ir\nremarks:\tThis domain is only available for registration under certain conditions\nsource:\t\tIRNIC # Filtered\n\n\n"]}

@ -1 +1 @@
{"status": ["ok"], "contacts": {"admin": {"city": "Gaza", "fax": "972-08-2861618", "handle": "24164-PS", "name": "Marwan Radwan", "phone": "972-08-2861617 ext. 059-781440", "street": "El Wehda St.- El Amal Building", "country": "PS"}, "tech": {"city": "Gaza", "fax": "972-08-2861618", "handle": "24164-PS", "name": "Marwan Radwan", "phone": "972-08-2861617 ext. 059-781440", "street": "El Wehda St.- El Amal Building", "country": "PS"}, "registrant": {"city": "Gaza", "fax": "970-8-2861618", "handle": "24124-PS", "name": "Palestinian National Internet Naming Authority", "phone": "970-8-2861617", "street": "El Wehda St.- El Amal Building - Gaza", "country": "PS"}, "billing": {"city": "Gaza", "fax": "972-08-2861618", "handle": "24164-PS", "name": "Marwan Radwan", "phone": "972-08-2861617 ext. 059-781440", "street": "El Wehda St.- El Amal Building", "country": "PS"}}, "nameservers": ["ns1.pnina.ps", "ns2.pnina.ps"], "expiration_date": ["2014-07-28T22:00:00"], "creation_date": ["2004-07-28T22:00:00"], "raw": ["Domain Name: nic.ps\nDomain ID: 24353-PS\nWHOIS Server: Palestine PS/Felasteen ccTLD Registry\nReferral URL: \nCreation Date: 2004-07-28T22:00:00.000Z\nRegistry Expiry Date: 2014-07-28T22:00:00.000Z\nSponsoring Registrar: Palestinian National Internet Naming Authority (PNINA)\nSponsoring Registrar IANA ID: \nDomain Status: ok\n\nRegistrant ID: 24124-PS\nRegistrant Name: Palestinian National Internet Naming Authority\nRegistrant Street: El Wehda St.- El Amal Building - Gaza\nRegistrant City: GAZA\nRegistrant State/Province: \nRegistrant Postal Code: \nRegistrant Country: PS\nRegistrant Phone: 970-8-2861617\nRegistrant Phone Ext: \nRegistrant Fax: 970-8-2861618\nRegistrant Fax Ext: \n\nAdmin ID: 24164-PS\nAdmin Name: Marwan Radwan\nAdmin Street: El Wehda St.- El Amal Building\nAdmin City: Gaza\nAdmin State/Province: \nAdmin Postal Code: \nAdmin Country: PS\nAdmin Phone: 972-08-2861617\nAdmin Phone Ext: 059-781440\nAdmin Fax: 972-08-2861618\nAdmin Fax Ext: \n\nBilling ID: 24164-PS\nBilling Name: Marwan Radwan\nBilling Street: El Wehda St.- El Amal Building\nBilling City: Gaza\nBilling State/Province: \nBilling Postal Code: \nBilling Country: PS\nBilling Phone: 972-08-2861617\nBilling Phone Ext: 059-781440\nBilling Fax: 972-08-2861618\nBilling Fax Ext: \n\nTech ID: 24164-PS\nTech Name: Marwan Radwan\nTech Street: El Wehda St.- El Amal Building\nTech City: Gaza\nTech State/Province: \nTech Postal Code: \nTech Country: PS\nTech Phone: 972-08-2861617\nTech Phone Ext: 059-781440\nTech Fax: 972-08-2861618\nTech Fax Ext: \n\nName Server: ns1.pnina.ps\nName Server: ns2.pnina.ps\n\nDNSSEC: unsigned\n\n\nAdditional Section\n\n\nSponsoring Registrar URL: www.pnina.ps\nSponsoring Registrar Address: 4th Floor, Al-Amal Building Al-Wehda Street Gaza\nSponsoring Registrar Phone: 970-8-2861617\nSponsoring Registrar Fax: 970-8-2861618\n\n\nTERMS OF USE: You are not authorized to access or query our Whois\ndatabase through the use of electronic processes that are high-volume and\nautomated. Whois database is provided by PNINA as a service to the internet\ncommunity on behalf of PNINA and Its Certified Registrars (CR). (http://www.pnina.ps/registrars/registrars-list/)\n\nThe data is for information purposes only. PNINA does not\nguarantee its accuracy. By submitting a Whois query, you agree to abide\nby the following terms of use: You agree that you may use this Data only\nfor lawful purposes and that under no circumstances will you use this Data\nto: (1) allow, enable, or otherwise support the transmission of mass\nunsolicited, commercial advertising or solicitations via e-mail, telephone,\nor facsimile; or (2) enable high volume, automated, electronic processes\nthat apply to PNINA and it's Certified Registrar's (or PNINA or CR computer systems). The\ncompilation, repackaging, dissemination or other use of this Data is\nexpressly prohibited.\n\n\n>>> Last update of WHOIS database: 2014-05-23T11:08:01.989Z <<<\n\n"], "whois_server": ["palestine ps/felasteen cctld registry"], "registrar": ["Palestinian National Internet Naming Authority (PNINA)"], "id": ["24353-PS"]}
{"status": ["ok"], "contacts": {"admin": {"city": "Gaza", "fax": "972-08-2861618", "handle": "24164-PS", "name": "Marwan Radwan", "phone": "972-08-2861617 ext. 059-781440", "street": "El Wehda St.- El Amal Building", "country": "Palestinian Territories"}, "tech": {"city": "Gaza", "fax": "972-08-2861618", "handle": "24164-PS", "name": "Marwan Radwan", "phone": "972-08-2861617 ext. 059-781440", "street": "El Wehda St.- El Amal Building", "country": "Palestinian Territories"}, "registrant": {"city": "Gaza", "fax": "970-8-2861618", "handle": "24124-PS", "name": "Palestinian National Internet Naming Authority", "phone": "970-8-2861617", "street": "El Wehda St.- El Amal Building - Gaza", "country": "Palestinian Territories"}, "billing": {"city": "Gaza", "fax": "972-08-2861618", "handle": "24164-PS", "name": "Marwan Radwan", "phone": "972-08-2861617 ext. 059-781440", "street": "El Wehda St.- El Amal Building", "country": "Palestinian Territories"}}, "nameservers": ["ns1.pnina.ps", "ns2.pnina.ps"], "expiration_date": ["2014-07-28T22:00:00"], "creation_date": ["2004-07-28T22:00:00"], "raw": ["Domain Name: nic.ps\nDomain ID: 24353-PS\nWHOIS Server: Palestine PS/Felasteen ccTLD Registry\nReferral URL: \nCreation Date: 2004-07-28T22:00:00.000Z\nRegistry Expiry Date: 2014-07-28T22:00:00.000Z\nSponsoring Registrar: Palestinian National Internet Naming Authority (PNINA)\nSponsoring Registrar IANA ID: \nDomain Status: ok\n\nRegistrant ID: 24124-PS\nRegistrant Name: Palestinian National Internet Naming Authority\nRegistrant Street: El Wehda St.- El Amal Building - Gaza\nRegistrant City: GAZA\nRegistrant State/Province: \nRegistrant Postal Code: \nRegistrant Country: PS\nRegistrant Phone: 970-8-2861617\nRegistrant Phone Ext: \nRegistrant Fax: 970-8-2861618\nRegistrant Fax Ext: \n\nAdmin ID: 24164-PS\nAdmin Name: Marwan Radwan\nAdmin Street: El Wehda St.- El Amal Building\nAdmin City: Gaza\nAdmin State/Province: \nAdmin Postal Code: \nAdmin Country: PS\nAdmin Phone: 972-08-2861617\nAdmin Phone Ext: 059-781440\nAdmin Fax: 972-08-2861618\nAdmin Fax Ext: \n\nBilling ID: 24164-PS\nBilling Name: Marwan Radwan\nBilling Street: El Wehda St.- El Amal Building\nBilling City: Gaza\nBilling State/Province: \nBilling Postal Code: \nBilling Country: PS\nBilling Phone: 972-08-2861617\nBilling Phone Ext: 059-781440\nBilling Fax: 972-08-2861618\nBilling Fax Ext: \n\nTech ID: 24164-PS\nTech Name: Marwan Radwan\nTech Street: El Wehda St.- El Amal Building\nTech City: Gaza\nTech State/Province: \nTech Postal Code: \nTech Country: PS\nTech Phone: 972-08-2861617\nTech Phone Ext: 059-781440\nTech Fax: 972-08-2861618\nTech Fax Ext: \n\nName Server: ns1.pnina.ps\nName Server: ns2.pnina.ps\n\nDNSSEC: unsigned\n\n\nAdditional Section\n\n\nSponsoring Registrar URL: www.pnina.ps\nSponsoring Registrar Address: 4th Floor, Al-Amal Building Al-Wehda Street Gaza\nSponsoring Registrar Phone: 970-8-2861617\nSponsoring Registrar Fax: 970-8-2861618\n\n\nTERMS OF USE: You are not authorized to access or query our Whois\ndatabase through the use of electronic processes that are high-volume and\nautomated. Whois database is provided by PNINA as a service to the internet\ncommunity on behalf of PNINA and Its Certified Registrars (CR). (http://www.pnina.ps/registrars/registrars-list/)\n\nThe data is for information purposes only. PNINA does not\nguarantee its accuracy. By submitting a Whois query, you agree to abide\nby the following terms of use: You agree that you may use this Data only\nfor lawful purposes and that under no circumstances will you use this Data\nto: (1) allow, enable, or otherwise support the transmission of mass\nunsolicited, commercial advertising or solicitations via e-mail, telephone,\nor facsimile; or (2) enable high volume, automated, electronic processes\nthat apply to PNINA and it's Certified Registrar's (or PNINA or CR computer systems). The\ncompilation, repackaging, dissemination or other use of this Data is\nexpressly prohibited.\n\n\n>>> Last update of WHOIS database: 2014-05-23T11:08:01.989Z <<<\n\n"], "whois_server": ["palestine ps/felasteen cctld registry"], "registrar": ["Palestinian National Internet Naming Authority (PNINA)"], "id": ["24353-PS"]}

@ -1 +1 @@
{"status": ["OK"], "updated_date": ["2013-04-30T15:06:57"], "contacts": {"admin": {"city": "N/a", "handle": "H2661317", "name": "Registry Manager", "state": "N/a", "street": "N/A", "country": "PW", "postalcode": "N/A", "organization": ".PW Registry", "email": "contact@registry.pw"}, "tech": {"city": "N/a", "handle": "H2661317", "name": "Registry Manager", "state": "N/a", "street": "N/A", "country": "PW", "postalcode": "N/A", "organization": ".PW Registry", "email": "contact@registry.pw"}, "registrant": {"city": "N/a", "handle": "H2661317", "name": "Registry Manager", "state": "N/a", "street": "N/A", "country": "PW", "postalcode": "N/A", "organization": ".PW Registry", "email": "contact@registry.pw"}, "billing": {"city": "N/a", "handle": "H2661317", "name": "Registry Manager", "state": "N/a", "street": "N/A", "country": "PW", "postalcode": "N/A", "organization": ".PW Registry", "email": "contact@registry.pw"}}, "nameservers": ["ns0.centralnic-dns.com", "ns1.centralnic-dns.com", "ns2.centralnic-dns.com", "ns3.centralnic-dns.com", "ns4.centralnic-dns.com", "ns5.centralnic-dns.com"], "expiration_date": ["2020-01-01T23:59:59"], "raw": ["This whois service is provided by CentralNic Ltd and only contains\ninformation pertaining to Internet domain names we have registered for\nour customers. By using this service you are agreeing (1) not to use any\ninformation presented here for any purpose other than determining\nownership of domain names, (2) not to store or reproduce this data in \nany way, (3) not to use any high-volume, automated, electronic processes\nto obtain data from this service. Abuse of this service is monitored and\nactions in contravention of these terms will result in being permanently\nblacklisted. All data is (c) CentralNic Ltd https://www.centralnic.com/\n\nDomain ID:CNIC-DO949898\nDomain Name:NIC.PW\nCreated On:2012-10-12T10:19:46.0Z\nLast Updated On:2013-04-30T15:06:57.0Z\nExpiration Date:2020-01-01T23:59:59.0Z\nStatus:OK\nRegistrant ID:H2661317\nRegistrant Name:Registry Manager\nRegistrant Organization:.PW Registry\nRegistrant Street1:N/A\nRegistrant City:N/A\nRegistrant State/Province:N/A\nRegistrant Postal Code:N/A\nRegistrant Country:PW\nRegistrant Phone:\nRegistrant Email:contact@registry.pw\nAdmin ID:H2661317\nAdmin Name:Registry Manager\nAdmin Organization:.PW Registry\nAdmin Street1:N/A\nAdmin City:N/A\nAdmin State/Province:N/A\nAdmin Postal Code:N/A\nAdmin Country:PW\nAdmin Phone:\nAdmin Email:contact@registry.pw\nTech ID:H2661317\nTech Name:Registry Manager\nTech Organization:.PW Registry\nTech Street1:N/A\nTech City:N/A\nTech State/Province:N/A\nTech Postal Code:N/A\nTech Country:PW\nTech Phone:\nTech Email:contact@registry.pw\nBilling ID:H2661317\nBilling Name:Registry Manager\nBilling Organization:.PW Registry\nBilling Street1:N/A\nBilling City:N/A\nBilling State/Province:N/A\nBilling Postal Code:N/A\nBilling Country:PW\nBilling Phone:\nBilling Email:contact@registry.pw\nSponsoring Registrar ID:H2661317\nSponsoring Registrar Organization:.PW Registry\nSponsoring Registrar Street1:N/A\nSponsoring Registrar City:N/A\nSponsoring Registrar State/Province:N/A\nSponsoring Registrar Postal Code:N/A\nSponsoring Registrar Country:PW\nSponsoring Registrar Phone:N/A\nSponsoring Registrar Website:http://www.registry.pw\nName Server:NS0.CENTRALNIC-DNS.COM\nName Server:NS1.CENTRALNIC-DNS.COM\nName Server:NS2.CENTRALNIC-DNS.COM\nName Server:NS3.CENTRALNIC-DNS.COM\nName Server:NS4.CENTRALNIC-DNS.COM\nName Server:NS5.CENTRALNIC-DNS.COM\nDNSSEC:Unsigned\n\n\n\n"], "registrar": [".PW Registry"], "creation_date": ["2012-10-12T10:19:46", "2012-10-12T10:19:46", "2012-10-12T10:19:46"], "id": ["CNIC-DO949898"]}
{"status": ["OK"], "updated_date": ["2013-04-30T15:06:57"], "contacts": {"admin": {"handle": "H2661317", "name": "Registry Manager", "country": "Palau", "organization": ".PW Registry", "email": "contact@registry.pw"}, "tech": {"handle": "H2661317", "name": "Registry Manager", "country": "Palau", "organization": ".PW Registry", "email": "contact@registry.pw"}, "registrant": {"handle": "H2661317", "name": "Registry Manager", "country": "Palau", "organization": ".PW Registry", "email": "contact@registry.pw"}, "billing": {"handle": "H2661317", "name": "Registry Manager", "country": "Palau", "organization": ".PW Registry", "email": "contact@registry.pw"}}, "nameservers": ["ns0.centralnic-dns.com", "ns1.centralnic-dns.com", "ns2.centralnic-dns.com", "ns3.centralnic-dns.com", "ns4.centralnic-dns.com", "ns5.centralnic-dns.com"], "expiration_date": ["2020-01-01T23:59:59"], "raw": ["This whois service is provided by CentralNic Ltd and only contains\ninformation pertaining to Internet domain names we have registered for\nour customers. By using this service you are agreeing (1) not to use any\ninformation presented here for any purpose other than determining\nownership of domain names, (2) not to store or reproduce this data in \nany way, (3) not to use any high-volume, automated, electronic processes\nto obtain data from this service. Abuse of this service is monitored and\nactions in contravention of these terms will result in being permanently\nblacklisted. All data is (c) CentralNic Ltd https://www.centralnic.com/\n\nDomain ID:CNIC-DO949898\nDomain Name:NIC.PW\nCreated On:2012-10-12T10:19:46.0Z\nLast Updated On:2013-04-30T15:06:57.0Z\nExpiration Date:2020-01-01T23:59:59.0Z\nStatus:OK\nRegistrant ID:H2661317\nRegistrant Name:Registry Manager\nRegistrant Organization:.PW Registry\nRegistrant Street1:N/A\nRegistrant City:N/A\nRegistrant State/Province:N/A\nRegistrant Postal Code:N/A\nRegistrant Country:PW\nRegistrant Phone:\nRegistrant Email:contact@registry.pw\nAdmin ID:H2661317\nAdmin Name:Registry Manager\nAdmin Organization:.PW Registry\nAdmin Street1:N/A\nAdmin City:N/A\nAdmin State/Province:N/A\nAdmin Postal Code:N/A\nAdmin Country:PW\nAdmin Phone:\nAdmin Email:contact@registry.pw\nTech ID:H2661317\nTech Name:Registry Manager\nTech Organization:.PW Registry\nTech Street1:N/A\nTech City:N/A\nTech State/Province:N/A\nTech Postal Code:N/A\nTech Country:PW\nTech Phone:\nTech Email:contact@registry.pw\nBilling ID:H2661317\nBilling Name:Registry Manager\nBilling Organization:.PW Registry\nBilling Street1:N/A\nBilling City:N/A\nBilling State/Province:N/A\nBilling Postal Code:N/A\nBilling Country:PW\nBilling Phone:\nBilling Email:contact@registry.pw\nSponsoring Registrar ID:H2661317\nSponsoring Registrar Organization:.PW Registry\nSponsoring Registrar Street1:N/A\nSponsoring Registrar City:N/A\nSponsoring Registrar State/Province:N/A\nSponsoring Registrar Postal Code:N/A\nSponsoring Registrar Country:PW\nSponsoring Registrar Phone:N/A\nSponsoring Registrar Website:http://www.registry.pw\nName Server:NS0.CENTRALNIC-DNS.COM\nName Server:NS1.CENTRALNIC-DNS.COM\nName Server:NS2.CENTRALNIC-DNS.COM\nName Server:NS3.CENTRALNIC-DNS.COM\nName Server:NS4.CENTRALNIC-DNS.COM\nName Server:NS5.CENTRALNIC-DNS.COM\nDNSSEC:Unsigned\n\n\n\n"], "registrar": [".PW Registry"], "creation_date": ["2012-10-12T10:19:46", "2012-10-12T10:19:46", "2012-10-12T10:19:46"], "id": ["CNIC-DO949898"]}

File diff suppressed because one or more lines are too long

@ -1 +1 @@
{"status": ["Active", "ok"], "updated_date": ["2006-10-11T00:00:00", "2013-10-28T00:00:00", "2009-04-03T00:00:00"], "contacts": {"admin": {"fax": "+33 3 20 20 09 58", "handle": "OK62-FRNIC", "phone": "+33 3 20 20 09 57", "street": "Sarl Ovh\n140, quai du Sartel", "postalcode": "59100", "city": "Roubaix", "name": "Octave Klaba", "country": "FR", "type": "PERSON", "changedate": "2009-04-03T00:00:00"}, "tech": {"handle": "OVH5-FRNIC", "phone": "+33 8 99 70 17 61", "street": "OVH\n140, quai du Sartel", "postalcode": "59100", "city": "Roubaix", "name": "OVH NET", "country": "FR", "type": "ROLE", "email": "tech@ovh.net", "changedate": "2006-10-11T00:00:00"}, "registrant": {"fax": "+33 3 20 20 09 58", "handle": "SO255-FRNIC", "phone": "+33 8 99 70 17 61", "street": "140, Quai du Sartel", "postalcode": "59100", "city": "Roubaix", "name": "OVH SAS", "country": "FR", "type": "ORGANIZATION", "email": "oles@ovh.net", "changedate": "2013-10-28T00:00:00"}, "billing": null}, "nameservers": ["dns.ovh.net", "dns10.ovh.net", "ns.ovh.net", "ns10.ovh.net"], "creation_date": ["1999-11-12T00:00:00", "1999-10-21T00:00:00"], "raw": ["%%\n%% This is the AFNIC Whois server.\n%%\n%% complete date format : DD/MM/YYYY\n%% short date format : DD/MM\n%% version : FRNIC-2.5\n%%\n%% Rights restricted by copyright.\n%% See http://www.afnic.fr/afnic/web/mentions-legales-whois_en\n%%\n%% Use '-h' option to obtain more information about this service.\n%%\n%% [77.162.55.23 REQUEST] >> -V Md5.0 ovh.fr\n%%\n%% RL Net [##########] - RL IP [#########.]\n%%\n\ndomain: ovh.fr\nstatus: ACTIVE\nhold: NO\nholder-c: SO255-FRNIC\nadmin-c: OK62-FRNIC\ntech-c: OVH5-FRNIC\nzone-c: NFC1-FRNIC\nnsl-id: NSL16790-FRNIC\nregistrar: OVH\nanniversary: 12/11\ncreated: 12/11/1999\nlast-update: 03/04/2009\nsource: FRNIC\n\nns-list: NSL16790-FRNIC\nnserver: dns.ovh.net\nnserver: dns10.ovh.net\nnserver: ns.ovh.net\nnserver: ns10.ovh.net\nsource: FRNIC\n\nregistrar: OVH\ntype: Isp Option 1\naddress: 2 Rue Kellermann\naddress: ROUBAIX\ncountry: FR\nphone: +33 8 99 70 17 61\nfax-no: +33 3 20 20 09 58\ne-mail: support@ovh.net\nwebsite: http://www.ovh.com\nanonymous: NO\nregistered: 21/10/1999\nsource: FRNIC\n\nnic-hdl: OVH5-FRNIC\ntype: ROLE\ncontact: OVH NET\naddress: OVH\naddress: 140, quai du Sartel\naddress: 59100 Roubaix\ncountry: FR\nphone: +33 8 99 70 17 61\ne-mail: tech@ovh.net\ntrouble: Information: http://www.ovh.fr\ntrouble: Questions: mailto:tech@ovh.net\ntrouble: Spam: mailto:abuse@ovh.net\nadmin-c: OK217-FRNIC\ntech-c: OK217-FRNIC\nnotify: tech@ovh.net\nregistrar: OVH\nchanged: 11/10/2006 tech@ovh.net\nanonymous: NO\nobsoleted: NO\nsource: FRNIC\n\nnic-hdl: SO255-FRNIC\ntype: ORGANIZATION\ncontact: OVH SAS\naddress: 140, quai du sartel\naddress: 59100 Roubaix\ncountry: FR\nphone: +33 8 99 70 17 61\nfax-no: +33 3 20 20 09 58\ne-mail: oles@ovh.net\nregistrar: OVH\nchanged: 28/10/2013 nic@nic.fr\nanonymous: NO\nobsoleted: NO\neligstatus: ok\neligdate: 01/09/2011 12:03:35\nsource: FRNIC\n\nnic-hdl: OK62-FRNIC\ntype: PERSON\ncontact: Octave Klaba\naddress: Sarl Ovh\naddress: 140, quai du Sartel\naddress: 59100 Roubaix\ncountry: FR\nphone: +33 3 20 20 09 57\nfax-no: +33 3 20 20 09 58\nregistrar: OVH\nchanged: 03/04/2009 nic@nic.fr\nanonymous: NO\nobsoleted: NO\nsource: FRNIC\n"], "registrar": ["OVH"], "emails": ["support@ovh.net", "abuse@ovh.net", "nic@nic.fr"]}
{"status": ["Active", "ok"], "updated_date": ["2006-10-11T00:00:00", "2013-10-28T00:00:00", "2009-04-03T00:00:00"], "contacts": {"admin": {"fax": "+33 3 20 20 09 58", "handle": "OK62-FRNIC", "phone": "+33 3 20 20 09 57", "street": "Sarl Ovh\n140, quai du Sartel", "postalcode": "59100", "city": "Roubaix", "name": "Octave Klaba", "country": "France", "type": "PERSON", "changedate": "2009-04-03T00:00:00"}, "tech": {"handle": "OVH5-FRNIC", "phone": "+33 8 99 70 17 61", "street": "OVH\n140, quai du Sartel", "postalcode": "59100", "city": "Roubaix", "name": "OVH NET", "country": "France", "type": "ROLE", "email": "tech@ovh.net", "changedate": "2006-10-11T00:00:00"}, "registrant": {"fax": "+33 3 20 20 09 58", "handle": "SO255-FRNIC", "phone": "+33 8 99 70 17 61", "street": "140, Quai du Sartel", "postalcode": "59100", "city": "Roubaix", "country": "France", "organization": "OVH SAS", "type": "ORGANIZATION", "email": "oles@ovh.net", "changedate": "2013-10-28T00:00:00"}, "billing": null}, "nameservers": ["dns.ovh.net", "dns10.ovh.net", "ns.ovh.net", "ns10.ovh.net"], "creation_date": ["1999-11-12T00:00:00", "1999-10-21T00:00:00"], "raw": ["%%\n%% This is the AFNIC Whois server.\n%%\n%% complete date format : DD/MM/YYYY\n%% short date format : DD/MM\n%% version : FRNIC-2.5\n%%\n%% Rights restricted by copyright.\n%% See http://www.afnic.fr/afnic/web/mentions-legales-whois_en\n%%\n%% Use '-h' option to obtain more information about this service.\n%%\n%% [77.162.55.23 REQUEST] >> -V Md5.0 ovh.fr\n%%\n%% RL Net [##########] - RL IP [#########.]\n%%\n\ndomain: ovh.fr\nstatus: ACTIVE\nhold: NO\nholder-c: SO255-FRNIC\nadmin-c: OK62-FRNIC\ntech-c: OVH5-FRNIC\nzone-c: NFC1-FRNIC\nnsl-id: NSL16790-FRNIC\nregistrar: OVH\nanniversary: 12/11\ncreated: 12/11/1999\nlast-update: 03/04/2009\nsource: FRNIC\n\nns-list: NSL16790-FRNIC\nnserver: dns.ovh.net\nnserver: dns10.ovh.net\nnserver: ns.ovh.net\nnserver: ns10.ovh.net\nsource: FRNIC\n\nregistrar: OVH\ntype: Isp Option 1\naddress: 2 Rue Kellermann\naddress: ROUBAIX\ncountry: FR\nphone: +33 8 99 70 17 61\nfax-no: +33 3 20 20 09 58\ne-mail: support@ovh.net\nwebsite: http://www.ovh.com\nanonymous: NO\nregistered: 21/10/1999\nsource: FRNIC\n\nnic-hdl: OVH5-FRNIC\ntype: ROLE\ncontact: OVH NET\naddress: OVH\naddress: 140, quai du Sartel\naddress: 59100 Roubaix\ncountry: FR\nphone: +33 8 99 70 17 61\ne-mail: tech@ovh.net\ntrouble: Information: http://www.ovh.fr\ntrouble: Questions: mailto:tech@ovh.net\ntrouble: Spam: mailto:abuse@ovh.net\nadmin-c: OK217-FRNIC\ntech-c: OK217-FRNIC\nnotify: tech@ovh.net\nregistrar: OVH\nchanged: 11/10/2006 tech@ovh.net\nanonymous: NO\nobsoleted: NO\nsource: FRNIC\n\nnic-hdl: SO255-FRNIC\ntype: ORGANIZATION\ncontact: OVH SAS\naddress: 140, quai du sartel\naddress: 59100 Roubaix\ncountry: FR\nphone: +33 8 99 70 17 61\nfax-no: +33 3 20 20 09 58\ne-mail: oles@ovh.net\nregistrar: OVH\nchanged: 28/10/2013 nic@nic.fr\nanonymous: NO\nobsoleted: NO\neligstatus: ok\neligdate: 01/09/2011 12:03:35\nsource: FRNIC\n\nnic-hdl: OK62-FRNIC\ntype: PERSON\ncontact: Octave Klaba\naddress: Sarl Ovh\naddress: 140, quai du Sartel\naddress: 59100 Roubaix\ncountry: FR\nphone: +33 3 20 20 09 57\nfax-no: +33 3 20 20 09 58\nregistrar: OVH\nchanged: 03/04/2009 nic@nic.fr\nanonymous: NO\nobsoleted: NO\nsource: FRNIC\n"], "registrar": ["OVH"], "emails": ["support@ovh.net", "abuse@ovh.net", "nic@nic.fr"]}

File diff suppressed because one or more lines are too long

@ -1 +1 @@
{"contacts": {"admin": {"phone": "+44.1502566183", "name": "Jeffrey Williams", "email": "faiwot@wag1.com"}, "tech": {"phone": "+44.1502566183", "name": "Jeffrey Williams", "email": "faiwot@wag1.com"}, "registrant": {"city": "Lowestoft", "name": "Jeffrey Williams", "country": "GB", "phone": "+44.1502566183", "street": "95 Wavenet Crescent", "organization": "JW", "email": "faiwot@wag1.com"}, "billing": null}, "nameservers": ["ns1.parkingcrew.net", "ns2.parkingcrew.net"], "expiration_date": ["2015-02-24T00:00:00", "2015-02-24T00:00:00"], "creation_date": ["2006-02-24T00:00:00", "2006-02-24T00:00:00"], "raw": ["Domain Name: porn.com.tw\n Registrant:\n JW\n Jeffrey Williams faiwot@wag1.com\n +44.1502566183\n \n 95 Wavenet Crescent \n Lowestoft, \n GB\n\n Administrative Contact:\n Jeffrey Williams faiwot@wag1.com\n +44.1502566183\n \n\n Technical Contact:\n Jeffrey Williams faiwot@wag1.com\n +44.1502566183\n \n\n Record expires on 2015-02-24 (YYYY-MM-DD)\n Record created on 2006-02-24 (YYYY-MM-DD)\n\n Domain servers in listed order:\n ns1.parkingcrew.net \n ns2.parkingcrew.net \n\nRegistration Service Provider: Key-Systems GmbH\n\n[Provided by NeuStar Registry Gateway Services]\n\n"], "registrar": ["Key-Systems GmbH"]}
{"contacts": {"admin": {"phone": "+44.1502566183", "name": "Jeffrey Williams", "email": "faiwot@wag1.com"}, "tech": {"phone": "+44.1502566183", "name": "Jeffrey Williams", "email": "faiwot@wag1.com"}, "registrant": {"city": "Lowestoft", "name": "Jeffrey Williams", "country": "United Kingdom", "phone": "+44.1502566183", "street": "95 Wavenet Crescent", "organization": "JW", "email": "faiwot@wag1.com"}, "billing": null}, "nameservers": ["ns1.parkingcrew.net", "ns2.parkingcrew.net"], "expiration_date": ["2015-02-24T00:00:00", "2015-02-24T00:00:00"], "creation_date": ["2006-02-24T00:00:00", "2006-02-24T00:00:00"], "raw": ["Domain Name: porn.com.tw\n Registrant:\n JW\n Jeffrey Williams faiwot@wag1.com\n +44.1502566183\n \n 95 Wavenet Crescent \n Lowestoft, \n GB\n\n Administrative Contact:\n Jeffrey Williams faiwot@wag1.com\n +44.1502566183\n \n\n Technical Contact:\n Jeffrey Williams faiwot@wag1.com\n +44.1502566183\n \n\n Record expires on 2015-02-24 (YYYY-MM-DD)\n Record created on 2006-02-24 (YYYY-MM-DD)\n\n Domain servers in listed order:\n ns1.parkingcrew.net \n ns2.parkingcrew.net \n\nRegistration Service Provider: Key-Systems GmbH\n\n[Provided by NeuStar Registry Gateway Services]\n\n"], "registrar": ["Key-Systems GmbH"]}

@ -1 +1 @@
{"status": ["ok"], "updated_date": ["2013-09-22T00:52:31", "2013-09-22T00:44:16"], "contacts": {"admin": {"handle": "C4195-GANDI-EQUL", "name": "Gandi Corporate", "organization": "Gandi Corporate"}, "tech": {"handle": "R3511-GANDI-HIRR", "name": "Domain Administrator", "organization": "Reddit Inc"}, "registrant": {"city": "Paris", "handle": "DUP181111842", "name": "Corporation Service Company France", "state": "Paris", "street": "68, rue du faubourg Saint Honore", "country": "FR", "postalcode": "75008", "organization": "Corporation Service Company France", "creationdate": "2013-09-22T00:44:16", "changedate": "2013-09-22T00:44:16"}, "billing": null}, "nameservers": ["c.dns.gandi.net", "a.dns.gandi.net", "b.dns.gandi.net"], "expiration_date": ["2014-09-22T00:00:00"], "creation_date": ["2010-05-31T09:49:27", "2013-09-22T00:44:16"], "raw": ["\n*********************************************************************\n* Please note that the following result could be a subgroup of *\n* the data contained in the database. *\n* *\n* Additional information can be visualized at: *\n* http://www.nic.it/cgi-bin/Whois/whois.cgi *\n*********************************************************************\n\nDomain: redd.it\nStatus: ok\nCreated: 2010-05-31 09:49:27\nLast Update: 2013-09-22 00:52:31\nExpire Date: 2014-09-22\n\nRegistrant\n Name: Corporation Service Company France\n Organization: Corporation Service Company France\n ContactID: DUP181111842\n Address: 68, rue du faubourg Saint Honore\n Paris\n 75008\n Paris\n FR\n Created: 2013-09-22 00:44:16\n Last Update: 2013-09-22 00:44:16\n\nAdmin Contact\n Name: GANDI CORPORATE\n Organization: GANDI CORPORATE\n ContactID: C4195-GANDI-EQUL\n\nTechnical Contacts\n Name: Domain Administrator\n Organization: Reddit Inc\n ContactID: R3511-GANDI-HIRR\n\nRegistrar\n Organization: Gandi SAS\n Name: GANDI-REG\n Web: http://www.gandi.net\n\nNameservers\n c.dns.gandi.net\n a.dns.gandi.net\n b.dns.gandi.net\n\n\n"], "registrar": ["Gandi SAS"]}
{"status": ["ok"], "updated_date": ["2013-09-22T00:52:31", "2013-09-22T00:44:16"], "contacts": {"admin": {"handle": "C4195-GANDI-EQUL", "name": "Gandi Corporate", "organization": "Gandi Corporate"}, "tech": {"handle": "R3511-GANDI-HIRR", "name": "Domain Administrator", "organization": "Reddit Inc"}, "registrant": {"city": "Paris", "handle": "DUP181111842", "name": "Corporation Service Company France", "state": "Paris", "street": "68, rue du faubourg Saint Honore", "country": "France", "postalcode": "75008", "organization": "Corporation Service Company France", "creationdate": "2013-09-22T00:44:16", "changedate": "2013-09-22T00:44:16"}, "billing": null}, "nameservers": ["c.dns.gandi.net", "a.dns.gandi.net", "b.dns.gandi.net"], "expiration_date": ["2014-09-22T00:00:00"], "creation_date": ["2010-05-31T09:49:27", "2013-09-22T00:44:16"], "raw": ["\n*********************************************************************\n* Please note that the following result could be a subgroup of *\n* the data contained in the database. *\n* *\n* Additional information can be visualized at: *\n* http://www.nic.it/cgi-bin/Whois/whois.cgi *\n*********************************************************************\n\nDomain: redd.it\nStatus: ok\nCreated: 2010-05-31 09:49:27\nLast Update: 2013-09-22 00:52:31\nExpire Date: 2014-09-22\n\nRegistrant\n Name: Corporation Service Company France\n Organization: Corporation Service Company France\n ContactID: DUP181111842\n Address: 68, rue du faubourg Saint Honore\n Paris\n 75008\n Paris\n FR\n Created: 2013-09-22 00:44:16\n Last Update: 2013-09-22 00:44:16\n\nAdmin Contact\n Name: GANDI CORPORATE\n Organization: GANDI CORPORATE\n ContactID: C4195-GANDI-EQUL\n\nTechnical Contacts\n Name: Domain Administrator\n Organization: Reddit Inc\n ContactID: R3511-GANDI-HIRR\n\nRegistrar\n Organization: Gandi SAS\n Name: GANDI-REG\n Web: http://www.gandi.net\n\nNameservers\n c.dns.gandi.net\n a.dns.gandi.net\n b.dns.gandi.net\n\n\n"], "registrar": ["Gandi SAS"]}

@ -1 +1 @@
{"status": ["Active"], "updated_date": ["2013-08-05T00:00:00"], "contacts": {"admin": null, "tech": {"city": "\u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\u0e21\u0e2b\u0e32\u0e19\u0e04\u0e23", "handle": "503400", "country": "TH", "street": "341 \u0e16\u0e19\u0e19\u0e2d\u0e48\u0e2d\u0e19\u0e19\u0e38\u0e0a\n\u0e41\u0e02\u0e27\u0e07\u0e1b\u0e23\u0e30\u0e40\u0e27\u0e28 \u0e40\u0e02\u0e15\u0e1b\u0e23\u0e30\u0e40\u0e27\u0e28", "postalcode": "10250", "organization": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e23\u0e34\u0e42\u0e01\u0e49(\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22)\u0e08\u0e33\u0e01\u0e31\u0e14"}, "registrant": {"city": "Bangkok", "district": "Prawet", "country": "TH", "street": "Ricoh (Thailand) Ltd.\n341 Onnuj Road", "postalcode": "10250", "organization": "Ricoh (thailand) co., LTD. (\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e23\u0e34\u0e42\u0e01\u0e49 (\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22) \u0e08\u0e33\u0e01\u0e31\u0e14)"}, "billing": null}, "nameservers": ["ns.cscoms.com", "ns2.cscoms.com"], "expiration_date": ["2014-11-04T00:00:00"], "creation_date": ["1999-11-05T00:00:00", "1999-11-05T00:00:00"], "raw": ["\nWhois Server Version 2.1.2\n\nDomain: RICOH.CO.TH\nRegistrar: T.H.NIC Co., Ltd.\nName Server: NS.CSCOMS.COM\nName Server: NS2.CSCOMS.COM\nStatus: ACTIVE\nUpdated date: 5 Aug 2013\nCreated date: 5 Nov 1999\nRenew date: 5 Nov 2012\nExp date: 4 Nov 2014\nDomain Holder: RICOH (THAILAND) CO., LTD. (\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e23\u0e34\u0e42\u0e01\u0e49 (\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22) \u0e08\u0e33\u0e01\u0e31\u0e14)\nRicoh (Thailand) Ltd.\n341 Onnuj Road, \nPrawet, Prawet , \nBangkok\n10250\nTH\n\nTech Contact: 503400\n\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e23\u0e34\u0e42\u0e01\u0e49(\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22)\u0e08\u0e33\u0e01\u0e31\u0e14\n341 \u0e16\u0e19\u0e19\u0e2d\u0e48\u0e2d\u0e19\u0e19\u0e38\u0e0a \n\u0e41\u0e02\u0e27\u0e07\u0e1b\u0e23\u0e30\u0e40\u0e27\u0e28 \u0e40\u0e02\u0e15\u0e1b\u0e23\u0e30\u0e40\u0e27\u0e28\n\u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\u0e21\u0e2b\u0e32\u0e19\u0e04\u0e23\n10250\nTH\n\n\n\n>>> Last update of whois data: Fri, 27 Jun 2014 16:34:18 UTC+7 <<<\n\nFor more information please visit: https://www.thnic.co.th/whois\n\n\n"], "registrar": ["T.H.NIC Co., Ltd."]}
{"status": ["Active"], "updated_date": ["2013-08-05T00:00:00"], "contacts": {"admin": null, "tech": {"city": "\u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\u0e21\u0e2b\u0e32\u0e19\u0e04\u0e23", "handle": "503400", "country": "Thailand", "street": "341 \u0e16\u0e19\u0e19\u0e2d\u0e48\u0e2d\u0e19\u0e19\u0e38\u0e0a\n\u0e41\u0e02\u0e27\u0e07\u0e1b\u0e23\u0e30\u0e40\u0e27\u0e28 \u0e40\u0e02\u0e15\u0e1b\u0e23\u0e30\u0e40\u0e27\u0e28", "postalcode": "10250", "organization": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e23\u0e34\u0e42\u0e01\u0e49(\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22)\u0e08\u0e33\u0e01\u0e31\u0e14"}, "registrant": {"city": "Bangkok", "district": "Prawet", "country": "Thailand", "street": "Ricoh (Thailand) Ltd.\n341 Onnuj Road", "postalcode": "10250", "organization": "Ricoh (thailand) co., LTD. (\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e23\u0e34\u0e42\u0e01\u0e49 (\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22) \u0e08\u0e33\u0e01\u0e31\u0e14)"}, "billing": null}, "nameservers": ["ns.cscoms.com", "ns2.cscoms.com"], "expiration_date": ["2014-11-04T00:00:00"], "creation_date": ["1999-11-05T00:00:00", "1999-11-05T00:00:00"], "raw": ["\nWhois Server Version 2.1.2\n\nDomain: RICOH.CO.TH\nRegistrar: T.H.NIC Co., Ltd.\nName Server: NS.CSCOMS.COM\nName Server: NS2.CSCOMS.COM\nStatus: ACTIVE\nUpdated date: 5 Aug 2013\nCreated date: 5 Nov 1999\nRenew date: 5 Nov 2012\nExp date: 4 Nov 2014\nDomain Holder: RICOH (THAILAND) CO., LTD. (\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e23\u0e34\u0e42\u0e01\u0e49 (\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22) \u0e08\u0e33\u0e01\u0e31\u0e14)\nRicoh (Thailand) Ltd.\n341 Onnuj Road, \nPrawet, Prawet , \nBangkok\n10250\nTH\n\nTech Contact: 503400\n\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e23\u0e34\u0e42\u0e01\u0e49(\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22)\u0e08\u0e33\u0e01\u0e31\u0e14\n341 \u0e16\u0e19\u0e19\u0e2d\u0e48\u0e2d\u0e19\u0e19\u0e38\u0e0a \n\u0e41\u0e02\u0e27\u0e07\u0e1b\u0e23\u0e30\u0e40\u0e27\u0e28 \u0e40\u0e02\u0e15\u0e1b\u0e23\u0e30\u0e40\u0e27\u0e28\n\u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\u0e21\u0e2b\u0e32\u0e19\u0e04\u0e23\n10250\nTH\n\n\n\n>>> Last update of whois data: Fri, 27 Jun 2014 16:34:18 UTC+7 <<<\n\nFor more information please visit: https://www.thnic.co.th/whois\n\n\n"], "registrar": ["T.H.NIC Co., Ltd."]}

@ -1 +1 @@
{"status": ["Active"], "updated_date": ["2012-02-01T00:00:00"], "contacts": {"admin": null, "tech": {"city": "Bangkok", "handle": "37581", "street": "419/2 Chetchottisak Building JatujakLadphoa Bangkok 10900", "country": "TH", "postalcode": "10900", "organization": "RS Promotion Public Co.,Ltd."}, "registrant": {"city": "Bkk", "street": "419/2 Chetchottisak Building JatujakLadphoa Bangkok 10900", "country": "TH", "postalcode": "10900", "organization": "RS. Promotion PCL. ( \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e2d\u0e32\u0e23\u0e4c.\u0e40\u0e2d\u0e2a.\u0e42\u0e1b\u0e23\u0e42\u0e21\u0e0a\u0e31\u0e48\u0e19 \u0e08\u0e33\u0e01\u0e31\u0e14 (\u0e21\u0e2b\u0e32\u0e0a\u0e19) )"}, "billing": null}, "nameservers": ["clarinet.asianet.co.th", "conductor.asianet.co.th"], "expiration_date": ["2017-03-17T00:00:00"], "creation_date": ["2007-01-19T00:00:00", "2007-01-19T00:00:00"], "raw": ["\nWhois Server Version 2.1.2\n\nDomain: RS.CO.TH\nRegistrar: T.H.NIC Co., Ltd.\nName Server: CLARINET.ASIANET.CO.TH\nName Server: CONDUCTOR.ASIANET.CO.TH\nStatus: ACTIVE\nUpdated date: 1 Feb 2012\nCreated date: 19 Jan 2007\nRenew date: 18 Mar 2012\nExp date: 17 Mar 2017\nDomain Holder: RS. Promotion PCL. ( \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e2d\u0e32\u0e23\u0e4c.\u0e40\u0e2d\u0e2a.\u0e42\u0e1b\u0e23\u0e42\u0e21\u0e0a\u0e31\u0e48\u0e19 \u0e08\u0e33\u0e01\u0e31\u0e14 (\u0e21\u0e2b\u0e32\u0e0a\u0e19) )\n419/2 Chetchottisak Building JatujakLadphoa Bangkok 10900, BKK\n10900\nTH\n\nTech Contact: 37581\nRS Promotion Public Co.,Ltd.\n419/2 Chetchottisak Building JatujakLadphoa Bangkok 10900, bangkok\n10900\nTH\n\n\n\n>>> Last update of whois data: Fri, 27 Jun 2014 16:34:24 UTC+7 <<<\n\nFor more information please visit: https://www.thnic.co.th/whois\n\n\n"], "registrar": ["T.H.NIC Co., Ltd."]}
{"status": ["Active"], "updated_date": ["2012-02-01T00:00:00"], "contacts": {"admin": null, "tech": {"city": "Bangkok", "handle": "37581", "street": "419/2 Chetchottisak Building JatujakLadphoa Bangkok 10900", "country": "Thailand", "postalcode": "10900", "organization": "RS Promotion Public Co.,Ltd."}, "registrant": {"city": "Bangkok", "street": "419/2 Chetchottisak Building JatujakLadphoa Bangkok 10900", "country": "Thailand", "postalcode": "10900", "organization": "RS. Promotion PCL. ( \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e2d\u0e32\u0e23\u0e4c.\u0e40\u0e2d\u0e2a.\u0e42\u0e1b\u0e23\u0e42\u0e21\u0e0a\u0e31\u0e48\u0e19 \u0e08\u0e33\u0e01\u0e31\u0e14 (\u0e21\u0e2b\u0e32\u0e0a\u0e19) )"}, "billing": null}, "nameservers": ["clarinet.asianet.co.th", "conductor.asianet.co.th"], "expiration_date": ["2017-03-17T00:00:00"], "creation_date": ["2007-01-19T00:00:00", "2007-01-19T00:00:00"], "raw": ["\nWhois Server Version 2.1.2\n\nDomain: RS.CO.TH\nRegistrar: T.H.NIC Co., Ltd.\nName Server: CLARINET.ASIANET.CO.TH\nName Server: CONDUCTOR.ASIANET.CO.TH\nStatus: ACTIVE\nUpdated date: 1 Feb 2012\nCreated date: 19 Jan 2007\nRenew date: 18 Mar 2012\nExp date: 17 Mar 2017\nDomain Holder: RS. Promotion PCL. ( \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e2d\u0e32\u0e23\u0e4c.\u0e40\u0e2d\u0e2a.\u0e42\u0e1b\u0e23\u0e42\u0e21\u0e0a\u0e31\u0e48\u0e19 \u0e08\u0e33\u0e01\u0e31\u0e14 (\u0e21\u0e2b\u0e32\u0e0a\u0e19) )\n419/2 Chetchottisak Building JatujakLadphoa Bangkok 10900, BKK\n10900\nTH\n\nTech Contact: 37581\nRS Promotion Public Co.,Ltd.\n419/2 Chetchottisak Building JatujakLadphoa Bangkok 10900, bangkok\n10900\nTH\n\n\n\n>>> Last update of whois data: Fri, 27 Jun 2014 16:34:24 UTC+7 <<<\n\nFor more information please visit: https://www.thnic.co.th/whois\n\n\n"], "registrar": ["T.H.NIC Co., Ltd."]}

@ -1 +1 @@
{"updated_date": ["2011-11-11T18:48:29"], "status": ["clientTransferProhibited"], "contacts": {"admin": {"city": "Reno", "name": "No-IP.com, Domain Operations", "state": "NV", "phone": "+1.7758531883", "street": "5905 South Virginia St\nSuite 200", "country": "US", "postalcode": "89502", "email": "domains@no-ip.com"}, "tech": {"city": "Reno", "name": "No-IP.com, Domain Operations", "state": "NV", "phone": "+1.7758531883", "street": "5905 South Virginia St\nSuite 200", "country": "US", "postalcode": "89502", "organization": "Vitalwerks Internet Solutions, LLC", "email": "domains@no-ip.com"}, "registrant": {"city": "Reno", "name": "No-IP.com, Domain Operations", "state": "NV", "phone": "+1.7758531883", "street": "5905 South Virginia St\nSuite 200", "country": "US", "postalcode": "89502", "organization": "Vitalwerks Internet Solutions, LLC", "email": "domains@no-ip.com"}, "billing": {"city": "Reno", "name": "No-IP.com, Domain Operations", "state": "NV", "phone": "+1.7758531883", "street": "5905 South Virginia St\nSuite 200", "country": "US", "postalcode": "89502", "organization": "Vitalwerks Internet Solutions, LLC", "email": "domains@no-ip.com"}}, "nameservers": ["nf1.no-ip.com", "nf2.no-ip.com", "nf3.no-ip.com", "nf4.no-ip.com"], "expiration_date": ["2015-02-10T05:33:35"], "creation_date": ["2004-11-12T08:00:00", "2004-11-12T08:00:00"], "raw": ["Whois Server Version 2.0\n\nNOTICE: Access to No-IP.com WHOIS information is provided to assist persons in \ndetermining the contents of a domain name registration record in the No-IP.com\nregistrar database. The data in this record is provided by No-IP.com\nfor informational purposes only, and No-Ip.com does not guarantee its \naccuracy. This service is intended only for query-based access. You agree \nthat you will use this data only for lawful purposes and that, under no \ncircumstances will you use this data to: (a) allow, enable, or otherwise \nsupport the transmission by e-mail, telephone, or facsimile of mass \nunsolicited, commercial advertising or solicitations to entities other than \nthe data recipient's own existing customers; or (b) enable high volume, \nautomated, electronic processes that send queries or data to the systems of \nRegistry Operator or any ICANN-Accredited Registrar, except as reasonably \nnecessary to register domain names or modify existing registrations. All \nrights reserved. Public Interest Registry reserves the right to modify these terms at any \ntime. By submitting this query, you agree to abide by this policy. \n\n\nDomain Name: SERVEQUAKE.COM\nCreated On: 12-Nov-2004 08:00:00 UTC\nLast Updated On: 11-Nov-2011 18:48:29 UTC\nExpiration Date: 10-Feb-2015 05:33:35 UTC\nSponsoring Registrar: Vitalwerks Internet Solutions, LLC / No-IP.com\nRegistrant Name: No-IP.com, Domain Operations\nRegistrant Organization: Vitalwerks Internet Solutions, LLC\nRegistrant Street1: 5905 South Virginia St\nRegistrant Street2: Suite 200\nRegistrant City: Reno\nRegistrant State/Province: NV\nRegistrant Postal Code: 89502\nRegistrant Country: US\nRegistrant Phone: +1.7758531883\nRegistrant FAX: \nRegistrant Email: domains@no-ip.com\n\nAdmin Name: No-IP.com, Domain Operations\nAdmin Street1: 5905 South Virginia St\nAdmin Street2: Suite 200\nAdmin City: Reno\nAdmin State/Province: NV\nAdmin Postal Code: 89502\nAdmin Country: US\nAdmin Phone: +1.7758531883\nAdmin FAX: \nAdmin Email: domains@no-ip.com\n\nTech Name: No-IP.com, Domain Operations\nTech Organization: Vitalwerks Internet Solutions, LLC\nTech Street1: 5905 South Virginia St\nTech Street2: Suite 200\nTech City: Reno\nTech State/Province: NV\nTech Postal Code: 89502\nTech Country: US\nTech Phone: +1.7758531883\nTech FAX: \nTech Email: domains@no-ip.com\n\nBilling Name: No-IP.com, Domain Operations\nBilling Organization: Vitalwerks Internet Solutions, LLC\nBilling Street1: 5905 South Virginia St\nBilling Street2: Suite 200\nBilling City: Reno\nBilling State/Province: NV\nBilling Postal Code: 89502\nBilling Country: US\nBilling Phone: +1.7758531883\nBilling FAX: \nBilling Email: domains@no-ip.com\n\nName Server: NF1.NO-IP.COM\nName Server: NF2.NO-IP.COM\nName Server: NF3.NO-IP.COM\nName Server: NF4.NO-IP.COM\n\n", " Domain Name: SERVEQUAKE.COM\n Registrar: VITALWERKS INTERNET SOLUTIONS LLC DBA NO-IP\n Whois Server: whois.no-ip.com\n Referral URL: http://www.no-ip.com\n Name Server: NF1.NO-IP.COM\n Name Server: NF2.NO-IP.COM\n Name Server: NF3.NO-IP.COM\n Name Server: NF4.NO-IP.COM\n Status: clientTransferProhibited\n Updated Date: 11-nov-2011\n Creation Date: 10-feb-2000\n Expiration Date: 10-feb-2015\n"], "whois_server": ["whois.no-ip.com"], "registrar": ["Vitalwerks Internet Solutions, LLC / No-IP.com"]}
{"updated_date": ["2011-11-11T18:48:29"], "status": ["clientTransferProhibited"], "contacts": {"admin": {"city": "Reno", "name": "No-IP.com, Domain Operations", "state": "Nevada", "phone": "+1.7758531883", "street": "5905 South Virginia St\nSuite 200", "country": "United States", "postalcode": "89502", "email": "domains@no-ip.com"}, "tech": {"city": "Reno", "name": "No-IP.com, Domain Operations", "state": "Nevada", "phone": "+1.7758531883", "street": "5905 South Virginia St\nSuite 200", "country": "United States", "postalcode": "89502", "organization": "Vitalwerks Internet Solutions, LLC", "email": "domains@no-ip.com"}, "registrant": {"city": "Reno", "name": "No-IP.com, Domain Operations", "state": "Nevada", "phone": "+1.7758531883", "street": "5905 South Virginia St\nSuite 200", "country": "United States", "postalcode": "89502", "organization": "Vitalwerks Internet Solutions, LLC", "email": "domains@no-ip.com"}, "billing": {"city": "Reno", "name": "No-IP.com, Domain Operations", "state": "Nevada", "phone": "+1.7758531883", "street": "5905 South Virginia St\nSuite 200", "country": "United States", "postalcode": "89502", "organization": "Vitalwerks Internet Solutions, LLC", "email": "domains@no-ip.com"}}, "nameservers": ["nf1.no-ip.com", "nf2.no-ip.com", "nf3.no-ip.com", "nf4.no-ip.com"], "expiration_date": ["2015-02-10T05:33:35"], "creation_date": ["2004-11-12T08:00:00", "2004-11-12T08:00:00"], "raw": ["Whois Server Version 2.0\n\nNOTICE: Access to No-IP.com WHOIS information is provided to assist persons in \ndetermining the contents of a domain name registration record in the No-IP.com\nregistrar database. The data in this record is provided by No-IP.com\nfor informational purposes only, and No-Ip.com does not guarantee its \naccuracy. This service is intended only for query-based access. You agree \nthat you will use this data only for lawful purposes and that, under no \ncircumstances will you use this data to: (a) allow, enable, or otherwise \nsupport the transmission by e-mail, telephone, or facsimile of mass \nunsolicited, commercial advertising or solicitations to entities other than \nthe data recipient's own existing customers; or (b) enable high volume, \nautomated, electronic processes that send queries or data to the systems of \nRegistry Operator or any ICANN-Accredited Registrar, except as reasonably \nnecessary to register domain names or modify existing registrations. All \nrights reserved. Public Interest Registry reserves the right to modify these terms at any \ntime. By submitting this query, you agree to abide by this policy. \n\n\nDomain Name: SERVEQUAKE.COM\nCreated On: 12-Nov-2004 08:00:00 UTC\nLast Updated On: 11-Nov-2011 18:48:29 UTC\nExpiration Date: 10-Feb-2015 05:33:35 UTC\nSponsoring Registrar: Vitalwerks Internet Solutions, LLC / No-IP.com\nRegistrant Name: No-IP.com, Domain Operations\nRegistrant Organization: Vitalwerks Internet Solutions, LLC\nRegistrant Street1: 5905 South Virginia St\nRegistrant Street2: Suite 200\nRegistrant City: Reno\nRegistrant State/Province: NV\nRegistrant Postal Code: 89502\nRegistrant Country: US\nRegistrant Phone: +1.7758531883\nRegistrant FAX: \nRegistrant Email: domains@no-ip.com\n\nAdmin Name: No-IP.com, Domain Operations\nAdmin Street1: 5905 South Virginia St\nAdmin Street2: Suite 200\nAdmin City: Reno\nAdmin State/Province: NV\nAdmin Postal Code: 89502\nAdmin Country: US\nAdmin Phone: +1.7758531883\nAdmin FAX: \nAdmin Email: domains@no-ip.com\n\nTech Name: No-IP.com, Domain Operations\nTech Organization: Vitalwerks Internet Solutions, LLC\nTech Street1: 5905 South Virginia St\nTech Street2: Suite 200\nTech City: Reno\nTech State/Province: NV\nTech Postal Code: 89502\nTech Country: US\nTech Phone: +1.7758531883\nTech FAX: \nTech Email: domains@no-ip.com\n\nBilling Name: No-IP.com, Domain Operations\nBilling Organization: Vitalwerks Internet Solutions, LLC\nBilling Street1: 5905 South Virginia St\nBilling Street2: Suite 200\nBilling City: Reno\nBilling State/Province: NV\nBilling Postal Code: 89502\nBilling Country: US\nBilling Phone: +1.7758531883\nBilling FAX: \nBilling Email: domains@no-ip.com\n\nName Server: NF1.NO-IP.COM\nName Server: NF2.NO-IP.COM\nName Server: NF3.NO-IP.COM\nName Server: NF4.NO-IP.COM\n\n", " Domain Name: SERVEQUAKE.COM\n Registrar: VITALWERKS INTERNET SOLUTIONS LLC DBA NO-IP\n Whois Server: whois.no-ip.com\n Referral URL: http://www.no-ip.com\n Name Server: NF1.NO-IP.COM\n Name Server: NF2.NO-IP.COM\n Name Server: NF3.NO-IP.COM\n Name Server: NF4.NO-IP.COM\n Status: clientTransferProhibited\n Updated Date: 11-nov-2011\n Creation Date: 10-feb-2000\n Expiration Date: 10-feb-2015\n"], "whois_server": ["whois.no-ip.com"], "registrar": ["Vitalwerks Internet Solutions, LLC / No-IP.com"]}

@ -1 +1 @@
{"status": ["Active"], "updated_date": ["2013-04-12T00:00:00"], "contacts": {"admin": null, "tech": {"city": "\u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\u0e2f", "handle": "15190", "country": "TH", "street": "991 \u0e28\u0e39\u0e19\u0e22\u0e4c\u0e01\u0e32\u0e23\u0e04\u0e49\u0e32 \u0e2a\u0e22\u0e32\u0e21\u0e1e\u0e32\u0e23\u0e32\u0e01\u0e2d\u0e19 \u0e16.\u0e1e\u0e23\u0e30\u0e23\u0e32\u0e21 1 \u0e41\u0e02\u0e27\u0e07\u0e1b\u0e17\u0e38\u0e21\u0e27\u0e31\u0e19 \u0e40\u0e02\u0e15\u0e1b\u0e17\u0e38\u0e21\u0e27\u0e31\u0e19", "postalcode": "10330"}, "registrant": {"city": "Bangkok", "street": "991 SIAM Paragon Shopping Center RAMA1 ROAD\nPatumwan", "country": "TH", "postalcode": "10330", "organization": "Siam Paragon Development co., LTD. (\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e2a\u0e22\u0e32\u0e21\u0e1e\u0e32\u0e23\u0e32\u0e01\u0e2d\u0e19 \u0e14\u0e35\u0e40\u0e27\u0e25\u0e25\u0e2d\u0e1b\u0e40\u0e21\u0e49\u0e19\u0e17\u0e4c \u0e08\u0e33\u0e01\u0e31\u0e14)"}, "billing": null}, "nameservers": ["ns.beenets.com", "ns2.beenets.com"], "expiration_date": ["2016-03-24T00:00:00"], "creation_date": ["2002-03-25T00:00:00", "2002-03-25T00:00:00"], "raw": ["\nWhois Server Version 2.1.2\n\nDomain: SIAMPARAGON.CO.TH\nRegistrar: T.H.NIC Co., Ltd.\nName Server: NS.BEENETS.COM\nName Server: NS2.BEENETS.COM\nStatus: ACTIVE\nUpdated date: 12 Apr 2013\nCreated date: 25 Mar 2002\nRenew date: 25 Mar 2013\nExp date: 24 Mar 2016\nDomain Holder: SIAM PARAGON DEVELOPMENT CO., LTD. (\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e2a\u0e22\u0e32\u0e21\u0e1e\u0e32\u0e23\u0e32\u0e01\u0e2d\u0e19 \u0e14\u0e35\u0e40\u0e27\u0e25\u0e25\u0e2d\u0e1b\u0e40\u0e21\u0e49\u0e19\u0e17\u0e4c \u0e08\u0e33\u0e01\u0e31\u0e14)\n991 SIAM Paragon Shopping Center RAMA1 ROAD, PATUMWAN, BANGKOK\n10330\nTH\n\nTech Contact: 15190\n991 \u0e28\u0e39\u0e19\u0e22\u0e4c\u0e01\u0e32\u0e23\u0e04\u0e49\u0e32 \u0e2a\u0e22\u0e32\u0e21\u0e1e\u0e32\u0e23\u0e32\u0e01\u0e2d\u0e19 \u0e16.\u0e1e\u0e23\u0e30\u0e23\u0e32\u0e21 1 \u0e41\u0e02\u0e27\u0e07\u0e1b\u0e17\u0e38\u0e21\u0e27\u0e31\u0e19 \u0e40\u0e02\u0e15\u0e1b\u0e17\u0e38\u0e21\u0e27\u0e31\u0e19 \u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\u0e2f\n10330\nTH\n\n\n\n>>> Last update of whois data: Fri, 27 Jun 2014 16:32:46 UTC+7 <<<\n\nFor more information please visit: https://www.thnic.co.th/whois\n\n\n"], "registrar": ["T.H.NIC Co., Ltd."]}
{"status": ["Active"], "updated_date": ["2013-04-12T00:00:00"], "contacts": {"admin": null, "tech": {"city": "\u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\u0e2f", "handle": "15190", "country": "Thailand", "street": "991 \u0e28\u0e39\u0e19\u0e22\u0e4c\u0e01\u0e32\u0e23\u0e04\u0e49\u0e32 \u0e2a\u0e22\u0e32\u0e21\u0e1e\u0e32\u0e23\u0e32\u0e01\u0e2d\u0e19 \u0e16.\u0e1e\u0e23\u0e30\u0e23\u0e32\u0e21 1 \u0e41\u0e02\u0e27\u0e07\u0e1b\u0e17\u0e38\u0e21\u0e27\u0e31\u0e19 \u0e40\u0e02\u0e15\u0e1b\u0e17\u0e38\u0e21\u0e27\u0e31\u0e19", "postalcode": "10330"}, "registrant": {"city": "Bangkok", "street": "991 SIAM Paragon Shopping Center RAMA1 ROAD\nPatumwan", "country": "Thailand", "postalcode": "10330", "organization": "Siam Paragon Development co., LTD. (\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e2a\u0e22\u0e32\u0e21\u0e1e\u0e32\u0e23\u0e32\u0e01\u0e2d\u0e19 \u0e14\u0e35\u0e40\u0e27\u0e25\u0e25\u0e2d\u0e1b\u0e40\u0e21\u0e49\u0e19\u0e17\u0e4c \u0e08\u0e33\u0e01\u0e31\u0e14)"}, "billing": null}, "nameservers": ["ns.beenets.com", "ns2.beenets.com"], "expiration_date": ["2016-03-24T00:00:00"], "creation_date": ["2002-03-25T00:00:00", "2002-03-25T00:00:00"], "raw": ["\nWhois Server Version 2.1.2\n\nDomain: SIAMPARAGON.CO.TH\nRegistrar: T.H.NIC Co., Ltd.\nName Server: NS.BEENETS.COM\nName Server: NS2.BEENETS.COM\nStatus: ACTIVE\nUpdated date: 12 Apr 2013\nCreated date: 25 Mar 2002\nRenew date: 25 Mar 2013\nExp date: 24 Mar 2016\nDomain Holder: SIAM PARAGON DEVELOPMENT CO., LTD. (\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e2a\u0e22\u0e32\u0e21\u0e1e\u0e32\u0e23\u0e32\u0e01\u0e2d\u0e19 \u0e14\u0e35\u0e40\u0e27\u0e25\u0e25\u0e2d\u0e1b\u0e40\u0e21\u0e49\u0e19\u0e17\u0e4c \u0e08\u0e33\u0e01\u0e31\u0e14)\n991 SIAM Paragon Shopping Center RAMA1 ROAD, PATUMWAN, BANGKOK\n10330\nTH\n\nTech Contact: 15190\n991 \u0e28\u0e39\u0e19\u0e22\u0e4c\u0e01\u0e32\u0e23\u0e04\u0e49\u0e32 \u0e2a\u0e22\u0e32\u0e21\u0e1e\u0e32\u0e23\u0e32\u0e01\u0e2d\u0e19 \u0e16.\u0e1e\u0e23\u0e30\u0e23\u0e32\u0e21 1 \u0e41\u0e02\u0e27\u0e07\u0e1b\u0e17\u0e38\u0e21\u0e27\u0e31\u0e19 \u0e40\u0e02\u0e15\u0e1b\u0e17\u0e38\u0e21\u0e27\u0e31\u0e19 \u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\u0e2f\n10330\nTH\n\n\n\n>>> Last update of whois data: Fri, 27 Jun 2014 16:32:46 UTC+7 <<<\n\nFor more information please visit: https://www.thnic.co.th/whois\n\n\n"], "registrar": ["T.H.NIC Co., Ltd."]}

@ -1 +1 @@
{"status": ["Active", "ok"], "updated_date": ["2009-08-31T00:00:00", "2006-03-03T00:00:00"], "contacts": {"admin": {"handle": "ANO00-FRNIC", "name": "Ano Nymous", "type": "PERSON", "changedate": "2009-08-31T00:00:00"}, "tech": {"handle": "GR283-FRNIC", "street": "Gandi\n15, place de la Nation", "postalcode": "75011", "city": "Paris", "name": "Gandi Role", "country": "FR", "type": "ROLE", "email": "noc@gandi.net", "changedate": "2006-03-03T00:00:00"}, "registrant": {"handle": "ANO00-FRNIC", "name": "Ano Nymous", "type": "PERSON", "changedate": "2009-08-31T00:00:00"}, "billing": null}, "nameservers": ["ns-sec.toile-libre.org", "ns-pri.toile-libre.org"], "creation_date": ["2009-04-04T00:00:00", "2004-03-09T00:00:00"], "raw": ["%%\n%% This is the AFNIC Whois server.\n%%\n%% complete date format : DD/MM/YYYY\n%% short date format : DD/MM\n%% version : FRNIC-2.5\n%%\n%% Rights restricted by copyright.\n%% See http://www.afnic.fr/afnic/web/mentions-legales-whois_en\n%%\n%% Use '-h' option to obtain more information about this service.\n%%\n%% [77.162.55.23 REQUEST] >> singularity.fr\n%%\n%% RL Net [##########] - RL IP [#########.]\n%%\n\ndomain: singularity.fr\nstatus: ACTIVE\nhold: NO\nholder-c: ANO00-FRNIC\nadmin-c: ANO00-FRNIC\ntech-c: GR283-FRNIC\nzone-c: NFC1-FRNIC\nnsl-id: NSL29702-FRNIC\nregistrar: GANDI\nanniversary: 01/09\ncreated: 04/04/2009\nlast-update: 01/09/2009\nsource: FRNIC\n\nns-list: NSL29702-FRNIC\nnserver: ns-sec.toile-libre.org\nnserver: ns-pri.toile-libre.org\nsource: FRNIC\n\nregistrar: GANDI\ntype: Isp Option 1\naddress: 63-65 boulevard Massena\naddress: PARIS\ncountry: FR\nphone: +33 1 70 37 76 61\nfax-no: +33 1 43 73 18 51\ne-mail: support-fr@support.gandi.net\nwebsite: http://www.gandi.net\nanonymous: NO\nregistered: 09/03/2004\nsource: FRNIC\n\nnic-hdl: ANO00-FRNIC\ntype: PERSON\ncontact: Ano Nymous\nremarks: -------------- WARNING --------------\nremarks: While the registrar knows him/her,\nremarks: this person chose to restrict access\nremarks: to his/her personal data. So PLEASE,\nremarks: don't send emails to Ano Nymous. This\nremarks: address is bogus and there is no hope\nremarks: of a reply.\nremarks: -------------- WARNING --------------\nregistrar: GANDI\nchanged: 31/08/2009 anonymous@nowhere.xx.fr\nanonymous: YES\nobsoleted: NO\neligstatus: ok\nsource: FRNIC\n\nnic-hdl: GR283-FRNIC\ntype: ROLE\ncontact: GANDI ROLE\naddress: Gandi\naddress: 15, place de la Nation\naddress: 75011 Paris\ncountry: FR\ne-mail: noc@gandi.net\ntrouble: -------------------------------------------------\ntrouble: GANDI is an ICANN accredited registrar\ntrouble: for more information:\ntrouble: Web: http://www.gandi.net\ntrouble: -------------------------------------------------\ntrouble: - network troubles: noc@gandi.net\ntrouble: - SPAM: abuse@gandi.net\ntrouble: -------------------------------------------------\nadmin-c: NL346-FRNIC\ntech-c: NL346-FRNIC\ntech-c: TUF1-FRNIC\nnotify: noc@gandi.net\nregistrar: GANDI\nchanged: 03/03/2006 noc@gandi.net\nanonymous: NO\nobsoleted: NO\nsource: FRNIC\n\n\n"], "registrar": ["Gandi"], "emails": ["support-fr@support.gandi.net", "anonymous@nowhere.xx.fr", "abuse@gandi.net"]}
{"status": ["Active", "ok"], "updated_date": ["2009-08-31T00:00:00", "2006-03-03T00:00:00"], "contacts": {"admin": {"handle": "ANO00-FRNIC", "name": "Ano Nymous", "type": "PERSON", "changedate": "2009-08-31T00:00:00"}, "tech": {"handle": "GR283-FRNIC", "street": "Gandi\n15, place de la Nation", "postalcode": "75011", "city": "Paris", "name": "Gandi Role", "country": "France", "type": "ROLE", "email": "noc@gandi.net", "changedate": "2006-03-03T00:00:00"}, "registrant": {"handle": "ANO00-FRNIC", "name": "Ano Nymous", "type": "PERSON", "changedate": "2009-08-31T00:00:00"}, "billing": null}, "nameservers": ["ns-sec.toile-libre.org", "ns-pri.toile-libre.org"], "creation_date": ["2009-04-04T00:00:00", "2004-03-09T00:00:00"], "raw": ["%%\n%% This is the AFNIC Whois server.\n%%\n%% complete date format : DD/MM/YYYY\n%% short date format : DD/MM\n%% version : FRNIC-2.5\n%%\n%% Rights restricted by copyright.\n%% See http://www.afnic.fr/afnic/web/mentions-legales-whois_en\n%%\n%% Use '-h' option to obtain more information about this service.\n%%\n%% [77.162.55.23 REQUEST] >> singularity.fr\n%%\n%% RL Net [##########] - RL IP [#########.]\n%%\n\ndomain: singularity.fr\nstatus: ACTIVE\nhold: NO\nholder-c: ANO00-FRNIC\nadmin-c: ANO00-FRNIC\ntech-c: GR283-FRNIC\nzone-c: NFC1-FRNIC\nnsl-id: NSL29702-FRNIC\nregistrar: GANDI\nanniversary: 01/09\ncreated: 04/04/2009\nlast-update: 01/09/2009\nsource: FRNIC\n\nns-list: NSL29702-FRNIC\nnserver: ns-sec.toile-libre.org\nnserver: ns-pri.toile-libre.org\nsource: FRNIC\n\nregistrar: GANDI\ntype: Isp Option 1\naddress: 63-65 boulevard Massena\naddress: PARIS\ncountry: FR\nphone: +33 1 70 37 76 61\nfax-no: +33 1 43 73 18 51\ne-mail: support-fr@support.gandi.net\nwebsite: http://www.gandi.net\nanonymous: NO\nregistered: 09/03/2004\nsource: FRNIC\n\nnic-hdl: ANO00-FRNIC\ntype: PERSON\ncontact: Ano Nymous\nremarks: -------------- WARNING --------------\nremarks: While the registrar knows him/her,\nremarks: this person chose to restrict access\nremarks: to his/her personal data. So PLEASE,\nremarks: don't send emails to Ano Nymous. This\nremarks: address is bogus and there is no hope\nremarks: of a reply.\nremarks: -------------- WARNING --------------\nregistrar: GANDI\nchanged: 31/08/2009 anonymous@nowhere.xx.fr\nanonymous: YES\nobsoleted: NO\neligstatus: ok\nsource: FRNIC\n\nnic-hdl: GR283-FRNIC\ntype: ROLE\ncontact: GANDI ROLE\naddress: Gandi\naddress: 15, place de la Nation\naddress: 75011 Paris\ncountry: FR\ne-mail: noc@gandi.net\ntrouble: -------------------------------------------------\ntrouble: GANDI is an ICANN accredited registrar\ntrouble: for more information:\ntrouble: Web: http://www.gandi.net\ntrouble: -------------------------------------------------\ntrouble: - network troubles: noc@gandi.net\ntrouble: - SPAM: abuse@gandi.net\ntrouble: -------------------------------------------------\nadmin-c: NL346-FRNIC\ntech-c: NL346-FRNIC\ntech-c: TUF1-FRNIC\nnotify: noc@gandi.net\nregistrar: GANDI\nchanged: 03/03/2006 noc@gandi.net\nanonymous: NO\nobsoleted: NO\nsource: FRNIC\n\n\n"], "registrar": ["Gandi"], "emails": ["support-fr@support.gandi.net", "anonymous@nowhere.xx.fr", "abuse@gandi.net"]}

@ -1 +1 @@
{"status": ["Active"], "updated_date": ["2009-09-10T00:00:00"], "contacts": {"admin": null, "tech": {"city": "\u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\u0e2f", "handle": "24897", "district": "\u0e41\u0e02\u0e27\u0e07\u0e17\u0e38\u0e48\u0e07\u0e2a\u0e2d\u0e07\u0e2b\u0e49\u0e2d\u0e07 \u0e40\u0e02\u0e15\u0e2b\u0e25\u0e31\u0e01\u0e2a\u0e35\u0e48", "country": "TH", "street": "2/4 \u0e2d\u0e32\u0e04\u0e32\u0e23\u0e44\u0e17\u0e22\u0e1e\u0e32\u0e13\u0e34\u0e0a\u0e22\u0e4c\u0e2a\u0e32\u0e21\u0e31\u0e04\u0e04\u0e35\u0e1b\u0e23\u0e30\u0e01\u0e31\u0e19\u0e20\u0e31\u0e22 \u0e0a\u0e31\u0e49\u0e19 10 \u0e16\u0e19\u0e19\u0e27\u0e34\u0e20\u0e32\u0e27\u0e14\u0e35\u0e23\u0e31\u0e07\u0e2a\u0e34\u0e15", "postalcode": "10210", "organization": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e40\u0e04\u0e40\u0e2d\u0e2a\u0e0b\u0e35 \u0e04\u0e2d\u0e21\u0e40\u0e21\u0e2d\u0e23\u0e4c\u0e40\u0e0a\u0e35\u0e22\u0e25 \u0e2d\u0e34\u0e19\u0e40\u0e15\u0e2d\u0e23\u0e4c\u0e40\u0e19\u0e15 \u0e08\u0e33\u0e01\u0e31\u0e14"}, "registrant": {"city": "388 Sukhumvit Road", "district": "Klongtoey", "state": "Bangkok", "street": "12th floor,Exchange Tower", "country": "TH", "postalcode": "10110", "organization": "Starbucks Coffee ( Thailand ) Co., Ltd."}, "billing": null}, "nameservers": ["ns.ksc.co.th", "ns2.ksc.co.th"], "expiration_date": ["2014-12-16T00:00:00"], "creation_date": ["2003-06-17T00:00:00", "2003-06-17T00:00:00"], "raw": ["\nWhois Server Version 2.1.2\n\nDomain: STARBUCKS.CO.TH\nRegistrar: T.H.NIC Co., Ltd.\nName Server: NS.KSC.CO.TH\nName Server: NS2.KSC.CO.TH\nStatus: ACTIVE\nUpdated date: 10 Sep 2009\nCreated date: 17 Jun 2003\nRenew date: 17 Jun 2003\nExp date: 16 Dec 2014\nDomain Holder: Starbucks Coffee ( Thailand ) Co., Ltd.\n12th floor,Exchange Tower, 388 Sukhumvit Road, Klongtoey, Bangkok\n10110\nTH\n\nTech Contact: 24897\n\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e40\u0e04\u0e40\u0e2d\u0e2a\u0e0b\u0e35 \u0e04\u0e2d\u0e21\u0e40\u0e21\u0e2d\u0e23\u0e4c\u0e40\u0e0a\u0e35\u0e22\u0e25 \u0e2d\u0e34\u0e19\u0e40\u0e15\u0e2d\u0e23\u0e4c\u0e40\u0e19\u0e15 \u0e08\u0e33\u0e01\u0e31\u0e14\n2/4 \u0e2d\u0e32\u0e04\u0e32\u0e23\u0e44\u0e17\u0e22\u0e1e\u0e32\u0e13\u0e34\u0e0a\u0e22\u0e4c\u0e2a\u0e32\u0e21\u0e31\u0e04\u0e04\u0e35\u0e1b\u0e23\u0e30\u0e01\u0e31\u0e19\u0e20\u0e31\u0e22 \u0e0a\u0e31\u0e49\u0e19 10 \u0e16\u0e19\u0e19\u0e27\u0e34\u0e20\u0e32\u0e27\u0e14\u0e35\u0e23\u0e31\u0e07\u0e2a\u0e34\u0e15 \n\u0e41\u0e02\u0e27\u0e07\u0e17\u0e38\u0e48\u0e07\u0e2a\u0e2d\u0e07\u0e2b\u0e49\u0e2d\u0e07 \u0e40\u0e02\u0e15\u0e2b\u0e25\u0e31\u0e01\u0e2a\u0e35\u0e48 \u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\u0e2f\n10210\nTH\n\n\n\n>>> Last update of whois data: Tue, 24 Jun 2014 04:58:54 UTC+7 <<<\n\nFor more information please visit: https://www.thnic.co.th/whois\n\n\n"], "registrar": ["T.H.NIC Co., Ltd."]}
{"status": ["Active"], "updated_date": ["2009-09-10T00:00:00"], "contacts": {"admin": null, "tech": {"city": "\u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\u0e2f", "handle": "24897", "district": "\u0e41\u0e02\u0e27\u0e07\u0e17\u0e38\u0e48\u0e07\u0e2a\u0e2d\u0e07\u0e2b\u0e49\u0e2d\u0e07 \u0e40\u0e02\u0e15\u0e2b\u0e25\u0e31\u0e01\u0e2a\u0e35\u0e48", "country": "Thailand", "street": "2/4 \u0e2d\u0e32\u0e04\u0e32\u0e23\u0e44\u0e17\u0e22\u0e1e\u0e32\u0e13\u0e34\u0e0a\u0e22\u0e4c\u0e2a\u0e32\u0e21\u0e31\u0e04\u0e04\u0e35\u0e1b\u0e23\u0e30\u0e01\u0e31\u0e19\u0e20\u0e31\u0e22 \u0e0a\u0e31\u0e49\u0e19 10 \u0e16\u0e19\u0e19\u0e27\u0e34\u0e20\u0e32\u0e27\u0e14\u0e35\u0e23\u0e31\u0e07\u0e2a\u0e34\u0e15", "postalcode": "10210", "organization": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e40\u0e04\u0e40\u0e2d\u0e2a\u0e0b\u0e35 \u0e04\u0e2d\u0e21\u0e40\u0e21\u0e2d\u0e23\u0e4c\u0e40\u0e0a\u0e35\u0e22\u0e25 \u0e2d\u0e34\u0e19\u0e40\u0e15\u0e2d\u0e23\u0e4c\u0e40\u0e19\u0e15 \u0e08\u0e33\u0e01\u0e31\u0e14"}, "registrant": {"city": "388 Sukhumvit Road", "district": "Klongtoey", "state": "Bangkok", "street": "12th floor,Exchange Tower", "country": "Thailand", "postalcode": "10110", "organization": "Starbucks Coffee ( Thailand ) Co., Ltd."}, "billing": null}, "nameservers": ["ns.ksc.co.th", "ns2.ksc.co.th"], "expiration_date": ["2014-12-16T00:00:00"], "creation_date": ["2003-06-17T00:00:00", "2003-06-17T00:00:00"], "raw": ["\nWhois Server Version 2.1.2\n\nDomain: STARBUCKS.CO.TH\nRegistrar: T.H.NIC Co., Ltd.\nName Server: NS.KSC.CO.TH\nName Server: NS2.KSC.CO.TH\nStatus: ACTIVE\nUpdated date: 10 Sep 2009\nCreated date: 17 Jun 2003\nRenew date: 17 Jun 2003\nExp date: 16 Dec 2014\nDomain Holder: Starbucks Coffee ( Thailand ) Co., Ltd.\n12th floor,Exchange Tower, 388 Sukhumvit Road, Klongtoey, Bangkok\n10110\nTH\n\nTech Contact: 24897\n\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e40\u0e04\u0e40\u0e2d\u0e2a\u0e0b\u0e35 \u0e04\u0e2d\u0e21\u0e40\u0e21\u0e2d\u0e23\u0e4c\u0e40\u0e0a\u0e35\u0e22\u0e25 \u0e2d\u0e34\u0e19\u0e40\u0e15\u0e2d\u0e23\u0e4c\u0e40\u0e19\u0e15 \u0e08\u0e33\u0e01\u0e31\u0e14\n2/4 \u0e2d\u0e32\u0e04\u0e32\u0e23\u0e44\u0e17\u0e22\u0e1e\u0e32\u0e13\u0e34\u0e0a\u0e22\u0e4c\u0e2a\u0e32\u0e21\u0e31\u0e04\u0e04\u0e35\u0e1b\u0e23\u0e30\u0e01\u0e31\u0e19\u0e20\u0e31\u0e22 \u0e0a\u0e31\u0e49\u0e19 10 \u0e16\u0e19\u0e19\u0e27\u0e34\u0e20\u0e32\u0e27\u0e14\u0e35\u0e23\u0e31\u0e07\u0e2a\u0e34\u0e15 \n\u0e41\u0e02\u0e27\u0e07\u0e17\u0e38\u0e48\u0e07\u0e2a\u0e2d\u0e07\u0e2b\u0e49\u0e2d\u0e07 \u0e40\u0e02\u0e15\u0e2b\u0e25\u0e31\u0e01\u0e2a\u0e35\u0e48 \u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\u0e2f\n10210\nTH\n\n\n\n>>> Last update of whois data: Tue, 24 Jun 2014 04:58:54 UTC+7 <<<\n\nFor more information please visit: https://www.thnic.co.th/whois\n\n\n"], "registrar": ["T.H.NIC Co., Ltd."]}

@ -1 +1 @@
{"nameservers": ["dns1.swisscom.com", "dns2.swisscom.com", "dns3.swisscom.com", "dns6.swisscom.ch", "dns7.swisscom.ch"], "raw": ["whois: This information is subject to an Acceptable Use Policy.\nSee http://www.nic.ch/terms/aup.html\n\n\nDomain name:\nswisscom.ch\n\nHolder of domain name:\nSwisscom AG\nKarin Hug\nDomain Registration\nalte Tiefenaustrasse 6\nCH-3050 Bern\nSwitzerland\nContractual Language: English\n\nTechnical contact:\nSwisscom IT Services AG\nAndreas Disteli\nOstermundigenstrasse 99 6\nCH-3050 Bern\nSwitzerland\n\nDNSSEC:N\n\nName servers:\ndns1.swisscom.com\ndns2.swisscom.com\ndns3.swisscom.com\ndns6.swisscom.ch\t[193.222.76.52]\ndns6.swisscom.ch\t[2a02:a90:ffff:ffff::c:1]\ndns7.swisscom.ch\t[193.222.76.53]\ndns7.swisscom.ch\t[2a02:a90:ffff:ffff::c:3]\n\n"], "contacts": {"admin": null, "tech": {"postalcode": "CH-3050", "city": "Bern", "street": "Ostermundigenstrasse 99 6", "name": "Swisscom IT Services AG\nAndreas Disteli", "country": "Switzerland"}, "registrant": {"postalcode": "CH-3050", "city": "Bern", "street": "alte Tiefenaustrasse 6", "name": "Swisscom AG\nKarin Hug\nDomain Registration", "country": "Switzerland"}, "billing": null}}
{"nameservers": ["dns1.swisscom.com", "dns2.swisscom.com", "dns3.swisscom.com", "dns6.swisscom.ch", "dns7.swisscom.ch"], "raw": ["whois: This information is subject to an Acceptable Use Policy.\nSee http://www.nic.ch/terms/aup.html\n\n\nDomain name:\nswisscom.ch\n\nHolder of domain name:\nSwisscom AG\nKarin Hug\nDomain Registration\nalte Tiefenaustrasse 6\nCH-3050 Bern\nSwitzerland\nContractual Language: English\n\nTechnical contact:\nSwisscom IT Services AG\nAndreas Disteli\nOstermundigenstrasse 99 6\nCH-3050 Bern\nSwitzerland\n\nDNSSEC:N\n\nName servers:\ndns1.swisscom.com\ndns2.swisscom.com\ndns3.swisscom.com\ndns6.swisscom.ch\t[193.222.76.52]\ndns6.swisscom.ch\t[2a02:a90:ffff:ffff::c:1]\ndns7.swisscom.ch\t[193.222.76.53]\ndns7.swisscom.ch\t[2a02:a90:ffff:ffff::c:3]\n\n"], "contacts": {"admin": null, "tech": {"city": "Bern", "name": "Andreas Disteli", "country": "Switzerland", "street": "Ostermundigenstrasse 99 6", "postalcode": "CH-3050", "organization": "Swisscom IT Services AG"}, "registrant": {"city": "Bern", "name": "Karin Hug\nDomain Registration", "country": "Switzerland", "street": "alte Tiefenaustrasse 6", "postalcode": "CH-3050", "organization": "Swisscom AG"}, "billing": null}}

@ -1 +1 @@
{"status": ["Connect"], "updated_date": ["2013-04-10T11:11:41", "2013-03-19T14:16:18", "2013-08-05T11:43:45"], "contacts": {"admin": {"city": "Berlin", "fax": "+49.3026312342", "name": "Christian Zantop", "country": "DE", "changed": "2013-03-19T14:16:18+01:00", "phone": "+49.3026312604", "street": "Luetzowplatz 11-13", "postalcode": "10785", "organization": "Stiftung Warentest", "type": "PERSON", "email": "webmaster@stiftung-warentest.de"}, "tech": {"city": "Eibelstadt", "fax": "+49.9303982879", "name": "Domainservice", "country": "DE", "changed": "2013-08-05T11:43:45+02:00", "phone": "+49.9303982860", "street": "Mainparkring 4", "postalcode": "97246", "organization": "iWelt AG", "type": "ROLE", "email": "support@iwelt.de"}, "registrant": null, "billing": null}, "nameservers": ["dns.iwelt-ag.net", "dns2.iwelt-ag.net", "dns3.iwelt-ag.de"], "raw": ["% Copyright (c) 2010 by DENIC\n% Version: 2.0\n% \n% Restricted rights.\n% \n% Terms and Conditions of Use\n% \n% The data in this record is provided by DENIC for informational purposes only.\n% DENIC does not guarantee its accuracy and cannot, under any circumstances,\n% be held liable in case the stored information would prove to be wrong,\n% incomplete or not accurate in any sense.\n% \n% All the domain data that is visible in the whois service is protected by law.\n% It is not permitted to use it for any purpose other than technical or\n% administrative requirements associated with the operation of the Internet.\n% It is explicitly forbidden to extract, copy and/or use or re-utilise in any\n% form and by any means (electronically or not) the whole or a quantitatively\n% or qualitatively substantial part of the contents of the whois database\n% without prior and explicit written permission by DENIC.\n% It is prohibited, in particular, to use it for transmission of unsolicited\n% and/or commercial and/or advertising by phone, fax, e-mail or for any similar\n% purposes.\n% \n% By maintaining the connection you assure that you have a legitimate interest\n% in the data and that you will only use it for the stated purposes. You are\n% aware that DENIC maintains the right to initiate legal proceedings against\n% you in the event of any breach of this assurance and to bar you from using\n% its whois service.\n% \n% The DENIC whois service on port 43 never discloses any information concerning\n% the domain holder/administrative contact. Information concerning the domain\n% holder/administrative contact can be obtained through use of our web-based\n% whois service available at the DENIC website:\n% http://www.denic.de/en/domains/whois-service/web-whois.html\n% \n\nDomain: test.de\nNserver: dns.iwelt-ag.net\nNserver: dns2.iwelt-ag.net\nNserver: dns3.iwelt-ag.de\nStatus: connect\nChanged: 2013-04-10T11:11:41+02:00\n\n[Tech-C]\nType: PERSON\nName: Christian Zantop\nOrganisation: Stiftung Warentest\nAddress: Luetzowplatz 11-13\nPostalCode: 10785\nCity: Berlin\nCountryCode: DE\nPhone: +49.3026312604\nFax: +49.3026312342\nEmail: webmaster@stiftung-warentest.de\nChanged: 2013-03-19T14:16:18+01:00\n\n[Zone-C]\nType: ROLE\nName: Domainservice\nOrganisation: iWelt AG\nAddress: Mainparkring 4\nPostalCode: 97246\nCity: Eibelstadt\nCountryCode: DE\nPhone: +49.9303982860\nFax: +49.9303982879\nEmail: support@iwelt.de\nChanged: 2013-08-05T11:43:45+02:00\n\n"]}
{"status": ["Connect"], "updated_date": ["2013-04-10T11:11:41", "2013-03-19T14:16:18", "2013-08-05T11:43:45"], "contacts": {"admin": {"city": "Berlin", "fax": "+49.3026312342", "name": "Christian Zantop", "changed": "2013-03-19T14:16:18+01:00", "phone": "+49.3026312604", "street": "Luetzowplatz 11-13", "country": "Germany", "postalcode": "10785", "organization": "Stiftung Warentest", "type": "PERSON", "email": "webmaster@stiftung-warentest.de"}, "tech": {"city": "Eibelstadt", "fax": "+49.9303982879", "name": "Domainservice", "changed": "2013-08-05T11:43:45+02:00", "phone": "+49.9303982860", "street": "Mainparkring 4", "country": "Germany", "postalcode": "97246", "organization": "iWelt AG", "type": "ROLE", "email": "support@iwelt.de"}, "registrant": null, "billing": null}, "nameservers": ["dns.iwelt-ag.net", "dns2.iwelt-ag.net", "dns3.iwelt-ag.de"], "raw": ["% Copyright (c) 2010 by DENIC\n% Version: 2.0\n% \n% Restricted rights.\n% \n% Terms and Conditions of Use\n% \n% The data in this record is provided by DENIC for informational purposes only.\n% DENIC does not guarantee its accuracy and cannot, under any circumstances,\n% be held liable in case the stored information would prove to be wrong,\n% incomplete or not accurate in any sense.\n% \n% All the domain data that is visible in the whois service is protected by law.\n% It is not permitted to use it for any purpose other than technical or\n% administrative requirements associated with the operation of the Internet.\n% It is explicitly forbidden to extract, copy and/or use or re-utilise in any\n% form and by any means (electronically or not) the whole or a quantitatively\n% or qualitatively substantial part of the contents of the whois database\n% without prior and explicit written permission by DENIC.\n% It is prohibited, in particular, to use it for transmission of unsolicited\n% and/or commercial and/or advertising by phone, fax, e-mail or for any similar\n% purposes.\n% \n% By maintaining the connection you assure that you have a legitimate interest\n% in the data and that you will only use it for the stated purposes. You are\n% aware that DENIC maintains the right to initiate legal proceedings against\n% you in the event of any breach of this assurance and to bar you from using\n% its whois service.\n% \n% The DENIC whois service on port 43 never discloses any information concerning\n% the domain holder/administrative contact. Information concerning the domain\n% holder/administrative contact can be obtained through use of our web-based\n% whois service available at the DENIC website:\n% http://www.denic.de/en/domains/whois-service/web-whois.html\n% \n\nDomain: test.de\nNserver: dns.iwelt-ag.net\nNserver: dns2.iwelt-ag.net\nNserver: dns3.iwelt-ag.de\nStatus: connect\nChanged: 2013-04-10T11:11:41+02:00\n\n[Tech-C]\nType: PERSON\nName: Christian Zantop\nOrganisation: Stiftung Warentest\nAddress: Luetzowplatz 11-13\nPostalCode: 10785\nCity: Berlin\nCountryCode: DE\nPhone: +49.3026312604\nFax: +49.3026312342\nEmail: webmaster@stiftung-warentest.de\nChanged: 2013-03-19T14:16:18+01:00\n\n[Zone-C]\nType: ROLE\nName: Domainservice\nOrganisation: iWelt AG\nAddress: Mainparkring 4\nPostalCode: 97246\nCity: Eibelstadt\nCountryCode: DE\nPhone: +49.9303982860\nFax: +49.9303982879\nEmail: support@iwelt.de\nChanged: 2013-08-05T11:43:45+02:00\n\n"]}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -1 +1 @@
{"status": ["ok"], "updated_date": ["2013-10-16T00:43:15", "2012-04-27T15:13:45"], "contacts": {"admin": {"handle": "SF3221", "name": "Sandro Fanelli", "organization": "Sandro Fanelli"}, "tech": {"city": "Bergamo", "handle": "2409-REGT", "name": "Technical Support", "state": "BG", "street": "Via Zanchi 22", "country": "IT", "postalcode": "24126", "organization": "Register.it S.p.A.", "creationdate": "2009-09-28T11:01:09", "changedate": "2012-04-27T15:13:45"}, "registrant": {"handle": "SF3221", "name": "Sandro Fanelli", "organization": "Sandro Fanelli"}, "billing": null}, "nameservers": ["ns1.softlayer.com", "ns2.softlayer.com"], "expiration_date": ["2014-09-30T00:00:00"], "creation_date": ["1997-09-26T00:00:00", "2009-09-28T11:01:09"], "raw": ["\n*********************************************************************\n* Please note that the following result could be a subgroup of *\n* the data contained in the database. *\n* *\n* Additional information can be visualized at: *\n* http://www.nic.it/cgi-bin/Whois/whois.cgi *\n*********************************************************************\n\nDomain: tip.it\nStatus: ok\nCreated: 1997-09-26 00:00:00\nLast Update: 2013-10-16 00:43:15\nExpire Date: 2014-09-30\n\nRegistrant\n Name: Sandro Fanelli\n Organization: Sandro Fanelli\n ContactID: SF3221\n\nAdmin Contact\n Name: Sandro Fanelli\n Organization: Sandro Fanelli\n ContactID: SF3221\n\nTechnical Contacts\n Name: Technical Support\n Organization: Register.it S.p.A.\n ContactID: 2409-REGT\n Address: Via Zanchi 22\n Bergamo\n 24126\n BG\n IT\n Created: 2009-09-28 11:01:09\n Last Update: 2012-04-27 15:13:45\n\nRegistrar\n Organization: Register.it s.p.a.\n Name: REGISTER-REG\n\nNameservers\n ns1.softlayer.com\n ns2.softlayer.com\n\n\n"], "registrar": ["Register.it s.p.a."]}
{"status": ["ok"], "updated_date": ["2013-10-16T00:43:15", "2012-04-27T15:13:45"], "contacts": {"admin": {"handle": "SF3221", "name": "Sandro Fanelli", "organization": "Sandro Fanelli"}, "tech": {"city": "Bergamo", "handle": "2409-REGT", "name": "Technical Support", "state": "BG", "street": "Via Zanchi 22", "country": "Italy", "postalcode": "24126", "organization": "Register.it S.p.A.", "creationdate": "2009-09-28T11:01:09", "changedate": "2012-04-27T15:13:45"}, "registrant": {"handle": "SF3221", "name": "Sandro Fanelli", "organization": "Sandro Fanelli"}, "billing": null}, "nameservers": ["ns1.softlayer.com", "ns2.softlayer.com"], "expiration_date": ["2014-09-30T00:00:00"], "creation_date": ["1997-09-26T00:00:00", "2009-09-28T11:01:09"], "raw": ["\n*********************************************************************\n* Please note that the following result could be a subgroup of *\n* the data contained in the database. *\n* *\n* Additional information can be visualized at: *\n* http://www.nic.it/cgi-bin/Whois/whois.cgi *\n*********************************************************************\n\nDomain: tip.it\nStatus: ok\nCreated: 1997-09-26 00:00:00\nLast Update: 2013-10-16 00:43:15\nExpire Date: 2014-09-30\n\nRegistrant\n Name: Sandro Fanelli\n Organization: Sandro Fanelli\n ContactID: SF3221\n\nAdmin Contact\n Name: Sandro Fanelli\n Organization: Sandro Fanelli\n ContactID: SF3221\n\nTechnical Contacts\n Name: Technical Support\n Organization: Register.it S.p.A.\n ContactID: 2409-REGT\n Address: Via Zanchi 22\n Bergamo\n 24126\n BG\n IT\n Created: 2009-09-28 11:01:09\n Last Update: 2012-04-27 15:13:45\n\nRegistrar\n Organization: Register.it s.p.a.\n Name: REGISTER-REG\n\nNameservers\n ns1.softlayer.com\n ns2.softlayer.com\n\n\n"], "registrar": ["Register.it s.p.a."]}

@ -1 +1 @@
{"status": ["Active"], "updated_date": ["2014-01-20T00:00:00"], "contacts": {"admin": null, "tech": {"city": "Bang Bor", "handle": "92144", "state": "Samutprakarn", "street": "99 Moo 5\nBangna-Trad K.M. 29.5 Rd.\nBan-Ragad", "country": "TH", "postalcode": "10560", "organization": "Toyota Motor Asia Pacific Engineering &amp; Manufacturing Co.,Ltd."}, "registrant": {"city": "Samrong Tai", "district": "PhraPradaeng", "state": "Samut Prakan", "street": "186/1 Mu1 Old Railway Rd.", "country": "TH", "postalcode": "10130", "organization": "Toyota Motor Thailand Co., Ltd. ( \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e42\u0e15\u0e42\u0e22\u0e15\u0e49\u0e32 \u0e21\u0e2d\u0e40\u0e15\u0e2d\u0e23\u0e4c \u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22 \u0e08\u0e33\u0e01\u0e31\u0e14 )"}, "billing": null}, "nameservers": ["ns1.ntt.co.th", "ns1.toyota.co.th", "ns2.toyota.co.th"], "expiration_date": ["2015-01-16T00:00:00"], "creation_date": ["1999-01-17T00:00:00", "1999-01-17T00:00:00"], "raw": ["\nWhois Server Version 2.1.2\n\nDomain: TOYOTA.CO.TH\nRegistrar: T.H.NIC Co., Ltd.\nName Server: NS1.NTT.CO.TH\nName Server: NS1.TOYOTA.CO.TH\nName Server: NS2.TOYOTA.CO.TH\nStatus: ACTIVE\nUpdated date: 20 Jan 2014\nCreated date: 17 Jan 1999\nRenew date: 17 Jan 2014\nExp date: 16 Jan 2015\nDomain Holder: Toyota Motor Thailand Co., Ltd. ( \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e42\u0e15\u0e42\u0e22\u0e15\u0e49\u0e32 \u0e21\u0e2d\u0e40\u0e15\u0e2d\u0e23\u0e4c \u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22 \u0e08\u0e33\u0e01\u0e31\u0e14 )\n186/1 Mu1 Old Railway Rd., Samrong Tai, PhraPradaeng, Samut Prakan\n10130\nTH\n\nTech Contact: 92144\nToyota Motor Asia Pacific Engineering &amp; Manufacturing Co.,Ltd.\n99 Moo 5, Bangna-Trad K.M. 29.5 Rd., Ban-Ragad, \nBang Bor, Samutprakarn\n10560\nTH\n\n\n\n>>> Last update of whois data: Fri, 27 Jun 2014 16:34:06 UTC+7 <<<\n\nFor more information please visit: https://www.thnic.co.th/whois\n\n\n"], "registrar": ["T.H.NIC Co., Ltd."]}
{"status": ["Active"], "updated_date": ["2014-01-20T00:00:00"], "contacts": {"admin": null, "tech": {"city": "Bang Bor", "handle": "92144", "state": "Samutprakarn", "street": "99 Moo 5\nBangna-Trad K.M. 29.5 Rd.\nBan-Ragad", "country": "Thailand", "postalcode": "10560", "organization": "Toyota Motor Asia Pacific Engineering &amp; Manufacturing Co.,Ltd."}, "registrant": {"city": "Samrong Tai", "district": "PhraPradaeng", "state": "Samut Prakan", "street": "186/1 Mu1 Old Railway Rd.", "country": "Thailand", "postalcode": "10130", "organization": "Toyota Motor Thailand Co., Ltd. ( \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e42\u0e15\u0e42\u0e22\u0e15\u0e49\u0e32 \u0e21\u0e2d\u0e40\u0e15\u0e2d\u0e23\u0e4c \u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22 \u0e08\u0e33\u0e01\u0e31\u0e14 )"}, "billing": null}, "nameservers": ["ns1.ntt.co.th", "ns1.toyota.co.th", "ns2.toyota.co.th"], "expiration_date": ["2015-01-16T00:00:00"], "creation_date": ["1999-01-17T00:00:00", "1999-01-17T00:00:00"], "raw": ["\nWhois Server Version 2.1.2\n\nDomain: TOYOTA.CO.TH\nRegistrar: T.H.NIC Co., Ltd.\nName Server: NS1.NTT.CO.TH\nName Server: NS1.TOYOTA.CO.TH\nName Server: NS2.TOYOTA.CO.TH\nStatus: ACTIVE\nUpdated date: 20 Jan 2014\nCreated date: 17 Jan 1999\nRenew date: 17 Jan 2014\nExp date: 16 Jan 2015\nDomain Holder: Toyota Motor Thailand Co., Ltd. ( \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e42\u0e15\u0e42\u0e22\u0e15\u0e49\u0e32 \u0e21\u0e2d\u0e40\u0e15\u0e2d\u0e23\u0e4c \u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22 \u0e08\u0e33\u0e01\u0e31\u0e14 )\n186/1 Mu1 Old Railway Rd., Samrong Tai, PhraPradaeng, Samut Prakan\n10130\nTH\n\nTech Contact: 92144\nToyota Motor Asia Pacific Engineering &amp; Manufacturing Co.,Ltd.\n99 Moo 5, Bangna-Trad K.M. 29.5 Rd., Ban-Ragad, \nBang Bor, Samutprakarn\n10560\nTH\n\n\n\n>>> Last update of whois data: Fri, 27 Jun 2014 16:34:06 UTC+7 <<<\n\nFor more information please visit: https://www.thnic.co.th/whois\n\n\n"], "registrar": ["T.H.NIC Co., Ltd."]}

File diff suppressed because one or more lines are too long

@ -1 +1 @@
{"status": ["Active", "Complete"], "contacts": {"admin": {"handle": "HK3507379T", "name": "Amazing Shrek", "firstname": "AMAZING", "country": "HK", "phone": "+852-123456", "street": "HK", "lastname": "SHREK", "organization": "Unwire Limited", "email": "mkt@bmedia.hk"}, "tech": {"name": "CHEUNG", "country": "HK", "phone": "+852-123456", "street": "HK", "lastname": "CHEUNG", "organization": "Unwire Limited", "email": "mkt@bmedia.hk"}, "registrant": {"country": "HK", "street": "HK", "organization": "Unwire Limited", "email": "mkt@bmedia.hk"}, "billing": null}, "nameservers": ["norm.ns.cloudflare.com", "zoe.ns.cloudflare.com"], "expiration_date": ["2021-06-24T00:00:00"], "creation_date": ["2009-06-24T00:00:00", "2009-06-24T00:00:00"], "raw": [" \n -------------------------------------------------------------------------------\n Whois server by HKIRC\n -------------------------------------------------------------------------------\n .hk top level Domain names can be registered via HKIRC-Accredited Registrars. \n Go to https://www.hkirc.hk/content.jsp?id=280 for details. \n -------------------------------------------------------------------------------\n\n\n\nDomain Name: UNWIRE.HK \n\nDomain Status: Active \n\nContract Version: HKDNR latest version \n\nRegistrar Name: Hong Kong Domain Name Registration Company Limited\n\nRegistrar Contact Information: Email: enquiry@hkdnr.hk Hotline: +852 2319 1313 \n\nReseller: \n\n\n\n\nRegistrant Contact Information:\n\nCompany English Name (It should be the same as the registered/corporation name on your Business Register Certificate or relevant documents): UNWIRE LIMITED\nCompany Chinese name: \nAddress: HK \nCountry: HK\nEmail: mkt@bmedia.hk \nDomain Name Commencement Date: 24-06-2009\nExpiry Date: 24-06-2021 \nRe-registration Status: Complete \n\n\n\nAdministrative Contact Information:\n\nGiven name: AMAZING \nFamily name: SHREK \nCompany name: UNWIRE LIMITED\nAddress: HK \nCountry: HK\nPhone: +852-123456\nFax: \nEmail: mkt@bmedia.hk\nAccount Name: HK3507379T\n\n\n\n\nTechnical Contact Information:\n\nFamily name: CHEUNG \nCompany name: UNWIRE LIMITED\nAddress: HK \nCountry: HK\nPhone: +852-123456\nFax: \nEmail: mkt@bmedia.hk\n\n\n\n\nName Servers Information:\n\nNORM.NS.CLOUDFLARE.COM\nZOE.NS.CLOUDFLARE.COM\n\n\n\nStatus Information:\n\nDomain Prohibit Status: \n\n\n\n -------------------------------------------------------------------------------\n The Registry contains ONLY .com.hk, .net.hk, .edu.hk, .org.hk,\n .gov.hk, idv.hk. and .hk $domains.\n -------------------------------------------------------------------------------\n\nWHOIS Terms of Use \nBy using this WHOIS search enquiry service you agree to these terms of use.\nThe data in HKDNR's WHOIS search engine is for information purposes only and HKDNR does not guarantee the accuracy of the data. The data is provided to assist people to obtain information about the registration record of domain names registered by HKDNR. You agree to use the data for lawful purposes only.\n\nYou are not authorised to use high-volume, electronic or automated processes to access, query or harvest data from this WHOIS search enquiry service.\n\nYou agree that you will not and will not allow anyone else to:\n\na. use the data for mass unsolicited commercial advertising of any sort via any medium including telephone, email or fax; or\n\nb. enable high volume, automated or electronic processes that apply to HKDNR or its computer systems including the WHOIS search enquiry service; or\n\nc. without the prior written consent of HKDNR compile, repackage, disseminate, disclose to any third party or use the data for a purpose other than obtaining information about a domain name registration record; or\n\nd. use such data to derive an economic benefit for yourself.\n\nHKDNR in its sole discretion may terminate your access to the WHOIS search enquiry service (including, without limitation, blocking your IP address) at any time including, without limitation, for excessive use of the WHOIS search enquiry service.\n\nHKDNR may modify these terms of use at any time by publishing the modified terms of use on its website.\n\n\n\n\n\n\n\n"], "registrar": ["Hong Kong Domain Name Registration Company Limited"], "emails": ["enquiry@hkdnr.hk"]}
{"status": ["Active", "Complete"], "contacts": {"admin": {"handle": "HK3507379T", "name": "Amazing Shrek", "firstname": "AMAZING", "country": "Hong Kong", "phone": "+852-123456", "street": "HK", "lastname": "SHREK", "organization": "Unwire Limited", "email": "mkt@bmedia.hk"}, "tech": {"name": "CHEUNG", "country": "Hong Kong", "phone": "+852-123456", "street": "HK", "lastname": "CHEUNG", "organization": "Unwire Limited", "email": "mkt@bmedia.hk"}, "registrant": {"country": "Hong Kong", "street": "HK", "organization": "Unwire Limited", "email": "mkt@bmedia.hk"}, "billing": null}, "nameservers": ["norm.ns.cloudflare.com", "zoe.ns.cloudflare.com"], "expiration_date": ["2021-06-24T00:00:00"], "creation_date": ["2009-06-24T00:00:00", "2009-06-24T00:00:00"], "raw": [" \n -------------------------------------------------------------------------------\n Whois server by HKIRC\n -------------------------------------------------------------------------------\n .hk top level Domain names can be registered via HKIRC-Accredited Registrars. \n Go to https://www.hkirc.hk/content.jsp?id=280 for details. \n -------------------------------------------------------------------------------\n\n\n\nDomain Name: UNWIRE.HK \n\nDomain Status: Active \n\nContract Version: HKDNR latest version \n\nRegistrar Name: Hong Kong Domain Name Registration Company Limited\n\nRegistrar Contact Information: Email: enquiry@hkdnr.hk Hotline: +852 2319 1313 \n\nReseller: \n\n\n\n\nRegistrant Contact Information:\n\nCompany English Name (It should be the same as the registered/corporation name on your Business Register Certificate or relevant documents): UNWIRE LIMITED\nCompany Chinese name: \nAddress: HK \nCountry: HK\nEmail: mkt@bmedia.hk \nDomain Name Commencement Date: 24-06-2009\nExpiry Date: 24-06-2021 \nRe-registration Status: Complete \n\n\n\nAdministrative Contact Information:\n\nGiven name: AMAZING \nFamily name: SHREK \nCompany name: UNWIRE LIMITED\nAddress: HK \nCountry: HK\nPhone: +852-123456\nFax: \nEmail: mkt@bmedia.hk\nAccount Name: HK3507379T\n\n\n\n\nTechnical Contact Information:\n\nFamily name: CHEUNG \nCompany name: UNWIRE LIMITED\nAddress: HK \nCountry: HK\nPhone: +852-123456\nFax: \nEmail: mkt@bmedia.hk\n\n\n\n\nName Servers Information:\n\nNORM.NS.CLOUDFLARE.COM\nZOE.NS.CLOUDFLARE.COM\n\n\n\nStatus Information:\n\nDomain Prohibit Status: \n\n\n\n -------------------------------------------------------------------------------\n The Registry contains ONLY .com.hk, .net.hk, .edu.hk, .org.hk,\n .gov.hk, idv.hk. and .hk $domains.\n -------------------------------------------------------------------------------\n\nWHOIS Terms of Use \nBy using this WHOIS search enquiry service you agree to these terms of use.\nThe data in HKDNR's WHOIS search engine is for information purposes only and HKDNR does not guarantee the accuracy of the data. The data is provided to assist people to obtain information about the registration record of domain names registered by HKDNR. You agree to use the data for lawful purposes only.\n\nYou are not authorised to use high-volume, electronic or automated processes to access, query or harvest data from this WHOIS search enquiry service.\n\nYou agree that you will not and will not allow anyone else to:\n\na. use the data for mass unsolicited commercial advertising of any sort via any medium including telephone, email or fax; or\n\nb. enable high volume, automated or electronic processes that apply to HKDNR or its computer systems including the WHOIS search enquiry service; or\n\nc. without the prior written consent of HKDNR compile, repackage, disseminate, disclose to any third party or use the data for a purpose other than obtaining information about a domain name registration record; or\n\nd. use such data to derive an economic benefit for yourself.\n\nHKDNR in its sole discretion may terminate your access to the WHOIS search enquiry service (including, without limitation, blocking your IP address) at any time including, without limitation, for excessive use of the WHOIS search enquiry service.\n\nHKDNR may modify these terms of use at any time by publishing the modified terms of use on its website.\n\n\n\n\n\n\n\n"], "registrar": ["Hong Kong Domain Name Registration Company Limited"], "emails": ["enquiry@hkdnr.hk"]}

@ -1 +1 @@
{"status": ["Active"], "updated_date": ["2012-07-03T00:00:00"], "contacts": {"admin": {"city": "Waltham", "fax": "6172608696", "name": "Jason Scott", "country": "US", "phone": "6172608696", "state": "MA", "street": "738 Main Street #383", "postalcode": "02453", "organization": "Archive Team", "email": "hostmaster@dot.am"}, "tech": {"city": "Waltham", "fax": "6172608696", "name": "Jason Scott", "country": "US", "phone": "6172608696", "state": "MA", "street": "738 Main Street #383", "postalcode": "02453", "organization": "Archive Team", "email": "hostmaster@dot.am"}, "registrant": {"city": "Waltham", "name": "Archive Team", "country": "US", "state": "MA", "street": "738 Main Street #383", "postalcode": "02453"}, "billing": null}, "nameservers": ["ns1.easydns.com", "ns2.easydns.com", "ns3.easydns.org", "ns6.easydns.net", "remote1.easydns.com", "remote2.easydns.com"], "expiration_date": ["2015-08-12T00:00:00"], "creation_date": ["2009-08-12T00:00:00"], "raw": ["%\n%AM TLD whois server #2\n%\n\n Domain name: urlte.am\n Registrar: abcdomain\n Status: active\n\n Registrant:\n Archive Team\n 738 Main Street #383\n Waltham MA, 02453\n US\n\n Administrative contact:\n Jason Scott\n Archive Team\n 738 Main Street #383\n Waltham MA, 02453\n US\n hostmaster@dot.am\n 6172608696\n 6172608696\n\n Technical contact:\n Jason Scott\n Archive Team\n 738 Main Street #383\n Waltham MA, 02453\n US\n hostmaster@dot.am\n 6172608696\n 6172608696\n\n DNS servers:\n ns1.easydns.com\n ns2.easydns.com\n remote1.easydns.com\n remote2.easydns.com\n ns3.easydns.org\n ns6.easydns.net\n\n Registered: 2009-08-12\n Last modified: 2012-07-03\n Expires: 2015-08-12\n\n\n"], "registrar": ["Abcdomain"]}
{"status": ["Active"], "updated_date": ["2012-07-03T00:00:00"], "contacts": {"admin": {"city": "Waltham", "fax": "6172608696", "name": "Jason Scott", "country": "United States", "phone": "6172608696", "state": "Massachusetts", "street": "738 Main Street #383", "postalcode": "02453", "organization": "Archive Team", "email": "hostmaster@dot.am"}, "tech": {"city": "Waltham", "fax": "6172608696", "name": "Jason Scott", "country": "United States", "phone": "6172608696", "state": "Massachusetts", "street": "738 Main Street #383", "postalcode": "02453", "organization": "Archive Team", "email": "hostmaster@dot.am"}, "registrant": {"city": "Waltham", "name": "Archive Team", "country": "United States", "state": "Massachusetts", "street": "738 Main Street #383", "postalcode": "02453"}, "billing": null}, "nameservers": ["ns1.easydns.com", "ns2.easydns.com", "remote1.easydns.com", "remote2.easydns.com", "ns3.easydns.org", "ns6.easydns.net"], "expiration_date": ["2015-08-12T00:00:00"], "creation_date": ["2009-08-12T00:00:00"], "raw": ["%\n%AM TLD whois server #2\n%\n\n Domain name: urlte.am\n Registrar: abcdomain\n Status: active\n\n Registrant:\n Archive Team\n 738 Main Street #383\n Waltham MA, 02453\n US\n\n Administrative contact:\n Jason Scott\n Archive Team\n 738 Main Street #383\n Waltham MA, 02453\n US\n hostmaster@dot.am\n 6172608696\n 6172608696\n\n Technical contact:\n Jason Scott\n Archive Team\n 738 Main Street #383\n Waltham MA, 02453\n US\n hostmaster@dot.am\n 6172608696\n 6172608696\n\n DNS servers:\n ns1.easydns.com\n ns2.easydns.com\n remote1.easydns.com\n remote2.easydns.com\n ns3.easydns.org\n ns6.easydns.net\n\n Registered: 2009-08-12\n Last modified: 2012-07-03\n Expires: 2015-08-12\n\n\n"], "registrar": ["Abcdomain"]}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -1 +1 @@
{"updated_date": ["2014-06-01T00:00:00"], "contacts": {"admin": {"handle": "mj205-irnic", "phone": "+982623554491", "street": "Andishe\nFaz 3\nMahale 23 St.\nShahed St.\nBaharan St.\nNo. 12", "city": "Shahraiar", "name": "Mohsen Jadidi", "country": "IR", "state": "Tehran", "email": "mnjadidi@gmail.com"}, "tech": {"handle": "mj205-irnic", "phone": "+982623554491", "street": "Andishe\nFaz 3\nMahale 23 St.\nShahed St.\nBaharan St.\nNo. 12", "city": "Shahraiar", "name": "Mohsen Jadidi", "country": "IR", "state": "Tehran", "email": "mnjadidi@gmail.com"}, "registrant": {"handle": "mj205-irnic", "phone": "+982623554491", "street": "Andishe\nFaz 3\nMahale 23 St.\nShahed St.\nBaharan St.\nNo. 12", "city": "Shahraiar", "name": "Mohsen Jadidi", "country": "IR", "state": "Tehran", "email": "mnjadidi@gmail.com"}, "billing": null}, "nameservers": ["ns1.webmasir.com", "ns2.webmasir.com"], "expiration_date": ["2017-03-03T00:00:00"], "raw": ["% This is the IRNIC Whois server v1.6.2.\n% Available on web at http://whois.nic.ir/\n% Find the terms and conditions of use on http://www.nic.ir/\n% \n% This server uses UTF-8 as the encoding for requests and responses.\n\n% NOTE: This output has been filtered.\n\n% Information related to 'whoiser.ir'\n\n\ndomain:\t\twhoiser.ir\nascii:\t\twhoiser.ir\nremarks:\t(Domain Holder) Mohsen Jadidi\nremarks:\t(Domain Holder Address) Andishe, Faz 3, Mahale 23 St., Shahed St., Baharan St., No. 12,, Shahraiar, Tehran, IR\nholder-c:\tmj205-irnic\nadmin-c:\tmj205-irnic\ntech-c:\t\tmj205-irnic\nnserver:\tns1.webmasir.com\nnserver:\tns2.webmasir.com\nlast-updated:\t2014-06-01\nexpire-date:\t2017-03-03\nsource:\t\tIRNIC # Filtered\n\nnic-hdl:\tmj205-irnic\nperson:\t\tMohsen Jadidi\ne-mail:\t\tmnjadidi@gmail.com\naddress:\tAndishe, Faz 3, Mahale 23 St., Shahed St., Baharan St., No. 12,, Shahraiar, Tehran, IR\nphone:\t\t+982623554491\nsource:\t\tIRNIC # Filtered\n\n\n"]}
{"updated_date": ["2014-06-01T00:00:00"], "contacts": {"admin": {"handle": "mj205-irnic", "phone": "+982623554491", "street": "Andishe\nFaz 3\nMahale 23 St.\nShahed St.\nBaharan St.\nNo. 12", "city": "Shahraiar", "name": "Mohsen Jadidi", "country": "Iran", "state": "Tehran", "email": "mnjadidi@gmail.com"}, "tech": {"handle": "mj205-irnic", "phone": "+982623554491", "street": "Andishe\nFaz 3\nMahale 23 St.\nShahed St.\nBaharan St.\nNo. 12", "city": "Shahraiar", "name": "Mohsen Jadidi", "country": "Iran", "state": "Tehran", "email": "mnjadidi@gmail.com"}, "registrant": {"handle": "mj205-irnic", "phone": "+982623554491", "street": "Andishe\nFaz 3\nMahale 23 St.\nShahed St.\nBaharan St.\nNo. 12", "city": "Shahraiar", "name": "Mohsen Jadidi", "country": "Iran", "state": "Tehran", "email": "mnjadidi@gmail.com"}, "billing": null}, "nameservers": ["ns1.webmasir.com", "ns2.webmasir.com"], "expiration_date": ["2017-03-03T00:00:00"], "raw": ["% This is the IRNIC Whois server v1.6.2.\n% Available on web at http://whois.nic.ir/\n% Find the terms and conditions of use on http://www.nic.ir/\n% \n% This server uses UTF-8 as the encoding for requests and responses.\n\n% NOTE: This output has been filtered.\n\n% Information related to 'whoiser.ir'\n\n\ndomain:\t\twhoiser.ir\nascii:\t\twhoiser.ir\nremarks:\t(Domain Holder) Mohsen Jadidi\nremarks:\t(Domain Holder Address) Andishe, Faz 3, Mahale 23 St., Shahed St., Baharan St., No. 12,, Shahraiar, Tehran, IR\nholder-c:\tmj205-irnic\nadmin-c:\tmj205-irnic\ntech-c:\t\tmj205-irnic\nnserver:\tns1.webmasir.com\nnserver:\tns2.webmasir.com\nlast-updated:\t2014-06-01\nexpire-date:\t2017-03-03\nsource:\t\tIRNIC # Filtered\n\nnic-hdl:\tmj205-irnic\nperson:\t\tMohsen Jadidi\ne-mail:\t\tmnjadidi@gmail.com\naddress:\tAndishe, Faz 3, Mahale 23 St., Shahed St., Baharan St., No. 12,, Shahraiar, Tehran, IR\nphone:\t\t+982623554491\nsource:\t\tIRNIC # Filtered\n\n\n"]}

File diff suppressed because one or more lines are too long

@ -1 +1 @@
{"contacts": {"admin": {"phone": "+1.4083493300", "fax": "+1.4083493301", "name": "Domain Administrator", "email": "domainadmin@yahoo-inc.com"}, "tech": {"phone": "+1.4083493300", "fax": "+1.4083493301", "name": "Domain Administrator", "email": "domainadmin@yahoo-inc.com"}, "registrant": {"city": "Sunnyvale", "fax": "+1.4083493301", "name": "Domain Administrator", "country": "US", "phone": "+1.4083493300", "state": "CA", "street": "701 First Avenue", "organization": "Yahoo! Inc.", "email": "domainadmin@yahoo-inc.com"}, "billing": null}, "nameservers": ["ns1.yahoo.com", "ns2.yahoo.com", "ns3.yahoo.com", "ns4.yahoo.com", "ns5.yahoo.com"], "expiration_date": ["2019-07-12T00:00:00", "2019-07-12T00:00:00"], "creation_date": ["1997-05-01T00:00:00", "1997-05-01T00:00:00"], "raw": ["Domain Name: yahoo.com.tw\n Registrant:\n Yahoo! Inc.\n Domain Administrator domainadmin@yahoo-inc.com\n +1.4083493300\n +1.4083493301\n 701 First Avenue \n Sunnyvale, CA\n US\n\n Administrative Contact:\n Domain Administrator domainadmin@yahoo-inc.com\n +1.4083493300\n +1.4083493301\n\n Technical Contact:\n Domain Administrator domainadmin@yahoo-inc.com\n +1.4083493300\n +1.4083493301\n\n Record expires on 2019-07-12 (YYYY-MM-DD)\n Record created on 1997-05-01 (YYYY-MM-DD)\n\n Domain servers in listed order:\n ns1.yahoo.com \n ns2.yahoo.com \n ns3.yahoo.com \n ns4.yahoo.com \n ns5.yahoo.com \n\nRegistration Service Provider: Markmonitor, Inc.\n\n[Provided by NeuStar Registry Gateway Services]\n\n"], "registrar": ["Markmonitor, Inc."]}
{"contacts": {"admin": {"phone": "+1.4083493300", "fax": "+1.4083493301", "name": "Domain Administrator", "email": "domainadmin@yahoo-inc.com"}, "tech": {"phone": "+1.4083493300", "fax": "+1.4083493301", "name": "Domain Administrator", "email": "domainadmin@yahoo-inc.com"}, "registrant": {"city": "Sunnyvale", "fax": "+1.4083493301", "name": "Domain Administrator", "country": "United States", "phone": "+1.4083493300", "state": "California", "street": "701 First Avenue", "organization": "Yahoo! Inc.", "email": "domainadmin@yahoo-inc.com"}, "billing": null}, "nameservers": ["ns1.yahoo.com", "ns2.yahoo.com", "ns3.yahoo.com", "ns4.yahoo.com", "ns5.yahoo.com"], "expiration_date": ["2019-07-12T00:00:00", "2019-07-12T00:00:00"], "creation_date": ["1997-05-01T00:00:00", "1997-05-01T00:00:00"], "raw": ["Domain Name: yahoo.com.tw\n Registrant:\n Yahoo! Inc.\n Domain Administrator domainadmin@yahoo-inc.com\n +1.4083493300\n +1.4083493301\n 701 First Avenue \n Sunnyvale, CA\n US\n\n Administrative Contact:\n Domain Administrator domainadmin@yahoo-inc.com\n +1.4083493300\n +1.4083493301\n\n Technical Contact:\n Domain Administrator domainadmin@yahoo-inc.com\n +1.4083493300\n +1.4083493301\n\n Record expires on 2019-07-12 (YYYY-MM-DD)\n Record created on 1997-05-01 (YYYY-MM-DD)\n\n Domain servers in listed order:\n ns1.yahoo.com \n ns2.yahoo.com \n ns3.yahoo.com \n ns4.yahoo.com \n ns5.yahoo.com \n\nRegistration Service Provider: Markmonitor, Inc.\n\n[Provided by NeuStar Registry Gateway Services]\n\n"], "registrar": ["Markmonitor, Inc."]}

@ -1 +1 @@
{"status": ["ok"], "updated_date": ["2013-12-06T00:48:58", "2012-11-02T07:30:15", "2012-11-02T07:30:16"], "contacts": {"admin": {"city": "Milano", "handle": "DUP975799853", "name": "Martini Massimo Ernesto Aldo", "state": "MI", "street": "via Spadolini 7", "country": "IT", "postalcode": "20141", "creationdate": "2012-11-02T07:30:15", "changedate": "2012-11-02T07:30:15"}, "tech": {"city": "Sunnyvale", "handle": "DUP285050789", "name": "Yahoo Inc", "state": "California", "street": "Domain Administrator\n701 First Avenue", "country": "US", "postalcode": "94089", "creationdate": "2012-11-02T07:30:16", "changedate": "2012-11-02T07:30:16"}, "registrant": {"city": "Milano", "handle": "DUP211874838", "name": "Yahoo! Italia S.r.l.", "state": "MI", "street": "via Spadolini 7", "country": "IT", "postalcode": "20141", "organization": "Yahoo! Italia S.r.l.", "creationdate": "2012-11-02T07:30:15", "changedate": "2012-11-02T07:30:15"}, "billing": null}, "nameservers": ["ns1.yahoo.com", "ns5.yahoo.com", "ns7.yahoo.com", "ns2.yahoo.com", "ns3.yahoo.com"], "expiration_date": ["2014-11-20T00:00:00"], "creation_date": ["1998-05-11T00:00:00", "2012-11-02T07:30:15", "2012-11-02T07:30:16"], "raw": ["\n*********************************************************************\n* Please note that the following result could be a subgroup of *\n* the data contained in the database. *\n* *\n* Additional information can be visualized at: *\n* http://www.nic.it/cgi-bin/Whois/whois.cgi *\n*********************************************************************\n\nDomain: yahoo.it\nStatus: ok\nCreated: 1998-05-11 00:00:00\nLast Update: 2013-12-06 00:48:58\nExpire Date: 2014-11-20\n\nRegistrant\n Name: Yahoo! Italia S.r.l.\n Organization: Yahoo! Italia S.r.l.\n ContactID: DUP211874838\n Address: via Spadolini 7\n Milano\n 20141\n MI\n IT\n Created: 2012-11-02 07:30:15\n Last Update: 2012-11-02 07:30:15\n\nAdmin Contact\n Name: Martini Massimo Ernesto Aldo\n ContactID: DUP975799853\n Address: via Spadolini 7\n Milano\n 20141\n MI\n IT\n Created: 2012-11-02 07:30:15\n Last Update: 2012-11-02 07:30:15\n\nTechnical Contacts\n Name: Yahoo Inc\n ContactID: DUP285050789\n Address: Domain Administrator\n 701 First Avenue\n Sunnyvale\n 94089\n CALIFORNIA\n US\n Created: 2012-11-02 07:30:16\n Last Update: 2012-11-02 07:30:16\n\nRegistrar\n Organization: MarkMonitor International Limited\n Name: MARKMONITOR-REG\n Web: https://www.markmonitor.com/\n\nNameservers\n ns1.yahoo.com\n ns5.yahoo.com\n ns7.yahoo.com\n ns2.yahoo.com\n ns3.yahoo.com\n\n\n"], "registrar": ["MarkMonitor International Limited"]}
{"status": ["ok"], "updated_date": ["2013-12-06T00:48:58", "2012-11-02T07:30:15", "2012-11-02T07:30:16"], "contacts": {"admin": {"city": "Milano", "handle": "DUP975799853", "name": "Martini Massimo Ernesto Aldo", "state": "MI", "street": "via Spadolini 7", "country": "Italy", "postalcode": "20141", "creationdate": "2012-11-02T07:30:15", "changedate": "2012-11-02T07:30:15"}, "tech": {"city": "Sunnyvale", "handle": "DUP285050789", "state": "California", "street": "Domain Administrator\n701 First Avenue", "country": "United States", "postalcode": "94089", "organization": "Yahoo Inc", "creationdate": "2012-11-02T07:30:16", "changedate": "2012-11-02T07:30:16"}, "registrant": {"city": "Milano", "handle": "DUP211874838", "name": "Yahoo! Italia S.r.l.", "state": "MI", "street": "via Spadolini 7", "country": "Italy", "postalcode": "20141", "organization": "Yahoo! Italia S.r.l.", "creationdate": "2012-11-02T07:30:15", "changedate": "2012-11-02T07:30:15"}, "billing": null}, "nameservers": ["ns1.yahoo.com", "ns5.yahoo.com", "ns7.yahoo.com", "ns2.yahoo.com", "ns3.yahoo.com"], "expiration_date": ["2014-11-20T00:00:00"], "creation_date": ["1998-05-11T00:00:00", "2012-11-02T07:30:15", "2012-11-02T07:30:16"], "raw": ["\n*********************************************************************\n* Please note that the following result could be a subgroup of *\n* the data contained in the database. *\n* *\n* Additional information can be visualized at: *\n* http://www.nic.it/cgi-bin/Whois/whois.cgi *\n*********************************************************************\n\nDomain: yahoo.it\nStatus: ok\nCreated: 1998-05-11 00:00:00\nLast Update: 2013-12-06 00:48:58\nExpire Date: 2014-11-20\n\nRegistrant\n Name: Yahoo! Italia S.r.l.\n Organization: Yahoo! Italia S.r.l.\n ContactID: DUP211874838\n Address: via Spadolini 7\n Milano\n 20141\n MI\n IT\n Created: 2012-11-02 07:30:15\n Last Update: 2012-11-02 07:30:15\n\nAdmin Contact\n Name: Martini Massimo Ernesto Aldo\n ContactID: DUP975799853\n Address: via Spadolini 7\n Milano\n 20141\n MI\n IT\n Created: 2012-11-02 07:30:15\n Last Update: 2012-11-02 07:30:15\n\nTechnical Contacts\n Name: Yahoo Inc\n ContactID: DUP285050789\n Address: Domain Administrator\n 701 First Avenue\n Sunnyvale\n 94089\n CALIFORNIA\n US\n Created: 2012-11-02 07:30:16\n Last Update: 2012-11-02 07:30:16\n\nRegistrar\n Organization: MarkMonitor International Limited\n Name: MARKMONITOR-REG\n Web: https://www.markmonitor.com/\n\nNameservers\n ns1.yahoo.com\n ns5.yahoo.com\n ns7.yahoo.com\n ns2.yahoo.com\n ns3.yahoo.com\n\n\n"], "registrar": ["MarkMonitor International Limited"]}
Loading…
Cancel
Save