tor-commits
Threads by month
- ----- 2025 -----
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
August 2014
- 21 participants
- 1599 discussions

[tor-browser/esr24] Bug 1012694 - IonMonkey (ARM): Use the second scratch register to avoid clobbering the scratch register. r=dougc, a=abillings
by mikeperry@torproject.org 29 Aug '14
by mikeperry@torproject.org 29 Aug '14
29 Aug '14
commit 8acbe105e17e37d23712925261926f04363f7b22
Author: Douglas Crosher <dtc-moz(a)scieneer.com>
Date: Tue Jun 17 11:47:45 2014 +1000
Bug 1012694 - IonMonkey (ARM): Use the second scratch register to avoid clobbering the scratch register. r=dougc, a=abillings
---
js/src/jit/arm/MacroAssembler-arm.h | 15 +++++++++------
1 file changed, 9 insertions(+), 6 deletions(-)
diff --git a/js/src/jit/arm/MacroAssembler-arm.h b/js/src/jit/arm/MacroAssembler-arm.h
index 04d68af..7bc0da0 100644
--- a/js/src/jit/arm/MacroAssembler-arm.h
+++ b/js/src/jit/arm/MacroAssembler-arm.h
@@ -763,8 +763,9 @@ class MacroAssemblerARMCompat : public MacroAssemblerARM
if (lhs.getTag() == Operand::OP2) {
branch32(cond, lhs.toReg(), rhs, label);
} else {
- ma_ldr(lhs, ScratchRegister);
- branch32(cond, ScratchRegister, rhs, label);
+ // branch32 will use ScratchRegister.
+ ma_ldr(lhs, secondScratchReg_);
+ branch32(cond, secondScratchReg_, rhs, label);
}
}
void branch32(Condition cond, const Address &lhs, Register rhs, Label *label) {
@@ -772,8 +773,9 @@ class MacroAssemblerARMCompat : public MacroAssemblerARM
branch32(cond, ScratchRegister, rhs, label);
}
void branch32(Condition cond, const Address &lhs, Imm32 rhs, Label *label) {
- load32(lhs, ScratchRegister);
- branch32(cond, ScratchRegister, rhs, label);
+ // branch32 will use ScratchRegister.
+ load32(lhs, secondScratchReg_);
+ branch32(cond, secondScratchReg_, rhs, label);
}
void branchPtr(Condition cond, const Address &lhs, Register rhs, Label *label) {
branch32(cond, lhs, rhs, label);
@@ -856,8 +858,9 @@ class MacroAssemblerARMCompat : public MacroAssemblerARM
ma_b(label, cond);
}
void branchTest32(Condition cond, const Address &address, Imm32 imm, Label *label) {
- ma_ldr(Operand(address.base, address.offset), ScratchRegister);
- branchTest32(cond, ScratchRegister, imm, label);
+ // branchTest32 will use ScratchRegister.
+ load32(address, secondScratchReg_);
+ branchTest32(cond, secondScratchReg_, imm, label);
}
void branchTestPtr(Condition cond, const Register &lhs, const Register &rhs, Label *label) {
branchTest32(cond, lhs, rhs, label);
1
0

[tor-browser/esr24] Bug 1033340 - port forward PSL test changes also, to try and get rid of xpcshell PSL bustage. a=bustage.
by mikeperry@torproject.org 29 Aug '14
by mikeperry@torproject.org 29 Aug '14
29 Aug '14
commit 994856d33e0338cb0378eeca454a6bca428acef7
Author: Gervase Markham <gerv(a)gerv.net>
Date: Thu Jul 3 15:22:34 2014 +0100
Bug 1033340 - port forward PSL test changes also, to try and get rid of xpcshell PSL bustage. a=bustage.
---
netwerk/test/unit/data/test_psl.txt | 32 ++++++++++++++++++++++++++------
netwerk/test/unit/test_psl.js | 20 ++++++++++++++------
2 files changed, 40 insertions(+), 12 deletions(-)
diff --git a/netwerk/test/unit/data/test_psl.txt b/netwerk/test/unit/data/test_psl.txt
index 5a75831..35c8ccf 100644
--- a/netwerk/test/unit/data/test_psl.txt
+++ b/netwerk/test/unit/data/test_psl.txt
@@ -60,12 +60,12 @@ checkPublicSuffix('a.b.c.kobe.jp', 'b.c.kobe.jp');
checkPublicSuffix('city.kobe.jp', 'city.kobe.jp');
checkPublicSuffix('www.city.kobe.jp', 'city.kobe.jp');
// TLD with a wildcard rule and exceptions.
-checkPublicSuffix('om', null);
-checkPublicSuffix('test.om', null);
-checkPublicSuffix('b.test.om', 'b.test.om');
-checkPublicSuffix('a.b.test.om', 'b.test.om');
-checkPublicSuffix('songfest.om', 'songfest.om');
-checkPublicSuffix('www.songfest.om', 'songfest.om');
+checkPublicSuffix('ck', null);
+checkPublicSuffix('test.ck', null);
+checkPublicSuffix('b.test.ck', 'b.test.ck');
+checkPublicSuffix('a.b.test.ck', 'b.test.ck');
+checkPublicSuffix('www.ck', 'www.ck');
+checkPublicSuffix('www.www.ck', 'www.ck');
// US K12.
checkPublicSuffix('us', null);
checkPublicSuffix('test.us', 'test.us');
@@ -76,3 +76,23 @@ checkPublicSuffix('www.test.ak.us', 'test.ak.us');
checkPublicSuffix('k12.ak.us', null);
checkPublicSuffix('test.k12.ak.us', 'test.k12.ak.us');
checkPublicSuffix('www.test.k12.ak.us', 'test.k12.ak.us');
+// IDN labels.
+checkPublicSuffix('食狮.com.cn', '食狮.com.cn');
+checkPublicSuffix('食狮.公司.cn', '食狮.公司.cn');
+checkPublicSuffix('www.食狮.公司.cn', '食狮.公司.cn');
+checkPublicSuffix('shishi.公司.cn', 'shishi.公司.cn');
+checkPublicSuffix('公司.cn', null);
+checkPublicSuffix('食狮.中国', '食狮.中国');
+checkPublicSuffix('www.食狮.中国', '食狮.中国');
+checkPublicSuffix('shishi.中国', 'shishi.中国');
+checkPublicSuffix('中国', null);
+// Same as above, but punycoded.
+checkPublicSuffix('xn--85x722f.com.cn', 'xn--85x722f.com.cn');
+checkPublicSuffix('xn--85x722f.xn--55qx5d.cn', 'xn--85x722f.xn--55qx5d.cn');
+checkPublicSuffix('www.xn--85x722f.xn--55qx5d.cn', 'xn--85x722f.xn--55qx5d.cn');
+checkPublicSuffix('shishi.xn--55qx5d.cn', 'shishi.xn--55qx5d.cn');
+checkPublicSuffix('xn--55qx5d.cn', null);
+checkPublicSuffix('xn--85x722f.xn--fiqs8s', 'xn--85x722f.xn--fiqs8s');
+checkPublicSuffix('www.xn--85x722f.xn--fiqs8s', 'xn--85x722f.xn--fiqs8s');
+checkPublicSuffix('shishi.xn--fiqs8s', 'shishi.xn--fiqs8s');
+checkPublicSuffix('xn--fiqs8s', null);
diff --git a/netwerk/test/unit/test_psl.js b/netwerk/test/unit/test_psl.js
index 446fe4c..251ffa6 100644
--- a/netwerk/test/unit/test_psl.js
+++ b/netwerk/test/unit/test_psl.js
@@ -1,9 +1,11 @@
-const Cc = Components.classes;
-const Ci = Components.interfaces;
-
var etld = Cc["@mozilla.org/network/effective-tld-service;1"]
.getService(Ci.nsIEffectiveTLDService);
+var idna = Cc["@mozilla.org/network/idn-service;1"]
+ .getService(Ci.nsIIDNService);
+
+var Cr = Components.results;
+
function run_test()
{
var file = do_get_file("data/test_psl.txt");
@@ -13,7 +15,7 @@ function run_test()
var scriptLoader = Cc["@mozilla.org/moz/jssubscript-loader;1"]
.getService(Ci.mozIJSSubScriptLoader);
var srvScope = {};
- scriptLoader.loadSubScript(uri.spec, srvScope);
+ scriptLoader.loadSubScript(uri.spec, srvScope, "utf-8");
}
function checkPublicSuffix(host, expectedSuffix)
@@ -21,8 +23,14 @@ function checkPublicSuffix(host, expectedSuffix)
var actualSuffix = null;
try {
actualSuffix = etld.getBaseDomainFromHost(host);
- } catch (e if e.name == "NS_ERROR_INSUFFICIENT_DOMAIN_LEVELS" ||
- e.name == "NS_ERROR_ILLEGAL_VALUE") {
+ } catch (e if e.result == Cr.NS_ERROR_INSUFFICIENT_DOMAIN_LEVELS ||
+ e.result == Cr.NS_ERROR_ILLEGAL_VALUE) {
+ }
+ // The EffectiveTLDService always gives back punycoded labels.
+ // The test suite wants to get back what it put in.
+ if (actualSuffix !== null && expectedSuffix !== null &&
+ /(^|\.)xn--/.test(actualSuffix) && !/(^|\.)xn--/.test(expectedSuffix)) {
+ actualSuffix = idna.convertACEtoUTF8(actualSuffix);
}
do_check_eq(actualSuffix, expectedSuffix);
}
1
0

[tor-browser/esr24] No bug, Automated blocklist update from host b-linux64-ix-0011 - a=blocklist-update
by mikeperry@torproject.org 29 Aug '14
by mikeperry@torproject.org 29 Aug '14
29 Aug '14
commit 949aaf809a1756d39b87dc5d2a483246ce301a86
Author: ffxbld <none@none>
Date: Sat Jun 28 03:10:27 2014 -0700
No bug, Automated blocklist update from host b-linux64-ix-0011 - a=blocklist-update
---
browser/app/blocklist.xml | 22 +++++++++++++++++++---
1 file changed, 19 insertions(+), 3 deletions(-)
diff --git a/browser/app/blocklist.xml b/browser/app/blocklist.xml
index 87367d7..225701e 100644
--- a/browser/app/blocklist.xml
+++ b/browser/app/blocklist.xml
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
-<blocklist xmlns="http://www.mozilla.org/2006/addons-blocklist" lastupdate="1403216209000">
+<blocklist xmlns="http://www.mozilla.org/2006/addons-blocklist" lastupdate="1403823002000">
<emItems>
<emItem blockID="i454" id="sqlmoz(a)facebook.com">
<versionRange minVersion="0" maxVersion="*" severity="3">
@@ -193,6 +193,12 @@
<prefs>
</prefs>
</emItem>
+ <emItem blockID="i77" id="{fa277cfc-1d75-4949-a1f9-4ac8e41b2dfd}">
+ <versionRange minVersion="0" maxVersion="*">
+ </versionRange>
+ <prefs>
+ </prefs>
+ </emItem>
<emItem blockID="i40" id="{28387537-e3f9-4ed7-860c-11e69af4a8a0}">
<versionRange minVersion="0.1" maxVersion="4.3.1.00" severity="1">
</versionRange>
@@ -244,10 +250,12 @@
<prefs>
</prefs>
</emItem>
- <emItem blockID="i77" id="{fa277cfc-1d75-4949-a1f9-4ac8e41b2dfd}">
- <versionRange minVersion="0" maxVersion="*">
+ <emItem blockID="i630" id="webbooster(a)iminent.com">
+ <versionRange minVersion="0" maxVersion="*" severity="1">
</versionRange>
<prefs>
+ <pref>browser.startup.homepage</pref>
+ <pref>browser.search.defaultenginename</pref>
</prefs>
</emItem>
<emItem blockID="i174" id="info(a)thebflix.com">
@@ -571,6 +579,14 @@
<prefs>
</prefs>
</emItem>
+ <emItem blockID="i628" id="ffxtlbr(a)iminent.com">
+ <versionRange minVersion="0" maxVersion="*" severity="1">
+ </versionRange>
+ <prefs>
+ <pref>browser.startup.homepage</pref>
+ <pref>browser.search.defaultenginename</pref>
+ </prefs>
+ </emItem>
<emItem blockID="i228" id="crossriderapp5060(a)crossrider.com">
<versionRange minVersion="0" maxVersion="*" severity="1">
</versionRange>
1
0

[tor-browser/esr24] Bug 1033340 - remove use of API not present on ESR 24. a=morebustage, bag=brownpaper.
by mikeperry@torproject.org 29 Aug '14
by mikeperry@torproject.org 29 Aug '14
29 Aug '14
commit 89c62704f293dc6ec816b936c634046c2c11bc5f
Author: Gervase Markham <gerv(a)gerv.net>
Date: Thu Jul 3 17:25:58 2014 +0100
Bug 1033340 - remove use of API not present on ESR 24. a=morebustage, bag=brownpaper.
---
netwerk/test/unit/test_psl.js | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/netwerk/test/unit/test_psl.js b/netwerk/test/unit/test_psl.js
index 251ffa6..91124ea 100644
--- a/netwerk/test/unit/test_psl.js
+++ b/netwerk/test/unit/test_psl.js
@@ -4,8 +4,6 @@ var etld = Cc["@mozilla.org/network/effective-tld-service;1"]
var idna = Cc["@mozilla.org/network/idn-service;1"]
.getService(Ci.nsIIDNService);
-var Cr = Components.results;
-
function run_test()
{
var file = do_get_file("data/test_psl.txt");
@@ -23,8 +21,8 @@ function checkPublicSuffix(host, expectedSuffix)
var actualSuffix = null;
try {
actualSuffix = etld.getBaseDomainFromHost(host);
- } catch (e if e.result == Cr.NS_ERROR_INSUFFICIENT_DOMAIN_LEVELS ||
- e.result == Cr.NS_ERROR_ILLEGAL_VALUE) {
+ } catch (e if e.name == "NS_ERROR_INSUFFICIENT_DOMAIN_LEVELS" ||
+ e.name == "NS_ERROR_ILLEGAL_VALUE") {
}
// The EffectiveTLDService always gives back punycoded labels.
// The test suite wants to get back what it put in.
1
0

[tor-browser/esr24] Bug 1033340 - Uplift recent PSL changes to Firefox 24. a=lsblakk.
by mikeperry@torproject.org 29 Aug '14
by mikeperry@torproject.org 29 Aug '14
29 Aug '14
commit b739985826f841f66243cb51d2e1d04d958e3de7
Author: Gervase Markham <gerv(a)gerv.net>
Date: Thu Jul 3 09:51:36 2014 +0100
Bug 1033340 - Uplift recent PSL changes to Firefox 24. a=lsblakk.
---
netwerk/dns/effective_tld_names.dat | 2435 ++++++++++++++++++++++++++++-------
1 file changed, 1972 insertions(+), 463 deletions(-)
diff --git a/netwerk/dns/effective_tld_names.dat b/netwerk/dns/effective_tld_names.dat
index ed1123b..c83fe0b 100644
--- a/netwerk/dns/effective_tld_names.dat
+++ b/netwerk/dns/effective_tld_names.dat
@@ -175,20 +175,21 @@ it.ao
// aq : http://en.wikipedia.org/wiki/.aq
aq
-// ar : http://en.wikipedia.org/wiki/.ar
-*.ar
-!congresodelalengua3.ar
-!educ.ar
-!gobiernoelectronico.ar
-!mecon.ar
-!nacion.ar
-!nic.ar
-!promocion.ar
-!retina.ar
-!uba.ar
+// ar : https://nic.ar/normativa-vigente.xhtml
+ar
+com.ar
+edu.ar
+gob.ar
+gov.ar
+int.ar
+mil.ar
+net.ar
+org.ar
+tur.ar
// arpa : http://en.wikipedia.org/wiki/.arpa
// Confirmed by registry <iana-questions(a)icann.org> 2008-06-18
+arpa
e164.arpa
in-addr.arpa
ip6.arpa
@@ -213,6 +214,7 @@ or.at
// au : http://en.wikipedia.org/wiki/.au
// http://www.auda.org.au/
+au
// 2LDs
com.au
net.au
@@ -243,10 +245,9 @@ sa.edu.au
tas.edu.au
vic.edu.au
wa.edu.au
-act.gov.au
-// Removed at request of Shae.Donelan(a)services.nsw.gov.au, 2010-03-04
-// nsw.gov.au
-nt.gov.au
+// act.gov.au Bug 984824 - Removed at request of Greg Tankard
+// nsw.gov.au Bug 547985 - Removed at request of <Shae.Donelan(a)services.nsw.gov.au>
+// nt.gov.au Bug 940478 - Removed at request of Greg Connors <Greg.Connors(a)nt.gov.au>
qld.gov.au
sa.gov.au
tas.gov.au
@@ -291,6 +292,7 @@ rs.ba
// bb : http://en.wikipedia.org/wiki/.bb
bb
biz.bb
+co.bb
com.bb
edu.bb
gov.bb
@@ -298,6 +300,7 @@ info.bb
net.bb
org.bb
store.bb
+tv.bb
// bd : http://en.wikipedia.org/wiki/.bd
*.bd
@@ -349,7 +352,7 @@ z.bg
6.bg
7.bg
8.bg
-9.bg
+9.bg
// bh : http://en.wikipedia.org/wiki/.bh
bh
@@ -400,8 +403,8 @@ net.bo
mil.bo
tv.bo
-// br : http://registro.br/dominio/dpn.html
-// Updated by registry <fneves(a)registro.br> 2011-03-01
+// br : http://registro.br/dominio/categoria.html
+// Submitted by registry <fneves(a)registro.br> 2014-03-04
br
adm.br
adv.br
@@ -446,6 +449,7 @@ lel.br
mat.br
med.br
mil.br
+mp.br
mus.br
net.br
nom.br
@@ -491,6 +495,7 @@ org.bt
// bv : No registrations at this time.
// Submitted by registry <jarle(a)uninett.no> 2006-06-16
+bv
// bw : http://en.wikipedia.org/wiki/.bw
// http://www.gobin.info/domainname/bw.doc
@@ -593,9 +598,12 @@ gob.cl
co.cl
mil.cl
-// cm : http://en.wikipedia.org/wiki/.cm
+// cm : http://en.wikipedia.org/wiki/.cm plus bug 981927
cm
+co.cm
+com.cm
gov.cm
+net.cm
// cn : http://en.wikipedia.org/wiki/.cn
// Submitted by registry <tanyaling(a)cnnic.cn> 2008-06-11
@@ -787,7 +795,7 @@ org.ee
fie.ee
// eg : http://en.wikipedia.org/wiki/.eg
-eg
+eg
com.eg
edu.eg
eun.eg
@@ -810,7 +818,14 @@ gob.es
edu.es
// et : http://en.wikipedia.org/wiki/.et
-*.et
+et
+com.et
+gov.et
+org.et
+edu.et
+biz.et
+name.et
+info.et
// eu : http://en.wikipedia.org/wiki/.eu
eu
@@ -869,6 +884,7 @@ ga
// gb : This registry is effectively dormant
// Submitted by registry <Damien.Shaw(a)ja.net> 2008-06-12
+gb
// gd : http://en.wikipedia.org/wiki/.gd
gd
@@ -886,13 +902,12 @@ pvt.ge
// gf : http://en.wikipedia.org/wiki/.gf
gf
-// gg : http://www.channelisles.net/applic/avextn.shtml
+// gg : http://www.channelisles.net/register-domains/
+// Confirmed by registry <nigel(a)channelisles.net> 2013-11-28
gg
co.gg
-org.gg
net.gg
-sch.gg
-gov.gg
+org.gg
// gh : http://en.wikipedia.org/wiki/.gh
// see also: http://www.nic.gh/reg_now.php
@@ -923,6 +938,7 @@ gm
// gn : http://psg.com/dns/gn/gn.txt
// Submitted by registry <randy(a)psg.com> 2008-06-17
+gn
ac.gn
com.gn
edu.gn
@@ -1003,7 +1019,7 @@ org.hk
网絡.hk
组织.hk
組織.hk
-組织.hk
+組织.hk
// hm : http://en.wikipedia.org/wiki/.hm
hm
@@ -1084,6 +1100,7 @@ id
ac.id
biz.id
co.id
+desa.id
go.id
mil.id
my.id
@@ -1099,16 +1116,18 @@ gov.ie
// il : http://en.wikipedia.org/wiki/.il
*.il
-// im : https://www.nic.im/pdfs/imfaqs.pdf
+// im : https://www.nic.im/
+// Submitted by registry <info(a)nic.im> 2013-11-15
im
+ac.im
co.im
+com.im
ltd.co.im
-plc.co.im
net.im
-gov.im
org.im
-nic.im
-ac.im
+plc.co.im
+tt.im
+tv.im
// in : http://en.wikipedia.org/wiki/.in
// see also: http://www.inregistry.in/policies/
@@ -1180,294 +1199,385 @@ int.is
it
gov.it
edu.it
-// list of reserved geo-names :
+// Reserved geo-names:
// http://www.nic.it/documenti/regolamenti-e-linee-guida/regolamento-assegnazi…
-// (There is also a list of reserved geo-names corresponding to Italian
-// municipalities : http://www.nic.it/documenti/appendice-c.pdf , but it is
-// not included here.)
-agrigento.it
+// There is also a list of reserved geo-names corresponding to Italian municipalities
+// http://www.nic.it/documenti/appendice-c.pdf, but it is not included here.
+// Regions
+abr.it
+abruzzo.it
+aosta-valley.it
+aostavalley.it
+bas.it
+basilicata.it
+cal.it
+calabria.it
+cam.it
+campania.it
+emilia-romagna.it
+emiliaromagna.it
+emr.it
+friuli-v-giulia.it
+friuli-ve-giulia.it
+friuli-vegiulia.it
+friuli-venezia-giulia.it
+friuli-veneziagiulia.it
+friuli-vgiulia.it
+friuliv-giulia.it
+friulive-giulia.it
+friulivegiulia.it
+friulivenezia-giulia.it
+friuliveneziagiulia.it
+friulivgiulia.it
+fvg.it
+laz.it
+lazio.it
+lig.it
+liguria.it
+lom.it
+lombardia.it
+lombardy.it
+lucania.it
+mar.it
+marche.it
+mol.it
+molise.it
+piedmont.it
+piemonte.it
+pmn.it
+pug.it
+puglia.it
+sar.it
+sardegna.it
+sardinia.it
+sic.it
+sicilia.it
+sicily.it
+taa.it
+tos.it
+toscana.it
+trentino-a-adige.it
+trentino-aadige.it
+trentino-alto-adige.it
+trentino-altoadige.it
+trentino-s-tirol.it
+trentino-stirol.it
+trentino-sud-tirol.it
+trentino-sudtirol.it
+trentino-sued-tirol.it
+trentino-suedtirol.it
+trentinoa-adige.it
+trentinoaadige.it
+trentinoalto-adige.it
+trentinoaltoadige.it
+trentinos-tirol.it
+trentinostirol.it
+trentinosud-tirol.it
+trentinosudtirol.it
+trentinosued-tirol.it
+trentinosuedtirol.it
+tuscany.it
+umb.it
+umbria.it
+val-d-aosta.it
+val-daosta.it
+vald-aosta.it
+valdaosta.it
+valle-aosta.it
+valle-d-aosta.it
+valle-daosta.it
+valleaosta.it
+valled-aosta.it
+valledaosta.it
+vallee-aoste.it
+valleeaoste.it
+vao.it
+vda.it
+ven.it
+veneto.it
+// Provinces
ag.it
-alessandria.it
+agrigento.it
al.it
-ancona.it
+alessandria.it
+alto-adige.it
+altoadige.it
an.it
+ancona.it
+andria-barletta-trani.it
+andria-trani-barletta.it
+andriabarlettatrani.it
+andriatranibarletta.it
+ao.it
aosta.it
aoste.it
-ao.it
-arezzo.it
+ap.it
+aq.it
+aquila.it
ar.it
+arezzo.it
ascoli-piceno.it
ascolipiceno.it
-ap.it
asti.it
at.it
-avellino.it
av.it
-bari.it
+avellino.it
ba.it
-andria-barletta-trani.it
-andriabarlettatrani.it
-trani-barletta-andria.it
-tranibarlettaandria.it
+balsan.it
+bari.it
barletta-trani-andria.it
barlettatraniandria.it
-andria-trani-barletta.it
-andriatranibarletta.it
-trani-andria-barletta.it
-traniandriabarletta.it
-bt.it
belluno.it
-bl.it
benevento.it
-bn.it
bergamo.it
bg.it
-biella.it
bi.it
-bologna.it
+biella.it
+bl.it
+bn.it
bo.it
+bologna.it
bolzano.it
bozen.it
-balsan.it
-alto-adige.it
-altoadige.it
-suedtirol.it
-bz.it
+br.it
brescia.it
-bs.it
brindisi.it
-br.it
-cagliari.it
+bs.it
+bt.it
+bz.it
ca.it
+cagliari.it
caltanissetta.it
-cl.it
+campidano-medio.it
+campidanomedio.it
campobasso.it
-cb.it
-carboniaiglesias.it
carbonia-iglesias.it
-iglesias-carbonia.it
-iglesiascarbonia.it
-ci.it
+carboniaiglesias.it
+carrara-massa.it
+carraramassa.it
caserta.it
-ce.it
catania.it
-ct.it
catanzaro.it
-cz.it
-chieti.it
+cb.it
+ce.it
+cesena-forli.it
+cesenaforli.it
ch.it
-como.it
+chieti.it
+ci.it
+cl.it
+cn.it
co.it
+como.it
cosenza.it
-cs.it
-cremona.it
cr.it
+cremona.it
crotone.it
-kr.it
+cs.it
+ct.it
cuneo.it
-cn.it
+cz.it
dell-ogliastra.it
dellogliastra.it
-ogliastra.it
-og.it
-enna.it
en.it
-ferrara.it
+enna.it
+fc.it
fe.it
fermo.it
-fm.it
+ferrara.it
+fg.it
+fi.it
firenze.it
florence.it
-fi.it
+fm.it
foggia.it
-fg.it
forli-cesena.it
forlicesena.it
-cesena-forli.it
-cesenaforli.it
-fc.it
-frosinone.it
fr.it
-genova.it
-genoa.it
+frosinone.it
ge.it
-gorizia.it
+genoa.it
+genova.it
go.it
-grosseto.it
+gorizia.it
gr.it
-imperia.it
+grosseto.it
+iglesias-carbonia.it
+iglesiascarbonia.it
im.it
-isernia.it
+imperia.it
is.it
-laquila.it
-aquila.it
-aq.it
+isernia.it
+kr.it
la-spezia.it
+laquila.it
laspezia.it
-sp.it
latina.it
-lt.it
-lecce.it
+lc.it
le.it
+lecce.it
lecco.it
-lc.it
-livorno.it
li.it
-lodi.it
+livorno.it
lo.it
-lucca.it
+lodi.it
+lt.it
lu.it
+lucca.it
macerata.it
-mc.it
mantova.it
-mn.it
massa-carrara.it
massacarrara.it
-carrara-massa.it
-carraramassa.it
-ms.it
matera.it
-mt.it
+mb.it
+mc.it
+me.it
medio-campidano.it
mediocampidano.it
-campidano-medio.it
-campidanomedio.it
-vs.it
messina.it
-me.it
-milano.it
-milan.it
mi.it
-modena.it
+milan.it
+milano.it
+mn.it
mo.it
-monza.it
+modena.it
monza-brianza.it
+monza-e-della-brianza.it
+monza.it
monzabrianza.it
monzaebrianza.it
monzaedellabrianza.it
-monza-e-della-brianza.it
-mb.it
-napoli.it
-naples.it
+ms.it
+mt.it
na.it
-novara.it
+naples.it
+napoli.it
no.it
-nuoro.it
+novara.it
nu.it
-oristano.it
+nuoro.it
+og.it
+ogliastra.it
+olbia-tempio.it
+olbiatempio.it
or.it
+oristano.it
+ot.it
+pa.it
padova.it
padua.it
-pd.it
palermo.it
-pa.it
parma.it
-pr.it
pavia.it
-pv.it
-perugia.it
-pg.it
-pescara.it
+pc.it
+pd.it
pe.it
+perugia.it
pesaro-urbino.it
pesarourbino.it
-urbino-pesaro.it
-urbinopesaro.it
-pu.it
+pescara.it
+pg.it
+pi.it
piacenza.it
-pc.it
pisa.it
-pi.it
pistoia.it
-pt.it
-pordenone.it
pn.it
+po.it
+pordenone.it
potenza.it
-pz.it
+pr.it
prato.it
-po.it
+pt.it
+pu.it
+pv.it
+pz.it
+ra.it
ragusa.it
-rg.it
ravenna.it
-ra.it
-reggio-calabria.it
-reggiocalabria.it
rc.it
+re.it
+reggio-calabria.it
reggio-emilia.it
+reggiocalabria.it
reggioemilia.it
-re.it
-rieti.it
+rg.it
ri.it
+rieti.it
rimini.it
+rm.it
rn.it
+ro.it
roma.it
rome.it
-rm.it
rovigo.it
-ro.it
-salerno.it
sa.it
+salerno.it
sassari.it
-ss.it
savona.it
-sv.it
-siena.it
si.it
+siena.it
siracusa.it
-sr.it
-sondrio.it
so.it
-taranto.it
+sondrio.it
+sp.it
+sr.it
+ss.it
+suedtirol.it
+sv.it
ta.it
+taranto.it
+te.it
tempio-olbia.it
tempioolbia.it
-olbia-tempio.it
-olbiatempio.it
-ot.it
teramo.it
-te.it
terni.it
-tr.it
+tn.it
+to.it
torino.it
-turin.it
-to.it
-trapani.it
tp.it
-trento.it
+tr.it
+trani-andria-barletta.it
+trani-barletta-andria.it
+traniandriabarletta.it
+tranibarlettaandria.it
+trapani.it
trentino.it
-tn.it
+trento.it
treviso.it
-tv.it
trieste.it
ts.it
-udine.it
+turin.it
+tv.it
ud.it
-varese.it
+udine.it
+urbino-pesaro.it
+urbinopesaro.it
va.it
+varese.it
+vb.it
+vc.it
+ve.it
venezia.it
venice.it
-ve.it
verbania.it
-vb.it
vercelli.it
-vc.it
verona.it
-vr.it
+vi.it
vibo-valentia.it
vibovalentia.it
-vv.it
vicenza.it
-vi.it
viterbo.it
+vr.it
+vs.it
vt.it
+vv.it
-// je : http://www.channelisles.net/applic/avextn.shtml
+// je : http://www.channelisles.net/register-domains/
+// Confirmed by registry <nigel(a)channelisles.net> 2013-11-28
je
co.je
-org.je
net.je
-sch.je
-gov.je
+org.je
// jm : http://www.com.jm/register.html
*.jm
@@ -1488,7 +1598,7 @@ jobs
// jp : http://en.wikipedia.org/wiki/.jp
// http://jprs.co.jp/en/jpdomain.html
-// Updated by registry <info(a)jprs.jp> 2012-05-28
+// Submitted by registry <info(a)jprs.jp> 2014-02-28
jp
// jp organizational type names
ac.jp
@@ -1592,7 +1702,6 @@ konan.aichi.jp
kota.aichi.jp
mihama.aichi.jp
miyoshi.aichi.jp
-nagakute.aichi.jp
nishio.aichi.jp
nisshin.aichi.jp
obu.aichi.jp
@@ -2264,7 +2373,6 @@ rikuzentakata.iwate.jp
shiwa.iwate.jp
shizukuishi.iwate.jp
sumita.iwate.jp
-takizawa.iwate.jp
tanohata.iwate.jp
tono.iwate.jp
yahaba.iwate.jp
@@ -3302,6 +3410,7 @@ edu.kn
gov.kn
// kp : http://www.kcce.kp/en_index.php
+kp
com.kp
edu.kp
gov.kp
@@ -3379,6 +3488,7 @@ org.la
// lb : http://en.wikipedia.org/wiki/.lb
// Submitted by registry <randy(a)psg.com> 2008-06-17
+lb
com.lb
edu.lb
gov.lb
@@ -3417,6 +3527,7 @@ hotel.lk
// lr : http://psg.com/dns/lr/lr.txt
// Submitted by registry <randy(a)psg.com> 2008-06-17
+lr
com.lr
edu.lr
gov.lr
@@ -3559,11 +3670,21 @@ mq
mr
gov.mr
-// ms : http://en.wikipedia.org/wiki/.ms
+// ms : http://www.nic.ms/pdf/MS_Domain_Name_Rules.pdf
ms
-
-// mt : https://www.nic.org.mt/dotmt/
-*.mt
+com.ms
+edu.ms
+gov.ms
+net.ms
+org.ms
+
+// mt : https://www.nic.org.mt/go/policy
+// Submitted by registry <help(a)nic.org.mt> 2013-11-19
+mt
+com.mt
+edu.mt
+net.mt
+org.mt
// mu : http://en.wikipedia.org/wiki/.mu
mu
@@ -4230,13 +4351,16 @@ other.nf
store.nf
// ng : http://psg.com/dns/ng/
-// Submitted by registry <randy(a)psg.com> 2008-06-17
-ac.ng
+ng
com.ng
edu.ng
-gov.ng
+name.ng
net.ng
org.ng
+sch.ng
+gov.ng
+mil.ng
+mobi.ng
// ni : http://www.nic.ni/dominios.htm
*.ni
@@ -4252,7 +4376,7 @@ bv.nl
// no : http://www.norid.no/regelverk/index.en.html
// The Norwegian registry has declined to notify us of updates. The web pages
// referenced below are the official source of the data. There is also an
-// announce mailing list:
+// announce mailing list:
// https://postlister.uninett.no/sympa/info/norid-diskusjon
no
// Norid generic domains : http://www.norid.no/regelverk/vedlegg-c.en.html
@@ -5034,20 +5158,36 @@ com.nr
nu
// nz : http://en.wikipedia.org/wiki/.nz
-*.nz
+// Confirmed by registry <jay(a)nzrs.net.nz> 2014-05-19
+nz
+ac.nz
+co.nz
+cri.nz
+geek.nz
+gen.nz
+govt.nz
+health.nz
+iwi.nz
+kiwi.nz
+maori.nz
+mil.nz
+māori.nz
+net.nz
+org.nz
+parliament.nz
+school.nz
// om : http://en.wikipedia.org/wiki/.om
-*.om
-!mediaphone.om
-!nawrastelecom.om
-!nawras.om
-!omanmobile.om
-!omanpost.om
-!omantel.om
-!rakpetroleum.om
-!siemens.om
-!songfest.om
-!statecouncil.om
+om
+co.om
+com.om
+edu.om
+gov.om
+med.om
+museum.om
+net.om
+org.om
+pro.om
// org : http://en.wikipedia.org/wiki/.org
org
@@ -5502,7 +5642,6 @@ oryol.ru
palana.ru
penza.ru
perm.ru
-pskov.ru
ptz.ru
rnd.ru
ryazan.ru
@@ -5622,7 +5761,7 @@ gov.sd
info.sd
// se : http://en.wikipedia.org/wiki/.se
-// Submitted by registry <Patrik.Wallstrom(a)iis.se> 2008-06-24
+// Submitted by registry <patrik.wallstrom(a)iis.se> 2014-03-18
se
a.se
ac.se
@@ -5656,7 +5795,6 @@ pp.se
press.se
r.se
s.se
-sshn.se
t.se
tm.se
u.se
@@ -5687,6 +5825,7 @@ si
// sj : No registrations at this time.
// Submitted by registry <jarle(a)uninett.no> 2008-06-16
+sj
// sk : http://en.wikipedia.org/wiki/.sk
// list of 2nd level domains ?
@@ -5741,8 +5880,13 @@ store.st
// su : http://en.wikipedia.org/wiki/.su
su
-// sv : http://www.svnet.org.sv/svpolicy.html
-*.sv
+// sv : http://www.svnet.org.sv/niveldos.pdf
+sv
+com.sv
+edu.sv
+gob.sv
+org.sv
+red.sv
// sx : http://en.wikipedia.org/wiki/.sx
// Confirmed by registry <jcvignes(a)openregistry.com> 2012-05-31
@@ -5864,6 +6008,10 @@ org.to
edu.to
mil.to
+// tp : No registrations at this time.
+// Submitted by Ryan Sleevi <ryan.sleevi(a)gmail.com> 2014-01-03
+tp
+
// tr : http://en.wikipedia.org/wiki/.tr
*.tr
!nic.tr
@@ -5917,6 +6065,7 @@ club.tw
// tz : http://www.tznic.or.tz/index.php/domains
// Confirmed by registry <manager(a)tznic.or.tz> 2013-01-22
+tz
ac.tz
co.tz
go.tz
@@ -6029,19 +6178,19 @@ com.ug
org.ug
// uk : http://en.wikipedia.org/wiki/.uk
-// Submitted by registry <noc(a)nominet.org.uk> 2012-10-02
-// and tweaked by us pending further consultation.
-*.uk
+// Submitted by registry <Michael.Daly(a)nominet.org.uk>
+uk
+ac.uk
+co.uk
+gov.uk
+ltd.uk
+me.uk
+net.uk
+nhs.uk
+org.uk
+plc.uk
+police.uk
*.sch.uk
-!bl.uk
-!british-library.uk
-!jet.uk
-!mod.uk
-!national-library-scotland.uk
-!nel.uk
-!nic.uk
-!nls.uk
-!parliament.uk
// us : http://en.wikipedia.org/wiki/.us
us
@@ -6125,7 +6274,7 @@ k12.de.us
k12.fl.us
k12.ga.us
k12.gu.us
-// k12.hi.us Hawaii has a state-wide DOE login: bug 614565
+// k12.hi.us Bug 614565 - Hawaii has a state-wide DOE login
k12.ia.us
k12.id.us
k12.il.us
@@ -6156,7 +6305,7 @@ k12.pa.us
k12.pr.us
k12.ri.us
k12.sc.us
-k12.sd.us
+// k12.sd.us Bug 934131 - Removed at request of James Booze <James.Booze(a)k12.sd.us>
k12.tn.us
k12.tx.us
k12.ut.us
@@ -6165,7 +6314,7 @@ k12.vt.us
k12.va.us
k12.wa.us
k12.wi.us
-k12.wv.us
+// k12.wv.us Bug 947705 - Removed at request of Verne Britton <verne(a)wvnet.edu>
k12.wy.us
cc.ak.us
@@ -6277,316 +6426,1610 @@ lib.vt.us
lib.va.us
lib.wa.us
lib.wi.us
-lib.wv.us
+// lib.wv.us Bug 941670 - Removed at request of Larry W Arnold <arnold(a)wvlc.lib.wv.us>
lib.wy.us
-// k12.ma.us contains school districts in Massachusetts. The 4LDs are
-// managed indepedently except for private (PVT), charter (CHTR) and
-// parochial (PAROCH) schools. Those are delegated dorectly to the
-// 5LD operators. <k12-ma-hostmaster _ at _ rsuc.gweep.net>
-pvt.k12.ma.us
-chtr.k12.ma.us
-paroch.k12.ma.us
+// k12.ma.us contains school districts in Massachusetts. The 4LDs are
+// managed indepedently except for private (PVT), charter (CHTR) and
+// parochial (PAROCH) schools. Those are delegated dorectly to the
+// 5LD operators. <k12-ma-hostmaster _ at _ rsuc.gweep.net>
+pvt.k12.ma.us
+chtr.k12.ma.us
+paroch.k12.ma.us
+
+// uy : http://www.nic.org.uy/
+uy
+com.uy
+edu.uy
+gub.uy
+mil.uy
+net.uy
+org.uy
+
+// uz : http://www.reg.uz/
+uz
+co.uz
+com.uz
+net.uz
+org.uz
+
+// va : http://en.wikipedia.org/wiki/.va
+va
+
+// vc : http://en.wikipedia.org/wiki/.vc
+// Submitted by registry <kshah(a)ca.afilias.info> 2008-06-13
+vc
+com.vc
+net.vc
+org.vc
+gov.vc
+mil.vc
+edu.vc
+
+// ve : https://registro.nic.ve/
+// Confirmed by registry 2012-10-04
+// Updated 2014-05-20 - Bug 940478
+ve
+arts.ve
+co.ve
+com.ve
+e12.ve
+edu.ve
+firm.ve
+gob.ve
+gov.ve
+info.ve
+int.ve
+mil.ve
+net.ve
+org.ve
+rec.ve
+store.ve
+tec.ve
+web.ve
+
+// vg : http://en.wikipedia.org/wiki/.vg
+vg
+
+// vi : http://www.nic.vi/newdomainform.htm
+// http://www.nic.vi/Domain_Rules/body_domain_rules.html indicates some other
+// TLDs are "reserved", such as edu.vi and gov.vi, but doesn't actually say they
+// are available for registration (which they do not seem to be).
+vi
+co.vi
+com.vi
+k12.vi
+net.vi
+org.vi
+
+// vn : https://www.dot.vn/vnnic/vnnic/domainregistration.jsp
+vn
+com.vn
+net.vn
+org.vn
+edu.vn
+gov.vn
+int.vn
+ac.vn
+biz.vn
+info.vn
+name.vn
+pro.vn
+health.vn
+
+// vu : http://en.wikipedia.org/wiki/.vu
+// http://www.vunic.vu/
+vu
+com.vu
+edu.vu
+net.vu
+org.vu
+
+// wf : http://www.afnic.fr/medias/documents/AFNIC-naming-policy2012.pdf
+wf
+
+// ws : http://en.wikipedia.org/wiki/.ws
+// http://samoanic.ws/index.dhtml
+ws
+com.ws
+net.ws
+org.ws
+gov.ws
+edu.ws
+
+// yt : http://www.afnic.fr/medias/documents/AFNIC-naming-policy2012.pdf
+yt
+
+// IDN ccTLDs
+// Please sort by ISO 3166 ccTLD, then punicode string
+// when submitting patches and follow this format:
+// <Punicode> ("<english word>" <language>) : <ISO 3166 ccTLD>
+// [optional sponsoring org]
+// <URL>
+
+// xn--mgbaam7a8h ("Emerat" Arabic) : AE
+// http://nic.ae/english/arabicdomain/rules.jsp
+امارات
+
+// xn--54b7fta0cc ("Bangla" Bangla) : BD
+বাংলা
+
+// xn--fiqs8s ("China" Chinese-Han-Simplified <.Zhongguo>) : CN
+// CNNIC
+// http://cnnic.cn/html/Dir/2005/10/11/3218.htm
+中国
+
+// xn--fiqz9s ("China" Chinese-Han-Traditional <.Zhongguo>) : CN
+// CNNIC
+// http://cnnic.cn/html/Dir/2005/10/11/3218.htm
+中國
+
+// xn--lgbbat1ad8j ("Algeria / Al Jazair" Arabic) : DZ
+الجزائر
+
+// xn--wgbh1c ("Egypt" Arabic .masr) : EG
+// http://www.dotmasr.eg/
+مصر
+
+// xn--node ("ge" Georgian (Mkhedruli)) : GE
+გე
+
+// xn--j6w193g ("Hong Kong" Chinese-Han) : HK
+// https://www2.hkirc.hk/register/rules.jsp
+香港
+
+// xn--h2brj9c ("Bharat" Devanagari) : IN
+// India
+भारत
+
+// xn--mgbbh1a71e ("Bharat" Arabic) : IN
+// India
+بھارت
+
+// xn--fpcrj9c3d ("Bharat" Telugu) : IN
+// India
+భారత్
+
+// xn--gecrj9c ("Bharat" Gujarati) : IN
+// India
+ભારત
+
+// xn--s9brj9c ("Bharat" Gurmukhi) : IN
+// India
+ਭਾਰਤ
+
+// xn--45brj9c ("Bharat" Bengali) : IN
+// India
+ভারত
+
+// xn--xkc2dl3a5ee0h ("India" Tamil) : IN
+// India
+இந்தியா
+
+// xn--mgba3a4f16a ("Iran" Persian) : IR
+ایران
+
+// xn--mgba3a4fra ("Iran" Arabic) : IR
+ايران
+
+// xn--mgbayh7gpa ("al-Ordon" Arabic) : JO
+// National Information Technology Center (NITC)
+// Royal Scientific Society, Al-Jubeiha
+الاردن
+
+// xn--3e0b707e ("Republic of Korea" Hangul) : KR
+한국
+
+// xn--80ao21a ("Kaz" Kazakh) : KZ
+қаз
+
+// xn--fzc2c9e2c ("Lanka" Sinhalese-Sinhala) : LK
+// http://nic.lk
+ලංකා
+
+// xn--xkc2al3hye2a ("Ilangai" Tamil) : LK
+// http://nic.lk
+இலங்கை
+
+// xn--mgbc0a9azcg ("Morocco / al-Maghrib" Arabic) : MA
+المغرب
+
+// xn--l1acc ("mon" Mongolian) : MN
+мон
+
+// xn--mgbx4cd0ab ("Malaysia" Malay) : MY
+مليسيا
+
+// xn--mgb9awbf ("Oman" Arabic) : OM
+عمان
+
+// xn--ygbi2ammx ("Falasteen" Arabic) : PS
+// The Palestinian National Internet Naming Authority (PNINA)
+// http://www.pnina.ps
+فلسطين
+
+// xn--90a3ac ("srb" Cyrillic) : RS
+// http://www.rnids.rs/en/the-.срб-domain
+срб
+пр.срб
+орг.срб
+обр.срб
+од.срб
+упр.срб
+ак.срб
+
+// xn--p1ai ("rf" Russian-Cyrillic) : RU
+// http://www.cctld.ru/en/docs/rulesrf.php
+рф
+
+// xn--wgbl6a ("Qatar" Arabic) : QA
+// http://www.ict.gov.qa/
+قطر
+
+// xn--mgberp4a5d4ar ("AlSaudiah" Arabic) : SA
+// http://www.nic.net.sa/
+السعودية
+
+// xn--mgberp4a5d4a87g ("AlSaudiah" Arabic) variant : SA
+السعودیة
+
+// xn--mgbqly7c0a67fbc ("AlSaudiah" Arabic) variant : SA
+السعودیۃ
+
+// xn--mgbqly7cvafr ("AlSaudiah" Arabic) variant : SA
+السعوديه
+
+// xn--ogbpf8fl ("Syria" Arabic) : SY
+سورية
+
+// xn--mgbtf8fl ("Syria" Arabic) variant : SY
+سوريا
+
+// xn--yfro4i67o Singapore ("Singapore" Chinese-Han) : SG
+新加坡
+
+// xn--clchc0ea0b2g2a9gcd ("Singapore" Tamil) : SG
+சிங்கப்பூர்
+
+// xn--o3cw4h ("Thai" Thai) : TH
+// http://www.thnic.co.th
+ไทย
+
+// xn--pgbs0dh ("Tunis") : TN
+// http://nic.tn
+تونس
+
+// xn--kpry57d ("Taiwan" Chinese-Han-Traditional) : TW
+// http://www.twnic.net/english/dn/dn_07a.htm
+台灣
+
+// xn--kprw13d ("Taiwan" Chinese-Han-Simplified) : TW
+// http://www.twnic.net/english/dn/dn_07a.htm
+台湾
+
+// xn--nnx388a ("Taiwan") variant : TW
+臺灣
+
+// xn--j1amh ("ukr" Cyrillic) : UA
+укр
+
+// xn--mgb2ddes ("AlYemen" Arabic) : YE
+اليمن
+
+// xxx : http://icmregistry.com
+xxx
+
+// ye : http://www.y.net.ye/services/domain_name.htm
+*.ye
+
+// za : http://www.zadna.org.za/slds.html
+*.za
+
+// zm : http://en.wikipedia.org/wiki/.zm
+*.zm
+
+// zw : http://en.wikipedia.org/wiki/.zw
+*.zw
+
+
+// xn--80asehdb : 2013-07-14 CORE Association
+онлайн
+
+// xn--80aswg : 2013-07-14 CORE Association
+сайт
+
+// xn--ngbc5azd : 2013-07-14 International Domain Registry Pty. Ltd.
+شبكة
+
+// xn--unup4y : 2013-07-14 Spring Fields, LLC
+游戏
+
+// xn--vhquv : 2013-08-28 Dash McCook, LLC
+企业
+
+// camera : 2013-08-28 Atomic Maple, LLC
+camera
+
+// clothing : 2013-08-28 Steel Lake, LLC
+clothing
+
+// lighting : 2013-08-28 John McCook, LLC
+lighting
+
+// singles : 2013-08-28 Fern Madison, LLC
+singles
+
+// ventures : 2013-08-28 Binky Lake, LLC
+ventures
+
+// voyage : 2013-08-28 Ruby House, LLC
+voyage
+
+// guru : 2013-08-28 Pioneer Cypress, LLC
+guru
+
+// holdings : 2013-08-28 John Madison, LLC
+holdings
+
+// equipment : 2013-08-28 Corn Station, LLC
+equipment
+
+// bike : 2013-08-28 Grand Hollow, LLC
+bike
+
+// estate : 2013-08-28 Trixy Park, LLC
+estate
+
+// tattoo : 2013-08-30 Uniregistry,Corp.
+tattoo
+
+// xn--3ds443g : 2013-09-09 TLD Registry Limited
+在线
+
+// xn--fiq228c5hs : 2013-09-09 TLD Registry Limited
+中文网
+
+// land : 2013-09-10 Pine Moon, LLC
+land
+
+// plumbing : 2013-09-10 Spring Tigers, LLC
+plumbing
+
+// contractors : 2013-09-10 Magic Woods, LLC
+contractors
+
+// sexy : 2013-09-11 Uniregistry,Corp.
+sexy
+
+// menu : 2013-09-11 Wedding TLD2, LLC
+menu
+
+// xn--rhqv96g : 2013-09-11 Stable Tone Limited
+世界
+
+// uno : 2013-09-11 Dot Latin, LLC
+uno
+
+// gallery : 2013-09-13 Sugar House, LLC
+gallery
+
+// technology : 2013-09-13 Auburn Falls
+technology
+
+// xn--3bst00m : 2013-09-13 Eagle Horizon Limited
+集团
+
+// reviews : 2013-09-13 Extra Cover, LLC
+reviews
+
+// guide : 2013-09-13 Snow Moon, LLC
+guide
+
+// xn--6qq986b3x1 : 2013-09-13 Tycoon Treasure Limited
+我爱你
+
+// graphics : 2013-09-13 Over Madison, LLC
+graphics
+
+// construction : 2013-09-13 Fox Dynamite, LLC
+construction
+
+// onl : 2013-09-16 I-Registry Ltd.
+onl
+
+// xn--q9jyb4c : 2013-09-17 Charleston Road Registry
+みんな
+
+// diamonds : 2013-09-23 John Edge, LLC
+diamonds
+
+// kiwi : 2013-09-23 Dot Kiwi Limited
+kiwi
+
+// enterprises : 2013-09-23 Snow Oaks LLC
+enterprises
+
+// today : 2013-09-23 Pearl Woods, LLC
+today
+
+// futbol : 2013-09-23 Atomic Falls, LLC
+futbol
+
+// photography : 2013-09-23 Sugar Glen, LLC
+photography
+
+// tips : 2013-09-23 Corn Willow, LLC
+tips
+
+// directory : 2013-09-23 Extra Madison, LLC
+directory
+
+// kitchen : 2013-09-23 Just Goodbye, LLC
+kitchen
+
+// xn--6frz82g : 2013-09-24 Afilias Limited
+移动
+
+// kim : 2013-09-24 Afilias Limited
+kim
+
+// xn--cg4bki : 2013-09-27 Samsung SDS Co., LTD
+삼성
+
+// monash : 2013-10-01 Monash University
+monash
+
+// wed : 2013-10-02 Atgron, Inc.
+wed
+
+// pink : 2013-10-02 Afilias Limited
+pink
+
+// ruhr : 2013-10-02 regiodot GmbH & Co. KG
+ruhr
+
+// buzz : 2013-10-03 DOTSTRATEGY CO.
+buzz
+
+// careers : 2013-10-03 Wild Corner, LLC
+careers
+
+// shoes : 2013-10-03 Binky Galley, LLC
+shoes
+
+// xn--4gbrim : 2013-10-07 Suhub Electronic Establishment
+موقع
+
+// career : 2013-10-09 dotCareer, LLC
+career
+
+// otsuka : 2013-10-11 Otsuka Holdings Co. Ltd.
+otsuka
+
+// xn--fiQ64b : 2013-10-14 CITIC Group Corporation
+中信
+
+// gift : 2013-10-18 Uniregistry Corp.
+gift
+
+// recipes : 2013-10-18 Grand Island, LLC
+recipes
+
+// coffee : 2013-10-18 Trixy Cover, LLC
+coffee
+
+// luxury : 2013-10-18 Luxury Partners, LLC
+luxury
+
+// domains : 2013-10-18 Sugar Cross, LLC
+domains
+
+// photos : 2013-10-18 Sea Corner, LLC
+photos
+
+// limo : 2013-10-18 Hidden Frostbite, LLC
+limo
+
+// viajes : 2013-10-18 Black Madison, LLC
+viajes
+
+// wang : 2013-10-24 Zodiac Leo Limited
+wang
+
+// democrat : 2013-10-24 United TLD Holdco Ltd.
+democrat
+
+// mango : 2013-10-25 PUNTO FA S.L.
+mango
+
+// cab : 2013-10-25 Half Sunset, LLC
+cab
+
+// support : 2013-10-25 Grand Orchard, LLC
+support
+
+// dance : 2013-10-25 United TLD Holdco Ltd.
+dance
+
+// nagoya : 2013-10-25 GMO Registry, Inc.
+nagoya
+
+// computer : 2013-10-25 Pine Mill, LLC
+computer
+
+// wien : 2013-10-28 punkt.wien GmbH
+wien
+
+// berlin : 2013-10-31 dotBERLIN GmbH & Co. KG
+berlin
+
+// codes : 2013-10-31 Puff Willow, LLC
+codes
+
+// email : 2013-10-31 Spring Madison, LLC
+email
+
+// xn--mgbab2bd : 2013-10-31 CORE Association
+بازار
+
+// repair : 2013-11-07 Lone Sunset, LLC
+repair
+
+// holiday : 2013-11-07 Goose Woods, LLC
+holiday
+
+// center : 2013-11-07 Tin Mill, LLC
+center
+
+// systems : 2013-11-07 Dash Cypress, LLC
+systems
+
+// wiki : 2013-11-07 Top Level Design, LLC
+wiki
+
+// ceo : 2013-11-07 CEOTLD Pty Ltd
+ceo
+
+// international : 2013-11-07 Wild Way, LLC
+international
+
+// solar : 2013-11-07 Ruby Town, LLC
+solar
+
+// company : 2013-11-07 Silver Avenue, LLC
+company
+
+// education : 2013-11-07 Brice Way, LLC
+education
+
+// training : 2013-11-07 Wild Willow, LLC
+training
+
+// academy : 2013-11-07 Half Oaks, LLC
+academy
+
+// marketing : 2013-11-07 Fern Pass, LLC
+marketing
+
+// florist : 2013-11-08 Half Cypress, LLC
+florist
+
+// solutions : 2013-11-07 Silver Cover, LLC
+solutions
+
+// build : 2013-11-07 Plan Bee LLC
+build
+
+// institute : 2013-11-07 Outer Maple, LLC
+institute
+
+// builders : 2013-11-07 Atomic Madison, LLC
+builders
+
+// red : 2013-11-07 Afilias Limited
+red
+
+// blue : 2013-11-07 Afilias Limited
+blue
+
+// ninja : 2013-11-07 United TLD Holdco Ltd.
+ninja
+
+// business : 2013-11-07 Spring Cross, LLC
+business
+
+// gal : 2013-11-07 Asociación puntoGAL
+gal
+
+// social : 2013-11-07 United TLD Holdco Ltd.
+social
+
+// house : 2013-11-07 Sugar Park, LLC
+house
+
+// camp : 2013-11-07 Delta Dynamite, LLC
+camp
+
+// immobilien : 2013-11-07 United TLD Holdco Ltd.
+immobilien
+
+// moda : 2013-11-07 United TLD Holdco Ltd.
+moda
+
+// glass : 2013-11-07 Black Cover, LLC
+glass
+
+// management : 2013-11-07 John Goodbye, LLC
+management
+
+// kaufen : 2013-11-07 United TLD Holdco Ltd.
+kaufen
+
+// farm : 2013-11-07 Just Maple, LLC
+farm
+
+// xn--55qw42g : 2013-11-08 China Organizational Name Administration Center
+公益
+
+// xn--zfr164b : 2013-11-08 China Organizational Name Administration Center
+政务
+
+// club : 2013-11-08 .CLUB DOMAINS, LLC
+club
+
+// voting : 2013-11-13 Valuetainment Corp.
+voting
+
+// TOKYO : 2013-11-13 GMO Registry, Inc.
+tokyo
+
+// moe : 2013-11-13 Interlink Co., Ltd.
+moe
+
+// guitars : 2013-11-14 Uniregistry, Corp.
+guitars
+
+// bargains : 2013-11-14 Half Hallow, LLC
+bargains
+
+// xn--nqv7fs00ema : 2013-11-14 Public Interest Registry
+组织机构
+
+// desi : 2013-11-14 Desi Networks LLC
+desi
+
+// cool : 2013-11-14 Koko Lake, LLC
+cool
+
+// boutique : 2013-11-14 Over Galley, LLC
+boutique
+
+// pics : 2013-11-14 Uniregistry, Corp.
+pics
+
+// xn--c1avg : 2013-11-14 Public Interest Registry
+орг
+
+// xn--55qx5d : 2013-11-14 Computer Network Information Center of Chinese Academy of Sciences (China Internet Network Information Center)
+公司
+
+// xn--io0a7i : 2013-11-14 Computer Network Information Center of Chinese Academy of Sciences (China Internet Network Information Center)
+网络
+
+// cheap : 2013-11-14 Sand Cover, LLC
+cheap
+
+// xn--xhq521b : 2013-11-14 Guangzhou YU Wei Information Technology Co., Ltd.
+广东
+
+// photo : 2013-11-14 Uniregistry, Corp.
+photo
+
+// network : 2013-11-14 Trixy Manor, LLC
+network
+
+// zone : 2013-11-14 Outer Falls, LLC
+zone
+
+// xn--nqv7f : 2013-11-14 Public Interest Registry
+机构
+
+// link : 2013-11-14 Uniregistry, Corp.
+link
+
+// QPON : 2013-11-14 dotCOOL, Inc.
+qpon
+
+// xn--i1b6b1a6a2e : 2013-11-14 Public Interest Registry
+संगठन
+
+// agency : 2013-11-14 Steel Falls, LLC
+agency
+
+// tienda : 2013-11-14 Victor Manor, LLC
+tienda
+
+// works : 2013-11-14 Little Dynamite, LLC
+works
+
+// london : 2013-11-14 Dot London Domains Limited
+london
+
+// watch : 2013-11-14 Sand Shadow, LLC
+watch
+
+// rocks : 2013-11-14 Ruby Moon, LLC
+rocks
+
+// SHIKSHA : 2013-11-14 Afilias Limited
+shiksha
+
+// xn--d1acj3b : 2013-11-21 The Foundation for Network Initiatives “The Smart Internet”
+дети
+
+// budapest : 2013-11-21 Top Level Domain Holdings Limited
+budapest
+
+// nrw : 2013-11-21 Minds + Machines GmbH
+nrw
+
+// VOTE : 2013-11-21 Monolith Registry LLC
+vote
+
+// fishing : 2013-11-21 Top Level Domain Holdings Limited
+fishing
+
+// expert : 2013-11-21 Magic Pass, LLC
+expert
+
+// horse : 2013-11-21 Top Level Domain Holdings Limited
+horse
+
+// christmas : 2013-11-21 Uniregistry, Corp.
+christmas
+
+// cooking : 2013-11-21 Top Level Domain Holdings Limited
+cooking
+
+// xn--czru2d : 2013-11-21 Zodiac Capricorn Limited
+商城
+
+// casa : 2013-11-21 Top Level Domain Holdings Limited
+casa
+
+// rich : 2013-11-21 I-REGISTRY Ltd., Niederlassung Deutschland
+rich
+
+// VOTO : 2013-11-21 Monolith Registry LLC
+voto
+
+// tools : 2013-11-21 Pioneer North, LLC
+tools
+
+// xn--45q11c : 2013-11-21 Zodiac Scorpio Limited
+八卦
+
+// praxi : 2013-12-05 Praxi S.p.A.
+praxi
+
+// events : 2013-12-05 Pioneer Maple, LLC
+events
+
+// flights : 2013-12-05 Fox Station, LLC
+flights
+
+// report : 2013-12-05 Binky Glen, LLC
+report
+
+// partners : 2013-12-05 Magic Glen, LLC
+partners
+
+// neustar : 2013-12-05 NeuStar, Inc.
+neustar
+
+// rentals : 2013-12-05 Big Hollow,LLC
+rentals
+
+// catering : 2013-12-05 New Falls. LLC
+catering
+
+// community : 2013-12-05 Fox Orchard, LLC
+community
+
+// maison : 2013-12-05 Victor Frostbite, LLC
+maison
+
+// parts : 2013-12-05 Sea Goodbye, LLC
+parts
+
+// cleaning : 2013-12-05 Fox Shadow, LLC
+cleaning
+
+// okinawa : 2013-12-05 BusinessRalliart inc.
+okinawa
+
+// foundation : 2013-12-05 John Dale, LLC
+foundation
+
+// properties : 2013-12-05 Big Pass, LLC
+properties
+
+// vacations : 2013-12-05 Atomic Tigers, LLC
+vacations
+
+// productions : 2013-12-05 Magic Birch, LLC
+productions
+
+// industries : 2013-12-05 Outer House, LLC
+industries
+
+// haus : 2013-12-05 Pixie Edge, LLC
+haus
+
+// vision : 2013-12-05 Koko Station, LLC
+vision
+
+// mormon : 2013-12-05 IRI Domain Management, LLC (""Applicant"")
+mormon
+
+// cards : 2013-12-05 Foggy Hollow, LLC
+cards
+
+// ink : 2013-12-05 Top Level Design, LLC
+ink
+
+// villas : 2013-12-05 New Sky, LLC
+villas
+
+// consulting : 2013-12-05 Pixie Station, LLC
+consulting
+
+// cruises : 2013-12-05 Spring Way, LLC
+cruises
+
+// krd : 2013-12-05 KRG Department of Information Technology
+krd
+
+// xyz : 2013-12-05 XYZ.COM LLC
+xyz
+
+// dating : 2013-12-05 Pine Fest, LLC
+dating
+
+// exposed : 2013-12-05 Victor Beach, LLC
+exposed
+
+// condos : 2013-12-05 Pine House, LLC
+condos
+
+// eus : 2013-12-12 Puntueus Fundazioa
+eus
+
+// Caravan : 2013-12-12 Caravan International, Inc.
+caravan
+
+// actor : 2013-12-12 United TLD Holdco Ltd.
+actor
+
+// saarland : 2013-12-12 dotSaarland GmbH
+saarland
+
+// yokohama : 2013-12-12 GMO Registry, Inc.
+yokohama
+
+// pub : 2013-12-12 United TLD Holdco Ltd.
+pub
+
+// xn--p1acf : 2013-12-12 Rusnames Limited
+рус
+
+// ren : 2013-12-12 Beijing Qianxiang Wangjing Technology Development Co., Ltd.
+ren
+
+// fish : 2013-12-12 Fox Woods, LLC
+fish
+
+// BAR : 2013-12-12 Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable
+bar
+
+// DNP : 2013-12-13 Dai Nippon Printing Co., Ltd.
+dnp
+
+// bid : 2013-12-19 dot Bid Limited
+bid
+
+// supply : 2013-12-19 Half Falls, LLC
+supply
+
+// Miami : 2013-12-19 Top Level Domain Holdings Limited
+miami
+
+// supplies : 2013-12-19 Atomic Fields, LLC
+supplies
+
+// quebec : 2013-12-19 PointQuébec Inc
+quebec
+
+// MOSCOW : 2013-12-19 Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)
+moscow
+
+// globo : 2013-12-19 Globo Comunicação e Participações S.A
+globo
+
+// AXA : 2013-12-19 AXA SA
+axa
+
+// xn--80adxhks : 2013-12-19 Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)
+москва
+
+// xn--czrs0t : 2013-12-19 Wild Island, LLC
+商店
+
+// vodka : 2013-12-19 Top Level Domain Holdings Limited
+vodka
+
+// REST : 2013-12-19 Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable
+rest
+
+// frogans : 2013-12-19 OP3FT
+frogans
+
+// WTC : 2013-12-19 World Trade Centers Association, Inc.
+wtc
+
+// rodeo : 2013-12-19 Top Level Domain Holdings Limited
+rodeo
+
+// sohu : 2013-12-19 Sohu.com Limited
+sohu
+
+// BEST : 2013-12-19 BestTLD Pty Ltd
+best
+
+// country : 2013-12-19 Top Level Domain Holdings Limited
+country
+
+// KRED : 2013-12-19 KredTLD Pty Ltd
+kred
+
+// feedback : 2013-12-19 Top Level Spectrum, Inc.
+feedback
+
+// work : 2013-12-19 Top Level Domain Holdings Limited
+work
+
+// luxe : 2014-01-09 Top Level Domain Holdings Limited
+luxe
+
+// ryukyu : 2014-01-09 BusinessRalliart inc.
+ryukyu
+
+// autos : 2014-01-09 DERAutos, LLC
+autos
+
+// homes : 2014-01-09 DERHomes, LLC
+homes
+
+// jetzt : 2014-01-09 New TLD Company AB
+jetzt
+
+// yachts : 2014-01-09 DERYachts, LLC
+yachts
+
+// motorcycles : 2014-01-09 DERMotorcycles, LLC
+motorcycles
+
+// mini : 2014-01-09 Bayerische Motoren Werke Aktiengesellschaft
+mini
+
+// ggee : 2014-01-09 GMO Internet, Inc.
+ggee
+
+// beer : 2014-01-09 Top Level Domain Holdings Limited
+beer
+
+// xn--1qqw23a : 2014-01-13 Guangzhou YU Wei Information Technology Co., Ltd.
+佛山
+
+// college : 2014-01-16 XYZ.COM LLC
+college
+
+// ovh : 2014-01-16 OVH SAS
+ovh
+
+// meet : 2014-01-16 Afilias Limited
+meet
+
+// xn--ses554g : 2014-01-16 HU YI GLOBAL INFORMATION RESOURCES (HOLDING) COMPANY. HONGKONG LIMITED
+网址
+
+// gop : 2014-01-16 Republican State Leadership Committee, Inc.
+gop
+
+// blackfriday : 2014-01-16 Uniregistry, Corp.
+blackfriday
+
+// lacaixa : 2014-01-16 CAIXA D'ESTALVIS I PENSIONS DE BARCELONA
+lacaixa
+
+// xn--czr694b : 2014-01-16 HU YI GLOBAL INFORMATION RESOURCES(HOLDING) COMPANY.HONGKONG LIMITED
+商标
+
+// vegas : 2014-01-16 Dot Vegas, Inc.
+vegas
+
+// black : 2014-01-16 Afilias Limited
+black
+
+// soy : 2014-01-23 Charleston Road Registry Inc.
+soy
+
+// trade : 2014-01-23 Elite Registry Limited
+trade
+
+// gent : 2014-01-23 COMBELL GROUP NV/SA
+gent
+
+// ing : 2014-01-23 Charleston Road Registry Inc.
+ing
+
+// dad : 2014-01-23 Charleston Road Registry Inc.
+dad
+
+// shriram : 2014-01-23 Shriram Capital Ltd.
+shriram
+
+// bayern : 2014-01-23 Bayern Connect GmbH
+bayern
+
+// scot : 2014-01-23 Dot Scot Registry Limited
+scot
+
+// webcam : 2014-01-23 dot Webcam Limited
+webcam
+
+// foo : 2014-01-23 Charleston Road Registry Inc.
+foo
+
+// eat : 2014-01-23 Charleston Road Registry Inc.
+eat
+
+// nyc : 2014-01-23 The City of New York
+nyc
+
+// prod : 2014-01-23 Charleston Road Registry Inc.
+prod
+
+// how : 2014-01-23 Charleston Road Registry Inc.
+how
+
+// day : 2014-01-30 Charleston Road Registry Inc.
+day
+
+// meme : 2014-01-30 Charleston Road Registry Inc.
+meme
+
+// mov : 2014-01-30 Charleston Road Registry Inc.
+mov
+
+// paris : 2014-01-30 City of Paris
+paris
+
+// boo : 2014-01-30 Charleston Road Registry Inc.
+boo
+
+// new : 2014-01-30 Charleston Road Registry Inc.
+new
+
+// ifm : 2014-01-30 ifm electronic gmbh
+ifm
+
+// life : 2014-02-06 Trixy Oaks, LLC
+life
+
+// archi : 2014-02-06 STARTING DOT LIMITED
+archi
+
+// spiegel : 2014-02-06 SPIEGEL-Verlag Rudolf Augstein GmbH & Co. KG
+spiegel
+
+// brussels : 2014-02-06 DNS.be vzw
+brussels
+
+// church : 2014-02-06 Holly Fileds, LLC
+church
+
+// here : 2014-02-06 Charleston Road Registry Inc.
+here
+
+// dabur : 2014-02-06 Dabur India Limited
+dabur
+
+// vlaanderen : 2014-02-06 DNS.be vzw
+vlaanderen
+
+// cologne : 2014-02-06 NetCologne Gesellschaft für Telekommunikation mbH
+cologne
+
+// xn--kput3i : 2014-02-13 Beijing RITT-Net Technology Development Co., Ltd
+手机
+
+// wme : 2014-02-13 William Morris Endeavor Entertainment, LLC
+wme
+
+// nhk : 2014-02-13 Japan Broadcasting Corporation (NHK)
+nhk
+
+// suzuki : 2014-02-20 SUZUKI MOTOR CORPORATION
+suzuki
+
+// whoswho : 2014-02-20 Who's Who Registry
+whoswho
+
+// scb : 2014-02-20 The Siam Commercial Bank Public Company Limited ("SCB""\)
+scb
+
+// hamburg : 2014-02-20 Hamburg Top-Level-Domain GmbH
+hamburg
+
+// services : 2014-02-27 Fox Castle, LLC
+services
+
+// bzh : 2014-02-27 Association www.bzh
+bzh
+
+// rio : 2014-02-27 Empresa Municipal de Informática SA - IPLANRIO
+rio
+
+// cash : 2014-03-07 Delta Lake, LLC
+cash
+
+// gives : 2014-03-07 United TLD Holdco Ltd.
+gives
+
+// hiphop : 2014-03-07 Uniregistry, Corp.
+hiphop
+
+// degree : 2014-03-07 Puff House, LLC
+degree
+
+// digital : 2014-03-07 Dash Park, LLC
+digital
+
+// rehab : 2014-03-07 United TLD Holdco Ltd.
+rehab
+
+// wtf : 2014-03-07 Hidden Way, LLC
+wtf
+
+// financial : 2014-03-07 Just Cover, LLC
+financial
+
+// limited : 2014-03-07 Big Fest, LLC
+limited
+
+// discount : 2014-03-07 Holly Hill, LLC
+discount
+
+// fail : 2014-03-07 Atomic Pipe, LLC
+fail
+
+// vet : 2014-03-07 Wild Dale, LLC
+vet
+
+// ngo : 2014-03-07 Public Interest Registry
+ngo
+
+// fitness : 2014-03-07 Brice Orchard, LLC
+fitness
+
+// schule : 2014-03-07 Outer Moon, LLC
+schule
+
+// navy : 2014-03-07 United TLD Holdco Ltd.
+navy
+
+// bio : 2014-03-07 STARTING DOT LIMITED
+bio
+
+// ong : 2014-03-07 Public Interest Registry
+ong
+
+// town : 2014-03-07 Koko Moon, LLC
+town
+
+// toys : 2014-03-07 Pioneer Orchard, LLC
+toys
+
+// army : 2014-03-07 United TLD Holdco Ltd.
+army
+
+// engineering : 2014-03-07 Romeo Canyon
+engineering
+
+// capital : 2014-03-07 Delta Mill, LLC
+capital
+
+// exchange : 2014-03-07 Spring Falls, LLC
+exchange
+
+// fan : 2014-03-07 Goose Glen, LLC
+fan
+
+// market : 2014-03-07 Victor Way, LLC
+market
+
+// media : 2014-03-07 Grand Glen, LLC
+media
+
+// lease : 2014-03-07 Victor Trail, LLC
+lease
+
+// university : 2014-03-07 Little Station, LLC
+university
+
+// reisen : 2014-03-07 New Cypress, LLC
+reisen
+
+// airforce : 2014-03-07 United TLD Holdco Ltd.
+airforce
+
+// pictures : 2014-03-07 Foggy Sky, LLC
+pictures
+
+// gripe : 2014-03-07 Corn Sunset, LLC
+gripe
-// uy : http://www.nic.org.uy/
-uy
-com.uy
-edu.uy
-gub.uy
-mil.uy
-net.uy
-org.uy
+// engineering : 2014-03-07 United TLD Holdco Ltd.
+engineering
-// uz : http://www.reg.uz/
-uz
-co.uz
-com.uz
-net.uz
-org.uz
+// associates : 2014-03-07 Baxter Hill, LLC
+associates
-// va : http://en.wikipedia.org/wiki/.va
-va
+// xn--mxtq1m : 2014-03-07 Net-Chinese Co., Ltd.
+政府
-// vc : http://en.wikipedia.org/wiki/.vc
-// Submitted by registry <kshah(a)ca.afilias.info> 2008-06-13
-vc
-com.vc
-net.vc
-org.vc
-gov.vc
-mil.vc
-edu.vc
+// williamhill : 2014-03-13 William Hill Organization Limited
+williamhill
-// ve : https://registro.nic.ve/
-// Confirmed by registry 2012-10-04
-ve
-co.ve
-com.ve
-e12.ve
-edu.ve
-gov.ve
-info.ve
-mil.ve
-net.ve
-org.ve
-web.ve
+// hiv : 2014-03-13 dotHIV gemeinnuetziger e.V.
+hiv
-// vg : http://en.wikipedia.org/wiki/.vg
-vg
+// sca : 2014-03-13 SVENSKA CELLULOSA AKTIEBOLAGET SCA (publ)
+sca
-// vi : http://www.nic.vi/newdomainform.htm
-// http://www.nic.vi/Domain_Rules/body_domain_rules.html indicates some other
-// TLDs are "reserved", such as edu.vi and gov.vi, but doesn't actually say they
-// are available for registration (which they do not seem to be).
-vi
-co.vi
-com.vi
-k12.vi
-net.vi
-org.vi
+// reise : 2014-03-13 dotreise GmbH
+reise
-// vn : https://www.dot.vn/vnnic/vnnic/domainregistration.jsp
-vn
-com.vn
-net.vn
-org.vn
-edu.vn
-gov.vn
-int.vn
-ac.vn
-biz.vn
-info.vn
-name.vn
-pro.vn
-health.vn
+// accountants : 2014-03-20 Knob Town, LLC
+accountants
-// vu : http://en.wikipedia.org/wiki/.vu
-// list of 2nd level tlds ?
-vu
+// clinic : 2014-03-20 Goose Park, LLC
+clinic
-// wf : http://www.afnic.fr/medias/documents/AFNIC-naming-policy2012.pdf
-wf
+// versicherung : 2014-03-20 dotversicherung-registry GmbH
+versicherung
-// ws : http://en.wikipedia.org/wiki/.ws
-// http://samoanic.ws/index.dhtml
-ws
-com.ws
-net.ws
-org.ws
-gov.ws
-edu.ws
+// top : 2014-03-20 Jiangsu Bangning Science & Technology Co.,Ltd.
+top
-// yt : http://www.afnic.fr/medias/documents/AFNIC-naming-policy2012.pdf
-yt
+// furniture : 2014-03-20 Lone Fields, LLC
+furniture
-// IDN ccTLDs
-// Please sort by ISO 3166 ccTLD, then punicode string
-// when submitting patches and follow this format:
-// <Punicode> ("<english word>" <language>) : <ISO 3166 ccTLD>
-// [optional sponsoring org]
-// <URL>
+// dental : 2014-03-20 Tin Birch, LLC
+dental
-// xn--mgbaam7a8h ("Emerat" Arabic) : AE
-// http://nic.ae/english/arabicdomain/rules.jsp
-امارات
+// fund : 2014-03-20 John Castle, LLC
+fund
-// xn--54b7fta0cc ("Bangla" Bangla) : BD
-বাংলা
+// creditcard : 2014-03-20 Binky Frostbite, LLC
+creditcard
-// xn--fiqs8s ("China" Chinese-Han-Simplified <.Zhonggou>) : CN
-// CNNIC
-// http://cnnic.cn/html/Dir/2005/10/11/3218.htm
-中国
+// insure : 2014-03-20 Pioneer Willow, LLC
+insure
-// xn--fiqz9s ("China" Chinese-Han-Traditional <.Zhonggou>) : CN
-// CNNIC
-// http://cnnic.cn/html/Dir/2005/10/11/3218.htm
-中國
+// audio : 2014-03-20 Uniregistry, Corp.
+audio
-// xn--lgbbat1ad8j ("Algeria / Al Jazair" Arabic) : DZ
-الجزائر
+// claims : 2014-03-20 Black Corner, LLC
+claims
-// xn--wgbh1c ("Egypt" Arabic .masr) : EG
-// http://www.dotmasr.eg/
-مصر
+// loans : 2014-03-20 June Woods, LLC
+loans
-// xn--node ("ge" Georgian (Mkhedruli)) : GE
-გე
+// auction : 2014-03-20 Sand Galley, LLC
+auction
-// xn--j6w193g ("Hong Kong" Chinese-Han) : HK
-// https://www2.hkirc.hk/register/rules.jsp
-香港
+// attorney : 2014-03-20 Victor North, LLC
+attorney
-// xn--h2brj9c ("Bharat" Devanagari) : IN
-// India
-भारत
+// finance : 2014-03-20 Cotton Cypress, LLC
+finance
-// xn--mgbbh1a71e ("Bharat" Arabic) : IN
-// India
-بھارت
+// investments : 2014-03-20 Holly Glen, LLC
+investments
-// xn--fpcrj9c3d ("Bharat" Telugu) : IN
-// India
-భారత్
+// juegos : 2014-03-20 Uniregistry, Corp.
+juegos
-// xn--gecrj9c ("Bharat" Gujarati) : IN
-// India
-ભારત
+// dentist : 2014-03-20 Outer Lake, LLC
+dentist
-// xn--s9brj9c ("Bharat" Gurmukhi) : IN
-// India
-ਭਾਰਤ
+// lds : 2014-03-20 IRI Domain Management, LLC
+lds
-// xn--45brj9c ("Bharat" Bengali) : IN
-// India
-ভারত
+// lawyer : 2014-03-20 Atomic Station, LLC
+lawyer
-// xn--xkc2dl3a5ee0h ("India" Tamil) : IN
-// India
-இந்தியா
+// surgery : 2014-03-20 Tin Avenue, LLC
+surgery
-// xn--mgba3a4f16a ("Iran" Persian) : IR
-ایران
+// gratis : 2014-03-20 Pioneer Tigers, LLC
+gratis
-// xn--mgba3a4fra ("Iran" Arabic) : IR
-ايران
+// software : 2014-03-20 Over Birch, LLC
+software
-// xn--mgbayh7gpa ("al-Ordon" Arabic) : JO
-// National Information Technology Center (NITC)
-// Royal Scientific Society, Al-Jubeiha
-الاردن
+// mortgage : 2014-03-20 Outer Gardens, LLC
+mortgage
-// xn--3e0b707e ("Republic of Korea" Hangul) : KR
-한국
+// republican : 2014-03-20 United TLD Holdco Ltd.
+republican
-// xn--fzc2c9e2c ("Lanka" Sinhalese-Sinhala) : LK
-// http://nic.lk
-ලංකා
+// credit : 2014-03-20 Snow Shadow, LLC
+credit
-// xn--xkc2al3hye2a ("Ilangai" Tamil) : LK
-// http://nic.lk
-இலங்கை
+// tax : 2014-03-20 Storm Orchard, LLC
+tax
-// xn--mgbc0a9azcg ("Morocco / al-Maghrib" Arabic) : MA
-المغرب
+// africa : 2014-03-24 ZA Central Registry NPC trading as Registry.Africa
+africa
-// xn--mgb9awbf ("Oman" Arabic) : OM
-عمان
+// joburg : 2014-03-24 ZA Central Registry NPC trading as ZA Central Registry
+joburg
-// xn--ygbi2ammx ("Falasteen" Arabic) : PS
-// The Palestinian National Internet Naming Authority (PNINA)
-// http://www.pnina.ps
-فلسطين
+// durban : 2014-03-24 ZA Central Registry NPC trading as ZA Central Registry
+durban
-// xn--90a3ac ("srb" Cyrillic) : RS
-срб
+// capetown : 2014-03-24 ZA Central Registry NPC trading as ZA Central Registry
+capetown
-// xn--p1ai ("rf" Russian-Cyrillic) : RU
-// http://www.cctld.ru/en/docs/rulesrf.php
-рф
+// sap : 2014-03-27 SAP AG
+sap
-// xn--wgbl6a ("Qatar" Arabic) : QA
-// http://www.ict.gov.qa/
-قطر
+// datsun : 2014-03-27 NISSAN MOTOR CO., LTD.
+datsun
-// xn--mgberp4a5d4ar ("AlSaudiah" Arabic) : SA
-// http://www.nic.net.sa/
-السعودية
+// infiniti : 2014-03-27 NISSAN MOTOR CO., LTD.
+infiniti
-// xn--mgberp4a5d4a87g ("AlSaudiah" Arabic) variant : SA
-السعودیة
+// firmdale : 2014-03-27 Firmdale Holdings Limited
+firmdale
-// xn--mgbqly7c0a67fbc ("AlSaudiah" Arabic) variant : SA
-السعودیۃ
+// organic : 2014-03-27 Afilias Limited
+organic
-// xn--mgbqly7cvafr ("AlSaudiah" Arabic) variant : SA
-السعوديه
+// nissan : 2014-03-27 NISSAN MOTOR CO., LTD.
+nissan
-// xn--ogbpf8fl ("Syria" Arabic) : SY
-سورية
+// website : 2014-04-03 DotWebsite Inc.
+website
-// xn--mgbtf8fl ("Syria" Arabic) variant : SY
-سوريا
+// space : 2014-04-03 DotSpace Inc.
+space
-// xn--yfro4i67o Singapore ("Singapore" Chinese-Han) : SG
-新加坡
+// schmidt : 2014-04-03 SALM S.A.S.
+schmidt
-// xn--clchc0ea0b2g2a9gcd ("Singapore" Tamil) : SG
-சிங்கப்பூர்
+// cuisinella : 2014-04-03 SALM S.A.S.
+cuisinella
-// xn--o3cw4h ("Thai" Thai) : TH
-// http://www.thnic.co.th
-ไทย
+// samsung : 2014-04-03 SAMSUNG SDS CO., LTD
+samsung
-// xn--pgbs0dh ("Tunis") : TN
-// http://nic.tn
-تونس
+// crs : 2014-04-03 Federated Co operatives Limited
+crs
-// xn--kpry57d ("Taiwan" Chinese-Han-Traditional) : TW
-// http://www.twnic.net/english/dn/dn_07a.htm
-台灣
+// doosan : 2014-04-03 Doosan Corporation
+doosan
-// xn--kprw13d ("Taiwan" Chinese-Han-Simplified) : TW
-// http://www.twnic.net/english/dn/dn_07a.htm
-台湾
+// press : 2014-04-03 DotPress Inc.
+press
-// xn--nnx388a ("Taiwan") variant : TW
-臺灣
+// emerck : 2014-04-03 Merck KGaA
+emerck
-// xn--j1amh ("ukr" Cyrillic) : UA
-укр
+// erni : 2014-04-03 ERNI Group Holding AG
+erni
-// xn--mgb2ddes ("AlYemen" Arabic) : YE
-اليمن
+// direct : 2014-04-10 Half Trail, LLC
+direct
-// xxx : http://icmregistry.com
-xxx
+// yandex : 2014-04-10 YANDEX, LLC
+yandex
-// ye : http://www.y.net.ye/services/domain_name.htm
-*.ye
+// lotto : 2014-04-10 Afilias Limited
+lotto
-// za : http://www.zadna.org.za/slds.html
-*.za
+// toshiba : 2014-04-10 TOSHIBA Corporation
+toshiba
-// zm : http://en.wikipedia.org/wiki/.zm
-*.zm
+// bauhaus : 2014-04-17 Werkhaus GmbH
+bauhaus
-// zw : http://en.wikipedia.org/wiki/.zw
-*.zw
+// host : 2014-04-17 DotHost Inc.
+host
+
+// ltda : 2014-04-17 DOMAIN ROBOT SERVICOS DE HOSPEDAGEM NA INTERNET LTDA
+ltda
+
+// global : 2014-04-17 Dot GLOBAL AS
+global
+
+// abogado : 2014-04-24 Top Level Domain Holdings Limited
+abogado
+
+// place : 2014-04-24 Snow Galley, LLC
+place
+
+// tirol : 2014-04-24 punkt Tirol GmbH
+tirol
+
+// gmx : 2014-04-24 1&1 Mail & Media GmbH
+gmx
+
+// tatar : 2014-04-24 Limited Liability Company "Coordination Center of Regional Domain of Tatarstan Republic"
+tatar
+
+// scholarships : 2014-04-24 Scholarships.com, LLC
+scholarships
+
+// eurovision : 2014-04-24 European Broadcasting Union (EBU)
+eurovision
+
+// wedding : 2014-04-24 Top Level Domain Holdings Limited
+wedding
+
+// active : 2014-05-01 The Active Network, Inc
+active
+
+// madrid : 2014-05-01 Comunidad de Madrid
+madrid
+
+// youtube : 2014-05-01 Charleston Road Registry Inc.
+youtube
+
+// sharp : 2014-05-01 Sharp Corporation
+sharp
+
+// uol : 2014-05-01 UBN INTERNET LTDA.
+uol
+
+// physio : 2014-05-01 PhysBiz Pty Ltd
+physio
+
+// gmail : 2014-05-01 Charleston Road Registry Inc.
+gmail
+
+// channel : 2014-05-08 Charleston Road Registry Inc.
+channel
+
+// fly : 2014-05-08 Charleston Road Registry Inc.
+fly
+
+// zip : 2014-05-08 Charleston Road Registry Inc.
+zip
+
+// esq : 2014-05-08 Charleston Road Registry Inc.
+esq
+
+// rsvp : 2014-05-08 Charleston Road Registry Inc.
+rsvp
+
+// wales : 2014-05-08 Nominet UK
+wales
+
+// cymru : 2014-05-08 Nominet UK
+cymru
+
+// green : 2014-05-08 Afilias Limited
+green
+
+// lgbt : 2014-05-08 Afilias Limited
+lgbt
+
+// xn--hxt814e : 2014-05-15 Zodiac Libra Limited
+网店
+
+// cancerresearch : 2014-05-15 Australian Cancer Research Foundation
+cancerresearch
+
+// everbank : 2014-05-15 EverBank
+everbank
+
+// frl : 2014-05-15 FRLregistry B.V.
+frl
+
+// property : 2014-05-22 Uniregistry, Corp.
+property
+
+// forsale : 2014-05-22 Sea Oaks, LLC
+forsale
+
+// seat : 2014-05-22 SEAT, S.A. (Sociedad Unipersonal)
+seat
+
+// deals : 2014-05-22 Sand Sunset, LLC
+deals
+
+// nra : 2014-05-22 NRA Holdings Company, INC.
+nra
+
+// xn--fjq720a : 2014-05-22 Will Bloom, LLC
+娱乐
+
+// realtor : 2014-05-29 Real Estate Domains LLC
+realtor
+
+// bnpparibas : 2014-05-29 BNP Paribas
+bnpparibas
+
+// melbourne : 2014-05-29 The Crown in right of the State of Victoria, represented by its Department of State Development, Business and Innovation
+melbourne
+
+// hosting : 2014-05-29 Uniregistry, Corp.
+hosting
+
+// yoga : 2014-05-29 Top Level Domain Holdings Limited
+yoga
+
+// city : 2014-05-29 Snow Sky, LLC
+city
+
+// bond : 2014-06-05 Bond University Limited
+bond
+
+// click : 2014-06-05 Uniregistry, Corp.
+click
+
+// cern : 2014-06-05 European Organization for Nuclear Research ("CERN")
+cern
// ===END ICANN DOMAINS===
// ===BEGIN PRIVATE DOMAINS===
// Amazon CloudFront : https://aws.amazon.com/cloudfront/
-// Requested by Donavan Miller <donavanm(a)amazon.com> 2013-03-22
+// Submitted by Donavan Miller <donavanm(a)amazon.com> 2013-03-22
cloudfront.net
// Amazon Elastic Compute Cloud: https://aws.amazon.com/ec2/
-// Requested by Osman Surkatty <osmans(a)amazon.com> 2013-04-02
-compute.amazonaws.com
-us-east-1.amazonaws.com
-compute-1.amazonaws.com
-z-1.compute-1.amazonaws.com
-z-2.compute-1.amazonaws.com
+// Submitted by Osman Surkatty <osmans(a)amazon.com> 2014-05-20
ap-northeast-1.compute.amazonaws.com
ap-southeast-1.compute.amazonaws.com
ap-southeast-2.compute.amazonaws.com
+cn-north-1.compute.amazonaws.cn
+compute.amazonaws.cn
+compute.amazonaws.com
+compute-1.amazonaws.com
eu-west-1.compute.amazonaws.com
sa-east-1.compute.amazonaws.com
+us-east-1.amazonaws.com
us-gov-west-1.compute.amazonaws.com
us-west-1.compute.amazonaws.com
us-west-2.compute.amazonaws.com
+z-1.compute-1.amazonaws.com
+z-2.compute-1.amazonaws.com
-// Amazon Elastic Beanstalk : https://aws.amazon.com/elasticbeanstalk/
-// Requested by Adam Stein <astein(a)amazon.com> 2013-04-02
+// Amazon Elastic Beanstalk : https://aws.amazon.com/elasticbeanstalk/
+// Submitted by Adam Stein <astein(a)amazon.com> 2013-04-02
elasticbeanstalk.com
// Amazon Elastic Load Balancing : https://aws.amazon.com/elasticloadbalancing/
-// Requested by Scott Vidmar <svidmar(a)amazon.com> 2013-03-27
+// Submitted by Scott Vidmar <svidmar(a)amazon.com> 2013-03-27
elb.amazonaws.com
// Amazon S3 : https://aws.amazon.com/s3/
-// Requested by Courtney Eckhardt <coec(a)amazon.com> 2013-03-22
+// Submitted by Courtney Eckhardt <coec(a)amazon.com> 2013-03-22
s3.amazonaws.com
s3-us-west-2.amazonaws.com
s3-us-west-1.amazonaws.com
@@ -6608,26 +8051,27 @@ s3-website-sa-east-1.amazonaws.com
s3-website-us-gov-west-1.amazonaws.com
// BetaInABox
-// Requested by adrian(a)betainabox.com 2012-09-13
+// Submitted by adrian(a)betainabox.com 2012-09-13
betainabox.com
// CentralNic : http://www.centralnic.com/names/domains
-// Requested by registry <gavin.brown(a)centralnic.com> 2012-09-27
+// Submitted by registry <gavin.brown(a)centralnic.com> 2012-09-27
ae.org
ar.com
br.com
cn.com
com.de
+com.se
de.com
eu.com
gb.com
gb.net
-gr.com
hu.com
hu.net
jp.net
jpn.com
kr.com
+mex.com
no.com
qc.com
ru.com
@@ -6637,13 +8081,38 @@ se.net
uk.com
uk.net
us.com
-us.org
uy.com
+za.bz
za.com
+// Africa.com Web Solutions Ltd : https://registry.africa.com
+// Submitted by Gavin Brown <gavin.brown(a)centralnic.com> 2014-02-04
+africa.com
+
+// iDOT Services Limited : http://www.domain.gr.com
+// Submitted by Gavin Brown <gavin.brown(a)centralnic.com> 2014-02-04
+gr.com
+
+// Radix FZC : http://domains.in.net
+// Submitted by Gavin Brown <gavin.brown(a)centralnic.com> 2014-02-04
+in.net
+
+// US REGISTRY LLC : http://us.org
+// Submitted by Gavin Brown <gavin.brown(a)centralnic.com> 2014-02-04
+us.org
+
+// co.com Registry, LLC : https://registry.co.com
+// Submitted by Gavin Brown <gavin.brown(a)centralnic.com> 2014-02-04
+co.com
+
// c.la : http://www.c.la/
c.la
+// cloudControl : https://www.cloudcontrol.com/
+// Submitted by Tobias Wilken <tw(a)cloudcontrol.com> 2013-07-23
+cloudcontrolled.com
+cloudcontrolapp.com
+
// co.ca : http://registry.co.ca/
co.ca
@@ -6651,8 +8120,12 @@ co.ca
co.nl
co.no
+// Cupcake : https://cupcake.io/
+// Submitted by Jonathan Rudenberg <jonathan(a)cupcake.io> 2013-10-08
+cupcake.is
+
// DreamHost : http://www.dreamhost.com/
-// Requested by Andrew Farmer <andrew.farmer(a)dreamhost.com> 2012-10-02
+// Submitted by Andrew Farmer <andrew.farmer(a)dreamhost.com> 2012-10-02
dreamhosters.com
// DynDNS.com : http://www.dyndns.com/services/dns/dyndns/
@@ -6936,12 +8409,29 @@ webhop.org
worse-than.tv
writesthisblog.com
+// Fastly Inc. http://www.fastly.com/
+// Submitted by Vladimir Vuksan <vladimir(a)fastly.com> 2013-05-31
+a.ssl.fastly.net
+b.ssl.fastly.net
+global.ssl.fastly.net
+a.prod.fastly.net
+global.prod.fastly.net
+
+// Firebase, Inc.
+// Submitted by Chris Raynor <chris(a)firebase.com> 2014-01-21
+firebaseapp.com
+
// GitHub, Inc.
-// Requested by Ben Toews <btoews(a)github.com> 2013-04-18
+// Submitted by Ben Toews <btoews(a)github.com> 2014-02-06
github.io
+githubusercontent.com
+
+// GlobeHosting, Inc.
+// Submitted by Zoltan Egresi <egresi(a)globehosting.com> 2013-07-12
+ro.com
// Google, Inc.
-// Requested by Eduardo Vela <evn(a)google.com> 2012-10-24
+// Submitted by Eduardo Vela <evn(a)google.com> 2012-10-24
appspot.com
blogspot.be
blogspot.bj
@@ -6986,14 +8476,15 @@ blogspot.tw
codespot.com
googleapis.com
googlecode.com
+withgoogle.com
// Heroku : https://www.heroku.com/
-// Requested by Tom Maher <tmaher(a)heroku.com> 2013-05-02
+// Submitted by Tom Maher <tmaher(a)heroku.com> 2013-05-02
herokuapp.com
herokussl.com
// iki.fi
-// Requested by Hannu Aronsson <haa(a)iki.fi> 2009-11-05
+// Submitted by Hannu Aronsson <haa(a)iki.fi> 2009-11-05
iki.fi
// info.at : http://www.info.at/
@@ -7003,24 +8494,42 @@ info.at
// Michau Enterprises Limited : http://www.co.pl/
co.pl
+// Microsoft : http://microsoft.com
+// Submitted by Barry Dorrans <bdorrans(a)microsoft.com> 2014-01-24
+azurewebsites.net
+azure-mobile.net
+cloudapp.net
+
+// NFSN, Inc. : https://www.NearlyFreeSpeech.NET/
+// Submitted by Jeff Wheelhouse <support(a)nearlyfreespeech.net> 2014-02-02
+nfshost.com
+
// NYC.mn : http://www.information.nyc.mn
-// Requested by Matthew Brown <mattbrown(a)nyc.mn> 2013-03-11
+// Submitted by Matthew Brown <mattbrown(a)nyc.mn> 2013-03-11
nyc.mn
+// One Fold Media : http://www.onefoldmedia.com/
+// Submitted by Eddie Jones <eddie(a)onefoldmedia.com> 2014-06-10
+nid.io
+
// Opera Software, A.S.A.
-// Requested by Yngve Pettersen <yngve(a)opera.com> 2009-11-26
+// Submitted by Yngve Pettersen <yngve(a)opera.com> 2009-11-26
operaunite.com
+// OutSystems
+// Submitted by Duarte Santos <domain-admin(a)outsystemscloud.com> 2014-03-11
+outsystemscloud.com
+
// Red Hat, Inc. OpenShift : https://openshift.redhat.com/
-// Requested by Tim Kramer <tkramer(a)rhcloud.com> 2012-10-24
+// Submitted by Tim Kramer <tkramer(a)rhcloud.com> 2012-10-24
rhcloud.com
// priv.at : http://www.nic.priv.at/
-// Requested by registry <lendl(a)nic.at> 2008-06-09
+// Submitted by registry <lendl(a)nic.at> 2008-06-09
priv.at
// ZaNiC : http://www.za.net/
-// Requested by registry <hostmaster(a)nic.za.net> 2009-10-03
+// Submitted by registry <hostmaster(a)nic.za.net> 2009-10-03
za.net
za.org
1
0

[tor-browser/esr24] Bug 1018234 - Reference count fontFaces. r=jfkthame, a=sledru
by mikeperry@torproject.org 29 Aug '14
by mikeperry@torproject.org 29 Aug '14
29 Aug '14
commit 1d07beef613496ed0768603fc401c4b1444400e6
Author: James Kitchener <jkitch.bug(a)gmail.com>
Date: Wed Jun 25 10:12:31 2014 +0100
Bug 1018234 - Reference count fontFaces. r=jfkthame, a=sledru
---
gfx/thebes/gfxDWriteFontList.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gfx/thebes/gfxDWriteFontList.cpp b/gfx/thebes/gfxDWriteFontList.cpp
index bef515f..8df648f 100644
--- a/gfx/thebes/gfxDWriteFontList.cpp
+++ b/gfx/thebes/gfxDWriteFontList.cpp
@@ -350,7 +350,7 @@ public:
}
private:
- IDWriteFontFace *mFontFace;
+ nsRefPtr<IDWriteFontFace> mFontFace;
void *mContext;
};
1
0

[tor-browser/esr24] Backed out 3 changesets (bug 1033340) for xpcshell failures.
by mikeperry@torproject.org 29 Aug '14
by mikeperry@torproject.org 29 Aug '14
29 Aug '14
commit 613b3c28ec08cc67965695a6cad0b24f12b0ecf5
Author: Ryan VanderMeulen <ryanvm(a)gmail.com>
Date: Thu Jul 3 14:03:52 2014 -0400
Backed out 3 changesets (bug 1033340) for xpcshell failures.
Backed out changeset cad29a5b752d (bug 1033340)
Backed out changeset 284590145d2d (bug 1033340)
Backed out changeset 34182c54281a (bug 1033340)
---
netwerk/dns/effective_tld_names.dat | 2525 +++++++----------------------------
netwerk/test/unit/data/test_psl.txt | 32 +-
netwerk/test/unit/test_psl.js | 14 +-
3 files changed, 518 insertions(+), 2053 deletions(-)
diff --git a/netwerk/dns/effective_tld_names.dat b/netwerk/dns/effective_tld_names.dat
index c83fe0b..ed1123b 100644
--- a/netwerk/dns/effective_tld_names.dat
+++ b/netwerk/dns/effective_tld_names.dat
@@ -175,21 +175,20 @@ it.ao
// aq : http://en.wikipedia.org/wiki/.aq
aq
-// ar : https://nic.ar/normativa-vigente.xhtml
-ar
-com.ar
-edu.ar
-gob.ar
-gov.ar
-int.ar
-mil.ar
-net.ar
-org.ar
-tur.ar
+// ar : http://en.wikipedia.org/wiki/.ar
+*.ar
+!congresodelalengua3.ar
+!educ.ar
+!gobiernoelectronico.ar
+!mecon.ar
+!nacion.ar
+!nic.ar
+!promocion.ar
+!retina.ar
+!uba.ar
// arpa : http://en.wikipedia.org/wiki/.arpa
// Confirmed by registry <iana-questions(a)icann.org> 2008-06-18
-arpa
e164.arpa
in-addr.arpa
ip6.arpa
@@ -214,7 +213,6 @@ or.at
// au : http://en.wikipedia.org/wiki/.au
// http://www.auda.org.au/
-au
// 2LDs
com.au
net.au
@@ -245,9 +243,10 @@ sa.edu.au
tas.edu.au
vic.edu.au
wa.edu.au
-// act.gov.au Bug 984824 - Removed at request of Greg Tankard
-// nsw.gov.au Bug 547985 - Removed at request of <Shae.Donelan(a)services.nsw.gov.au>
-// nt.gov.au Bug 940478 - Removed at request of Greg Connors <Greg.Connors(a)nt.gov.au>
+act.gov.au
+// Removed at request of Shae.Donelan(a)services.nsw.gov.au, 2010-03-04
+// nsw.gov.au
+nt.gov.au
qld.gov.au
sa.gov.au
tas.gov.au
@@ -292,7 +291,6 @@ rs.ba
// bb : http://en.wikipedia.org/wiki/.bb
bb
biz.bb
-co.bb
com.bb
edu.bb
gov.bb
@@ -300,7 +298,6 @@ info.bb
net.bb
org.bb
store.bb
-tv.bb
// bd : http://en.wikipedia.org/wiki/.bd
*.bd
@@ -352,7 +349,7 @@ z.bg
6.bg
7.bg
8.bg
-9.bg
+9.bg
// bh : http://en.wikipedia.org/wiki/.bh
bh
@@ -403,8 +400,8 @@ net.bo
mil.bo
tv.bo
-// br : http://registro.br/dominio/categoria.html
-// Submitted by registry <fneves(a)registro.br> 2014-03-04
+// br : http://registro.br/dominio/dpn.html
+// Updated by registry <fneves(a)registro.br> 2011-03-01
br
adm.br
adv.br
@@ -449,7 +446,6 @@ lel.br
mat.br
med.br
mil.br
-mp.br
mus.br
net.br
nom.br
@@ -495,7 +491,6 @@ org.bt
// bv : No registrations at this time.
// Submitted by registry <jarle(a)uninett.no> 2006-06-16
-bv
// bw : http://en.wikipedia.org/wiki/.bw
// http://www.gobin.info/domainname/bw.doc
@@ -598,12 +593,9 @@ gob.cl
co.cl
mil.cl
-// cm : http://en.wikipedia.org/wiki/.cm plus bug 981927
+// cm : http://en.wikipedia.org/wiki/.cm
cm
-co.cm
-com.cm
gov.cm
-net.cm
// cn : http://en.wikipedia.org/wiki/.cn
// Submitted by registry <tanyaling(a)cnnic.cn> 2008-06-11
@@ -795,7 +787,7 @@ org.ee
fie.ee
// eg : http://en.wikipedia.org/wiki/.eg
-eg
+eg
com.eg
edu.eg
eun.eg
@@ -818,14 +810,7 @@ gob.es
edu.es
// et : http://en.wikipedia.org/wiki/.et
-et
-com.et
-gov.et
-org.et
-edu.et
-biz.et
-name.et
-info.et
+*.et
// eu : http://en.wikipedia.org/wiki/.eu
eu
@@ -884,7 +869,6 @@ ga
// gb : This registry is effectively dormant
// Submitted by registry <Damien.Shaw(a)ja.net> 2008-06-12
-gb
// gd : http://en.wikipedia.org/wiki/.gd
gd
@@ -902,12 +886,13 @@ pvt.ge
// gf : http://en.wikipedia.org/wiki/.gf
gf
-// gg : http://www.channelisles.net/register-domains/
-// Confirmed by registry <nigel(a)channelisles.net> 2013-11-28
+// gg : http://www.channelisles.net/applic/avextn.shtml
gg
co.gg
-net.gg
org.gg
+net.gg
+sch.gg
+gov.gg
// gh : http://en.wikipedia.org/wiki/.gh
// see also: http://www.nic.gh/reg_now.php
@@ -938,7 +923,6 @@ gm
// gn : http://psg.com/dns/gn/gn.txt
// Submitted by registry <randy(a)psg.com> 2008-06-17
-gn
ac.gn
com.gn
edu.gn
@@ -1019,7 +1003,7 @@ org.hk
网絡.hk
组织.hk
組織.hk
-組织.hk
+組织.hk
// hm : http://en.wikipedia.org/wiki/.hm
hm
@@ -1100,7 +1084,6 @@ id
ac.id
biz.id
co.id
-desa.id
go.id
mil.id
my.id
@@ -1116,18 +1099,16 @@ gov.ie
// il : http://en.wikipedia.org/wiki/.il
*.il
-// im : https://www.nic.im/
-// Submitted by registry <info(a)nic.im> 2013-11-15
+// im : https://www.nic.im/pdfs/imfaqs.pdf
im
-ac.im
co.im
-com.im
ltd.co.im
+plc.co.im
net.im
+gov.im
org.im
-plc.co.im
-tt.im
-tv.im
+nic.im
+ac.im
// in : http://en.wikipedia.org/wiki/.in
// see also: http://www.inregistry.in/policies/
@@ -1199,385 +1180,294 @@ int.is
it
gov.it
edu.it
-// Reserved geo-names:
+// list of reserved geo-names :
// http://www.nic.it/documenti/regolamenti-e-linee-guida/regolamento-assegnazi…
-// There is also a list of reserved geo-names corresponding to Italian municipalities
-// http://www.nic.it/documenti/appendice-c.pdf, but it is not included here.
-// Regions
-abr.it
-abruzzo.it
-aosta-valley.it
-aostavalley.it
-bas.it
-basilicata.it
-cal.it
-calabria.it
-cam.it
-campania.it
-emilia-romagna.it
-emiliaromagna.it
-emr.it
-friuli-v-giulia.it
-friuli-ve-giulia.it
-friuli-vegiulia.it
-friuli-venezia-giulia.it
-friuli-veneziagiulia.it
-friuli-vgiulia.it
-friuliv-giulia.it
-friulive-giulia.it
-friulivegiulia.it
-friulivenezia-giulia.it
-friuliveneziagiulia.it
-friulivgiulia.it
-fvg.it
-laz.it
-lazio.it
-lig.it
-liguria.it
-lom.it
-lombardia.it
-lombardy.it
-lucania.it
-mar.it
-marche.it
-mol.it
-molise.it
-piedmont.it
-piemonte.it
-pmn.it
-pug.it
-puglia.it
-sar.it
-sardegna.it
-sardinia.it
-sic.it
-sicilia.it
-sicily.it
-taa.it
-tos.it
-toscana.it
-trentino-a-adige.it
-trentino-aadige.it
-trentino-alto-adige.it
-trentino-altoadige.it
-trentino-s-tirol.it
-trentino-stirol.it
-trentino-sud-tirol.it
-trentino-sudtirol.it
-trentino-sued-tirol.it
-trentino-suedtirol.it
-trentinoa-adige.it
-trentinoaadige.it
-trentinoalto-adige.it
-trentinoaltoadige.it
-trentinos-tirol.it
-trentinostirol.it
-trentinosud-tirol.it
-trentinosudtirol.it
-trentinosued-tirol.it
-trentinosuedtirol.it
-tuscany.it
-umb.it
-umbria.it
-val-d-aosta.it
-val-daosta.it
-vald-aosta.it
-valdaosta.it
-valle-aosta.it
-valle-d-aosta.it
-valle-daosta.it
-valleaosta.it
-valled-aosta.it
-valledaosta.it
-vallee-aoste.it
-valleeaoste.it
-vao.it
-vda.it
-ven.it
-veneto.it
-// Provinces
-ag.it
+// (There is also a list of reserved geo-names corresponding to Italian
+// municipalities : http://www.nic.it/documenti/appendice-c.pdf , but it is
+// not included here.)
agrigento.it
-al.it
+ag.it
alessandria.it
-alto-adige.it
-altoadige.it
-an.it
+al.it
ancona.it
-andria-barletta-trani.it
-andria-trani-barletta.it
-andriabarlettatrani.it
-andriatranibarletta.it
-ao.it
+an.it
aosta.it
aoste.it
-ap.it
-aq.it
-aquila.it
-ar.it
+ao.it
arezzo.it
+ar.it
ascoli-piceno.it
ascolipiceno.it
+ap.it
asti.it
at.it
-av.it
avellino.it
-ba.it
-balsan.it
+av.it
bari.it
+ba.it
+andria-barletta-trani.it
+andriabarlettatrani.it
+trani-barletta-andria.it
+tranibarlettaandria.it
barletta-trani-andria.it
barlettatraniandria.it
+andria-trani-barletta.it
+andriatranibarletta.it
+trani-andria-barletta.it
+traniandriabarletta.it
+bt.it
belluno.it
+bl.it
benevento.it
+bn.it
bergamo.it
bg.it
-bi.it
biella.it
-bl.it
-bn.it
-bo.it
+bi.it
bologna.it
+bo.it
bolzano.it
bozen.it
-br.it
+balsan.it
+alto-adige.it
+altoadige.it
+suedtirol.it
+bz.it
brescia.it
-brindisi.it
bs.it
-bt.it
-bz.it
-ca.it
+brindisi.it
+br.it
cagliari.it
+ca.it
caltanissetta.it
-campidano-medio.it
-campidanomedio.it
+cl.it
campobasso.it
-carbonia-iglesias.it
+cb.it
carboniaiglesias.it
-carrara-massa.it
-carraramassa.it
+carbonia-iglesias.it
+iglesias-carbonia.it
+iglesiascarbonia.it
+ci.it
caserta.it
+ce.it
catania.it
+ct.it
catanzaro.it
-cb.it
-ce.it
-cesena-forli.it
-cesenaforli.it
-ch.it
+cz.it
chieti.it
-ci.it
-cl.it
-cn.it
-co.it
+ch.it
como.it
+co.it
cosenza.it
-cr.it
+cs.it
cremona.it
+cr.it
crotone.it
-cs.it
-ct.it
+kr.it
cuneo.it
-cz.it
+cn.it
dell-ogliastra.it
dellogliastra.it
-en.it
+ogliastra.it
+og.it
enna.it
-fc.it
+en.it
+ferrara.it
fe.it
fermo.it
-ferrara.it
-fg.it
-fi.it
+fm.it
firenze.it
florence.it
-fm.it
+fi.it
foggia.it
+fg.it
forli-cesena.it
forlicesena.it
-fr.it
+cesena-forli.it
+cesenaforli.it
+fc.it
frosinone.it
-ge.it
-genoa.it
+fr.it
genova.it
-go.it
+genoa.it
+ge.it
gorizia.it
-gr.it
+go.it
grosseto.it
-iglesias-carbonia.it
-iglesiascarbonia.it
-im.it
+gr.it
imperia.it
-is.it
+im.it
isernia.it
-kr.it
-la-spezia.it
+is.it
laquila.it
+aquila.it
+aq.it
+la-spezia.it
laspezia.it
+sp.it
latina.it
-lc.it
-le.it
+lt.it
lecce.it
+le.it
lecco.it
-li.it
+lc.it
livorno.it
-lo.it
+li.it
lodi.it
-lt.it
-lu.it
+lo.it
lucca.it
+lu.it
macerata.it
+mc.it
mantova.it
+mn.it
massa-carrara.it
massacarrara.it
+carrara-massa.it
+carraramassa.it
+ms.it
matera.it
-mb.it
-mc.it
-me.it
+mt.it
medio-campidano.it
mediocampidano.it
+campidano-medio.it
+campidanomedio.it
+vs.it
messina.it
-mi.it
-milan.it
+me.it
milano.it
-mn.it
-mo.it
+milan.it
+mi.it
modena.it
-monza-brianza.it
-monza-e-della-brianza.it
+mo.it
monza.it
+monza-brianza.it
monzabrianza.it
monzaebrianza.it
monzaedellabrianza.it
-ms.it
-mt.it
-na.it
-naples.it
+monza-e-della-brianza.it
+mb.it
napoli.it
-no.it
+naples.it
+na.it
novara.it
-nu.it
+no.it
nuoro.it
-og.it
-ogliastra.it
-olbia-tempio.it
-olbiatempio.it
-or.it
+nu.it
oristano.it
-ot.it
-pa.it
+or.it
padova.it
padua.it
+pd.it
palermo.it
+pa.it
parma.it
+pr.it
pavia.it
-pc.it
-pd.it
-pe.it
+pv.it
perugia.it
+pg.it
+pescara.it
+pe.it
pesaro-urbino.it
pesarourbino.it
-pescara.it
-pg.it
-pi.it
+urbino-pesaro.it
+urbinopesaro.it
+pu.it
piacenza.it
+pc.it
pisa.it
+pi.it
pistoia.it
-pn.it
-po.it
+pt.it
pordenone.it
+pn.it
potenza.it
-pr.it
-prato.it
-pt.it
-pu.it
-pv.it
pz.it
-ra.it
+prato.it
+po.it
ragusa.it
+rg.it
ravenna.it
-rc.it
-re.it
+ra.it
reggio-calabria.it
-reggio-emilia.it
reggiocalabria.it
+rc.it
+reggio-emilia.it
reggioemilia.it
-rg.it
-ri.it
+re.it
rieti.it
+ri.it
rimini.it
-rm.it
rn.it
-ro.it
roma.it
rome.it
+rm.it
rovigo.it
-sa.it
+ro.it
salerno.it
+sa.it
sassari.it
+ss.it
savona.it
-si.it
+sv.it
siena.it
+si.it
siracusa.it
-so.it
-sondrio.it
-sp.it
sr.it
-ss.it
-suedtirol.it
-sv.it
-ta.it
+sondrio.it
+so.it
taranto.it
-te.it
+ta.it
tempio-olbia.it
tempioolbia.it
+olbia-tempio.it
+olbiatempio.it
+ot.it
teramo.it
+te.it
terni.it
-tn.it
-to.it
+tr.it
torino.it
-tp.it
-tr.it
-trani-andria-barletta.it
-trani-barletta-andria.it
-traniandriabarletta.it
-tranibarlettaandria.it
+turin.it
+to.it
trapani.it
-trentino.it
+tp.it
trento.it
+trentino.it
+tn.it
treviso.it
+tv.it
trieste.it
ts.it
-turin.it
-tv.it
-ud.it
udine.it
-urbino-pesaro.it
-urbinopesaro.it
-va.it
+ud.it
varese.it
-vb.it
-vc.it
-ve.it
+va.it
venezia.it
venice.it
+ve.it
verbania.it
+vb.it
vercelli.it
+vc.it
verona.it
-vi.it
+vr.it
vibo-valentia.it
vibovalentia.it
+vv.it
vicenza.it
+vi.it
viterbo.it
-vr.it
-vs.it
vt.it
-vv.it
-// je : http://www.channelisles.net/register-domains/
-// Confirmed by registry <nigel(a)channelisles.net> 2013-11-28
+// je : http://www.channelisles.net/applic/avextn.shtml
je
co.je
-net.je
org.je
+net.je
+sch.je
+gov.je
// jm : http://www.com.jm/register.html
*.jm
@@ -1598,7 +1488,7 @@ jobs
// jp : http://en.wikipedia.org/wiki/.jp
// http://jprs.co.jp/en/jpdomain.html
-// Submitted by registry <info(a)jprs.jp> 2014-02-28
+// Updated by registry <info(a)jprs.jp> 2012-05-28
jp
// jp organizational type names
ac.jp
@@ -1702,6 +1592,7 @@ konan.aichi.jp
kota.aichi.jp
mihama.aichi.jp
miyoshi.aichi.jp
+nagakute.aichi.jp
nishio.aichi.jp
nisshin.aichi.jp
obu.aichi.jp
@@ -2373,6 +2264,7 @@ rikuzentakata.iwate.jp
shiwa.iwate.jp
shizukuishi.iwate.jp
sumita.iwate.jp
+takizawa.iwate.jp
tanohata.iwate.jp
tono.iwate.jp
yahaba.iwate.jp
@@ -3410,7 +3302,6 @@ edu.kn
gov.kn
// kp : http://www.kcce.kp/en_index.php
-kp
com.kp
edu.kp
gov.kp
@@ -3488,7 +3379,6 @@ org.la
// lb : http://en.wikipedia.org/wiki/.lb
// Submitted by registry <randy(a)psg.com> 2008-06-17
-lb
com.lb
edu.lb
gov.lb
@@ -3527,7 +3417,6 @@ hotel.lk
// lr : http://psg.com/dns/lr/lr.txt
// Submitted by registry <randy(a)psg.com> 2008-06-17
-lr
com.lr
edu.lr
gov.lr
@@ -3670,21 +3559,11 @@ mq
mr
gov.mr
-// ms : http://www.nic.ms/pdf/MS_Domain_Name_Rules.pdf
+// ms : http://en.wikipedia.org/wiki/.ms
ms
-com.ms
-edu.ms
-gov.ms
-net.ms
-org.ms
-
-// mt : https://www.nic.org.mt/go/policy
-// Submitted by registry <help(a)nic.org.mt> 2013-11-19
-mt
-com.mt
-edu.mt
-net.mt
-org.mt
+
+// mt : https://www.nic.org.mt/dotmt/
+*.mt
// mu : http://en.wikipedia.org/wiki/.mu
mu
@@ -4351,16 +4230,13 @@ other.nf
store.nf
// ng : http://psg.com/dns/ng/
-ng
+// Submitted by registry <randy(a)psg.com> 2008-06-17
+ac.ng
com.ng
edu.ng
-name.ng
+gov.ng
net.ng
org.ng
-sch.ng
-gov.ng
-mil.ng
-mobi.ng
// ni : http://www.nic.ni/dominios.htm
*.ni
@@ -4376,7 +4252,7 @@ bv.nl
// no : http://www.norid.no/regelverk/index.en.html
// The Norwegian registry has declined to notify us of updates. The web pages
// referenced below are the official source of the data. There is also an
-// announce mailing list:
+// announce mailing list:
// https://postlister.uninett.no/sympa/info/norid-diskusjon
no
// Norid generic domains : http://www.norid.no/regelverk/vedlegg-c.en.html
@@ -5158,36 +5034,20 @@ com.nr
nu
// nz : http://en.wikipedia.org/wiki/.nz
-// Confirmed by registry <jay(a)nzrs.net.nz> 2014-05-19
-nz
-ac.nz
-co.nz
-cri.nz
-geek.nz
-gen.nz
-govt.nz
-health.nz
-iwi.nz
-kiwi.nz
-maori.nz
-mil.nz
-māori.nz
-net.nz
-org.nz
-parliament.nz
-school.nz
+*.nz
// om : http://en.wikipedia.org/wiki/.om
-om
-co.om
-com.om
-edu.om
-gov.om
-med.om
-museum.om
-net.om
-org.om
-pro.om
+*.om
+!mediaphone.om
+!nawrastelecom.om
+!nawras.om
+!omanmobile.om
+!omanpost.om
+!omantel.om
+!rakpetroleum.om
+!siemens.om
+!songfest.om
+!statecouncil.om
// org : http://en.wikipedia.org/wiki/.org
org
@@ -5642,6 +5502,7 @@ oryol.ru
palana.ru
penza.ru
perm.ru
+pskov.ru
ptz.ru
rnd.ru
ryazan.ru
@@ -5761,7 +5622,7 @@ gov.sd
info.sd
// se : http://en.wikipedia.org/wiki/.se
-// Submitted by registry <patrik.wallstrom(a)iis.se> 2014-03-18
+// Submitted by registry <Patrik.Wallstrom(a)iis.se> 2008-06-24
se
a.se
ac.se
@@ -5795,6 +5656,7 @@ pp.se
press.se
r.se
s.se
+sshn.se
t.se
tm.se
u.se
@@ -5825,7 +5687,6 @@ si
// sj : No registrations at this time.
// Submitted by registry <jarle(a)uninett.no> 2008-06-16
-sj
// sk : http://en.wikipedia.org/wiki/.sk
// list of 2nd level domains ?
@@ -5880,13 +5741,8 @@ store.st
// su : http://en.wikipedia.org/wiki/.su
su
-// sv : http://www.svnet.org.sv/niveldos.pdf
-sv
-com.sv
-edu.sv
-gob.sv
-org.sv
-red.sv
+// sv : http://www.svnet.org.sv/svpolicy.html
+*.sv
// sx : http://en.wikipedia.org/wiki/.sx
// Confirmed by registry <jcvignes(a)openregistry.com> 2012-05-31
@@ -6008,10 +5864,6 @@ org.to
edu.to
mil.to
-// tp : No registrations at this time.
-// Submitted by Ryan Sleevi <ryan.sleevi(a)gmail.com> 2014-01-03
-tp
-
// tr : http://en.wikipedia.org/wiki/.tr
*.tr
!nic.tr
@@ -6065,7 +5917,6 @@ club.tw
// tz : http://www.tznic.or.tz/index.php/domains
// Confirmed by registry <manager(a)tznic.or.tz> 2013-01-22
-tz
ac.tz
co.tz
go.tz
@@ -6178,19 +6029,19 @@ com.ug
org.ug
// uk : http://en.wikipedia.org/wiki/.uk
-// Submitted by registry <Michael.Daly(a)nominet.org.uk>
-uk
-ac.uk
-co.uk
-gov.uk
-ltd.uk
-me.uk
-net.uk
-nhs.uk
-org.uk
-plc.uk
-police.uk
+// Submitted by registry <noc(a)nominet.org.uk> 2012-10-02
+// and tweaked by us pending further consultation.
+*.uk
*.sch.uk
+!bl.uk
+!british-library.uk
+!jet.uk
+!mod.uk
+!national-library-scotland.uk
+!nel.uk
+!nic.uk
+!nls.uk
+!parliament.uk
// us : http://en.wikipedia.org/wiki/.us
us
@@ -6274,7 +6125,7 @@ k12.de.us
k12.fl.us
k12.ga.us
k12.gu.us
-// k12.hi.us Bug 614565 - Hawaii has a state-wide DOE login
+// k12.hi.us Hawaii has a state-wide DOE login: bug 614565
k12.ia.us
k12.id.us
k12.il.us
@@ -6305,7 +6156,7 @@ k12.pa.us
k12.pr.us
k12.ri.us
k12.sc.us
-// k12.sd.us Bug 934131 - Removed at request of James Booze <James.Booze(a)k12.sd.us>
+k12.sd.us
k12.tn.us
k12.tx.us
k12.ut.us
@@ -6314,7 +6165,7 @@ k12.vt.us
k12.va.us
k12.wa.us
k12.wi.us
-// k12.wv.us Bug 947705 - Removed at request of Verne Britton <verne(a)wvnet.edu>
+k12.wv.us
k12.wy.us
cc.ak.us
@@ -6382,1654 +6233,360 @@ lib.ca.us
lib.co.us
lib.ct.us
lib.dc.us
-lib.de.us
-lib.fl.us
-lib.ga.us
-lib.gu.us
-lib.hi.us
-lib.ia.us
-lib.id.us
-lib.il.us
-lib.in.us
-lib.ks.us
-lib.ky.us
-lib.la.us
-lib.ma.us
-lib.md.us
-lib.me.us
-lib.mi.us
-lib.mn.us
-lib.mo.us
-lib.ms.us
-lib.mt.us
-lib.nc.us
-lib.nd.us
-lib.ne.us
-lib.nh.us
-lib.nj.us
-lib.nm.us
-lib.nv.us
-lib.ny.us
-lib.oh.us
-lib.ok.us
-lib.or.us
-lib.pa.us
-lib.pr.us
-lib.ri.us
-lib.sc.us
-lib.sd.us
-lib.tn.us
-lib.tx.us
-lib.ut.us
-lib.vi.us
-lib.vt.us
-lib.va.us
-lib.wa.us
-lib.wi.us
-// lib.wv.us Bug 941670 - Removed at request of Larry W Arnold <arnold(a)wvlc.lib.wv.us>
-lib.wy.us
-
-// k12.ma.us contains school districts in Massachusetts. The 4LDs are
-// managed indepedently except for private (PVT), charter (CHTR) and
-// parochial (PAROCH) schools. Those are delegated dorectly to the
-// 5LD operators. <k12-ma-hostmaster _ at _ rsuc.gweep.net>
-pvt.k12.ma.us
-chtr.k12.ma.us
-paroch.k12.ma.us
-
-// uy : http://www.nic.org.uy/
-uy
-com.uy
-edu.uy
-gub.uy
-mil.uy
-net.uy
-org.uy
-
-// uz : http://www.reg.uz/
-uz
-co.uz
-com.uz
-net.uz
-org.uz
-
-// va : http://en.wikipedia.org/wiki/.va
-va
-
-// vc : http://en.wikipedia.org/wiki/.vc
-// Submitted by registry <kshah(a)ca.afilias.info> 2008-06-13
-vc
-com.vc
-net.vc
-org.vc
-gov.vc
-mil.vc
-edu.vc
-
-// ve : https://registro.nic.ve/
-// Confirmed by registry 2012-10-04
-// Updated 2014-05-20 - Bug 940478
-ve
-arts.ve
-co.ve
-com.ve
-e12.ve
-edu.ve
-firm.ve
-gob.ve
-gov.ve
-info.ve
-int.ve
-mil.ve
-net.ve
-org.ve
-rec.ve
-store.ve
-tec.ve
-web.ve
-
-// vg : http://en.wikipedia.org/wiki/.vg
-vg
-
-// vi : http://www.nic.vi/newdomainform.htm
-// http://www.nic.vi/Domain_Rules/body_domain_rules.html indicates some other
-// TLDs are "reserved", such as edu.vi and gov.vi, but doesn't actually say they
-// are available for registration (which they do not seem to be).
-vi
-co.vi
-com.vi
-k12.vi
-net.vi
-org.vi
-
-// vn : https://www.dot.vn/vnnic/vnnic/domainregistration.jsp
-vn
-com.vn
-net.vn
-org.vn
-edu.vn
-gov.vn
-int.vn
-ac.vn
-biz.vn
-info.vn
-name.vn
-pro.vn
-health.vn
-
-// vu : http://en.wikipedia.org/wiki/.vu
-// http://www.vunic.vu/
-vu
-com.vu
-edu.vu
-net.vu
-org.vu
-
-// wf : http://www.afnic.fr/medias/documents/AFNIC-naming-policy2012.pdf
-wf
-
-// ws : http://en.wikipedia.org/wiki/.ws
-// http://samoanic.ws/index.dhtml
-ws
-com.ws
-net.ws
-org.ws
-gov.ws
-edu.ws
-
-// yt : http://www.afnic.fr/medias/documents/AFNIC-naming-policy2012.pdf
-yt
-
-// IDN ccTLDs
-// Please sort by ISO 3166 ccTLD, then punicode string
-// when submitting patches and follow this format:
-// <Punicode> ("<english word>" <language>) : <ISO 3166 ccTLD>
-// [optional sponsoring org]
-// <URL>
-
-// xn--mgbaam7a8h ("Emerat" Arabic) : AE
-// http://nic.ae/english/arabicdomain/rules.jsp
-امارات
-
-// xn--54b7fta0cc ("Bangla" Bangla) : BD
-বাংলা
-
-// xn--fiqs8s ("China" Chinese-Han-Simplified <.Zhongguo>) : CN
-// CNNIC
-// http://cnnic.cn/html/Dir/2005/10/11/3218.htm
-中国
-
-// xn--fiqz9s ("China" Chinese-Han-Traditional <.Zhongguo>) : CN
-// CNNIC
-// http://cnnic.cn/html/Dir/2005/10/11/3218.htm
-中國
-
-// xn--lgbbat1ad8j ("Algeria / Al Jazair" Arabic) : DZ
-الجزائر
-
-// xn--wgbh1c ("Egypt" Arabic .masr) : EG
-// http://www.dotmasr.eg/
-مصر
-
-// xn--node ("ge" Georgian (Mkhedruli)) : GE
-გე
-
-// xn--j6w193g ("Hong Kong" Chinese-Han) : HK
-// https://www2.hkirc.hk/register/rules.jsp
-香港
-
-// xn--h2brj9c ("Bharat" Devanagari) : IN
-// India
-भारत
-
-// xn--mgbbh1a71e ("Bharat" Arabic) : IN
-// India
-بھارت
-
-// xn--fpcrj9c3d ("Bharat" Telugu) : IN
-// India
-భారత్
-
-// xn--gecrj9c ("Bharat" Gujarati) : IN
-// India
-ભારત
-
-// xn--s9brj9c ("Bharat" Gurmukhi) : IN
-// India
-ਭਾਰਤ
-
-// xn--45brj9c ("Bharat" Bengali) : IN
-// India
-ভারত
-
-// xn--xkc2dl3a5ee0h ("India" Tamil) : IN
-// India
-இந்தியா
-
-// xn--mgba3a4f16a ("Iran" Persian) : IR
-ایران
-
-// xn--mgba3a4fra ("Iran" Arabic) : IR
-ايران
-
-// xn--mgbayh7gpa ("al-Ordon" Arabic) : JO
-// National Information Technology Center (NITC)
-// Royal Scientific Society, Al-Jubeiha
-الاردن
-
-// xn--3e0b707e ("Republic of Korea" Hangul) : KR
-한국
-
-// xn--80ao21a ("Kaz" Kazakh) : KZ
-қаз
-
-// xn--fzc2c9e2c ("Lanka" Sinhalese-Sinhala) : LK
-// http://nic.lk
-ලංකා
-
-// xn--xkc2al3hye2a ("Ilangai" Tamil) : LK
-// http://nic.lk
-இலங்கை
-
-// xn--mgbc0a9azcg ("Morocco / al-Maghrib" Arabic) : MA
-المغرب
-
-// xn--l1acc ("mon" Mongolian) : MN
-мон
-
-// xn--mgbx4cd0ab ("Malaysia" Malay) : MY
-مليسيا
-
-// xn--mgb9awbf ("Oman" Arabic) : OM
-عمان
-
-// xn--ygbi2ammx ("Falasteen" Arabic) : PS
-// The Palestinian National Internet Naming Authority (PNINA)
-// http://www.pnina.ps
-فلسطين
-
-// xn--90a3ac ("srb" Cyrillic) : RS
-// http://www.rnids.rs/en/the-.срб-domain
-срб
-пр.срб
-орг.срб
-обр.срб
-од.срб
-упр.срб
-ак.срб
-
-// xn--p1ai ("rf" Russian-Cyrillic) : RU
-// http://www.cctld.ru/en/docs/rulesrf.php
-рф
-
-// xn--wgbl6a ("Qatar" Arabic) : QA
-// http://www.ict.gov.qa/
-قطر
-
-// xn--mgberp4a5d4ar ("AlSaudiah" Arabic) : SA
-// http://www.nic.net.sa/
-السعودية
-
-// xn--mgberp4a5d4a87g ("AlSaudiah" Arabic) variant : SA
-السعودیة
-
-// xn--mgbqly7c0a67fbc ("AlSaudiah" Arabic) variant : SA
-السعودیۃ
-
-// xn--mgbqly7cvafr ("AlSaudiah" Arabic) variant : SA
-السعوديه
-
-// xn--ogbpf8fl ("Syria" Arabic) : SY
-سورية
-
-// xn--mgbtf8fl ("Syria" Arabic) variant : SY
-سوريا
-
-// xn--yfro4i67o Singapore ("Singapore" Chinese-Han) : SG
-新加坡
-
-// xn--clchc0ea0b2g2a9gcd ("Singapore" Tamil) : SG
-சிங்கப்பூர்
-
-// xn--o3cw4h ("Thai" Thai) : TH
-// http://www.thnic.co.th
-ไทย
-
-// xn--pgbs0dh ("Tunis") : TN
-// http://nic.tn
-تونس
-
-// xn--kpry57d ("Taiwan" Chinese-Han-Traditional) : TW
-// http://www.twnic.net/english/dn/dn_07a.htm
-台灣
-
-// xn--kprw13d ("Taiwan" Chinese-Han-Simplified) : TW
-// http://www.twnic.net/english/dn/dn_07a.htm
-台湾
-
-// xn--nnx388a ("Taiwan") variant : TW
-臺灣
-
-// xn--j1amh ("ukr" Cyrillic) : UA
-укр
-
-// xn--mgb2ddes ("AlYemen" Arabic) : YE
-اليمن
-
-// xxx : http://icmregistry.com
-xxx
-
-// ye : http://www.y.net.ye/services/domain_name.htm
-*.ye
-
-// za : http://www.zadna.org.za/slds.html
-*.za
-
-// zm : http://en.wikipedia.org/wiki/.zm
-*.zm
-
-// zw : http://en.wikipedia.org/wiki/.zw
-*.zw
-
-
-// xn--80asehdb : 2013-07-14 CORE Association
-онлайн
-
-// xn--80aswg : 2013-07-14 CORE Association
-сайт
-
-// xn--ngbc5azd : 2013-07-14 International Domain Registry Pty. Ltd.
-شبكة
-
-// xn--unup4y : 2013-07-14 Spring Fields, LLC
-游戏
-
-// xn--vhquv : 2013-08-28 Dash McCook, LLC
-企业
-
-// camera : 2013-08-28 Atomic Maple, LLC
-camera
-
-// clothing : 2013-08-28 Steel Lake, LLC
-clothing
-
-// lighting : 2013-08-28 John McCook, LLC
-lighting
-
-// singles : 2013-08-28 Fern Madison, LLC
-singles
-
-// ventures : 2013-08-28 Binky Lake, LLC
-ventures
-
-// voyage : 2013-08-28 Ruby House, LLC
-voyage
-
-// guru : 2013-08-28 Pioneer Cypress, LLC
-guru
-
-// holdings : 2013-08-28 John Madison, LLC
-holdings
-
-// equipment : 2013-08-28 Corn Station, LLC
-equipment
-
-// bike : 2013-08-28 Grand Hollow, LLC
-bike
-
-// estate : 2013-08-28 Trixy Park, LLC
-estate
-
-// tattoo : 2013-08-30 Uniregistry,Corp.
-tattoo
-
-// xn--3ds443g : 2013-09-09 TLD Registry Limited
-在线
-
-// xn--fiq228c5hs : 2013-09-09 TLD Registry Limited
-中文网
-
-// land : 2013-09-10 Pine Moon, LLC
-land
-
-// plumbing : 2013-09-10 Spring Tigers, LLC
-plumbing
-
-// contractors : 2013-09-10 Magic Woods, LLC
-contractors
-
-// sexy : 2013-09-11 Uniregistry,Corp.
-sexy
-
-// menu : 2013-09-11 Wedding TLD2, LLC
-menu
-
-// xn--rhqv96g : 2013-09-11 Stable Tone Limited
-世界
-
-// uno : 2013-09-11 Dot Latin, LLC
-uno
-
-// gallery : 2013-09-13 Sugar House, LLC
-gallery
-
-// technology : 2013-09-13 Auburn Falls
-technology
-
-// xn--3bst00m : 2013-09-13 Eagle Horizon Limited
-集团
-
-// reviews : 2013-09-13 Extra Cover, LLC
-reviews
-
-// guide : 2013-09-13 Snow Moon, LLC
-guide
-
-// xn--6qq986b3x1 : 2013-09-13 Tycoon Treasure Limited
-我爱你
-
-// graphics : 2013-09-13 Over Madison, LLC
-graphics
-
-// construction : 2013-09-13 Fox Dynamite, LLC
-construction
-
-// onl : 2013-09-16 I-Registry Ltd.
-onl
-
-// xn--q9jyb4c : 2013-09-17 Charleston Road Registry
-みんな
-
-// diamonds : 2013-09-23 John Edge, LLC
-diamonds
-
-// kiwi : 2013-09-23 Dot Kiwi Limited
-kiwi
-
-// enterprises : 2013-09-23 Snow Oaks LLC
-enterprises
-
-// today : 2013-09-23 Pearl Woods, LLC
-today
-
-// futbol : 2013-09-23 Atomic Falls, LLC
-futbol
-
-// photography : 2013-09-23 Sugar Glen, LLC
-photography
-
-// tips : 2013-09-23 Corn Willow, LLC
-tips
-
-// directory : 2013-09-23 Extra Madison, LLC
-directory
-
-// kitchen : 2013-09-23 Just Goodbye, LLC
-kitchen
-
-// xn--6frz82g : 2013-09-24 Afilias Limited
-移动
-
-// kim : 2013-09-24 Afilias Limited
-kim
-
-// xn--cg4bki : 2013-09-27 Samsung SDS Co., LTD
-삼성
-
-// monash : 2013-10-01 Monash University
-monash
-
-// wed : 2013-10-02 Atgron, Inc.
-wed
-
-// pink : 2013-10-02 Afilias Limited
-pink
-
-// ruhr : 2013-10-02 regiodot GmbH & Co. KG
-ruhr
-
-// buzz : 2013-10-03 DOTSTRATEGY CO.
-buzz
-
-// careers : 2013-10-03 Wild Corner, LLC
-careers
-
-// shoes : 2013-10-03 Binky Galley, LLC
-shoes
-
-// xn--4gbrim : 2013-10-07 Suhub Electronic Establishment
-موقع
-
-// career : 2013-10-09 dotCareer, LLC
-career
-
-// otsuka : 2013-10-11 Otsuka Holdings Co. Ltd.
-otsuka
-
-// xn--fiQ64b : 2013-10-14 CITIC Group Corporation
-中信
-
-// gift : 2013-10-18 Uniregistry Corp.
-gift
-
-// recipes : 2013-10-18 Grand Island, LLC
-recipes
-
-// coffee : 2013-10-18 Trixy Cover, LLC
-coffee
-
-// luxury : 2013-10-18 Luxury Partners, LLC
-luxury
-
-// domains : 2013-10-18 Sugar Cross, LLC
-domains
-
-// photos : 2013-10-18 Sea Corner, LLC
-photos
-
-// limo : 2013-10-18 Hidden Frostbite, LLC
-limo
-
-// viajes : 2013-10-18 Black Madison, LLC
-viajes
-
-// wang : 2013-10-24 Zodiac Leo Limited
-wang
-
-// democrat : 2013-10-24 United TLD Holdco Ltd.
-democrat
-
-// mango : 2013-10-25 PUNTO FA S.L.
-mango
-
-// cab : 2013-10-25 Half Sunset, LLC
-cab
-
-// support : 2013-10-25 Grand Orchard, LLC
-support
-
-// dance : 2013-10-25 United TLD Holdco Ltd.
-dance
-
-// nagoya : 2013-10-25 GMO Registry, Inc.
-nagoya
-
-// computer : 2013-10-25 Pine Mill, LLC
-computer
-
-// wien : 2013-10-28 punkt.wien GmbH
-wien
-
-// berlin : 2013-10-31 dotBERLIN GmbH & Co. KG
-berlin
-
-// codes : 2013-10-31 Puff Willow, LLC
-codes
-
-// email : 2013-10-31 Spring Madison, LLC
-email
-
-// xn--mgbab2bd : 2013-10-31 CORE Association
-بازار
-
-// repair : 2013-11-07 Lone Sunset, LLC
-repair
-
-// holiday : 2013-11-07 Goose Woods, LLC
-holiday
-
-// center : 2013-11-07 Tin Mill, LLC
-center
-
-// systems : 2013-11-07 Dash Cypress, LLC
-systems
-
-// wiki : 2013-11-07 Top Level Design, LLC
-wiki
-
-// ceo : 2013-11-07 CEOTLD Pty Ltd
-ceo
-
-// international : 2013-11-07 Wild Way, LLC
-international
-
-// solar : 2013-11-07 Ruby Town, LLC
-solar
-
-// company : 2013-11-07 Silver Avenue, LLC
-company
-
-// education : 2013-11-07 Brice Way, LLC
-education
-
-// training : 2013-11-07 Wild Willow, LLC
-training
-
-// academy : 2013-11-07 Half Oaks, LLC
-academy
-
-// marketing : 2013-11-07 Fern Pass, LLC
-marketing
-
-// florist : 2013-11-08 Half Cypress, LLC
-florist
-
-// solutions : 2013-11-07 Silver Cover, LLC
-solutions
-
-// build : 2013-11-07 Plan Bee LLC
-build
-
-// institute : 2013-11-07 Outer Maple, LLC
-institute
-
-// builders : 2013-11-07 Atomic Madison, LLC
-builders
-
-// red : 2013-11-07 Afilias Limited
-red
-
-// blue : 2013-11-07 Afilias Limited
-blue
-
-// ninja : 2013-11-07 United TLD Holdco Ltd.
-ninja
-
-// business : 2013-11-07 Spring Cross, LLC
-business
-
-// gal : 2013-11-07 Asociación puntoGAL
-gal
-
-// social : 2013-11-07 United TLD Holdco Ltd.
-social
-
-// house : 2013-11-07 Sugar Park, LLC
-house
-
-// camp : 2013-11-07 Delta Dynamite, LLC
-camp
-
-// immobilien : 2013-11-07 United TLD Holdco Ltd.
-immobilien
-
-// moda : 2013-11-07 United TLD Holdco Ltd.
-moda
-
-// glass : 2013-11-07 Black Cover, LLC
-glass
-
-// management : 2013-11-07 John Goodbye, LLC
-management
-
-// kaufen : 2013-11-07 United TLD Holdco Ltd.
-kaufen
-
-// farm : 2013-11-07 Just Maple, LLC
-farm
-
-// xn--55qw42g : 2013-11-08 China Organizational Name Administration Center
-公益
-
-// xn--zfr164b : 2013-11-08 China Organizational Name Administration Center
-政务
-
-// club : 2013-11-08 .CLUB DOMAINS, LLC
-club
-
-// voting : 2013-11-13 Valuetainment Corp.
-voting
-
-// TOKYO : 2013-11-13 GMO Registry, Inc.
-tokyo
-
-// moe : 2013-11-13 Interlink Co., Ltd.
-moe
-
-// guitars : 2013-11-14 Uniregistry, Corp.
-guitars
-
-// bargains : 2013-11-14 Half Hallow, LLC
-bargains
-
-// xn--nqv7fs00ema : 2013-11-14 Public Interest Registry
-组织机构
-
-// desi : 2013-11-14 Desi Networks LLC
-desi
-
-// cool : 2013-11-14 Koko Lake, LLC
-cool
-
-// boutique : 2013-11-14 Over Galley, LLC
-boutique
-
-// pics : 2013-11-14 Uniregistry, Corp.
-pics
-
-// xn--c1avg : 2013-11-14 Public Interest Registry
-орг
-
-// xn--55qx5d : 2013-11-14 Computer Network Information Center of Chinese Academy of Sciences (China Internet Network Information Center)
-公司
-
-// xn--io0a7i : 2013-11-14 Computer Network Information Center of Chinese Academy of Sciences (China Internet Network Information Center)
-网络
-
-// cheap : 2013-11-14 Sand Cover, LLC
-cheap
-
-// xn--xhq521b : 2013-11-14 Guangzhou YU Wei Information Technology Co., Ltd.
-广东
-
-// photo : 2013-11-14 Uniregistry, Corp.
-photo
-
-// network : 2013-11-14 Trixy Manor, LLC
-network
-
-// zone : 2013-11-14 Outer Falls, LLC
-zone
-
-// xn--nqv7f : 2013-11-14 Public Interest Registry
-机构
-
-// link : 2013-11-14 Uniregistry, Corp.
-link
-
-// QPON : 2013-11-14 dotCOOL, Inc.
-qpon
-
-// xn--i1b6b1a6a2e : 2013-11-14 Public Interest Registry
-संगठन
-
-// agency : 2013-11-14 Steel Falls, LLC
-agency
-
-// tienda : 2013-11-14 Victor Manor, LLC
-tienda
-
-// works : 2013-11-14 Little Dynamite, LLC
-works
-
-// london : 2013-11-14 Dot London Domains Limited
-london
-
-// watch : 2013-11-14 Sand Shadow, LLC
-watch
-
-// rocks : 2013-11-14 Ruby Moon, LLC
-rocks
-
-// SHIKSHA : 2013-11-14 Afilias Limited
-shiksha
-
-// xn--d1acj3b : 2013-11-21 The Foundation for Network Initiatives “The Smart Internet”
-дети
-
-// budapest : 2013-11-21 Top Level Domain Holdings Limited
-budapest
-
-// nrw : 2013-11-21 Minds + Machines GmbH
-nrw
-
-// VOTE : 2013-11-21 Monolith Registry LLC
-vote
-
-// fishing : 2013-11-21 Top Level Domain Holdings Limited
-fishing
-
-// expert : 2013-11-21 Magic Pass, LLC
-expert
-
-// horse : 2013-11-21 Top Level Domain Holdings Limited
-horse
-
-// christmas : 2013-11-21 Uniregistry, Corp.
-christmas
-
-// cooking : 2013-11-21 Top Level Domain Holdings Limited
-cooking
-
-// xn--czru2d : 2013-11-21 Zodiac Capricorn Limited
-商城
-
-// casa : 2013-11-21 Top Level Domain Holdings Limited
-casa
-
-// rich : 2013-11-21 I-REGISTRY Ltd., Niederlassung Deutschland
-rich
-
-// VOTO : 2013-11-21 Monolith Registry LLC
-voto
-
-// tools : 2013-11-21 Pioneer North, LLC
-tools
-
-// xn--45q11c : 2013-11-21 Zodiac Scorpio Limited
-八卦
-
-// praxi : 2013-12-05 Praxi S.p.A.
-praxi
-
-// events : 2013-12-05 Pioneer Maple, LLC
-events
-
-// flights : 2013-12-05 Fox Station, LLC
-flights
-
-// report : 2013-12-05 Binky Glen, LLC
-report
-
-// partners : 2013-12-05 Magic Glen, LLC
-partners
-
-// neustar : 2013-12-05 NeuStar, Inc.
-neustar
-
-// rentals : 2013-12-05 Big Hollow,LLC
-rentals
-
-// catering : 2013-12-05 New Falls. LLC
-catering
-
-// community : 2013-12-05 Fox Orchard, LLC
-community
-
-// maison : 2013-12-05 Victor Frostbite, LLC
-maison
-
-// parts : 2013-12-05 Sea Goodbye, LLC
-parts
-
-// cleaning : 2013-12-05 Fox Shadow, LLC
-cleaning
-
-// okinawa : 2013-12-05 BusinessRalliart inc.
-okinawa
-
-// foundation : 2013-12-05 John Dale, LLC
-foundation
-
-// properties : 2013-12-05 Big Pass, LLC
-properties
-
-// vacations : 2013-12-05 Atomic Tigers, LLC
-vacations
-
-// productions : 2013-12-05 Magic Birch, LLC
-productions
-
-// industries : 2013-12-05 Outer House, LLC
-industries
-
-// haus : 2013-12-05 Pixie Edge, LLC
-haus
-
-// vision : 2013-12-05 Koko Station, LLC
-vision
-
-// mormon : 2013-12-05 IRI Domain Management, LLC (""Applicant"")
-mormon
-
-// cards : 2013-12-05 Foggy Hollow, LLC
-cards
-
-// ink : 2013-12-05 Top Level Design, LLC
-ink
-
-// villas : 2013-12-05 New Sky, LLC
-villas
-
-// consulting : 2013-12-05 Pixie Station, LLC
-consulting
-
-// cruises : 2013-12-05 Spring Way, LLC
-cruises
-
-// krd : 2013-12-05 KRG Department of Information Technology
-krd
-
-// xyz : 2013-12-05 XYZ.COM LLC
-xyz
-
-// dating : 2013-12-05 Pine Fest, LLC
-dating
-
-// exposed : 2013-12-05 Victor Beach, LLC
-exposed
-
-// condos : 2013-12-05 Pine House, LLC
-condos
-
-// eus : 2013-12-12 Puntueus Fundazioa
-eus
-
-// Caravan : 2013-12-12 Caravan International, Inc.
-caravan
-
-// actor : 2013-12-12 United TLD Holdco Ltd.
-actor
-
-// saarland : 2013-12-12 dotSaarland GmbH
-saarland
-
-// yokohama : 2013-12-12 GMO Registry, Inc.
-yokohama
-
-// pub : 2013-12-12 United TLD Holdco Ltd.
-pub
-
-// xn--p1acf : 2013-12-12 Rusnames Limited
-рус
-
-// ren : 2013-12-12 Beijing Qianxiang Wangjing Technology Development Co., Ltd.
-ren
-
-// fish : 2013-12-12 Fox Woods, LLC
-fish
-
-// BAR : 2013-12-12 Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable
-bar
-
-// DNP : 2013-12-13 Dai Nippon Printing Co., Ltd.
-dnp
-
-// bid : 2013-12-19 dot Bid Limited
-bid
-
-// supply : 2013-12-19 Half Falls, LLC
-supply
-
-// Miami : 2013-12-19 Top Level Domain Holdings Limited
-miami
-
-// supplies : 2013-12-19 Atomic Fields, LLC
-supplies
-
-// quebec : 2013-12-19 PointQuébec Inc
-quebec
-
-// MOSCOW : 2013-12-19 Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)
-moscow
-
-// globo : 2013-12-19 Globo Comunicação e Participações S.A
-globo
-
-// AXA : 2013-12-19 AXA SA
-axa
-
-// xn--80adxhks : 2013-12-19 Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)
-москва
-
-// xn--czrs0t : 2013-12-19 Wild Island, LLC
-商店
-
-// vodka : 2013-12-19 Top Level Domain Holdings Limited
-vodka
-
-// REST : 2013-12-19 Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable
-rest
-
-// frogans : 2013-12-19 OP3FT
-frogans
-
-// WTC : 2013-12-19 World Trade Centers Association, Inc.
-wtc
-
-// rodeo : 2013-12-19 Top Level Domain Holdings Limited
-rodeo
-
-// sohu : 2013-12-19 Sohu.com Limited
-sohu
-
-// BEST : 2013-12-19 BestTLD Pty Ltd
-best
-
-// country : 2013-12-19 Top Level Domain Holdings Limited
-country
-
-// KRED : 2013-12-19 KredTLD Pty Ltd
-kred
-
-// feedback : 2013-12-19 Top Level Spectrum, Inc.
-feedback
-
-// work : 2013-12-19 Top Level Domain Holdings Limited
-work
-
-// luxe : 2014-01-09 Top Level Domain Holdings Limited
-luxe
-
-// ryukyu : 2014-01-09 BusinessRalliart inc.
-ryukyu
-
-// autos : 2014-01-09 DERAutos, LLC
-autos
-
-// homes : 2014-01-09 DERHomes, LLC
-homes
-
-// jetzt : 2014-01-09 New TLD Company AB
-jetzt
-
-// yachts : 2014-01-09 DERYachts, LLC
-yachts
-
-// motorcycles : 2014-01-09 DERMotorcycles, LLC
-motorcycles
-
-// mini : 2014-01-09 Bayerische Motoren Werke Aktiengesellschaft
-mini
-
-// ggee : 2014-01-09 GMO Internet, Inc.
-ggee
-
-// beer : 2014-01-09 Top Level Domain Holdings Limited
-beer
-
-// xn--1qqw23a : 2014-01-13 Guangzhou YU Wei Information Technology Co., Ltd.
-佛山
-
-// college : 2014-01-16 XYZ.COM LLC
-college
-
-// ovh : 2014-01-16 OVH SAS
-ovh
-
-// meet : 2014-01-16 Afilias Limited
-meet
-
-// xn--ses554g : 2014-01-16 HU YI GLOBAL INFORMATION RESOURCES (HOLDING) COMPANY. HONGKONG LIMITED
-网址
-
-// gop : 2014-01-16 Republican State Leadership Committee, Inc.
-gop
-
-// blackfriday : 2014-01-16 Uniregistry, Corp.
-blackfriday
-
-// lacaixa : 2014-01-16 CAIXA D'ESTALVIS I PENSIONS DE BARCELONA
-lacaixa
-
-// xn--czr694b : 2014-01-16 HU YI GLOBAL INFORMATION RESOURCES(HOLDING) COMPANY.HONGKONG LIMITED
-商标
-
-// vegas : 2014-01-16 Dot Vegas, Inc.
-vegas
-
-// black : 2014-01-16 Afilias Limited
-black
-
-// soy : 2014-01-23 Charleston Road Registry Inc.
-soy
-
-// trade : 2014-01-23 Elite Registry Limited
-trade
-
-// gent : 2014-01-23 COMBELL GROUP NV/SA
-gent
-
-// ing : 2014-01-23 Charleston Road Registry Inc.
-ing
-
-// dad : 2014-01-23 Charleston Road Registry Inc.
-dad
-
-// shriram : 2014-01-23 Shriram Capital Ltd.
-shriram
-
-// bayern : 2014-01-23 Bayern Connect GmbH
-bayern
-
-// scot : 2014-01-23 Dot Scot Registry Limited
-scot
-
-// webcam : 2014-01-23 dot Webcam Limited
-webcam
-
-// foo : 2014-01-23 Charleston Road Registry Inc.
-foo
-
-// eat : 2014-01-23 Charleston Road Registry Inc.
-eat
-
-// nyc : 2014-01-23 The City of New York
-nyc
-
-// prod : 2014-01-23 Charleston Road Registry Inc.
-prod
-
-// how : 2014-01-23 Charleston Road Registry Inc.
-how
-
-// day : 2014-01-30 Charleston Road Registry Inc.
-day
-
-// meme : 2014-01-30 Charleston Road Registry Inc.
-meme
-
-// mov : 2014-01-30 Charleston Road Registry Inc.
-mov
-
-// paris : 2014-01-30 City of Paris
-paris
-
-// boo : 2014-01-30 Charleston Road Registry Inc.
-boo
-
-// new : 2014-01-30 Charleston Road Registry Inc.
-new
-
-// ifm : 2014-01-30 ifm electronic gmbh
-ifm
-
-// life : 2014-02-06 Trixy Oaks, LLC
-life
-
-// archi : 2014-02-06 STARTING DOT LIMITED
-archi
-
-// spiegel : 2014-02-06 SPIEGEL-Verlag Rudolf Augstein GmbH & Co. KG
-spiegel
-
-// brussels : 2014-02-06 DNS.be vzw
-brussels
-
-// church : 2014-02-06 Holly Fileds, LLC
-church
-
-// here : 2014-02-06 Charleston Road Registry Inc.
-here
-
-// dabur : 2014-02-06 Dabur India Limited
-dabur
-
-// vlaanderen : 2014-02-06 DNS.be vzw
-vlaanderen
-
-// cologne : 2014-02-06 NetCologne Gesellschaft für Telekommunikation mbH
-cologne
-
-// xn--kput3i : 2014-02-13 Beijing RITT-Net Technology Development Co., Ltd
-手机
-
-// wme : 2014-02-13 William Morris Endeavor Entertainment, LLC
-wme
-
-// nhk : 2014-02-13 Japan Broadcasting Corporation (NHK)
-nhk
-
-// suzuki : 2014-02-20 SUZUKI MOTOR CORPORATION
-suzuki
-
-// whoswho : 2014-02-20 Who's Who Registry
-whoswho
-
-// scb : 2014-02-20 The Siam Commercial Bank Public Company Limited ("SCB""\)
-scb
-
-// hamburg : 2014-02-20 Hamburg Top-Level-Domain GmbH
-hamburg
-
-// services : 2014-02-27 Fox Castle, LLC
-services
-
-// bzh : 2014-02-27 Association www.bzh
-bzh
-
-// rio : 2014-02-27 Empresa Municipal de Informática SA - IPLANRIO
-rio
-
-// cash : 2014-03-07 Delta Lake, LLC
-cash
-
-// gives : 2014-03-07 United TLD Holdco Ltd.
-gives
-
-// hiphop : 2014-03-07 Uniregistry, Corp.
-hiphop
-
-// degree : 2014-03-07 Puff House, LLC
-degree
-
-// digital : 2014-03-07 Dash Park, LLC
-digital
-
-// rehab : 2014-03-07 United TLD Holdco Ltd.
-rehab
-
-// wtf : 2014-03-07 Hidden Way, LLC
-wtf
-
-// financial : 2014-03-07 Just Cover, LLC
-financial
-
-// limited : 2014-03-07 Big Fest, LLC
-limited
-
-// discount : 2014-03-07 Holly Hill, LLC
-discount
-
-// fail : 2014-03-07 Atomic Pipe, LLC
-fail
-
-// vet : 2014-03-07 Wild Dale, LLC
-vet
-
-// ngo : 2014-03-07 Public Interest Registry
-ngo
-
-// fitness : 2014-03-07 Brice Orchard, LLC
-fitness
-
-// schule : 2014-03-07 Outer Moon, LLC
-schule
-
-// navy : 2014-03-07 United TLD Holdco Ltd.
-navy
-
-// bio : 2014-03-07 STARTING DOT LIMITED
-bio
-
-// ong : 2014-03-07 Public Interest Registry
-ong
-
-// town : 2014-03-07 Koko Moon, LLC
-town
-
-// toys : 2014-03-07 Pioneer Orchard, LLC
-toys
-
-// army : 2014-03-07 United TLD Holdco Ltd.
-army
-
-// engineering : 2014-03-07 Romeo Canyon
-engineering
-
-// capital : 2014-03-07 Delta Mill, LLC
-capital
-
-// exchange : 2014-03-07 Spring Falls, LLC
-exchange
-
-// fan : 2014-03-07 Goose Glen, LLC
-fan
-
-// market : 2014-03-07 Victor Way, LLC
-market
-
-// media : 2014-03-07 Grand Glen, LLC
-media
-
-// lease : 2014-03-07 Victor Trail, LLC
-lease
-
-// university : 2014-03-07 Little Station, LLC
-university
-
-// reisen : 2014-03-07 New Cypress, LLC
-reisen
-
-// airforce : 2014-03-07 United TLD Holdco Ltd.
-airforce
-
-// pictures : 2014-03-07 Foggy Sky, LLC
-pictures
-
-// gripe : 2014-03-07 Corn Sunset, LLC
-gripe
-
-// engineering : 2014-03-07 United TLD Holdco Ltd.
-engineering
-
-// associates : 2014-03-07 Baxter Hill, LLC
-associates
-
-// xn--mxtq1m : 2014-03-07 Net-Chinese Co., Ltd.
-政府
-
-// williamhill : 2014-03-13 William Hill Organization Limited
-williamhill
-
-// hiv : 2014-03-13 dotHIV gemeinnuetziger e.V.
-hiv
-
-// sca : 2014-03-13 SVENSKA CELLULOSA AKTIEBOLAGET SCA (publ)
-sca
-
-// reise : 2014-03-13 dotreise GmbH
-reise
-
-// accountants : 2014-03-20 Knob Town, LLC
-accountants
-
-// clinic : 2014-03-20 Goose Park, LLC
-clinic
-
-// versicherung : 2014-03-20 dotversicherung-registry GmbH
-versicherung
-
-// top : 2014-03-20 Jiangsu Bangning Science & Technology Co.,Ltd.
-top
-
-// furniture : 2014-03-20 Lone Fields, LLC
-furniture
-
-// dental : 2014-03-20 Tin Birch, LLC
-dental
-
-// fund : 2014-03-20 John Castle, LLC
-fund
-
-// creditcard : 2014-03-20 Binky Frostbite, LLC
-creditcard
-
-// insure : 2014-03-20 Pioneer Willow, LLC
-insure
-
-// audio : 2014-03-20 Uniregistry, Corp.
-audio
-
-// claims : 2014-03-20 Black Corner, LLC
-claims
-
-// loans : 2014-03-20 June Woods, LLC
-loans
-
-// auction : 2014-03-20 Sand Galley, LLC
-auction
-
-// attorney : 2014-03-20 Victor North, LLC
-attorney
-
-// finance : 2014-03-20 Cotton Cypress, LLC
-finance
-
-// investments : 2014-03-20 Holly Glen, LLC
-investments
-
-// juegos : 2014-03-20 Uniregistry, Corp.
-juegos
-
-// dentist : 2014-03-20 Outer Lake, LLC
-dentist
-
-// lds : 2014-03-20 IRI Domain Management, LLC
-lds
-
-// lawyer : 2014-03-20 Atomic Station, LLC
-lawyer
-
-// surgery : 2014-03-20 Tin Avenue, LLC
-surgery
-
-// gratis : 2014-03-20 Pioneer Tigers, LLC
-gratis
-
-// software : 2014-03-20 Over Birch, LLC
-software
-
-// mortgage : 2014-03-20 Outer Gardens, LLC
-mortgage
-
-// republican : 2014-03-20 United TLD Holdco Ltd.
-republican
-
-// credit : 2014-03-20 Snow Shadow, LLC
-credit
-
-// tax : 2014-03-20 Storm Orchard, LLC
-tax
-
-// africa : 2014-03-24 ZA Central Registry NPC trading as Registry.Africa
-africa
-
-// joburg : 2014-03-24 ZA Central Registry NPC trading as ZA Central Registry
-joburg
-
-// durban : 2014-03-24 ZA Central Registry NPC trading as ZA Central Registry
-durban
-
-// capetown : 2014-03-24 ZA Central Registry NPC trading as ZA Central Registry
-capetown
-
-// sap : 2014-03-27 SAP AG
-sap
-
-// datsun : 2014-03-27 NISSAN MOTOR CO., LTD.
-datsun
-
-// infiniti : 2014-03-27 NISSAN MOTOR CO., LTD.
-infiniti
-
-// firmdale : 2014-03-27 Firmdale Holdings Limited
-firmdale
-
-// organic : 2014-03-27 Afilias Limited
-organic
-
-// nissan : 2014-03-27 NISSAN MOTOR CO., LTD.
-nissan
+lib.de.us
+lib.fl.us
+lib.ga.us
+lib.gu.us
+lib.hi.us
+lib.ia.us
+lib.id.us
+lib.il.us
+lib.in.us
+lib.ks.us
+lib.ky.us
+lib.la.us
+lib.ma.us
+lib.md.us
+lib.me.us
+lib.mi.us
+lib.mn.us
+lib.mo.us
+lib.ms.us
+lib.mt.us
+lib.nc.us
+lib.nd.us
+lib.ne.us
+lib.nh.us
+lib.nj.us
+lib.nm.us
+lib.nv.us
+lib.ny.us
+lib.oh.us
+lib.ok.us
+lib.or.us
+lib.pa.us
+lib.pr.us
+lib.ri.us
+lib.sc.us
+lib.sd.us
+lib.tn.us
+lib.tx.us
+lib.ut.us
+lib.vi.us
+lib.vt.us
+lib.va.us
+lib.wa.us
+lib.wi.us
+lib.wv.us
+lib.wy.us
-// website : 2014-04-03 DotWebsite Inc.
-website
+// k12.ma.us contains school districts in Massachusetts. The 4LDs are
+// managed indepedently except for private (PVT), charter (CHTR) and
+// parochial (PAROCH) schools. Those are delegated dorectly to the
+// 5LD operators. <k12-ma-hostmaster _ at _ rsuc.gweep.net>
+pvt.k12.ma.us
+chtr.k12.ma.us
+paroch.k12.ma.us
-// space : 2014-04-03 DotSpace Inc.
-space
+// uy : http://www.nic.org.uy/
+uy
+com.uy
+edu.uy
+gub.uy
+mil.uy
+net.uy
+org.uy
-// schmidt : 2014-04-03 SALM S.A.S.
-schmidt
+// uz : http://www.reg.uz/
+uz
+co.uz
+com.uz
+net.uz
+org.uz
-// cuisinella : 2014-04-03 SALM S.A.S.
-cuisinella
+// va : http://en.wikipedia.org/wiki/.va
+va
-// samsung : 2014-04-03 SAMSUNG SDS CO., LTD
-samsung
+// vc : http://en.wikipedia.org/wiki/.vc
+// Submitted by registry <kshah(a)ca.afilias.info> 2008-06-13
+vc
+com.vc
+net.vc
+org.vc
+gov.vc
+mil.vc
+edu.vc
-// crs : 2014-04-03 Federated Co operatives Limited
-crs
+// ve : https://registro.nic.ve/
+// Confirmed by registry 2012-10-04
+ve
+co.ve
+com.ve
+e12.ve
+edu.ve
+gov.ve
+info.ve
+mil.ve
+net.ve
+org.ve
+web.ve
-// doosan : 2014-04-03 Doosan Corporation
-doosan
+// vg : http://en.wikipedia.org/wiki/.vg
+vg
-// press : 2014-04-03 DotPress Inc.
-press
+// vi : http://www.nic.vi/newdomainform.htm
+// http://www.nic.vi/Domain_Rules/body_domain_rules.html indicates some other
+// TLDs are "reserved", such as edu.vi and gov.vi, but doesn't actually say they
+// are available for registration (which they do not seem to be).
+vi
+co.vi
+com.vi
+k12.vi
+net.vi
+org.vi
-// emerck : 2014-04-03 Merck KGaA
-emerck
+// vn : https://www.dot.vn/vnnic/vnnic/domainregistration.jsp
+vn
+com.vn
+net.vn
+org.vn
+edu.vn
+gov.vn
+int.vn
+ac.vn
+biz.vn
+info.vn
+name.vn
+pro.vn
+health.vn
-// erni : 2014-04-03 ERNI Group Holding AG
-erni
+// vu : http://en.wikipedia.org/wiki/.vu
+// list of 2nd level tlds ?
+vu
-// direct : 2014-04-10 Half Trail, LLC
-direct
+// wf : http://www.afnic.fr/medias/documents/AFNIC-naming-policy2012.pdf
+wf
-// yandex : 2014-04-10 YANDEX, LLC
-yandex
+// ws : http://en.wikipedia.org/wiki/.ws
+// http://samoanic.ws/index.dhtml
+ws
+com.ws
+net.ws
+org.ws
+gov.ws
+edu.ws
-// lotto : 2014-04-10 Afilias Limited
-lotto
+// yt : http://www.afnic.fr/medias/documents/AFNIC-naming-policy2012.pdf
+yt
-// toshiba : 2014-04-10 TOSHIBA Corporation
-toshiba
+// IDN ccTLDs
+// Please sort by ISO 3166 ccTLD, then punicode string
+// when submitting patches and follow this format:
+// <Punicode> ("<english word>" <language>) : <ISO 3166 ccTLD>
+// [optional sponsoring org]
+// <URL>
-// bauhaus : 2014-04-17 Werkhaus GmbH
-bauhaus
+// xn--mgbaam7a8h ("Emerat" Arabic) : AE
+// http://nic.ae/english/arabicdomain/rules.jsp
+امارات
-// host : 2014-04-17 DotHost Inc.
-host
+// xn--54b7fta0cc ("Bangla" Bangla) : BD
+বাংলা
-// ltda : 2014-04-17 DOMAIN ROBOT SERVICOS DE HOSPEDAGEM NA INTERNET LTDA
-ltda
+// xn--fiqs8s ("China" Chinese-Han-Simplified <.Zhonggou>) : CN
+// CNNIC
+// http://cnnic.cn/html/Dir/2005/10/11/3218.htm
+中国
-// global : 2014-04-17 Dot GLOBAL AS
-global
+// xn--fiqz9s ("China" Chinese-Han-Traditional <.Zhonggou>) : CN
+// CNNIC
+// http://cnnic.cn/html/Dir/2005/10/11/3218.htm
+中國
-// abogado : 2014-04-24 Top Level Domain Holdings Limited
-abogado
+// xn--lgbbat1ad8j ("Algeria / Al Jazair" Arabic) : DZ
+الجزائر
-// place : 2014-04-24 Snow Galley, LLC
-place
+// xn--wgbh1c ("Egypt" Arabic .masr) : EG
+// http://www.dotmasr.eg/
+مصر
-// tirol : 2014-04-24 punkt Tirol GmbH
-tirol
+// xn--node ("ge" Georgian (Mkhedruli)) : GE
+გე
-// gmx : 2014-04-24 1&1 Mail & Media GmbH
-gmx
+// xn--j6w193g ("Hong Kong" Chinese-Han) : HK
+// https://www2.hkirc.hk/register/rules.jsp
+香港
-// tatar : 2014-04-24 Limited Liability Company "Coordination Center of Regional Domain of Tatarstan Republic"
-tatar
+// xn--h2brj9c ("Bharat" Devanagari) : IN
+// India
+भारत
-// scholarships : 2014-04-24 Scholarships.com, LLC
-scholarships
+// xn--mgbbh1a71e ("Bharat" Arabic) : IN
+// India
+بھارت
-// eurovision : 2014-04-24 European Broadcasting Union (EBU)
-eurovision
+// xn--fpcrj9c3d ("Bharat" Telugu) : IN
+// India
+భారత్
-// wedding : 2014-04-24 Top Level Domain Holdings Limited
-wedding
+// xn--gecrj9c ("Bharat" Gujarati) : IN
+// India
+ભારત
-// active : 2014-05-01 The Active Network, Inc
-active
+// xn--s9brj9c ("Bharat" Gurmukhi) : IN
+// India
+ਭਾਰਤ
-// madrid : 2014-05-01 Comunidad de Madrid
-madrid
+// xn--45brj9c ("Bharat" Bengali) : IN
+// India
+ভারত
-// youtube : 2014-05-01 Charleston Road Registry Inc.
-youtube
+// xn--xkc2dl3a5ee0h ("India" Tamil) : IN
+// India
+இந்தியா
-// sharp : 2014-05-01 Sharp Corporation
-sharp
+// xn--mgba3a4f16a ("Iran" Persian) : IR
+ایران
-// uol : 2014-05-01 UBN INTERNET LTDA.
-uol
+// xn--mgba3a4fra ("Iran" Arabic) : IR
+ايران
-// physio : 2014-05-01 PhysBiz Pty Ltd
-physio
+// xn--mgbayh7gpa ("al-Ordon" Arabic) : JO
+// National Information Technology Center (NITC)
+// Royal Scientific Society, Al-Jubeiha
+الاردن
-// gmail : 2014-05-01 Charleston Road Registry Inc.
-gmail
+// xn--3e0b707e ("Republic of Korea" Hangul) : KR
+한국
-// channel : 2014-05-08 Charleston Road Registry Inc.
-channel
+// xn--fzc2c9e2c ("Lanka" Sinhalese-Sinhala) : LK
+// http://nic.lk
+ලංකා
-// fly : 2014-05-08 Charleston Road Registry Inc.
-fly
+// xn--xkc2al3hye2a ("Ilangai" Tamil) : LK
+// http://nic.lk
+இலங்கை
-// zip : 2014-05-08 Charleston Road Registry Inc.
-zip
+// xn--mgbc0a9azcg ("Morocco / al-Maghrib" Arabic) : MA
+المغرب
-// esq : 2014-05-08 Charleston Road Registry Inc.
-esq
+// xn--mgb9awbf ("Oman" Arabic) : OM
+عمان
-// rsvp : 2014-05-08 Charleston Road Registry Inc.
-rsvp
+// xn--ygbi2ammx ("Falasteen" Arabic) : PS
+// The Palestinian National Internet Naming Authority (PNINA)
+// http://www.pnina.ps
+فلسطين
-// wales : 2014-05-08 Nominet UK
-wales
+// xn--90a3ac ("srb" Cyrillic) : RS
+срб
-// cymru : 2014-05-08 Nominet UK
-cymru
+// xn--p1ai ("rf" Russian-Cyrillic) : RU
+// http://www.cctld.ru/en/docs/rulesrf.php
+рф
-// green : 2014-05-08 Afilias Limited
-green
+// xn--wgbl6a ("Qatar" Arabic) : QA
+// http://www.ict.gov.qa/
+قطر
-// lgbt : 2014-05-08 Afilias Limited
-lgbt
+// xn--mgberp4a5d4ar ("AlSaudiah" Arabic) : SA
+// http://www.nic.net.sa/
+السعودية
-// xn--hxt814e : 2014-05-15 Zodiac Libra Limited
-网店
+// xn--mgberp4a5d4a87g ("AlSaudiah" Arabic) variant : SA
+السعودیة
-// cancerresearch : 2014-05-15 Australian Cancer Research Foundation
-cancerresearch
+// xn--mgbqly7c0a67fbc ("AlSaudiah" Arabic) variant : SA
+السعودیۃ
-// everbank : 2014-05-15 EverBank
-everbank
+// xn--mgbqly7cvafr ("AlSaudiah" Arabic) variant : SA
+السعوديه
-// frl : 2014-05-15 FRLregistry B.V.
-frl
+// xn--ogbpf8fl ("Syria" Arabic) : SY
+سورية
-// property : 2014-05-22 Uniregistry, Corp.
-property
+// xn--mgbtf8fl ("Syria" Arabic) variant : SY
+سوريا
-// forsale : 2014-05-22 Sea Oaks, LLC
-forsale
+// xn--yfro4i67o Singapore ("Singapore" Chinese-Han) : SG
+新加坡
-// seat : 2014-05-22 SEAT, S.A. (Sociedad Unipersonal)
-seat
+// xn--clchc0ea0b2g2a9gcd ("Singapore" Tamil) : SG
+சிங்கப்பூர்
-// deals : 2014-05-22 Sand Sunset, LLC
-deals
+// xn--o3cw4h ("Thai" Thai) : TH
+// http://www.thnic.co.th
+ไทย
-// nra : 2014-05-22 NRA Holdings Company, INC.
-nra
+// xn--pgbs0dh ("Tunis") : TN
+// http://nic.tn
+تونس
-// xn--fjq720a : 2014-05-22 Will Bloom, LLC
-娱乐
+// xn--kpry57d ("Taiwan" Chinese-Han-Traditional) : TW
+// http://www.twnic.net/english/dn/dn_07a.htm
+台灣
-// realtor : 2014-05-29 Real Estate Domains LLC
-realtor
+// xn--kprw13d ("Taiwan" Chinese-Han-Simplified) : TW
+// http://www.twnic.net/english/dn/dn_07a.htm
+台湾
-// bnpparibas : 2014-05-29 BNP Paribas
-bnpparibas
+// xn--nnx388a ("Taiwan") variant : TW
+臺灣
-// melbourne : 2014-05-29 The Crown in right of the State of Victoria, represented by its Department of State Development, Business and Innovation
-melbourne
+// xn--j1amh ("ukr" Cyrillic) : UA
+укр
-// hosting : 2014-05-29 Uniregistry, Corp.
-hosting
+// xn--mgb2ddes ("AlYemen" Arabic) : YE
+اليمن
-// yoga : 2014-05-29 Top Level Domain Holdings Limited
-yoga
+// xxx : http://icmregistry.com
+xxx
-// city : 2014-05-29 Snow Sky, LLC
-city
+// ye : http://www.y.net.ye/services/domain_name.htm
+*.ye
-// bond : 2014-06-05 Bond University Limited
-bond
+// za : http://www.zadna.org.za/slds.html
+*.za
-// click : 2014-06-05 Uniregistry, Corp.
-click
+// zm : http://en.wikipedia.org/wiki/.zm
+*.zm
-// cern : 2014-06-05 European Organization for Nuclear Research ("CERN")
-cern
+// zw : http://en.wikipedia.org/wiki/.zw
+*.zw
// ===END ICANN DOMAINS===
// ===BEGIN PRIVATE DOMAINS===
// Amazon CloudFront : https://aws.amazon.com/cloudfront/
-// Submitted by Donavan Miller <donavanm(a)amazon.com> 2013-03-22
+// Requested by Donavan Miller <donavanm(a)amazon.com> 2013-03-22
cloudfront.net
// Amazon Elastic Compute Cloud: https://aws.amazon.com/ec2/
-// Submitted by Osman Surkatty <osmans(a)amazon.com> 2014-05-20
+// Requested by Osman Surkatty <osmans(a)amazon.com> 2013-04-02
+compute.amazonaws.com
+us-east-1.amazonaws.com
+compute-1.amazonaws.com
+z-1.compute-1.amazonaws.com
+z-2.compute-1.amazonaws.com
ap-northeast-1.compute.amazonaws.com
ap-southeast-1.compute.amazonaws.com
ap-southeast-2.compute.amazonaws.com
-cn-north-1.compute.amazonaws.cn
-compute.amazonaws.cn
-compute.amazonaws.com
-compute-1.amazonaws.com
eu-west-1.compute.amazonaws.com
sa-east-1.compute.amazonaws.com
-us-east-1.amazonaws.com
us-gov-west-1.compute.amazonaws.com
us-west-1.compute.amazonaws.com
us-west-2.compute.amazonaws.com
-z-1.compute-1.amazonaws.com
-z-2.compute-1.amazonaws.com
-// Amazon Elastic Beanstalk : https://aws.amazon.com/elasticbeanstalk/
-// Submitted by Adam Stein <astein(a)amazon.com> 2013-04-02
+// Amazon Elastic Beanstalk : https://aws.amazon.com/elasticbeanstalk/
+// Requested by Adam Stein <astein(a)amazon.com> 2013-04-02
elasticbeanstalk.com
// Amazon Elastic Load Balancing : https://aws.amazon.com/elasticloadbalancing/
-// Submitted by Scott Vidmar <svidmar(a)amazon.com> 2013-03-27
+// Requested by Scott Vidmar <svidmar(a)amazon.com> 2013-03-27
elb.amazonaws.com
// Amazon S3 : https://aws.amazon.com/s3/
-// Submitted by Courtney Eckhardt <coec(a)amazon.com> 2013-03-22
+// Requested by Courtney Eckhardt <coec(a)amazon.com> 2013-03-22
s3.amazonaws.com
s3-us-west-2.amazonaws.com
s3-us-west-1.amazonaws.com
@@ -8051,27 +6608,26 @@ s3-website-sa-east-1.amazonaws.com
s3-website-us-gov-west-1.amazonaws.com
// BetaInABox
-// Submitted by adrian(a)betainabox.com 2012-09-13
+// Requested by adrian(a)betainabox.com 2012-09-13
betainabox.com
// CentralNic : http://www.centralnic.com/names/domains
-// Submitted by registry <gavin.brown(a)centralnic.com> 2012-09-27
+// Requested by registry <gavin.brown(a)centralnic.com> 2012-09-27
ae.org
ar.com
br.com
cn.com
com.de
-com.se
de.com
eu.com
gb.com
gb.net
+gr.com
hu.com
hu.net
jp.net
jpn.com
kr.com
-mex.com
no.com
qc.com
ru.com
@@ -8081,38 +6637,13 @@ se.net
uk.com
uk.net
us.com
+us.org
uy.com
-za.bz
za.com
-// Africa.com Web Solutions Ltd : https://registry.africa.com
-// Submitted by Gavin Brown <gavin.brown(a)centralnic.com> 2014-02-04
-africa.com
-
-// iDOT Services Limited : http://www.domain.gr.com
-// Submitted by Gavin Brown <gavin.brown(a)centralnic.com> 2014-02-04
-gr.com
-
-// Radix FZC : http://domains.in.net
-// Submitted by Gavin Brown <gavin.brown(a)centralnic.com> 2014-02-04
-in.net
-
-// US REGISTRY LLC : http://us.org
-// Submitted by Gavin Brown <gavin.brown(a)centralnic.com> 2014-02-04
-us.org
-
-// co.com Registry, LLC : https://registry.co.com
-// Submitted by Gavin Brown <gavin.brown(a)centralnic.com> 2014-02-04
-co.com
-
// c.la : http://www.c.la/
c.la
-// cloudControl : https://www.cloudcontrol.com/
-// Submitted by Tobias Wilken <tw(a)cloudcontrol.com> 2013-07-23
-cloudcontrolled.com
-cloudcontrolapp.com
-
// co.ca : http://registry.co.ca/
co.ca
@@ -8120,12 +6651,8 @@ co.ca
co.nl
co.no
-// Cupcake : https://cupcake.io/
-// Submitted by Jonathan Rudenberg <jonathan(a)cupcake.io> 2013-10-08
-cupcake.is
-
// DreamHost : http://www.dreamhost.com/
-// Submitted by Andrew Farmer <andrew.farmer(a)dreamhost.com> 2012-10-02
+// Requested by Andrew Farmer <andrew.farmer(a)dreamhost.com> 2012-10-02
dreamhosters.com
// DynDNS.com : http://www.dyndns.com/services/dns/dyndns/
@@ -8409,29 +6936,12 @@ webhop.org
worse-than.tv
writesthisblog.com
-// Fastly Inc. http://www.fastly.com/
-// Submitted by Vladimir Vuksan <vladimir(a)fastly.com> 2013-05-31
-a.ssl.fastly.net
-b.ssl.fastly.net
-global.ssl.fastly.net
-a.prod.fastly.net
-global.prod.fastly.net
-
-// Firebase, Inc.
-// Submitted by Chris Raynor <chris(a)firebase.com> 2014-01-21
-firebaseapp.com
-
// GitHub, Inc.
-// Submitted by Ben Toews <btoews(a)github.com> 2014-02-06
+// Requested by Ben Toews <btoews(a)github.com> 2013-04-18
github.io
-githubusercontent.com
-
-// GlobeHosting, Inc.
-// Submitted by Zoltan Egresi <egresi(a)globehosting.com> 2013-07-12
-ro.com
// Google, Inc.
-// Submitted by Eduardo Vela <evn(a)google.com> 2012-10-24
+// Requested by Eduardo Vela <evn(a)google.com> 2012-10-24
appspot.com
blogspot.be
blogspot.bj
@@ -8476,15 +6986,14 @@ blogspot.tw
codespot.com
googleapis.com
googlecode.com
-withgoogle.com
// Heroku : https://www.heroku.com/
-// Submitted by Tom Maher <tmaher(a)heroku.com> 2013-05-02
+// Requested by Tom Maher <tmaher(a)heroku.com> 2013-05-02
herokuapp.com
herokussl.com
// iki.fi
-// Submitted by Hannu Aronsson <haa(a)iki.fi> 2009-11-05
+// Requested by Hannu Aronsson <haa(a)iki.fi> 2009-11-05
iki.fi
// info.at : http://www.info.at/
@@ -8494,42 +7003,24 @@ info.at
// Michau Enterprises Limited : http://www.co.pl/
co.pl
-// Microsoft : http://microsoft.com
-// Submitted by Barry Dorrans <bdorrans(a)microsoft.com> 2014-01-24
-azurewebsites.net
-azure-mobile.net
-cloudapp.net
-
-// NFSN, Inc. : https://www.NearlyFreeSpeech.NET/
-// Submitted by Jeff Wheelhouse <support(a)nearlyfreespeech.net> 2014-02-02
-nfshost.com
-
// NYC.mn : http://www.information.nyc.mn
-// Submitted by Matthew Brown <mattbrown(a)nyc.mn> 2013-03-11
+// Requested by Matthew Brown <mattbrown(a)nyc.mn> 2013-03-11
nyc.mn
-// One Fold Media : http://www.onefoldmedia.com/
-// Submitted by Eddie Jones <eddie(a)onefoldmedia.com> 2014-06-10
-nid.io
-
// Opera Software, A.S.A.
-// Submitted by Yngve Pettersen <yngve(a)opera.com> 2009-11-26
+// Requested by Yngve Pettersen <yngve(a)opera.com> 2009-11-26
operaunite.com
-// OutSystems
-// Submitted by Duarte Santos <domain-admin(a)outsystemscloud.com> 2014-03-11
-outsystemscloud.com
-
// Red Hat, Inc. OpenShift : https://openshift.redhat.com/
-// Submitted by Tim Kramer <tkramer(a)rhcloud.com> 2012-10-24
+// Requested by Tim Kramer <tkramer(a)rhcloud.com> 2012-10-24
rhcloud.com
// priv.at : http://www.nic.priv.at/
-// Submitted by registry <lendl(a)nic.at> 2008-06-09
+// Requested by registry <lendl(a)nic.at> 2008-06-09
priv.at
// ZaNiC : http://www.za.net/
-// Submitted by registry <hostmaster(a)nic.za.net> 2009-10-03
+// Requested by registry <hostmaster(a)nic.za.net> 2009-10-03
za.net
za.org
diff --git a/netwerk/test/unit/data/test_psl.txt b/netwerk/test/unit/data/test_psl.txt
index 35c8ccf..5a75831 100644
--- a/netwerk/test/unit/data/test_psl.txt
+++ b/netwerk/test/unit/data/test_psl.txt
@@ -60,12 +60,12 @@ checkPublicSuffix('a.b.c.kobe.jp', 'b.c.kobe.jp');
checkPublicSuffix('city.kobe.jp', 'city.kobe.jp');
checkPublicSuffix('www.city.kobe.jp', 'city.kobe.jp');
// TLD with a wildcard rule and exceptions.
-checkPublicSuffix('ck', null);
-checkPublicSuffix('test.ck', null);
-checkPublicSuffix('b.test.ck', 'b.test.ck');
-checkPublicSuffix('a.b.test.ck', 'b.test.ck');
-checkPublicSuffix('www.ck', 'www.ck');
-checkPublicSuffix('www.www.ck', 'www.ck');
+checkPublicSuffix('om', null);
+checkPublicSuffix('test.om', null);
+checkPublicSuffix('b.test.om', 'b.test.om');
+checkPublicSuffix('a.b.test.om', 'b.test.om');
+checkPublicSuffix('songfest.om', 'songfest.om');
+checkPublicSuffix('www.songfest.om', 'songfest.om');
// US K12.
checkPublicSuffix('us', null);
checkPublicSuffix('test.us', 'test.us');
@@ -76,23 +76,3 @@ checkPublicSuffix('www.test.ak.us', 'test.ak.us');
checkPublicSuffix('k12.ak.us', null);
checkPublicSuffix('test.k12.ak.us', 'test.k12.ak.us');
checkPublicSuffix('www.test.k12.ak.us', 'test.k12.ak.us');
-// IDN labels.
-checkPublicSuffix('食狮.com.cn', '食狮.com.cn');
-checkPublicSuffix('食狮.公司.cn', '食狮.公司.cn');
-checkPublicSuffix('www.食狮.公司.cn', '食狮.公司.cn');
-checkPublicSuffix('shishi.公司.cn', 'shishi.公司.cn');
-checkPublicSuffix('公司.cn', null);
-checkPublicSuffix('食狮.中国', '食狮.中国');
-checkPublicSuffix('www.食狮.中国', '食狮.中国');
-checkPublicSuffix('shishi.中国', 'shishi.中国');
-checkPublicSuffix('中国', null);
-// Same as above, but punycoded.
-checkPublicSuffix('xn--85x722f.com.cn', 'xn--85x722f.com.cn');
-checkPublicSuffix('xn--85x722f.xn--55qx5d.cn', 'xn--85x722f.xn--55qx5d.cn');
-checkPublicSuffix('www.xn--85x722f.xn--55qx5d.cn', 'xn--85x722f.xn--55qx5d.cn');
-checkPublicSuffix('shishi.xn--55qx5d.cn', 'shishi.xn--55qx5d.cn');
-checkPublicSuffix('xn--55qx5d.cn', null);
-checkPublicSuffix('xn--85x722f.xn--fiqs8s', 'xn--85x722f.xn--fiqs8s');
-checkPublicSuffix('www.xn--85x722f.xn--fiqs8s', 'xn--85x722f.xn--fiqs8s');
-checkPublicSuffix('shishi.xn--fiqs8s', 'shishi.xn--fiqs8s');
-checkPublicSuffix('xn--fiqs8s', null);
diff --git a/netwerk/test/unit/test_psl.js b/netwerk/test/unit/test_psl.js
index 91124ea..446fe4c 100644
--- a/netwerk/test/unit/test_psl.js
+++ b/netwerk/test/unit/test_psl.js
@@ -1,9 +1,9 @@
+const Cc = Components.classes;
+const Ci = Components.interfaces;
+
var etld = Cc["@mozilla.org/network/effective-tld-service;1"]
.getService(Ci.nsIEffectiveTLDService);
-var idna = Cc["@mozilla.org/network/idn-service;1"]
- .getService(Ci.nsIIDNService);
-
function run_test()
{
var file = do_get_file("data/test_psl.txt");
@@ -13,7 +13,7 @@ function run_test()
var scriptLoader = Cc["@mozilla.org/moz/jssubscript-loader;1"]
.getService(Ci.mozIJSSubScriptLoader);
var srvScope = {};
- scriptLoader.loadSubScript(uri.spec, srvScope, "utf-8");
+ scriptLoader.loadSubScript(uri.spec, srvScope);
}
function checkPublicSuffix(host, expectedSuffix)
@@ -24,11 +24,5 @@ function checkPublicSuffix(host, expectedSuffix)
} catch (e if e.name == "NS_ERROR_INSUFFICIENT_DOMAIN_LEVELS" ||
e.name == "NS_ERROR_ILLEGAL_VALUE") {
}
- // The EffectiveTLDService always gives back punycoded labels.
- // The test suite wants to get back what it put in.
- if (actualSuffix !== null && expectedSuffix !== null &&
- /(^|\.)xn--/.test(actualSuffix) && !/(^|\.)xn--/.test(expectedSuffix)) {
- actualSuffix = idna.convertACEtoUTF8(actualSuffix);
- }
do_check_eq(actualSuffix, expectedSuffix);
}
1
0

[tor-browser/esr24] Bug 1027268 - Remove unnecessary timeout from test_bug391747.html to fix intermittent failures. r=mats, a=test-only
by mikeperry@torproject.org 29 Aug '14
by mikeperry@torproject.org 29 Aug '14
29 Aug '14
commit 4f957865f2d633c84daf21817ff813da581a7394
Author: Martijn Wargers <mwargers(a)mozilla.com>
Date: Tue Jul 1 16:26:36 2014 +0200
Bug 1027268 - Remove unnecessary timeout from test_bug391747.html to fix intermittent failures. r=mats, a=test-only
---
layout/generic/test/test_bug391747.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/layout/generic/test/test_bug391747.html b/layout/generic/test/test_bug391747.html
index 0d3a9af..3933601 100644
--- a/layout/generic/test/test_bug391747.html
+++ b/layout/generic/test/test_bug391747.html
@@ -39,7 +39,7 @@ function boom_391747() {
SimpleTest.finish();
}
-setTimeout(boom_391747,400)
+addLoadEvent(boom_391747);
SimpleTest.waitForExplicitFinish()
</script>
1
0

[tor-browser/esr24] Bug 1033340 - uplift PSL changes to ESR 24, r=gerv, a=lsblakk
by mikeperry@torproject.org 29 Aug '14
by mikeperry@torproject.org 29 Aug '14
29 Aug '14
commit 55559aca8b98a3a4bf49705f3eeba3630f970f71
Author: Gijs Kruitbosch <gijskruitbosch(a)gmail.com>
Date: Tue Jul 8 15:02:49 2014 +0100
Bug 1033340 - uplift PSL changes to ESR 24, r=gerv, a=lsblakk
---
netwerk/dns/effective_tld_names.dat | 2435 ++++++++++++++++++++++++++++-------
netwerk/test/unit/data/test_psl.txt | 32 +-
netwerk/test/unit/test_psl.js | 11 +-
3 files changed, 2008 insertions(+), 470 deletions(-)
diff --git a/netwerk/dns/effective_tld_names.dat b/netwerk/dns/effective_tld_names.dat
index ed1123b..c83fe0b 100644
--- a/netwerk/dns/effective_tld_names.dat
+++ b/netwerk/dns/effective_tld_names.dat
@@ -175,20 +175,21 @@ it.ao
// aq : http://en.wikipedia.org/wiki/.aq
aq
-// ar : http://en.wikipedia.org/wiki/.ar
-*.ar
-!congresodelalengua3.ar
-!educ.ar
-!gobiernoelectronico.ar
-!mecon.ar
-!nacion.ar
-!nic.ar
-!promocion.ar
-!retina.ar
-!uba.ar
+// ar : https://nic.ar/normativa-vigente.xhtml
+ar
+com.ar
+edu.ar
+gob.ar
+gov.ar
+int.ar
+mil.ar
+net.ar
+org.ar
+tur.ar
// arpa : http://en.wikipedia.org/wiki/.arpa
// Confirmed by registry <iana-questions(a)icann.org> 2008-06-18
+arpa
e164.arpa
in-addr.arpa
ip6.arpa
@@ -213,6 +214,7 @@ or.at
// au : http://en.wikipedia.org/wiki/.au
// http://www.auda.org.au/
+au
// 2LDs
com.au
net.au
@@ -243,10 +245,9 @@ sa.edu.au
tas.edu.au
vic.edu.au
wa.edu.au
-act.gov.au
-// Removed at request of Shae.Donelan(a)services.nsw.gov.au, 2010-03-04
-// nsw.gov.au
-nt.gov.au
+// act.gov.au Bug 984824 - Removed at request of Greg Tankard
+// nsw.gov.au Bug 547985 - Removed at request of <Shae.Donelan(a)services.nsw.gov.au>
+// nt.gov.au Bug 940478 - Removed at request of Greg Connors <Greg.Connors(a)nt.gov.au>
qld.gov.au
sa.gov.au
tas.gov.au
@@ -291,6 +292,7 @@ rs.ba
// bb : http://en.wikipedia.org/wiki/.bb
bb
biz.bb
+co.bb
com.bb
edu.bb
gov.bb
@@ -298,6 +300,7 @@ info.bb
net.bb
org.bb
store.bb
+tv.bb
// bd : http://en.wikipedia.org/wiki/.bd
*.bd
@@ -349,7 +352,7 @@ z.bg
6.bg
7.bg
8.bg
-9.bg
+9.bg
// bh : http://en.wikipedia.org/wiki/.bh
bh
@@ -400,8 +403,8 @@ net.bo
mil.bo
tv.bo
-// br : http://registro.br/dominio/dpn.html
-// Updated by registry <fneves(a)registro.br> 2011-03-01
+// br : http://registro.br/dominio/categoria.html
+// Submitted by registry <fneves(a)registro.br> 2014-03-04
br
adm.br
adv.br
@@ -446,6 +449,7 @@ lel.br
mat.br
med.br
mil.br
+mp.br
mus.br
net.br
nom.br
@@ -491,6 +495,7 @@ org.bt
// bv : No registrations at this time.
// Submitted by registry <jarle(a)uninett.no> 2006-06-16
+bv
// bw : http://en.wikipedia.org/wiki/.bw
// http://www.gobin.info/domainname/bw.doc
@@ -593,9 +598,12 @@ gob.cl
co.cl
mil.cl
-// cm : http://en.wikipedia.org/wiki/.cm
+// cm : http://en.wikipedia.org/wiki/.cm plus bug 981927
cm
+co.cm
+com.cm
gov.cm
+net.cm
// cn : http://en.wikipedia.org/wiki/.cn
// Submitted by registry <tanyaling(a)cnnic.cn> 2008-06-11
@@ -787,7 +795,7 @@ org.ee
fie.ee
// eg : http://en.wikipedia.org/wiki/.eg
-eg
+eg
com.eg
edu.eg
eun.eg
@@ -810,7 +818,14 @@ gob.es
edu.es
// et : http://en.wikipedia.org/wiki/.et
-*.et
+et
+com.et
+gov.et
+org.et
+edu.et
+biz.et
+name.et
+info.et
// eu : http://en.wikipedia.org/wiki/.eu
eu
@@ -869,6 +884,7 @@ ga
// gb : This registry is effectively dormant
// Submitted by registry <Damien.Shaw(a)ja.net> 2008-06-12
+gb
// gd : http://en.wikipedia.org/wiki/.gd
gd
@@ -886,13 +902,12 @@ pvt.ge
// gf : http://en.wikipedia.org/wiki/.gf
gf
-// gg : http://www.channelisles.net/applic/avextn.shtml
+// gg : http://www.channelisles.net/register-domains/
+// Confirmed by registry <nigel(a)channelisles.net> 2013-11-28
gg
co.gg
-org.gg
net.gg
-sch.gg
-gov.gg
+org.gg
// gh : http://en.wikipedia.org/wiki/.gh
// see also: http://www.nic.gh/reg_now.php
@@ -923,6 +938,7 @@ gm
// gn : http://psg.com/dns/gn/gn.txt
// Submitted by registry <randy(a)psg.com> 2008-06-17
+gn
ac.gn
com.gn
edu.gn
@@ -1003,7 +1019,7 @@ org.hk
网絡.hk
组织.hk
組織.hk
-組织.hk
+組织.hk
// hm : http://en.wikipedia.org/wiki/.hm
hm
@@ -1084,6 +1100,7 @@ id
ac.id
biz.id
co.id
+desa.id
go.id
mil.id
my.id
@@ -1099,16 +1116,18 @@ gov.ie
// il : http://en.wikipedia.org/wiki/.il
*.il
-// im : https://www.nic.im/pdfs/imfaqs.pdf
+// im : https://www.nic.im/
+// Submitted by registry <info(a)nic.im> 2013-11-15
im
+ac.im
co.im
+com.im
ltd.co.im
-plc.co.im
net.im
-gov.im
org.im
-nic.im
-ac.im
+plc.co.im
+tt.im
+tv.im
// in : http://en.wikipedia.org/wiki/.in
// see also: http://www.inregistry.in/policies/
@@ -1180,294 +1199,385 @@ int.is
it
gov.it
edu.it
-// list of reserved geo-names :
+// Reserved geo-names:
// http://www.nic.it/documenti/regolamenti-e-linee-guida/regolamento-assegnazi…
-// (There is also a list of reserved geo-names corresponding to Italian
-// municipalities : http://www.nic.it/documenti/appendice-c.pdf , but it is
-// not included here.)
-agrigento.it
+// There is also a list of reserved geo-names corresponding to Italian municipalities
+// http://www.nic.it/documenti/appendice-c.pdf, but it is not included here.
+// Regions
+abr.it
+abruzzo.it
+aosta-valley.it
+aostavalley.it
+bas.it
+basilicata.it
+cal.it
+calabria.it
+cam.it
+campania.it
+emilia-romagna.it
+emiliaromagna.it
+emr.it
+friuli-v-giulia.it
+friuli-ve-giulia.it
+friuli-vegiulia.it
+friuli-venezia-giulia.it
+friuli-veneziagiulia.it
+friuli-vgiulia.it
+friuliv-giulia.it
+friulive-giulia.it
+friulivegiulia.it
+friulivenezia-giulia.it
+friuliveneziagiulia.it
+friulivgiulia.it
+fvg.it
+laz.it
+lazio.it
+lig.it
+liguria.it
+lom.it
+lombardia.it
+lombardy.it
+lucania.it
+mar.it
+marche.it
+mol.it
+molise.it
+piedmont.it
+piemonte.it
+pmn.it
+pug.it
+puglia.it
+sar.it
+sardegna.it
+sardinia.it
+sic.it
+sicilia.it
+sicily.it
+taa.it
+tos.it
+toscana.it
+trentino-a-adige.it
+trentino-aadige.it
+trentino-alto-adige.it
+trentino-altoadige.it
+trentino-s-tirol.it
+trentino-stirol.it
+trentino-sud-tirol.it
+trentino-sudtirol.it
+trentino-sued-tirol.it
+trentino-suedtirol.it
+trentinoa-adige.it
+trentinoaadige.it
+trentinoalto-adige.it
+trentinoaltoadige.it
+trentinos-tirol.it
+trentinostirol.it
+trentinosud-tirol.it
+trentinosudtirol.it
+trentinosued-tirol.it
+trentinosuedtirol.it
+tuscany.it
+umb.it
+umbria.it
+val-d-aosta.it
+val-daosta.it
+vald-aosta.it
+valdaosta.it
+valle-aosta.it
+valle-d-aosta.it
+valle-daosta.it
+valleaosta.it
+valled-aosta.it
+valledaosta.it
+vallee-aoste.it
+valleeaoste.it
+vao.it
+vda.it
+ven.it
+veneto.it
+// Provinces
ag.it
-alessandria.it
+agrigento.it
al.it
-ancona.it
+alessandria.it
+alto-adige.it
+altoadige.it
an.it
+ancona.it
+andria-barletta-trani.it
+andria-trani-barletta.it
+andriabarlettatrani.it
+andriatranibarletta.it
+ao.it
aosta.it
aoste.it
-ao.it
-arezzo.it
+ap.it
+aq.it
+aquila.it
ar.it
+arezzo.it
ascoli-piceno.it
ascolipiceno.it
-ap.it
asti.it
at.it
-avellino.it
av.it
-bari.it
+avellino.it
ba.it
-andria-barletta-trani.it
-andriabarlettatrani.it
-trani-barletta-andria.it
-tranibarlettaandria.it
+balsan.it
+bari.it
barletta-trani-andria.it
barlettatraniandria.it
-andria-trani-barletta.it
-andriatranibarletta.it
-trani-andria-barletta.it
-traniandriabarletta.it
-bt.it
belluno.it
-bl.it
benevento.it
-bn.it
bergamo.it
bg.it
-biella.it
bi.it
-bologna.it
+biella.it
+bl.it
+bn.it
bo.it
+bologna.it
bolzano.it
bozen.it
-balsan.it
-alto-adige.it
-altoadige.it
-suedtirol.it
-bz.it
+br.it
brescia.it
-bs.it
brindisi.it
-br.it
-cagliari.it
+bs.it
+bt.it
+bz.it
ca.it
+cagliari.it
caltanissetta.it
-cl.it
+campidano-medio.it
+campidanomedio.it
campobasso.it
-cb.it
-carboniaiglesias.it
carbonia-iglesias.it
-iglesias-carbonia.it
-iglesiascarbonia.it
-ci.it
+carboniaiglesias.it
+carrara-massa.it
+carraramassa.it
caserta.it
-ce.it
catania.it
-ct.it
catanzaro.it
-cz.it
-chieti.it
+cb.it
+ce.it
+cesena-forli.it
+cesenaforli.it
ch.it
-como.it
+chieti.it
+ci.it
+cl.it
+cn.it
co.it
+como.it
cosenza.it
-cs.it
-cremona.it
cr.it
+cremona.it
crotone.it
-kr.it
+cs.it
+ct.it
cuneo.it
-cn.it
+cz.it
dell-ogliastra.it
dellogliastra.it
-ogliastra.it
-og.it
-enna.it
en.it
-ferrara.it
+enna.it
+fc.it
fe.it
fermo.it
-fm.it
+ferrara.it
+fg.it
+fi.it
firenze.it
florence.it
-fi.it
+fm.it
foggia.it
-fg.it
forli-cesena.it
forlicesena.it
-cesena-forli.it
-cesenaforli.it
-fc.it
-frosinone.it
fr.it
-genova.it
-genoa.it
+frosinone.it
ge.it
-gorizia.it
+genoa.it
+genova.it
go.it
-grosseto.it
+gorizia.it
gr.it
-imperia.it
+grosseto.it
+iglesias-carbonia.it
+iglesiascarbonia.it
im.it
-isernia.it
+imperia.it
is.it
-laquila.it
-aquila.it
-aq.it
+isernia.it
+kr.it
la-spezia.it
+laquila.it
laspezia.it
-sp.it
latina.it
-lt.it
-lecce.it
+lc.it
le.it
+lecce.it
lecco.it
-lc.it
-livorno.it
li.it
-lodi.it
+livorno.it
lo.it
-lucca.it
+lodi.it
+lt.it
lu.it
+lucca.it
macerata.it
-mc.it
mantova.it
-mn.it
massa-carrara.it
massacarrara.it
-carrara-massa.it
-carraramassa.it
-ms.it
matera.it
-mt.it
+mb.it
+mc.it
+me.it
medio-campidano.it
mediocampidano.it
-campidano-medio.it
-campidanomedio.it
-vs.it
messina.it
-me.it
-milano.it
-milan.it
mi.it
-modena.it
+milan.it
+milano.it
+mn.it
mo.it
-monza.it
+modena.it
monza-brianza.it
+monza-e-della-brianza.it
+monza.it
monzabrianza.it
monzaebrianza.it
monzaedellabrianza.it
-monza-e-della-brianza.it
-mb.it
-napoli.it
-naples.it
+ms.it
+mt.it
na.it
-novara.it
+naples.it
+napoli.it
no.it
-nuoro.it
+novara.it
nu.it
-oristano.it
+nuoro.it
+og.it
+ogliastra.it
+olbia-tempio.it
+olbiatempio.it
or.it
+oristano.it
+ot.it
+pa.it
padova.it
padua.it
-pd.it
palermo.it
-pa.it
parma.it
-pr.it
pavia.it
-pv.it
-perugia.it
-pg.it
-pescara.it
+pc.it
+pd.it
pe.it
+perugia.it
pesaro-urbino.it
pesarourbino.it
-urbino-pesaro.it
-urbinopesaro.it
-pu.it
+pescara.it
+pg.it
+pi.it
piacenza.it
-pc.it
pisa.it
-pi.it
pistoia.it
-pt.it
-pordenone.it
pn.it
+po.it
+pordenone.it
potenza.it
-pz.it
+pr.it
prato.it
-po.it
+pt.it
+pu.it
+pv.it
+pz.it
+ra.it
ragusa.it
-rg.it
ravenna.it
-ra.it
-reggio-calabria.it
-reggiocalabria.it
rc.it
+re.it
+reggio-calabria.it
reggio-emilia.it
+reggiocalabria.it
reggioemilia.it
-re.it
-rieti.it
+rg.it
ri.it
+rieti.it
rimini.it
+rm.it
rn.it
+ro.it
roma.it
rome.it
-rm.it
rovigo.it
-ro.it
-salerno.it
sa.it
+salerno.it
sassari.it
-ss.it
savona.it
-sv.it
-siena.it
si.it
+siena.it
siracusa.it
-sr.it
-sondrio.it
so.it
-taranto.it
+sondrio.it
+sp.it
+sr.it
+ss.it
+suedtirol.it
+sv.it
ta.it
+taranto.it
+te.it
tempio-olbia.it
tempioolbia.it
-olbia-tempio.it
-olbiatempio.it
-ot.it
teramo.it
-te.it
terni.it
-tr.it
+tn.it
+to.it
torino.it
-turin.it
-to.it
-trapani.it
tp.it
-trento.it
+tr.it
+trani-andria-barletta.it
+trani-barletta-andria.it
+traniandriabarletta.it
+tranibarlettaandria.it
+trapani.it
trentino.it
-tn.it
+trento.it
treviso.it
-tv.it
trieste.it
ts.it
-udine.it
+turin.it
+tv.it
ud.it
-varese.it
+udine.it
+urbino-pesaro.it
+urbinopesaro.it
va.it
+varese.it
+vb.it
+vc.it
+ve.it
venezia.it
venice.it
-ve.it
verbania.it
-vb.it
vercelli.it
-vc.it
verona.it
-vr.it
+vi.it
vibo-valentia.it
vibovalentia.it
-vv.it
vicenza.it
-vi.it
viterbo.it
+vr.it
+vs.it
vt.it
+vv.it
-// je : http://www.channelisles.net/applic/avextn.shtml
+// je : http://www.channelisles.net/register-domains/
+// Confirmed by registry <nigel(a)channelisles.net> 2013-11-28
je
co.je
-org.je
net.je
-sch.je
-gov.je
+org.je
// jm : http://www.com.jm/register.html
*.jm
@@ -1488,7 +1598,7 @@ jobs
// jp : http://en.wikipedia.org/wiki/.jp
// http://jprs.co.jp/en/jpdomain.html
-// Updated by registry <info(a)jprs.jp> 2012-05-28
+// Submitted by registry <info(a)jprs.jp> 2014-02-28
jp
// jp organizational type names
ac.jp
@@ -1592,7 +1702,6 @@ konan.aichi.jp
kota.aichi.jp
mihama.aichi.jp
miyoshi.aichi.jp
-nagakute.aichi.jp
nishio.aichi.jp
nisshin.aichi.jp
obu.aichi.jp
@@ -2264,7 +2373,6 @@ rikuzentakata.iwate.jp
shiwa.iwate.jp
shizukuishi.iwate.jp
sumita.iwate.jp
-takizawa.iwate.jp
tanohata.iwate.jp
tono.iwate.jp
yahaba.iwate.jp
@@ -3302,6 +3410,7 @@ edu.kn
gov.kn
// kp : http://www.kcce.kp/en_index.php
+kp
com.kp
edu.kp
gov.kp
@@ -3379,6 +3488,7 @@ org.la
// lb : http://en.wikipedia.org/wiki/.lb
// Submitted by registry <randy(a)psg.com> 2008-06-17
+lb
com.lb
edu.lb
gov.lb
@@ -3417,6 +3527,7 @@ hotel.lk
// lr : http://psg.com/dns/lr/lr.txt
// Submitted by registry <randy(a)psg.com> 2008-06-17
+lr
com.lr
edu.lr
gov.lr
@@ -3559,11 +3670,21 @@ mq
mr
gov.mr
-// ms : http://en.wikipedia.org/wiki/.ms
+// ms : http://www.nic.ms/pdf/MS_Domain_Name_Rules.pdf
ms
-
-// mt : https://www.nic.org.mt/dotmt/
-*.mt
+com.ms
+edu.ms
+gov.ms
+net.ms
+org.ms
+
+// mt : https://www.nic.org.mt/go/policy
+// Submitted by registry <help(a)nic.org.mt> 2013-11-19
+mt
+com.mt
+edu.mt
+net.mt
+org.mt
// mu : http://en.wikipedia.org/wiki/.mu
mu
@@ -4230,13 +4351,16 @@ other.nf
store.nf
// ng : http://psg.com/dns/ng/
-// Submitted by registry <randy(a)psg.com> 2008-06-17
-ac.ng
+ng
com.ng
edu.ng
-gov.ng
+name.ng
net.ng
org.ng
+sch.ng
+gov.ng
+mil.ng
+mobi.ng
// ni : http://www.nic.ni/dominios.htm
*.ni
@@ -4252,7 +4376,7 @@ bv.nl
// no : http://www.norid.no/regelverk/index.en.html
// The Norwegian registry has declined to notify us of updates. The web pages
// referenced below are the official source of the data. There is also an
-// announce mailing list:
+// announce mailing list:
// https://postlister.uninett.no/sympa/info/norid-diskusjon
no
// Norid generic domains : http://www.norid.no/regelverk/vedlegg-c.en.html
@@ -5034,20 +5158,36 @@ com.nr
nu
// nz : http://en.wikipedia.org/wiki/.nz
-*.nz
+// Confirmed by registry <jay(a)nzrs.net.nz> 2014-05-19
+nz
+ac.nz
+co.nz
+cri.nz
+geek.nz
+gen.nz
+govt.nz
+health.nz
+iwi.nz
+kiwi.nz
+maori.nz
+mil.nz
+māori.nz
+net.nz
+org.nz
+parliament.nz
+school.nz
// om : http://en.wikipedia.org/wiki/.om
-*.om
-!mediaphone.om
-!nawrastelecom.om
-!nawras.om
-!omanmobile.om
-!omanpost.om
-!omantel.om
-!rakpetroleum.om
-!siemens.om
-!songfest.om
-!statecouncil.om
+om
+co.om
+com.om
+edu.om
+gov.om
+med.om
+museum.om
+net.om
+org.om
+pro.om
// org : http://en.wikipedia.org/wiki/.org
org
@@ -5502,7 +5642,6 @@ oryol.ru
palana.ru
penza.ru
perm.ru
-pskov.ru
ptz.ru
rnd.ru
ryazan.ru
@@ -5622,7 +5761,7 @@ gov.sd
info.sd
// se : http://en.wikipedia.org/wiki/.se
-// Submitted by registry <Patrik.Wallstrom(a)iis.se> 2008-06-24
+// Submitted by registry <patrik.wallstrom(a)iis.se> 2014-03-18
se
a.se
ac.se
@@ -5656,7 +5795,6 @@ pp.se
press.se
r.se
s.se
-sshn.se
t.se
tm.se
u.se
@@ -5687,6 +5825,7 @@ si
// sj : No registrations at this time.
// Submitted by registry <jarle(a)uninett.no> 2008-06-16
+sj
// sk : http://en.wikipedia.org/wiki/.sk
// list of 2nd level domains ?
@@ -5741,8 +5880,13 @@ store.st
// su : http://en.wikipedia.org/wiki/.su
su
-// sv : http://www.svnet.org.sv/svpolicy.html
-*.sv
+// sv : http://www.svnet.org.sv/niveldos.pdf
+sv
+com.sv
+edu.sv
+gob.sv
+org.sv
+red.sv
// sx : http://en.wikipedia.org/wiki/.sx
// Confirmed by registry <jcvignes(a)openregistry.com> 2012-05-31
@@ -5864,6 +6008,10 @@ org.to
edu.to
mil.to
+// tp : No registrations at this time.
+// Submitted by Ryan Sleevi <ryan.sleevi(a)gmail.com> 2014-01-03
+tp
+
// tr : http://en.wikipedia.org/wiki/.tr
*.tr
!nic.tr
@@ -5917,6 +6065,7 @@ club.tw
// tz : http://www.tznic.or.tz/index.php/domains
// Confirmed by registry <manager(a)tznic.or.tz> 2013-01-22
+tz
ac.tz
co.tz
go.tz
@@ -6029,19 +6178,19 @@ com.ug
org.ug
// uk : http://en.wikipedia.org/wiki/.uk
-// Submitted by registry <noc(a)nominet.org.uk> 2012-10-02
-// and tweaked by us pending further consultation.
-*.uk
+// Submitted by registry <Michael.Daly(a)nominet.org.uk>
+uk
+ac.uk
+co.uk
+gov.uk
+ltd.uk
+me.uk
+net.uk
+nhs.uk
+org.uk
+plc.uk
+police.uk
*.sch.uk
-!bl.uk
-!british-library.uk
-!jet.uk
-!mod.uk
-!national-library-scotland.uk
-!nel.uk
-!nic.uk
-!nls.uk
-!parliament.uk
// us : http://en.wikipedia.org/wiki/.us
us
@@ -6125,7 +6274,7 @@ k12.de.us
k12.fl.us
k12.ga.us
k12.gu.us
-// k12.hi.us Hawaii has a state-wide DOE login: bug 614565
+// k12.hi.us Bug 614565 - Hawaii has a state-wide DOE login
k12.ia.us
k12.id.us
k12.il.us
@@ -6156,7 +6305,7 @@ k12.pa.us
k12.pr.us
k12.ri.us
k12.sc.us
-k12.sd.us
+// k12.sd.us Bug 934131 - Removed at request of James Booze <James.Booze(a)k12.sd.us>
k12.tn.us
k12.tx.us
k12.ut.us
@@ -6165,7 +6314,7 @@ k12.vt.us
k12.va.us
k12.wa.us
k12.wi.us
-k12.wv.us
+// k12.wv.us Bug 947705 - Removed at request of Verne Britton <verne(a)wvnet.edu>
k12.wy.us
cc.ak.us
@@ -6277,316 +6426,1610 @@ lib.vt.us
lib.va.us
lib.wa.us
lib.wi.us
-lib.wv.us
+// lib.wv.us Bug 941670 - Removed at request of Larry W Arnold <arnold(a)wvlc.lib.wv.us>
lib.wy.us
-// k12.ma.us contains school districts in Massachusetts. The 4LDs are
-// managed indepedently except for private (PVT), charter (CHTR) and
-// parochial (PAROCH) schools. Those are delegated dorectly to the
-// 5LD operators. <k12-ma-hostmaster _ at _ rsuc.gweep.net>
-pvt.k12.ma.us
-chtr.k12.ma.us
-paroch.k12.ma.us
+// k12.ma.us contains school districts in Massachusetts. The 4LDs are
+// managed indepedently except for private (PVT), charter (CHTR) and
+// parochial (PAROCH) schools. Those are delegated dorectly to the
+// 5LD operators. <k12-ma-hostmaster _ at _ rsuc.gweep.net>
+pvt.k12.ma.us
+chtr.k12.ma.us
+paroch.k12.ma.us
+
+// uy : http://www.nic.org.uy/
+uy
+com.uy
+edu.uy
+gub.uy
+mil.uy
+net.uy
+org.uy
+
+// uz : http://www.reg.uz/
+uz
+co.uz
+com.uz
+net.uz
+org.uz
+
+// va : http://en.wikipedia.org/wiki/.va
+va
+
+// vc : http://en.wikipedia.org/wiki/.vc
+// Submitted by registry <kshah(a)ca.afilias.info> 2008-06-13
+vc
+com.vc
+net.vc
+org.vc
+gov.vc
+mil.vc
+edu.vc
+
+// ve : https://registro.nic.ve/
+// Confirmed by registry 2012-10-04
+// Updated 2014-05-20 - Bug 940478
+ve
+arts.ve
+co.ve
+com.ve
+e12.ve
+edu.ve
+firm.ve
+gob.ve
+gov.ve
+info.ve
+int.ve
+mil.ve
+net.ve
+org.ve
+rec.ve
+store.ve
+tec.ve
+web.ve
+
+// vg : http://en.wikipedia.org/wiki/.vg
+vg
+
+// vi : http://www.nic.vi/newdomainform.htm
+// http://www.nic.vi/Domain_Rules/body_domain_rules.html indicates some other
+// TLDs are "reserved", such as edu.vi and gov.vi, but doesn't actually say they
+// are available for registration (which they do not seem to be).
+vi
+co.vi
+com.vi
+k12.vi
+net.vi
+org.vi
+
+// vn : https://www.dot.vn/vnnic/vnnic/domainregistration.jsp
+vn
+com.vn
+net.vn
+org.vn
+edu.vn
+gov.vn
+int.vn
+ac.vn
+biz.vn
+info.vn
+name.vn
+pro.vn
+health.vn
+
+// vu : http://en.wikipedia.org/wiki/.vu
+// http://www.vunic.vu/
+vu
+com.vu
+edu.vu
+net.vu
+org.vu
+
+// wf : http://www.afnic.fr/medias/documents/AFNIC-naming-policy2012.pdf
+wf
+
+// ws : http://en.wikipedia.org/wiki/.ws
+// http://samoanic.ws/index.dhtml
+ws
+com.ws
+net.ws
+org.ws
+gov.ws
+edu.ws
+
+// yt : http://www.afnic.fr/medias/documents/AFNIC-naming-policy2012.pdf
+yt
+
+// IDN ccTLDs
+// Please sort by ISO 3166 ccTLD, then punicode string
+// when submitting patches and follow this format:
+// <Punicode> ("<english word>" <language>) : <ISO 3166 ccTLD>
+// [optional sponsoring org]
+// <URL>
+
+// xn--mgbaam7a8h ("Emerat" Arabic) : AE
+// http://nic.ae/english/arabicdomain/rules.jsp
+امارات
+
+// xn--54b7fta0cc ("Bangla" Bangla) : BD
+বাংলা
+
+// xn--fiqs8s ("China" Chinese-Han-Simplified <.Zhongguo>) : CN
+// CNNIC
+// http://cnnic.cn/html/Dir/2005/10/11/3218.htm
+中国
+
+// xn--fiqz9s ("China" Chinese-Han-Traditional <.Zhongguo>) : CN
+// CNNIC
+// http://cnnic.cn/html/Dir/2005/10/11/3218.htm
+中國
+
+// xn--lgbbat1ad8j ("Algeria / Al Jazair" Arabic) : DZ
+الجزائر
+
+// xn--wgbh1c ("Egypt" Arabic .masr) : EG
+// http://www.dotmasr.eg/
+مصر
+
+// xn--node ("ge" Georgian (Mkhedruli)) : GE
+გე
+
+// xn--j6w193g ("Hong Kong" Chinese-Han) : HK
+// https://www2.hkirc.hk/register/rules.jsp
+香港
+
+// xn--h2brj9c ("Bharat" Devanagari) : IN
+// India
+भारत
+
+// xn--mgbbh1a71e ("Bharat" Arabic) : IN
+// India
+بھارت
+
+// xn--fpcrj9c3d ("Bharat" Telugu) : IN
+// India
+భారత్
+
+// xn--gecrj9c ("Bharat" Gujarati) : IN
+// India
+ભારત
+
+// xn--s9brj9c ("Bharat" Gurmukhi) : IN
+// India
+ਭਾਰਤ
+
+// xn--45brj9c ("Bharat" Bengali) : IN
+// India
+ভারত
+
+// xn--xkc2dl3a5ee0h ("India" Tamil) : IN
+// India
+இந்தியா
+
+// xn--mgba3a4f16a ("Iran" Persian) : IR
+ایران
+
+// xn--mgba3a4fra ("Iran" Arabic) : IR
+ايران
+
+// xn--mgbayh7gpa ("al-Ordon" Arabic) : JO
+// National Information Technology Center (NITC)
+// Royal Scientific Society, Al-Jubeiha
+الاردن
+
+// xn--3e0b707e ("Republic of Korea" Hangul) : KR
+한국
+
+// xn--80ao21a ("Kaz" Kazakh) : KZ
+қаз
+
+// xn--fzc2c9e2c ("Lanka" Sinhalese-Sinhala) : LK
+// http://nic.lk
+ලංකා
+
+// xn--xkc2al3hye2a ("Ilangai" Tamil) : LK
+// http://nic.lk
+இலங்கை
+
+// xn--mgbc0a9azcg ("Morocco / al-Maghrib" Arabic) : MA
+المغرب
+
+// xn--l1acc ("mon" Mongolian) : MN
+мон
+
+// xn--mgbx4cd0ab ("Malaysia" Malay) : MY
+مليسيا
+
+// xn--mgb9awbf ("Oman" Arabic) : OM
+عمان
+
+// xn--ygbi2ammx ("Falasteen" Arabic) : PS
+// The Palestinian National Internet Naming Authority (PNINA)
+// http://www.pnina.ps
+فلسطين
+
+// xn--90a3ac ("srb" Cyrillic) : RS
+// http://www.rnids.rs/en/the-.срб-domain
+срб
+пр.срб
+орг.срб
+обр.срб
+од.срб
+упр.срб
+ак.срб
+
+// xn--p1ai ("rf" Russian-Cyrillic) : RU
+// http://www.cctld.ru/en/docs/rulesrf.php
+рф
+
+// xn--wgbl6a ("Qatar" Arabic) : QA
+// http://www.ict.gov.qa/
+قطر
+
+// xn--mgberp4a5d4ar ("AlSaudiah" Arabic) : SA
+// http://www.nic.net.sa/
+السعودية
+
+// xn--mgberp4a5d4a87g ("AlSaudiah" Arabic) variant : SA
+السعودیة
+
+// xn--mgbqly7c0a67fbc ("AlSaudiah" Arabic) variant : SA
+السعودیۃ
+
+// xn--mgbqly7cvafr ("AlSaudiah" Arabic) variant : SA
+السعوديه
+
+// xn--ogbpf8fl ("Syria" Arabic) : SY
+سورية
+
+// xn--mgbtf8fl ("Syria" Arabic) variant : SY
+سوريا
+
+// xn--yfro4i67o Singapore ("Singapore" Chinese-Han) : SG
+新加坡
+
+// xn--clchc0ea0b2g2a9gcd ("Singapore" Tamil) : SG
+சிங்கப்பூர்
+
+// xn--o3cw4h ("Thai" Thai) : TH
+// http://www.thnic.co.th
+ไทย
+
+// xn--pgbs0dh ("Tunis") : TN
+// http://nic.tn
+تونس
+
+// xn--kpry57d ("Taiwan" Chinese-Han-Traditional) : TW
+// http://www.twnic.net/english/dn/dn_07a.htm
+台灣
+
+// xn--kprw13d ("Taiwan" Chinese-Han-Simplified) : TW
+// http://www.twnic.net/english/dn/dn_07a.htm
+台湾
+
+// xn--nnx388a ("Taiwan") variant : TW
+臺灣
+
+// xn--j1amh ("ukr" Cyrillic) : UA
+укр
+
+// xn--mgb2ddes ("AlYemen" Arabic) : YE
+اليمن
+
+// xxx : http://icmregistry.com
+xxx
+
+// ye : http://www.y.net.ye/services/domain_name.htm
+*.ye
+
+// za : http://www.zadna.org.za/slds.html
+*.za
+
+// zm : http://en.wikipedia.org/wiki/.zm
+*.zm
+
+// zw : http://en.wikipedia.org/wiki/.zw
+*.zw
+
+
+// xn--80asehdb : 2013-07-14 CORE Association
+онлайн
+
+// xn--80aswg : 2013-07-14 CORE Association
+сайт
+
+// xn--ngbc5azd : 2013-07-14 International Domain Registry Pty. Ltd.
+شبكة
+
+// xn--unup4y : 2013-07-14 Spring Fields, LLC
+游戏
+
+// xn--vhquv : 2013-08-28 Dash McCook, LLC
+企业
+
+// camera : 2013-08-28 Atomic Maple, LLC
+camera
+
+// clothing : 2013-08-28 Steel Lake, LLC
+clothing
+
+// lighting : 2013-08-28 John McCook, LLC
+lighting
+
+// singles : 2013-08-28 Fern Madison, LLC
+singles
+
+// ventures : 2013-08-28 Binky Lake, LLC
+ventures
+
+// voyage : 2013-08-28 Ruby House, LLC
+voyage
+
+// guru : 2013-08-28 Pioneer Cypress, LLC
+guru
+
+// holdings : 2013-08-28 John Madison, LLC
+holdings
+
+// equipment : 2013-08-28 Corn Station, LLC
+equipment
+
+// bike : 2013-08-28 Grand Hollow, LLC
+bike
+
+// estate : 2013-08-28 Trixy Park, LLC
+estate
+
+// tattoo : 2013-08-30 Uniregistry,Corp.
+tattoo
+
+// xn--3ds443g : 2013-09-09 TLD Registry Limited
+在线
+
+// xn--fiq228c5hs : 2013-09-09 TLD Registry Limited
+中文网
+
+// land : 2013-09-10 Pine Moon, LLC
+land
+
+// plumbing : 2013-09-10 Spring Tigers, LLC
+plumbing
+
+// contractors : 2013-09-10 Magic Woods, LLC
+contractors
+
+// sexy : 2013-09-11 Uniregistry,Corp.
+sexy
+
+// menu : 2013-09-11 Wedding TLD2, LLC
+menu
+
+// xn--rhqv96g : 2013-09-11 Stable Tone Limited
+世界
+
+// uno : 2013-09-11 Dot Latin, LLC
+uno
+
+// gallery : 2013-09-13 Sugar House, LLC
+gallery
+
+// technology : 2013-09-13 Auburn Falls
+technology
+
+// xn--3bst00m : 2013-09-13 Eagle Horizon Limited
+集团
+
+// reviews : 2013-09-13 Extra Cover, LLC
+reviews
+
+// guide : 2013-09-13 Snow Moon, LLC
+guide
+
+// xn--6qq986b3x1 : 2013-09-13 Tycoon Treasure Limited
+我爱你
+
+// graphics : 2013-09-13 Over Madison, LLC
+graphics
+
+// construction : 2013-09-13 Fox Dynamite, LLC
+construction
+
+// onl : 2013-09-16 I-Registry Ltd.
+onl
+
+// xn--q9jyb4c : 2013-09-17 Charleston Road Registry
+みんな
+
+// diamonds : 2013-09-23 John Edge, LLC
+diamonds
+
+// kiwi : 2013-09-23 Dot Kiwi Limited
+kiwi
+
+// enterprises : 2013-09-23 Snow Oaks LLC
+enterprises
+
+// today : 2013-09-23 Pearl Woods, LLC
+today
+
+// futbol : 2013-09-23 Atomic Falls, LLC
+futbol
+
+// photography : 2013-09-23 Sugar Glen, LLC
+photography
+
+// tips : 2013-09-23 Corn Willow, LLC
+tips
+
+// directory : 2013-09-23 Extra Madison, LLC
+directory
+
+// kitchen : 2013-09-23 Just Goodbye, LLC
+kitchen
+
+// xn--6frz82g : 2013-09-24 Afilias Limited
+移动
+
+// kim : 2013-09-24 Afilias Limited
+kim
+
+// xn--cg4bki : 2013-09-27 Samsung SDS Co., LTD
+삼성
+
+// monash : 2013-10-01 Monash University
+monash
+
+// wed : 2013-10-02 Atgron, Inc.
+wed
+
+// pink : 2013-10-02 Afilias Limited
+pink
+
+// ruhr : 2013-10-02 regiodot GmbH & Co. KG
+ruhr
+
+// buzz : 2013-10-03 DOTSTRATEGY CO.
+buzz
+
+// careers : 2013-10-03 Wild Corner, LLC
+careers
+
+// shoes : 2013-10-03 Binky Galley, LLC
+shoes
+
+// xn--4gbrim : 2013-10-07 Suhub Electronic Establishment
+موقع
+
+// career : 2013-10-09 dotCareer, LLC
+career
+
+// otsuka : 2013-10-11 Otsuka Holdings Co. Ltd.
+otsuka
+
+// xn--fiQ64b : 2013-10-14 CITIC Group Corporation
+中信
+
+// gift : 2013-10-18 Uniregistry Corp.
+gift
+
+// recipes : 2013-10-18 Grand Island, LLC
+recipes
+
+// coffee : 2013-10-18 Trixy Cover, LLC
+coffee
+
+// luxury : 2013-10-18 Luxury Partners, LLC
+luxury
+
+// domains : 2013-10-18 Sugar Cross, LLC
+domains
+
+// photos : 2013-10-18 Sea Corner, LLC
+photos
+
+// limo : 2013-10-18 Hidden Frostbite, LLC
+limo
+
+// viajes : 2013-10-18 Black Madison, LLC
+viajes
+
+// wang : 2013-10-24 Zodiac Leo Limited
+wang
+
+// democrat : 2013-10-24 United TLD Holdco Ltd.
+democrat
+
+// mango : 2013-10-25 PUNTO FA S.L.
+mango
+
+// cab : 2013-10-25 Half Sunset, LLC
+cab
+
+// support : 2013-10-25 Grand Orchard, LLC
+support
+
+// dance : 2013-10-25 United TLD Holdco Ltd.
+dance
+
+// nagoya : 2013-10-25 GMO Registry, Inc.
+nagoya
+
+// computer : 2013-10-25 Pine Mill, LLC
+computer
+
+// wien : 2013-10-28 punkt.wien GmbH
+wien
+
+// berlin : 2013-10-31 dotBERLIN GmbH & Co. KG
+berlin
+
+// codes : 2013-10-31 Puff Willow, LLC
+codes
+
+// email : 2013-10-31 Spring Madison, LLC
+email
+
+// xn--mgbab2bd : 2013-10-31 CORE Association
+بازار
+
+// repair : 2013-11-07 Lone Sunset, LLC
+repair
+
+// holiday : 2013-11-07 Goose Woods, LLC
+holiday
+
+// center : 2013-11-07 Tin Mill, LLC
+center
+
+// systems : 2013-11-07 Dash Cypress, LLC
+systems
+
+// wiki : 2013-11-07 Top Level Design, LLC
+wiki
+
+// ceo : 2013-11-07 CEOTLD Pty Ltd
+ceo
+
+// international : 2013-11-07 Wild Way, LLC
+international
+
+// solar : 2013-11-07 Ruby Town, LLC
+solar
+
+// company : 2013-11-07 Silver Avenue, LLC
+company
+
+// education : 2013-11-07 Brice Way, LLC
+education
+
+// training : 2013-11-07 Wild Willow, LLC
+training
+
+// academy : 2013-11-07 Half Oaks, LLC
+academy
+
+// marketing : 2013-11-07 Fern Pass, LLC
+marketing
+
+// florist : 2013-11-08 Half Cypress, LLC
+florist
+
+// solutions : 2013-11-07 Silver Cover, LLC
+solutions
+
+// build : 2013-11-07 Plan Bee LLC
+build
+
+// institute : 2013-11-07 Outer Maple, LLC
+institute
+
+// builders : 2013-11-07 Atomic Madison, LLC
+builders
+
+// red : 2013-11-07 Afilias Limited
+red
+
+// blue : 2013-11-07 Afilias Limited
+blue
+
+// ninja : 2013-11-07 United TLD Holdco Ltd.
+ninja
+
+// business : 2013-11-07 Spring Cross, LLC
+business
+
+// gal : 2013-11-07 Asociación puntoGAL
+gal
+
+// social : 2013-11-07 United TLD Holdco Ltd.
+social
+
+// house : 2013-11-07 Sugar Park, LLC
+house
+
+// camp : 2013-11-07 Delta Dynamite, LLC
+camp
+
+// immobilien : 2013-11-07 United TLD Holdco Ltd.
+immobilien
+
+// moda : 2013-11-07 United TLD Holdco Ltd.
+moda
+
+// glass : 2013-11-07 Black Cover, LLC
+glass
+
+// management : 2013-11-07 John Goodbye, LLC
+management
+
+// kaufen : 2013-11-07 United TLD Holdco Ltd.
+kaufen
+
+// farm : 2013-11-07 Just Maple, LLC
+farm
+
+// xn--55qw42g : 2013-11-08 China Organizational Name Administration Center
+公益
+
+// xn--zfr164b : 2013-11-08 China Organizational Name Administration Center
+政务
+
+// club : 2013-11-08 .CLUB DOMAINS, LLC
+club
+
+// voting : 2013-11-13 Valuetainment Corp.
+voting
+
+// TOKYO : 2013-11-13 GMO Registry, Inc.
+tokyo
+
+// moe : 2013-11-13 Interlink Co., Ltd.
+moe
+
+// guitars : 2013-11-14 Uniregistry, Corp.
+guitars
+
+// bargains : 2013-11-14 Half Hallow, LLC
+bargains
+
+// xn--nqv7fs00ema : 2013-11-14 Public Interest Registry
+组织机构
+
+// desi : 2013-11-14 Desi Networks LLC
+desi
+
+// cool : 2013-11-14 Koko Lake, LLC
+cool
+
+// boutique : 2013-11-14 Over Galley, LLC
+boutique
+
+// pics : 2013-11-14 Uniregistry, Corp.
+pics
+
+// xn--c1avg : 2013-11-14 Public Interest Registry
+орг
+
+// xn--55qx5d : 2013-11-14 Computer Network Information Center of Chinese Academy of Sciences (China Internet Network Information Center)
+公司
+
+// xn--io0a7i : 2013-11-14 Computer Network Information Center of Chinese Academy of Sciences (China Internet Network Information Center)
+网络
+
+// cheap : 2013-11-14 Sand Cover, LLC
+cheap
+
+// xn--xhq521b : 2013-11-14 Guangzhou YU Wei Information Technology Co., Ltd.
+广东
+
+// photo : 2013-11-14 Uniregistry, Corp.
+photo
+
+// network : 2013-11-14 Trixy Manor, LLC
+network
+
+// zone : 2013-11-14 Outer Falls, LLC
+zone
+
+// xn--nqv7f : 2013-11-14 Public Interest Registry
+机构
+
+// link : 2013-11-14 Uniregistry, Corp.
+link
+
+// QPON : 2013-11-14 dotCOOL, Inc.
+qpon
+
+// xn--i1b6b1a6a2e : 2013-11-14 Public Interest Registry
+संगठन
+
+// agency : 2013-11-14 Steel Falls, LLC
+agency
+
+// tienda : 2013-11-14 Victor Manor, LLC
+tienda
+
+// works : 2013-11-14 Little Dynamite, LLC
+works
+
+// london : 2013-11-14 Dot London Domains Limited
+london
+
+// watch : 2013-11-14 Sand Shadow, LLC
+watch
+
+// rocks : 2013-11-14 Ruby Moon, LLC
+rocks
+
+// SHIKSHA : 2013-11-14 Afilias Limited
+shiksha
+
+// xn--d1acj3b : 2013-11-21 The Foundation for Network Initiatives “The Smart Internet”
+дети
+
+// budapest : 2013-11-21 Top Level Domain Holdings Limited
+budapest
+
+// nrw : 2013-11-21 Minds + Machines GmbH
+nrw
+
+// VOTE : 2013-11-21 Monolith Registry LLC
+vote
+
+// fishing : 2013-11-21 Top Level Domain Holdings Limited
+fishing
+
+// expert : 2013-11-21 Magic Pass, LLC
+expert
+
+// horse : 2013-11-21 Top Level Domain Holdings Limited
+horse
+
+// christmas : 2013-11-21 Uniregistry, Corp.
+christmas
+
+// cooking : 2013-11-21 Top Level Domain Holdings Limited
+cooking
+
+// xn--czru2d : 2013-11-21 Zodiac Capricorn Limited
+商城
+
+// casa : 2013-11-21 Top Level Domain Holdings Limited
+casa
+
+// rich : 2013-11-21 I-REGISTRY Ltd., Niederlassung Deutschland
+rich
+
+// VOTO : 2013-11-21 Monolith Registry LLC
+voto
+
+// tools : 2013-11-21 Pioneer North, LLC
+tools
+
+// xn--45q11c : 2013-11-21 Zodiac Scorpio Limited
+八卦
+
+// praxi : 2013-12-05 Praxi S.p.A.
+praxi
+
+// events : 2013-12-05 Pioneer Maple, LLC
+events
+
+// flights : 2013-12-05 Fox Station, LLC
+flights
+
+// report : 2013-12-05 Binky Glen, LLC
+report
+
+// partners : 2013-12-05 Magic Glen, LLC
+partners
+
+// neustar : 2013-12-05 NeuStar, Inc.
+neustar
+
+// rentals : 2013-12-05 Big Hollow,LLC
+rentals
+
+// catering : 2013-12-05 New Falls. LLC
+catering
+
+// community : 2013-12-05 Fox Orchard, LLC
+community
+
+// maison : 2013-12-05 Victor Frostbite, LLC
+maison
+
+// parts : 2013-12-05 Sea Goodbye, LLC
+parts
+
+// cleaning : 2013-12-05 Fox Shadow, LLC
+cleaning
+
+// okinawa : 2013-12-05 BusinessRalliart inc.
+okinawa
+
+// foundation : 2013-12-05 John Dale, LLC
+foundation
+
+// properties : 2013-12-05 Big Pass, LLC
+properties
+
+// vacations : 2013-12-05 Atomic Tigers, LLC
+vacations
+
+// productions : 2013-12-05 Magic Birch, LLC
+productions
+
+// industries : 2013-12-05 Outer House, LLC
+industries
+
+// haus : 2013-12-05 Pixie Edge, LLC
+haus
+
+// vision : 2013-12-05 Koko Station, LLC
+vision
+
+// mormon : 2013-12-05 IRI Domain Management, LLC (""Applicant"")
+mormon
+
+// cards : 2013-12-05 Foggy Hollow, LLC
+cards
+
+// ink : 2013-12-05 Top Level Design, LLC
+ink
+
+// villas : 2013-12-05 New Sky, LLC
+villas
+
+// consulting : 2013-12-05 Pixie Station, LLC
+consulting
+
+// cruises : 2013-12-05 Spring Way, LLC
+cruises
+
+// krd : 2013-12-05 KRG Department of Information Technology
+krd
+
+// xyz : 2013-12-05 XYZ.COM LLC
+xyz
+
+// dating : 2013-12-05 Pine Fest, LLC
+dating
+
+// exposed : 2013-12-05 Victor Beach, LLC
+exposed
+
+// condos : 2013-12-05 Pine House, LLC
+condos
+
+// eus : 2013-12-12 Puntueus Fundazioa
+eus
+
+// Caravan : 2013-12-12 Caravan International, Inc.
+caravan
+
+// actor : 2013-12-12 United TLD Holdco Ltd.
+actor
+
+// saarland : 2013-12-12 dotSaarland GmbH
+saarland
+
+// yokohama : 2013-12-12 GMO Registry, Inc.
+yokohama
+
+// pub : 2013-12-12 United TLD Holdco Ltd.
+pub
+
+// xn--p1acf : 2013-12-12 Rusnames Limited
+рус
+
+// ren : 2013-12-12 Beijing Qianxiang Wangjing Technology Development Co., Ltd.
+ren
+
+// fish : 2013-12-12 Fox Woods, LLC
+fish
+
+// BAR : 2013-12-12 Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable
+bar
+
+// DNP : 2013-12-13 Dai Nippon Printing Co., Ltd.
+dnp
+
+// bid : 2013-12-19 dot Bid Limited
+bid
+
+// supply : 2013-12-19 Half Falls, LLC
+supply
+
+// Miami : 2013-12-19 Top Level Domain Holdings Limited
+miami
+
+// supplies : 2013-12-19 Atomic Fields, LLC
+supplies
+
+// quebec : 2013-12-19 PointQuébec Inc
+quebec
+
+// MOSCOW : 2013-12-19 Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)
+moscow
+
+// globo : 2013-12-19 Globo Comunicação e Participações S.A
+globo
+
+// AXA : 2013-12-19 AXA SA
+axa
+
+// xn--80adxhks : 2013-12-19 Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)
+москва
+
+// xn--czrs0t : 2013-12-19 Wild Island, LLC
+商店
+
+// vodka : 2013-12-19 Top Level Domain Holdings Limited
+vodka
+
+// REST : 2013-12-19 Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable
+rest
+
+// frogans : 2013-12-19 OP3FT
+frogans
+
+// WTC : 2013-12-19 World Trade Centers Association, Inc.
+wtc
+
+// rodeo : 2013-12-19 Top Level Domain Holdings Limited
+rodeo
+
+// sohu : 2013-12-19 Sohu.com Limited
+sohu
+
+// BEST : 2013-12-19 BestTLD Pty Ltd
+best
+
+// country : 2013-12-19 Top Level Domain Holdings Limited
+country
+
+// KRED : 2013-12-19 KredTLD Pty Ltd
+kred
+
+// feedback : 2013-12-19 Top Level Spectrum, Inc.
+feedback
+
+// work : 2013-12-19 Top Level Domain Holdings Limited
+work
+
+// luxe : 2014-01-09 Top Level Domain Holdings Limited
+luxe
+
+// ryukyu : 2014-01-09 BusinessRalliart inc.
+ryukyu
+
+// autos : 2014-01-09 DERAutos, LLC
+autos
+
+// homes : 2014-01-09 DERHomes, LLC
+homes
+
+// jetzt : 2014-01-09 New TLD Company AB
+jetzt
+
+// yachts : 2014-01-09 DERYachts, LLC
+yachts
+
+// motorcycles : 2014-01-09 DERMotorcycles, LLC
+motorcycles
+
+// mini : 2014-01-09 Bayerische Motoren Werke Aktiengesellschaft
+mini
+
+// ggee : 2014-01-09 GMO Internet, Inc.
+ggee
+
+// beer : 2014-01-09 Top Level Domain Holdings Limited
+beer
+
+// xn--1qqw23a : 2014-01-13 Guangzhou YU Wei Information Technology Co., Ltd.
+佛山
+
+// college : 2014-01-16 XYZ.COM LLC
+college
+
+// ovh : 2014-01-16 OVH SAS
+ovh
+
+// meet : 2014-01-16 Afilias Limited
+meet
+
+// xn--ses554g : 2014-01-16 HU YI GLOBAL INFORMATION RESOURCES (HOLDING) COMPANY. HONGKONG LIMITED
+网址
+
+// gop : 2014-01-16 Republican State Leadership Committee, Inc.
+gop
+
+// blackfriday : 2014-01-16 Uniregistry, Corp.
+blackfriday
+
+// lacaixa : 2014-01-16 CAIXA D'ESTALVIS I PENSIONS DE BARCELONA
+lacaixa
+
+// xn--czr694b : 2014-01-16 HU YI GLOBAL INFORMATION RESOURCES(HOLDING) COMPANY.HONGKONG LIMITED
+商标
+
+// vegas : 2014-01-16 Dot Vegas, Inc.
+vegas
+
+// black : 2014-01-16 Afilias Limited
+black
+
+// soy : 2014-01-23 Charleston Road Registry Inc.
+soy
+
+// trade : 2014-01-23 Elite Registry Limited
+trade
+
+// gent : 2014-01-23 COMBELL GROUP NV/SA
+gent
+
+// ing : 2014-01-23 Charleston Road Registry Inc.
+ing
+
+// dad : 2014-01-23 Charleston Road Registry Inc.
+dad
+
+// shriram : 2014-01-23 Shriram Capital Ltd.
+shriram
+
+// bayern : 2014-01-23 Bayern Connect GmbH
+bayern
+
+// scot : 2014-01-23 Dot Scot Registry Limited
+scot
+
+// webcam : 2014-01-23 dot Webcam Limited
+webcam
+
+// foo : 2014-01-23 Charleston Road Registry Inc.
+foo
+
+// eat : 2014-01-23 Charleston Road Registry Inc.
+eat
+
+// nyc : 2014-01-23 The City of New York
+nyc
+
+// prod : 2014-01-23 Charleston Road Registry Inc.
+prod
+
+// how : 2014-01-23 Charleston Road Registry Inc.
+how
+
+// day : 2014-01-30 Charleston Road Registry Inc.
+day
+
+// meme : 2014-01-30 Charleston Road Registry Inc.
+meme
+
+// mov : 2014-01-30 Charleston Road Registry Inc.
+mov
+
+// paris : 2014-01-30 City of Paris
+paris
+
+// boo : 2014-01-30 Charleston Road Registry Inc.
+boo
+
+// new : 2014-01-30 Charleston Road Registry Inc.
+new
+
+// ifm : 2014-01-30 ifm electronic gmbh
+ifm
+
+// life : 2014-02-06 Trixy Oaks, LLC
+life
+
+// archi : 2014-02-06 STARTING DOT LIMITED
+archi
+
+// spiegel : 2014-02-06 SPIEGEL-Verlag Rudolf Augstein GmbH & Co. KG
+spiegel
+
+// brussels : 2014-02-06 DNS.be vzw
+brussels
+
+// church : 2014-02-06 Holly Fileds, LLC
+church
+
+// here : 2014-02-06 Charleston Road Registry Inc.
+here
+
+// dabur : 2014-02-06 Dabur India Limited
+dabur
+
+// vlaanderen : 2014-02-06 DNS.be vzw
+vlaanderen
+
+// cologne : 2014-02-06 NetCologne Gesellschaft für Telekommunikation mbH
+cologne
+
+// xn--kput3i : 2014-02-13 Beijing RITT-Net Technology Development Co., Ltd
+手机
+
+// wme : 2014-02-13 William Morris Endeavor Entertainment, LLC
+wme
+
+// nhk : 2014-02-13 Japan Broadcasting Corporation (NHK)
+nhk
+
+// suzuki : 2014-02-20 SUZUKI MOTOR CORPORATION
+suzuki
+
+// whoswho : 2014-02-20 Who's Who Registry
+whoswho
+
+// scb : 2014-02-20 The Siam Commercial Bank Public Company Limited ("SCB""\)
+scb
+
+// hamburg : 2014-02-20 Hamburg Top-Level-Domain GmbH
+hamburg
+
+// services : 2014-02-27 Fox Castle, LLC
+services
+
+// bzh : 2014-02-27 Association www.bzh
+bzh
+
+// rio : 2014-02-27 Empresa Municipal de Informática SA - IPLANRIO
+rio
+
+// cash : 2014-03-07 Delta Lake, LLC
+cash
+
+// gives : 2014-03-07 United TLD Holdco Ltd.
+gives
+
+// hiphop : 2014-03-07 Uniregistry, Corp.
+hiphop
+
+// degree : 2014-03-07 Puff House, LLC
+degree
+
+// digital : 2014-03-07 Dash Park, LLC
+digital
+
+// rehab : 2014-03-07 United TLD Holdco Ltd.
+rehab
+
+// wtf : 2014-03-07 Hidden Way, LLC
+wtf
+
+// financial : 2014-03-07 Just Cover, LLC
+financial
+
+// limited : 2014-03-07 Big Fest, LLC
+limited
+
+// discount : 2014-03-07 Holly Hill, LLC
+discount
+
+// fail : 2014-03-07 Atomic Pipe, LLC
+fail
+
+// vet : 2014-03-07 Wild Dale, LLC
+vet
+
+// ngo : 2014-03-07 Public Interest Registry
+ngo
+
+// fitness : 2014-03-07 Brice Orchard, LLC
+fitness
+
+// schule : 2014-03-07 Outer Moon, LLC
+schule
+
+// navy : 2014-03-07 United TLD Holdco Ltd.
+navy
+
+// bio : 2014-03-07 STARTING DOT LIMITED
+bio
+
+// ong : 2014-03-07 Public Interest Registry
+ong
+
+// town : 2014-03-07 Koko Moon, LLC
+town
+
+// toys : 2014-03-07 Pioneer Orchard, LLC
+toys
+
+// army : 2014-03-07 United TLD Holdco Ltd.
+army
+
+// engineering : 2014-03-07 Romeo Canyon
+engineering
+
+// capital : 2014-03-07 Delta Mill, LLC
+capital
+
+// exchange : 2014-03-07 Spring Falls, LLC
+exchange
+
+// fan : 2014-03-07 Goose Glen, LLC
+fan
+
+// market : 2014-03-07 Victor Way, LLC
+market
+
+// media : 2014-03-07 Grand Glen, LLC
+media
+
+// lease : 2014-03-07 Victor Trail, LLC
+lease
+
+// university : 2014-03-07 Little Station, LLC
+university
+
+// reisen : 2014-03-07 New Cypress, LLC
+reisen
+
+// airforce : 2014-03-07 United TLD Holdco Ltd.
+airforce
+
+// pictures : 2014-03-07 Foggy Sky, LLC
+pictures
+
+// gripe : 2014-03-07 Corn Sunset, LLC
+gripe
-// uy : http://www.nic.org.uy/
-uy
-com.uy
-edu.uy
-gub.uy
-mil.uy
-net.uy
-org.uy
+// engineering : 2014-03-07 United TLD Holdco Ltd.
+engineering
-// uz : http://www.reg.uz/
-uz
-co.uz
-com.uz
-net.uz
-org.uz
+// associates : 2014-03-07 Baxter Hill, LLC
+associates
-// va : http://en.wikipedia.org/wiki/.va
-va
+// xn--mxtq1m : 2014-03-07 Net-Chinese Co., Ltd.
+政府
-// vc : http://en.wikipedia.org/wiki/.vc
-// Submitted by registry <kshah(a)ca.afilias.info> 2008-06-13
-vc
-com.vc
-net.vc
-org.vc
-gov.vc
-mil.vc
-edu.vc
+// williamhill : 2014-03-13 William Hill Organization Limited
+williamhill
-// ve : https://registro.nic.ve/
-// Confirmed by registry 2012-10-04
-ve
-co.ve
-com.ve
-e12.ve
-edu.ve
-gov.ve
-info.ve
-mil.ve
-net.ve
-org.ve
-web.ve
+// hiv : 2014-03-13 dotHIV gemeinnuetziger e.V.
+hiv
-// vg : http://en.wikipedia.org/wiki/.vg
-vg
+// sca : 2014-03-13 SVENSKA CELLULOSA AKTIEBOLAGET SCA (publ)
+sca
-// vi : http://www.nic.vi/newdomainform.htm
-// http://www.nic.vi/Domain_Rules/body_domain_rules.html indicates some other
-// TLDs are "reserved", such as edu.vi and gov.vi, but doesn't actually say they
-// are available for registration (which they do not seem to be).
-vi
-co.vi
-com.vi
-k12.vi
-net.vi
-org.vi
+// reise : 2014-03-13 dotreise GmbH
+reise
-// vn : https://www.dot.vn/vnnic/vnnic/domainregistration.jsp
-vn
-com.vn
-net.vn
-org.vn
-edu.vn
-gov.vn
-int.vn
-ac.vn
-biz.vn
-info.vn
-name.vn
-pro.vn
-health.vn
+// accountants : 2014-03-20 Knob Town, LLC
+accountants
-// vu : http://en.wikipedia.org/wiki/.vu
-// list of 2nd level tlds ?
-vu
+// clinic : 2014-03-20 Goose Park, LLC
+clinic
-// wf : http://www.afnic.fr/medias/documents/AFNIC-naming-policy2012.pdf
-wf
+// versicherung : 2014-03-20 dotversicherung-registry GmbH
+versicherung
-// ws : http://en.wikipedia.org/wiki/.ws
-// http://samoanic.ws/index.dhtml
-ws
-com.ws
-net.ws
-org.ws
-gov.ws
-edu.ws
+// top : 2014-03-20 Jiangsu Bangning Science & Technology Co.,Ltd.
+top
-// yt : http://www.afnic.fr/medias/documents/AFNIC-naming-policy2012.pdf
-yt
+// furniture : 2014-03-20 Lone Fields, LLC
+furniture
-// IDN ccTLDs
-// Please sort by ISO 3166 ccTLD, then punicode string
-// when submitting patches and follow this format:
-// <Punicode> ("<english word>" <language>) : <ISO 3166 ccTLD>
-// [optional sponsoring org]
-// <URL>
+// dental : 2014-03-20 Tin Birch, LLC
+dental
-// xn--mgbaam7a8h ("Emerat" Arabic) : AE
-// http://nic.ae/english/arabicdomain/rules.jsp
-امارات
+// fund : 2014-03-20 John Castle, LLC
+fund
-// xn--54b7fta0cc ("Bangla" Bangla) : BD
-বাংলা
+// creditcard : 2014-03-20 Binky Frostbite, LLC
+creditcard
-// xn--fiqs8s ("China" Chinese-Han-Simplified <.Zhonggou>) : CN
-// CNNIC
-// http://cnnic.cn/html/Dir/2005/10/11/3218.htm
-中国
+// insure : 2014-03-20 Pioneer Willow, LLC
+insure
-// xn--fiqz9s ("China" Chinese-Han-Traditional <.Zhonggou>) : CN
-// CNNIC
-// http://cnnic.cn/html/Dir/2005/10/11/3218.htm
-中國
+// audio : 2014-03-20 Uniregistry, Corp.
+audio
-// xn--lgbbat1ad8j ("Algeria / Al Jazair" Arabic) : DZ
-الجزائر
+// claims : 2014-03-20 Black Corner, LLC
+claims
-// xn--wgbh1c ("Egypt" Arabic .masr) : EG
-// http://www.dotmasr.eg/
-مصر
+// loans : 2014-03-20 June Woods, LLC
+loans
-// xn--node ("ge" Georgian (Mkhedruli)) : GE
-გე
+// auction : 2014-03-20 Sand Galley, LLC
+auction
-// xn--j6w193g ("Hong Kong" Chinese-Han) : HK
-// https://www2.hkirc.hk/register/rules.jsp
-香港
+// attorney : 2014-03-20 Victor North, LLC
+attorney
-// xn--h2brj9c ("Bharat" Devanagari) : IN
-// India
-भारत
+// finance : 2014-03-20 Cotton Cypress, LLC
+finance
-// xn--mgbbh1a71e ("Bharat" Arabic) : IN
-// India
-بھارت
+// investments : 2014-03-20 Holly Glen, LLC
+investments
-// xn--fpcrj9c3d ("Bharat" Telugu) : IN
-// India
-భారత్
+// juegos : 2014-03-20 Uniregistry, Corp.
+juegos
-// xn--gecrj9c ("Bharat" Gujarati) : IN
-// India
-ભારત
+// dentist : 2014-03-20 Outer Lake, LLC
+dentist
-// xn--s9brj9c ("Bharat" Gurmukhi) : IN
-// India
-ਭਾਰਤ
+// lds : 2014-03-20 IRI Domain Management, LLC
+lds
-// xn--45brj9c ("Bharat" Bengali) : IN
-// India
-ভারত
+// lawyer : 2014-03-20 Atomic Station, LLC
+lawyer
-// xn--xkc2dl3a5ee0h ("India" Tamil) : IN
-// India
-இந்தியா
+// surgery : 2014-03-20 Tin Avenue, LLC
+surgery
-// xn--mgba3a4f16a ("Iran" Persian) : IR
-ایران
+// gratis : 2014-03-20 Pioneer Tigers, LLC
+gratis
-// xn--mgba3a4fra ("Iran" Arabic) : IR
-ايران
+// software : 2014-03-20 Over Birch, LLC
+software
-// xn--mgbayh7gpa ("al-Ordon" Arabic) : JO
-// National Information Technology Center (NITC)
-// Royal Scientific Society, Al-Jubeiha
-الاردن
+// mortgage : 2014-03-20 Outer Gardens, LLC
+mortgage
-// xn--3e0b707e ("Republic of Korea" Hangul) : KR
-한국
+// republican : 2014-03-20 United TLD Holdco Ltd.
+republican
-// xn--fzc2c9e2c ("Lanka" Sinhalese-Sinhala) : LK
-// http://nic.lk
-ලංකා
+// credit : 2014-03-20 Snow Shadow, LLC
+credit
-// xn--xkc2al3hye2a ("Ilangai" Tamil) : LK
-// http://nic.lk
-இலங்கை
+// tax : 2014-03-20 Storm Orchard, LLC
+tax
-// xn--mgbc0a9azcg ("Morocco / al-Maghrib" Arabic) : MA
-المغرب
+// africa : 2014-03-24 ZA Central Registry NPC trading as Registry.Africa
+africa
-// xn--mgb9awbf ("Oman" Arabic) : OM
-عمان
+// joburg : 2014-03-24 ZA Central Registry NPC trading as ZA Central Registry
+joburg
-// xn--ygbi2ammx ("Falasteen" Arabic) : PS
-// The Palestinian National Internet Naming Authority (PNINA)
-// http://www.pnina.ps
-فلسطين
+// durban : 2014-03-24 ZA Central Registry NPC trading as ZA Central Registry
+durban
-// xn--90a3ac ("srb" Cyrillic) : RS
-срб
+// capetown : 2014-03-24 ZA Central Registry NPC trading as ZA Central Registry
+capetown
-// xn--p1ai ("rf" Russian-Cyrillic) : RU
-// http://www.cctld.ru/en/docs/rulesrf.php
-рф
+// sap : 2014-03-27 SAP AG
+sap
-// xn--wgbl6a ("Qatar" Arabic) : QA
-// http://www.ict.gov.qa/
-قطر
+// datsun : 2014-03-27 NISSAN MOTOR CO., LTD.
+datsun
-// xn--mgberp4a5d4ar ("AlSaudiah" Arabic) : SA
-// http://www.nic.net.sa/
-السعودية
+// infiniti : 2014-03-27 NISSAN MOTOR CO., LTD.
+infiniti
-// xn--mgberp4a5d4a87g ("AlSaudiah" Arabic) variant : SA
-السعودیة
+// firmdale : 2014-03-27 Firmdale Holdings Limited
+firmdale
-// xn--mgbqly7c0a67fbc ("AlSaudiah" Arabic) variant : SA
-السعودیۃ
+// organic : 2014-03-27 Afilias Limited
+organic
-// xn--mgbqly7cvafr ("AlSaudiah" Arabic) variant : SA
-السعوديه
+// nissan : 2014-03-27 NISSAN MOTOR CO., LTD.
+nissan
-// xn--ogbpf8fl ("Syria" Arabic) : SY
-سورية
+// website : 2014-04-03 DotWebsite Inc.
+website
-// xn--mgbtf8fl ("Syria" Arabic) variant : SY
-سوريا
+// space : 2014-04-03 DotSpace Inc.
+space
-// xn--yfro4i67o Singapore ("Singapore" Chinese-Han) : SG
-新加坡
+// schmidt : 2014-04-03 SALM S.A.S.
+schmidt
-// xn--clchc0ea0b2g2a9gcd ("Singapore" Tamil) : SG
-சிங்கப்பூர்
+// cuisinella : 2014-04-03 SALM S.A.S.
+cuisinella
-// xn--o3cw4h ("Thai" Thai) : TH
-// http://www.thnic.co.th
-ไทย
+// samsung : 2014-04-03 SAMSUNG SDS CO., LTD
+samsung
-// xn--pgbs0dh ("Tunis") : TN
-// http://nic.tn
-تونس
+// crs : 2014-04-03 Federated Co operatives Limited
+crs
-// xn--kpry57d ("Taiwan" Chinese-Han-Traditional) : TW
-// http://www.twnic.net/english/dn/dn_07a.htm
-台灣
+// doosan : 2014-04-03 Doosan Corporation
+doosan
-// xn--kprw13d ("Taiwan" Chinese-Han-Simplified) : TW
-// http://www.twnic.net/english/dn/dn_07a.htm
-台湾
+// press : 2014-04-03 DotPress Inc.
+press
-// xn--nnx388a ("Taiwan") variant : TW
-臺灣
+// emerck : 2014-04-03 Merck KGaA
+emerck
-// xn--j1amh ("ukr" Cyrillic) : UA
-укр
+// erni : 2014-04-03 ERNI Group Holding AG
+erni
-// xn--mgb2ddes ("AlYemen" Arabic) : YE
-اليمن
+// direct : 2014-04-10 Half Trail, LLC
+direct
-// xxx : http://icmregistry.com
-xxx
+// yandex : 2014-04-10 YANDEX, LLC
+yandex
-// ye : http://www.y.net.ye/services/domain_name.htm
-*.ye
+// lotto : 2014-04-10 Afilias Limited
+lotto
-// za : http://www.zadna.org.za/slds.html
-*.za
+// toshiba : 2014-04-10 TOSHIBA Corporation
+toshiba
-// zm : http://en.wikipedia.org/wiki/.zm
-*.zm
+// bauhaus : 2014-04-17 Werkhaus GmbH
+bauhaus
-// zw : http://en.wikipedia.org/wiki/.zw
-*.zw
+// host : 2014-04-17 DotHost Inc.
+host
+
+// ltda : 2014-04-17 DOMAIN ROBOT SERVICOS DE HOSPEDAGEM NA INTERNET LTDA
+ltda
+
+// global : 2014-04-17 Dot GLOBAL AS
+global
+
+// abogado : 2014-04-24 Top Level Domain Holdings Limited
+abogado
+
+// place : 2014-04-24 Snow Galley, LLC
+place
+
+// tirol : 2014-04-24 punkt Tirol GmbH
+tirol
+
+// gmx : 2014-04-24 1&1 Mail & Media GmbH
+gmx
+
+// tatar : 2014-04-24 Limited Liability Company "Coordination Center of Regional Domain of Tatarstan Republic"
+tatar
+
+// scholarships : 2014-04-24 Scholarships.com, LLC
+scholarships
+
+// eurovision : 2014-04-24 European Broadcasting Union (EBU)
+eurovision
+
+// wedding : 2014-04-24 Top Level Domain Holdings Limited
+wedding
+
+// active : 2014-05-01 The Active Network, Inc
+active
+
+// madrid : 2014-05-01 Comunidad de Madrid
+madrid
+
+// youtube : 2014-05-01 Charleston Road Registry Inc.
+youtube
+
+// sharp : 2014-05-01 Sharp Corporation
+sharp
+
+// uol : 2014-05-01 UBN INTERNET LTDA.
+uol
+
+// physio : 2014-05-01 PhysBiz Pty Ltd
+physio
+
+// gmail : 2014-05-01 Charleston Road Registry Inc.
+gmail
+
+// channel : 2014-05-08 Charleston Road Registry Inc.
+channel
+
+// fly : 2014-05-08 Charleston Road Registry Inc.
+fly
+
+// zip : 2014-05-08 Charleston Road Registry Inc.
+zip
+
+// esq : 2014-05-08 Charleston Road Registry Inc.
+esq
+
+// rsvp : 2014-05-08 Charleston Road Registry Inc.
+rsvp
+
+// wales : 2014-05-08 Nominet UK
+wales
+
+// cymru : 2014-05-08 Nominet UK
+cymru
+
+// green : 2014-05-08 Afilias Limited
+green
+
+// lgbt : 2014-05-08 Afilias Limited
+lgbt
+
+// xn--hxt814e : 2014-05-15 Zodiac Libra Limited
+网店
+
+// cancerresearch : 2014-05-15 Australian Cancer Research Foundation
+cancerresearch
+
+// everbank : 2014-05-15 EverBank
+everbank
+
+// frl : 2014-05-15 FRLregistry B.V.
+frl
+
+// property : 2014-05-22 Uniregistry, Corp.
+property
+
+// forsale : 2014-05-22 Sea Oaks, LLC
+forsale
+
+// seat : 2014-05-22 SEAT, S.A. (Sociedad Unipersonal)
+seat
+
+// deals : 2014-05-22 Sand Sunset, LLC
+deals
+
+// nra : 2014-05-22 NRA Holdings Company, INC.
+nra
+
+// xn--fjq720a : 2014-05-22 Will Bloom, LLC
+娱乐
+
+// realtor : 2014-05-29 Real Estate Domains LLC
+realtor
+
+// bnpparibas : 2014-05-29 BNP Paribas
+bnpparibas
+
+// melbourne : 2014-05-29 The Crown in right of the State of Victoria, represented by its Department of State Development, Business and Innovation
+melbourne
+
+// hosting : 2014-05-29 Uniregistry, Corp.
+hosting
+
+// yoga : 2014-05-29 Top Level Domain Holdings Limited
+yoga
+
+// city : 2014-05-29 Snow Sky, LLC
+city
+
+// bond : 2014-06-05 Bond University Limited
+bond
+
+// click : 2014-06-05 Uniregistry, Corp.
+click
+
+// cern : 2014-06-05 European Organization for Nuclear Research ("CERN")
+cern
// ===END ICANN DOMAINS===
// ===BEGIN PRIVATE DOMAINS===
// Amazon CloudFront : https://aws.amazon.com/cloudfront/
-// Requested by Donavan Miller <donavanm(a)amazon.com> 2013-03-22
+// Submitted by Donavan Miller <donavanm(a)amazon.com> 2013-03-22
cloudfront.net
// Amazon Elastic Compute Cloud: https://aws.amazon.com/ec2/
-// Requested by Osman Surkatty <osmans(a)amazon.com> 2013-04-02
-compute.amazonaws.com
-us-east-1.amazonaws.com
-compute-1.amazonaws.com
-z-1.compute-1.amazonaws.com
-z-2.compute-1.amazonaws.com
+// Submitted by Osman Surkatty <osmans(a)amazon.com> 2014-05-20
ap-northeast-1.compute.amazonaws.com
ap-southeast-1.compute.amazonaws.com
ap-southeast-2.compute.amazonaws.com
+cn-north-1.compute.amazonaws.cn
+compute.amazonaws.cn
+compute.amazonaws.com
+compute-1.amazonaws.com
eu-west-1.compute.amazonaws.com
sa-east-1.compute.amazonaws.com
+us-east-1.amazonaws.com
us-gov-west-1.compute.amazonaws.com
us-west-1.compute.amazonaws.com
us-west-2.compute.amazonaws.com
+z-1.compute-1.amazonaws.com
+z-2.compute-1.amazonaws.com
-// Amazon Elastic Beanstalk : https://aws.amazon.com/elasticbeanstalk/
-// Requested by Adam Stein <astein(a)amazon.com> 2013-04-02
+// Amazon Elastic Beanstalk : https://aws.amazon.com/elasticbeanstalk/
+// Submitted by Adam Stein <astein(a)amazon.com> 2013-04-02
elasticbeanstalk.com
// Amazon Elastic Load Balancing : https://aws.amazon.com/elasticloadbalancing/
-// Requested by Scott Vidmar <svidmar(a)amazon.com> 2013-03-27
+// Submitted by Scott Vidmar <svidmar(a)amazon.com> 2013-03-27
elb.amazonaws.com
// Amazon S3 : https://aws.amazon.com/s3/
-// Requested by Courtney Eckhardt <coec(a)amazon.com> 2013-03-22
+// Submitted by Courtney Eckhardt <coec(a)amazon.com> 2013-03-22
s3.amazonaws.com
s3-us-west-2.amazonaws.com
s3-us-west-1.amazonaws.com
@@ -6608,26 +8051,27 @@ s3-website-sa-east-1.amazonaws.com
s3-website-us-gov-west-1.amazonaws.com
// BetaInABox
-// Requested by adrian(a)betainabox.com 2012-09-13
+// Submitted by adrian(a)betainabox.com 2012-09-13
betainabox.com
// CentralNic : http://www.centralnic.com/names/domains
-// Requested by registry <gavin.brown(a)centralnic.com> 2012-09-27
+// Submitted by registry <gavin.brown(a)centralnic.com> 2012-09-27
ae.org
ar.com
br.com
cn.com
com.de
+com.se
de.com
eu.com
gb.com
gb.net
-gr.com
hu.com
hu.net
jp.net
jpn.com
kr.com
+mex.com
no.com
qc.com
ru.com
@@ -6637,13 +8081,38 @@ se.net
uk.com
uk.net
us.com
-us.org
uy.com
+za.bz
za.com
+// Africa.com Web Solutions Ltd : https://registry.africa.com
+// Submitted by Gavin Brown <gavin.brown(a)centralnic.com> 2014-02-04
+africa.com
+
+// iDOT Services Limited : http://www.domain.gr.com
+// Submitted by Gavin Brown <gavin.brown(a)centralnic.com> 2014-02-04
+gr.com
+
+// Radix FZC : http://domains.in.net
+// Submitted by Gavin Brown <gavin.brown(a)centralnic.com> 2014-02-04
+in.net
+
+// US REGISTRY LLC : http://us.org
+// Submitted by Gavin Brown <gavin.brown(a)centralnic.com> 2014-02-04
+us.org
+
+// co.com Registry, LLC : https://registry.co.com
+// Submitted by Gavin Brown <gavin.brown(a)centralnic.com> 2014-02-04
+co.com
+
// c.la : http://www.c.la/
c.la
+// cloudControl : https://www.cloudcontrol.com/
+// Submitted by Tobias Wilken <tw(a)cloudcontrol.com> 2013-07-23
+cloudcontrolled.com
+cloudcontrolapp.com
+
// co.ca : http://registry.co.ca/
co.ca
@@ -6651,8 +8120,12 @@ co.ca
co.nl
co.no
+// Cupcake : https://cupcake.io/
+// Submitted by Jonathan Rudenberg <jonathan(a)cupcake.io> 2013-10-08
+cupcake.is
+
// DreamHost : http://www.dreamhost.com/
-// Requested by Andrew Farmer <andrew.farmer(a)dreamhost.com> 2012-10-02
+// Submitted by Andrew Farmer <andrew.farmer(a)dreamhost.com> 2012-10-02
dreamhosters.com
// DynDNS.com : http://www.dyndns.com/services/dns/dyndns/
@@ -6936,12 +8409,29 @@ webhop.org
worse-than.tv
writesthisblog.com
+// Fastly Inc. http://www.fastly.com/
+// Submitted by Vladimir Vuksan <vladimir(a)fastly.com> 2013-05-31
+a.ssl.fastly.net
+b.ssl.fastly.net
+global.ssl.fastly.net
+a.prod.fastly.net
+global.prod.fastly.net
+
+// Firebase, Inc.
+// Submitted by Chris Raynor <chris(a)firebase.com> 2014-01-21
+firebaseapp.com
+
// GitHub, Inc.
-// Requested by Ben Toews <btoews(a)github.com> 2013-04-18
+// Submitted by Ben Toews <btoews(a)github.com> 2014-02-06
github.io
+githubusercontent.com
+
+// GlobeHosting, Inc.
+// Submitted by Zoltan Egresi <egresi(a)globehosting.com> 2013-07-12
+ro.com
// Google, Inc.
-// Requested by Eduardo Vela <evn(a)google.com> 2012-10-24
+// Submitted by Eduardo Vela <evn(a)google.com> 2012-10-24
appspot.com
blogspot.be
blogspot.bj
@@ -6986,14 +8476,15 @@ blogspot.tw
codespot.com
googleapis.com
googlecode.com
+withgoogle.com
// Heroku : https://www.heroku.com/
-// Requested by Tom Maher <tmaher(a)heroku.com> 2013-05-02
+// Submitted by Tom Maher <tmaher(a)heroku.com> 2013-05-02
herokuapp.com
herokussl.com
// iki.fi
-// Requested by Hannu Aronsson <haa(a)iki.fi> 2009-11-05
+// Submitted by Hannu Aronsson <haa(a)iki.fi> 2009-11-05
iki.fi
// info.at : http://www.info.at/
@@ -7003,24 +8494,42 @@ info.at
// Michau Enterprises Limited : http://www.co.pl/
co.pl
+// Microsoft : http://microsoft.com
+// Submitted by Barry Dorrans <bdorrans(a)microsoft.com> 2014-01-24
+azurewebsites.net
+azure-mobile.net
+cloudapp.net
+
+// NFSN, Inc. : https://www.NearlyFreeSpeech.NET/
+// Submitted by Jeff Wheelhouse <support(a)nearlyfreespeech.net> 2014-02-02
+nfshost.com
+
// NYC.mn : http://www.information.nyc.mn
-// Requested by Matthew Brown <mattbrown(a)nyc.mn> 2013-03-11
+// Submitted by Matthew Brown <mattbrown(a)nyc.mn> 2013-03-11
nyc.mn
+// One Fold Media : http://www.onefoldmedia.com/
+// Submitted by Eddie Jones <eddie(a)onefoldmedia.com> 2014-06-10
+nid.io
+
// Opera Software, A.S.A.
-// Requested by Yngve Pettersen <yngve(a)opera.com> 2009-11-26
+// Submitted by Yngve Pettersen <yngve(a)opera.com> 2009-11-26
operaunite.com
+// OutSystems
+// Submitted by Duarte Santos <domain-admin(a)outsystemscloud.com> 2014-03-11
+outsystemscloud.com
+
// Red Hat, Inc. OpenShift : https://openshift.redhat.com/
-// Requested by Tim Kramer <tkramer(a)rhcloud.com> 2012-10-24
+// Submitted by Tim Kramer <tkramer(a)rhcloud.com> 2012-10-24
rhcloud.com
// priv.at : http://www.nic.priv.at/
-// Requested by registry <lendl(a)nic.at> 2008-06-09
+// Submitted by registry <lendl(a)nic.at> 2008-06-09
priv.at
// ZaNiC : http://www.za.net/
-// Requested by registry <hostmaster(a)nic.za.net> 2009-10-03
+// Submitted by registry <hostmaster(a)nic.za.net> 2009-10-03
za.net
za.org
diff --git a/netwerk/test/unit/data/test_psl.txt b/netwerk/test/unit/data/test_psl.txt
index 5a75831..35c8ccf 100644
--- a/netwerk/test/unit/data/test_psl.txt
+++ b/netwerk/test/unit/data/test_psl.txt
@@ -60,12 +60,12 @@ checkPublicSuffix('a.b.c.kobe.jp', 'b.c.kobe.jp');
checkPublicSuffix('city.kobe.jp', 'city.kobe.jp');
checkPublicSuffix('www.city.kobe.jp', 'city.kobe.jp');
// TLD with a wildcard rule and exceptions.
-checkPublicSuffix('om', null);
-checkPublicSuffix('test.om', null);
-checkPublicSuffix('b.test.om', 'b.test.om');
-checkPublicSuffix('a.b.test.om', 'b.test.om');
-checkPublicSuffix('songfest.om', 'songfest.om');
-checkPublicSuffix('www.songfest.om', 'songfest.om');
+checkPublicSuffix('ck', null);
+checkPublicSuffix('test.ck', null);
+checkPublicSuffix('b.test.ck', 'b.test.ck');
+checkPublicSuffix('a.b.test.ck', 'b.test.ck');
+checkPublicSuffix('www.ck', 'www.ck');
+checkPublicSuffix('www.www.ck', 'www.ck');
// US K12.
checkPublicSuffix('us', null);
checkPublicSuffix('test.us', 'test.us');
@@ -76,3 +76,23 @@ checkPublicSuffix('www.test.ak.us', 'test.ak.us');
checkPublicSuffix('k12.ak.us', null);
checkPublicSuffix('test.k12.ak.us', 'test.k12.ak.us');
checkPublicSuffix('www.test.k12.ak.us', 'test.k12.ak.us');
+// IDN labels.
+checkPublicSuffix('食狮.com.cn', '食狮.com.cn');
+checkPublicSuffix('食狮.公司.cn', '食狮.公司.cn');
+checkPublicSuffix('www.食狮.公司.cn', '食狮.公司.cn');
+checkPublicSuffix('shishi.公司.cn', 'shishi.公司.cn');
+checkPublicSuffix('公司.cn', null);
+checkPublicSuffix('食狮.中国', '食狮.中国');
+checkPublicSuffix('www.食狮.中国', '食狮.中国');
+checkPublicSuffix('shishi.中国', 'shishi.中国');
+checkPublicSuffix('中国', null);
+// Same as above, but punycoded.
+checkPublicSuffix('xn--85x722f.com.cn', 'xn--85x722f.com.cn');
+checkPublicSuffix('xn--85x722f.xn--55qx5d.cn', 'xn--85x722f.xn--55qx5d.cn');
+checkPublicSuffix('www.xn--85x722f.xn--55qx5d.cn', 'xn--85x722f.xn--55qx5d.cn');
+checkPublicSuffix('shishi.xn--55qx5d.cn', 'shishi.xn--55qx5d.cn');
+checkPublicSuffix('xn--55qx5d.cn', null);
+checkPublicSuffix('xn--85x722f.xn--fiqs8s', 'xn--85x722f.xn--fiqs8s');
+checkPublicSuffix('www.xn--85x722f.xn--fiqs8s', 'xn--85x722f.xn--fiqs8s');
+checkPublicSuffix('shishi.xn--fiqs8s', 'shishi.xn--fiqs8s');
+checkPublicSuffix('xn--fiqs8s', null);
diff --git a/netwerk/test/unit/test_psl.js b/netwerk/test/unit/test_psl.js
index 446fe4c..ff4a5e7 100644
--- a/netwerk/test/unit/test_psl.js
+++ b/netwerk/test/unit/test_psl.js
@@ -4,6 +4,9 @@ const Ci = Components.interfaces;
var etld = Cc["@mozilla.org/network/effective-tld-service;1"]
.getService(Ci.nsIEffectiveTLDService);
+var idna = Cc["@mozilla.org/network/idn-service;1"]
+ .getService(Ci.nsIIDNService);
+
function run_test()
{
var file = do_get_file("data/test_psl.txt");
@@ -13,7 +16,7 @@ function run_test()
var scriptLoader = Cc["@mozilla.org/moz/jssubscript-loader;1"]
.getService(Ci.mozIJSSubScriptLoader);
var srvScope = {};
- scriptLoader.loadSubScript(uri.spec, srvScope);
+ scriptLoader.loadSubScript(uri.spec, srvScope, "utf-8");
}
function checkPublicSuffix(host, expectedSuffix)
@@ -24,5 +27,11 @@ function checkPublicSuffix(host, expectedSuffix)
} catch (e if e.name == "NS_ERROR_INSUFFICIENT_DOMAIN_LEVELS" ||
e.name == "NS_ERROR_ILLEGAL_VALUE") {
}
+ // The EffectiveTLDService always gives back punycoded labels.
+ // The test suite wants to get back what it put in.
+ if (actualSuffix !== null && expectedSuffix !== null &&
+ /(^|\.)xn--/.test(actualSuffix) && !/(^|\.)xn--/.test(expectedSuffix)) {
+ actualSuffix = idna.convertACEtoUTF8(actualSuffix);
+ }
do_check_eq(actualSuffix, expectedSuffix);
}
1
0

[tor-browser/esr24] Bug 1027287 - Prevent non-local network connection to aus when enabling app update in add-ons mgr hotfix test. r=mossop, a=test-only
by mikeperry@torproject.org 29 Aug '14
by mikeperry@torproject.org 29 Aug '14
29 Aug '14
commit 299b11d6822eec6b7271950b0796d022c4226dde
Author: Robert Strong <robert.bugzilla(a)gmail.com>
Date: Mon Jul 7 12:49:21 2014 -0700
Bug 1027287 - Prevent non-local network connection to aus when enabling app update in add-ons mgr hotfix test. r=mossop, a=test-only
--HG--
extra : rebase_source : 594235cd317b0261e436da3ac5ab8166a754df8a
---
toolkit/mozapps/extensions/test/browser/browser_hotfix.js | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/toolkit/mozapps/extensions/test/browser/browser_hotfix.js b/toolkit/mozapps/extensions/test/browser/browser_hotfix.js
index ff28889..80f9240 100644
--- a/toolkit/mozapps/extensions/test/browser/browser_hotfix.js
+++ b/toolkit/mozapps/extensions/test/browser/browser_hotfix.js
@@ -12,6 +12,7 @@ const PREF_INSTALL_REQUIREBUILTINCERTS = "extensions.install.requireBuiltInCerts
const PREF_UPDATE_REQUIREBUILTINCERTS = "extensions.update.requireBuiltInCerts";
const PREF_APP_UPDATE_ENABLED = "app.update.enabled";
+const PREF_APP_UPDATE_URL = "app.update.url";
const HOTFIX_ID = "hotfix(a)tests.mozilla.org";
@@ -60,6 +61,8 @@ var FailedInstallListener = {
function test() {
waitForExplicitFinish();
+ var oldAusUrl = Services.prefs.getDefaultBranch(null).getCharPref(PREF_APP_UPDATE_URL);
+ Services.prefs.getDefaultBranch(null).setCharPref(PREF_APP_UPDATE_URL, TESTROOT + "ausdummy.xml");
Services.prefs.setBoolPref(PREF_APP_UPDATE_ENABLED, true);
Services.prefs.setBoolPref(PREF_INSTALL_REQUIREBUILTINCERTS, false);
Services.prefs.setBoolPref(PREF_UPDATE_REQUIREBUILTINCERTS, false);
@@ -69,6 +72,7 @@ function test() {
registerCleanupFunction(function() {
Services.prefs.setBoolPref(PREF_APP_UPDATE_ENABLED, false);
+ Services.prefs.getDefaultBranch(null).setCharPref(PREF_APP_UPDATE_URL, oldAusUrl);
Services.prefs.clearUserPref(PREF_EM_HOTFIX_ID);
Services.prefs.setCharPref(PREF_EM_HOTFIX_URL, oldURL);
Services.prefs.clearUserPref(PREF_INSTALL_REQUIREBUILTINCERTS);
1
0