Codebase list zonedb / b5d5bf6
Import upstream version 1.0.3884 Kali Janitor 1 year, 6 months ago
879 changed file(s) with 1842 addition(s) and 1978 deletion(s). Raw diff Collapse all Expand all
2424 filterZones := flag.String("zones", "", "select specific working zones (comma-delimited)")
2525 filterRegexp := flag.String("x", "", "filter working zones by regular expression")
2626 filterGrep := flag.String("grep", "", "filter working zones by regular expression across all metadata")
27 excludeGrep := flag.String("exclude-grep", "", "exclude working zones by regular expression across all metadata")
2728 filterTags := flag.String("tags", "", "filter working zones by tags (comma-delimited)")
2829 excludeTags := flag.String("exclude-tags", "", "exclude working zones with tags (comma-delimited)")
2930
148149 workZones = filtered
149150 }
150151
152 if *excludeGrep != "" {
153 re, err := regexp.Compile(*excludeGrep)
154 if err != nil {
155 errs = append(errs, err)
156 build.LogFatal(err)
157 }
158 filtered := make(map[string]*build.Zone, len(workZones))
159 for d, z := range workZones {
160 j, _ := json.MarshalIndent(z, "", "\t")
161 if !re.Match(j) {
162 filtered[d] = z
163 }
164 }
165 workZones = filtered
166 }
167
151168 if *filterTags != "" {
152169 tags := build.NewSet(strings.Split(*filterTags, ",")...)
153170 filtered := make(map[string]*build.Zone, len(workZones))
2828 }
2929
3030 var tagsAdded, tagsRemoved, zonesWithdrawn, zonesRetired, zonesModified int
31 gTLDs := make(map[string]icannGTLD, len(x.GTLDs))
32
33 // Iterate over ICANN-known gTLDs
3134 for _, g := range x.GTLDs {
3235 domain := Normalize(g.GTLD)
36 gTLDs[domain] = g
3337 z, ok := zones[domain]
3438 if !ok {
3539 if len(zones) > 100 {
9195 }
9296 }
9397
98 // Iterate over work zones
99 for _, z := range zones {
100 if !z.IsTLD() || z.IsRetiredOrWithdrawn() {
101 continue
102 }
103 _, ok := gTLDs[z.Domain]
104 if !ok && len(z.NameServers) == 0 {
105 z.AddTags(TagWithdrawn)
106 }
107 }
108
94109 Trace("@{.}Added %d tag(s), removed %d tag(s) from %d zone(s)\n", tagsAdded, tagsRemoved, zonesModified)
95110 Trace("@{.}Withdrew %d and retired %d zone(s)\n", zonesWithdrawn, zonesRetired)
96111
98113 }
99114
100115 type icannGTLDResponse struct {
101 GTLDs []struct {
102 ApplicationID string `json:"applicationID"`
103 ContractTerminated bool `json:"contractTerminated"`
104 DateOfContractSignature ISODate `json:"dateOfContractSignature"`
105 DelegationDate ISODate `json:"delegationDate"`
106 GTLD string `json:"gTLD"`
107 // RegistryClassDomainNameList interface{} `json:"registryClassDomainNameList"` // (always null)
108 RegistryOperator string `json:"registryOperator"`
109 // RegistryOperatorCountryCode *string `json:"registryOperatorCountryCode"` // (always null)
110 RemovalDate ISODate `json:"removalDate"`
111 Specification13 bool `json:"specification13"` // Brand TLD
112 ThirdOrLowerLevelRegistration bool `json:"thirdOrLowerLevelRegistration"` // (always false or null)
113 ULabel string `json:"uLabel"` // Unicode IDN label
114 } `json:"gTLDs"`
116 GTLDs []icannGTLD `json:"gTLDs"`
115117 // UpdatedOn time.Time `json:"updatedOn"` // Ignored because of nonstandard format
116118 Version int `json:"version"`
119 }
120
121 type icannGTLD struct {
122 ApplicationID string `json:"applicationID"`
123 ContractTerminated bool `json:"contractTerminated"`
124 DateOfContractSignature ISODate `json:"dateOfContractSignature"`
125 DelegationDate ISODate `json:"delegationDate"`
126 GTLD string `json:"gTLD"`
127 // RegistryClassDomainNameList interface{} `json:"registryClassDomainNameList"` // (always null)
128 RegistryOperator string `json:"registryOperator"`
129 // RegistryOperatorCountryCode *string `json:"registryOperatorCountryCode"` // (always null)
130 RemovalDate ISODate `json:"removalDate"`
131 Specification13 bool `json:"specification13"` // Brand TLD
132 ThirdOrLowerLevelRegistration bool `json:"thirdOrLowerLevelRegistration"` // (always false or null)
133 ULabel string `json:"uLabel"` // Unicode IDN label
117134 }
118135
119136 /*
33 "io"
44 "io/ioutil"
55 "net/http"
6 "os"
76 "strings"
87 "time"
9
10 "github.com/wsxiaoys/terminal/color"
118 )
129
1310 func UpdateInfoURLs(zones map[string]*Zone) {
14 color.Fprintf(os.Stderr, "@{.}Updating info URLs for %d zones...\n", len(zones))
11 Trace("@{.}Updating info URLs for %d zones...\n", len(zones))
1512
1613 transport := http.DefaultTransport.(*http.Transport).Clone()
17 transport.TLSHandshakeTimeout = 2 * time.Second
14 transport.TLSHandshakeTimeout = 5 * time.Second
1815 transport.MaxIdleConnsPerHost = 10
1916 client := &http.Client{
2017 Transport: transport,
21 Timeout: 4 * time.Second,
18 Timeout: 10 * time.Second,
2219 }
2320
2421 mapZones(zones, func(z *Zone) {
25 if z.InfoURL == "" {
26 return
27 }
2822 var urls []string
29 if strings.HasPrefix(z.InfoURL, "https://newgtlds.icann.org") {
30 urls = []string{
31 "https://nic." + z.Domain,
32 "http://nic." + z.Domain,
33 z.InfoURL,
34 }
35 } else if strings.HasPrefix(z.InfoURL, "http:") {
23
24 if strings.HasPrefix(z.InfoURL, "http:") {
3625 urls = []string{
3726 strings.Replace(z.InfoURL, "http:", "https:", 1),
3827 z.InfoURL,
3928 }
40 } else {
29 } else if !strings.HasPrefix(z.InfoURL, "https://newgtlds.icann.org") {
4130 urls = []string{
4231 z.InfoURL,
4332 }
4433 }
34
35 if z.IsTLD() {
36 urls = append(urls,
37 // Try NIC websites
38 "https://nic."+z.Domain,
39 "https://www.nic."+z.Domain,
40 "http://nic."+z.Domain,
41 "http://www.nic."+z.Domain,
42
43 // Try ICANN first
44 "https://www.icann.org/en/registry-agreements/details/"+z.ASCII(),
45
46 // Then fall back to IANA
47 "https://www.iana.org/domains/root/db/"+z.ASCII()+".html",
48 )
49 }
50
51 var infoURL string
4552 for _, u := range urls {
46 res, err := client.Get(u)
53 if u == "" {
54 continue
55 }
56 u = NormalizeURL(u)
57 req, err := http.NewRequest(http.MethodGet, u, nil)
4758 if err != nil {
48 // color.Fprintf(os.Stderr, "@{y!}Warning:@{y} error fetching info URL for @{y!}%s@{y}: (%s): %v\n", z.Domain, u, err)
59 Trace("@{y!}Warning:@{y} error fetching info URL for @{y!}%s@{y}: (%s): %v\n", z.Domain, u, err)
60 continue
61 }
62 req.Header.Set("User-Agent", "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36")
63 res, err := client.Do(req)
64 if err != nil {
65 if u == z.InfoURL {
66 Trace("@{y!}Warning:@{y} error fetching info URL for @{y!}%s@{y}: (%s): %v\n", z.Domain, u, err)
67 }
68 continue
69 } else if res.StatusCode != http.StatusOK {
70 if u == z.InfoURL {
71 Trace("@{y!}Warning:@{y} non-200 status for info URL for @{y!}%s@{y}: (%s): %s\n", z.Domain, u, res.Status)
72 }
4973 continue
5074 }
5175 CloseN(res.Body, 10_000_000)
52 ru := NormalizeURL(res.Request.URL.String())
53 if ru != z.InfoURL && !strings.HasPrefix(ru, "https://newgtlds.icann.org") {
54 color.Fprintf(os.Stderr, "@{.}Updated info URL for @{c}%s@{c}: @{y}%s@{c} → @{g}%s\n", z.Domain, z.InfoURL, ru)
55 z.InfoURL = ru
76 // Don’t use redirected URL, use the URL we crafted
77 // infoURL = NormalizeURL(res.Request.URL.String())
78 infoURL = u
79 break
80 }
81
82 // Do not rewrite URLs that just add tracking or query string info
83 if infoURL != z.InfoURL && !strings.HasPrefix(infoURL, z.InfoURL) {
84 if infoURL == "" {
85 Trace("@{.!}Removed@{.} info URL for @{c}%s@{c}: @{y}%s@{c}\n", z.Domain, z.InfoURL)
86
87 } else {
88 Trace("@{.}Updated info URL for @{c}%s@{c}: @{y}%s@{c} → @{g}%s\n", z.Domain, z.InfoURL, infoURL)
5689 }
57 break
90 z.InfoURL = infoURL
5891 }
5992 })
6093 }
4646 domain = Normalize(domain)
4747 z, ok := zones[domain]
4848 if !ok {
49 if len(zones) > 100 {
49 if len(zones) > 1000 {
5050 Trace("@{y}Unknown domain in IANA RDAP feed: %s\n", domain)
5151 }
5252 continue
2020 TagRegion = "region"
2121 TagRetired = "retired"
2222 TagSponsored = "sponsored"
23 TagTest = "test"
2324 TagWithdrawn = "withdrawn"
2425 )
2526
33 "ns1.subdomain.net",
44 "ns2.subdomain.net"
55 ],
6 "wildcards": [
7 "1x.de",
8 "95.217.58.108"
9 ],
610 "tags": [
711 "private"
812 ]
00 {
11 "domain": "abb",
22 "registryOperator": "ABB Ltd",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/abb",
44 "rdapURLs": [
55 "https://tld-rdap.verisign.com/abb/v1/"
66 ],
00 {
11 "domain": "accountant",
22 "registryOperator": "dot Accountant Limited",
3 "infoURL": "https://www.famousfourmedia.com/",
3 "infoURL": "http://nic.accountant/",
44 "whoisServer": "whois.nic.accountant",
55 "rdapURLs": [
66 "https://rdap.nic.accountant/"
00 {
11 "domain": "acer",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "active",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.afilias-srs.net",
43 "tags": [
54 "brand",
00 {
11 "domain": "ad",
2 "infoURL": "http://www.nic.ad/",
2 "infoURL": "https://www.iana.org/domains/root/db/ad.html",
33 "nameServers": [
44 "ad.cctld.authdns.ripe.net",
55 "ad.ns.nic.es",
00 {
11 "domain": "af",
2 "infoURL": "http://www.nic.af/",
2 "infoURL": "https://nic.af/",
33 "whoisServer": "whois.nic.af",
44 "nameServers": [
5 "ns.anycast.nic.af",
65 "ns1.anycastdns.cz",
76 "ns2.anycastdns.cz"
87 ],
00 {
11 "domain": "afamilycompany",
22 "registryOperator": "Johnson Shareholdings, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
43 "whoisServer": "whois.nic.afamilycompany",
54 "rdapURLs": [
65 "https://tld-rdap.verisign.com/afamilycompany/v1/"
00 {
11 "domain": "africa",
22 "registryOperator": "ZA Central Registry NPC trading as Registry.Africa",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://registry.africa/",
44 "whoisServer": "whois.nic.africa",
55 "rdapURLs": [
66 "https://rdap.nic.africa/rdap/"
00 {
11 "domain": "africamagic",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "agakhan",
22 "registryOperator": "Fondation Aga Khan (Aga Khan Foundation)",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/agakhan",
44 "whoisServer": "whois.afilias-srs.net",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/agakhan/"
00 {
11 "domain": "aigo",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.afilias-srs.net",
43 "tags": [
54 "brand",
00 {
11 "domain": "airtel",
22 "registryOperator": "Bharti Airtel Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/airtel",
44 "whoisServer": "whois.nic.airtel",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/airtel/v1/"
00 {
11 "domain": "akdn",
22 "registryOperator": "Fondation Aga Khan (Aga Khan Foundation)",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/akdn",
44 "whoisServer": "whois.afilias-srs.net",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/akdn/"
00 {
11 "domain": "al",
2 "infoURL": "http://www.ert.gov.al/ert_eng/domain.html",
2 "infoURL": "https://www.iana.org/domains/root/db/al.html",
33 "whoisURL": "http://www.akep.al/sq/kerkoni-domain",
44 "nameServers": [
55 "munnari.oz.au",
00 {
11 "domain": "alcon",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "allfinanzberater",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "allfinanzberatung",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "alsace",
22 "registryOperator": "Region Grand Est",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/alsace",
44 "whoisServer": "whois.nic.alsace",
55 "rdapURLs": [
66 "https://rdap.nic.alsace/"
00 {
11 "domain": "alt.za",
22 "nameServers": [
3 "ns-za.afrinic.net",
43 "ns1.iafrica.com",
54 "ns2.iafrica.com",
65 "psg.com",
00 {
11 "domain": "amp",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "an",
2 "infoURL": "http://www.una.an/an_domreg/",
2 "infoURL": "https://www.iana.org/domains/root/db/an.html",
33 "tags": [
44 "closed",
55 "country",
00 {
11 "domain": "anquan",
22 "registryOperator": "Beijing Qihu Keji Co., Ltd.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/anquan",
44 "whoisServer": "whois.teleinfo.cn",
55 "rdapURLs": [
66 "https://rdap.teleinfo.cn/"
00 {
11 "domain": "ansons",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "anthem",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "antivirus",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
4 "generic"
3 "generic",
4 "withdrawn"
55 ],
66 "policies": [
77 {
00 {
11 "domain": "aq",
2 "infoURL": "http://www.gobin.info/domainname/aq.txt",
2 "registryOperator": "Antarctica Network Information Centre Limited",
3 "infoURL": "https://www.iana.org/domains/root/db/aq.html",
34 "nameServers": [
45 "fork.sth.dnsnode.net",
56 "ns1.anycast.dns.aq",
00 {
11 "domain": "aquarelle",
22 "registryOperator": "Aquarelle.com",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://www.nic.aquarelle/",
44 "whoisServer": "whois.nic.aquarelle",
55 "rdapURLs": [
66 "https://rdap.nic.aquarelle/"
00 {
11 "domain": "aquitaine",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
4 "generic"
3 "generic",
4 "withdrawn"
55 ],
66 "policies": [
77 {
00 {
11 "domain": "archi",
22 "registryOperator": "Identity Digital Limited",
3 "infoURL": "https://domains.archi/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.archi",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "architect",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
4 "generic"
3 "generic",
4 "withdrawn"
55 ],
66 "policies": [
77 {
00 {
11 "domain": "arte",
22 "registryOperator": "Association Relative à la Télévision Européenne G.E.I.E.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/arte",
44 "whoisServer": "whois.nic.arte",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/arte/v1/"
00 {
11 "domain": "asda",
22 "registryOperator": "Wal-Mart Stores, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/asda",
44 "whoisServer": "whois.nic.asda",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/asda/v1/"
00 {
11 "domain": "astrium",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "at",
2 "infoURL": "https://www.nic.at/de",
2 "infoURL": "https://www.nic.at/",
33 "whoisServer": "whois.nic.at",
44 "nameServers": [
55 "d.ns.at",
00 {
11 "domain": "autoinsurance",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "generic",
54 "withdrawn"
00 {
11 "domain": "avery",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "avianca",
22 "registryOperator": "Avianca Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/avianca",
44 "whoisServer": "whois.afilias-srs.net",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/avianca/"
00 {
11 "domain": "ax",
2 "infoURL": "https://www.regeringen.ax/naringsliv-foretagande/ansok-om-ax-domannamn",
2 "infoURL": "https://whois.ax/",
33 "whoisServer": "whois.ax",
44 "nameServers": [
55 "ns1.aland.net",
00 {
11 "domain": "axis",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "baidu",
22 "registryOperator": "Baidu, Inc.",
3 "infoURL": "http://nic.baidu/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/baidu",
44 "whoisServer": "whois.gtld.knet.cn",
55 "rdapURLs": [
66 "https://rdap.zdnsgtld.com/baidu/"
00 {
11 "domain": "banque",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
4 "generic"
3 "generic",
4 "withdrawn"
55 ],
66 "policies": [
77 {
00 {
11 "domain": "barefoot",
22 "registryOperator": "Gallo Vineyards, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/barefoot",
44 "whoisServer": "whois.nic.barefoot",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/barefoot/v1/"
00 {
11 "domain": "bb",
2 "infoURL": "http://www.barbadosdomains.net/",
2 "infoURL": "https://whois.telecoms.gov.bb/",
33 "whoisURL": "http://whois.telecoms.gov.bb/search_domain.php",
44 "nameServers": [
55 "ns1.nic.bb",
00 {
11 "domain": "bbb",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "bbt",
22 "registryOperator": "BB\u0026T Corporation",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://www.nic.bbt/",
44 "whoisServer": "whois.nic.bbt",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/bbt/v1/"
00 {
11 "domain": "bcn",
22 "registryOperator": "Municipi de Barcelona",
3 "infoURL": "http://nic.bcn/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/bcn",
44 "whoisServer": "whois.nic.bcn",
55 "rdapURLs": [
66 "https://rdap.nic.bcn/"
44 "nameServers": [
55 "bd-ns.anycast.pch.net",
66 "dns.bd",
7 "jamuna.btcl.net.bd",
87 "surma.btcl.net.bd"
98 ],
109 "tags": [
00 {
11 "domain": "beats",
22 "registryOperator": "Beats Electronics, LLC",
3 "infoURL": "https://www.beatsbydre.com/in/company/tld",
4 "whoisServer": "whois.afilias-srs.net",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/beats",
4 "whoisServer": "whois.nic.beats",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/beats/"
77 ],
00 {
11 "domain": "beknown",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "bet",
22 "registryOperator": "Identity Digital Limited",
3 "infoURL": "https://get.bet/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.bet",
55 "rdapURLs": [
66 "https://rdap.afilias.net/rdap/bet/"
00 {
11 "domain": "bharti",
22 "registryOperator": "Bharti Enterprises (Holding) Private Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/bharti",
44 "rdapURLs": [
55 "https://tld-rdap.verisign.com/bharti/v1/"
66 ],
00 {
11 "domain": "bid",
22 "registryOperator": "dot Bid Limited",
3 "infoURL": "https://www.famousfourmedia.com/",
3 "infoURL": "http://nic.bid/",
44 "whoisServer": "whois.nic.bid",
55 "rdapURLs": [
66 "https://rdap.nic.bid/"
00 {
11 "domain": "bio",
22 "registryOperator": "Identity Digital Limited",
3 "infoURL": "https://domains.bio/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.bio",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "biz",
22 "registryOperator": "Registry Services, LLC",
3 "whoisServer": "whois.nic.biz",
3 "whoisServer": "whois.biz",
44 "rdapURLs": [
55 "https://rdap.nic.biz/"
66 ],
00 {
11 "domain": "black",
22 "registryOperator": "Identity Digital Limited",
3 "infoURL": "https://get.black/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.black",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "blanco",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.blanco",
43 "languages": [
54 "mul-Hang",
00 {
11 "domain": "blockbuster",
22 "registryOperator": "Dish DBS Corporation",
3 "infoURL": "http://www.dishtlds.com/blockbuster/",
3 "infoURL": "https://www.dishtlds.com/blockbuster/",
44 "whoisServer": "whois.nic.blockbuster",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/blockbuster/"
00 {
11 "domain": "bloomberg",
22 "registryOperator": "Bloomberg IP Holdings LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/bloomberg",
44 "rdapURLs": [
55 "https://tld-rdap.verisign.com/bloomberg/v1/"
66 ],
00 {
11 "domain": "bloomingdales",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "blue",
22 "registryOperator": "Identity Digital Limited",
3 "infoURL": "https://dotblue.blue/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.blue",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "bn",
2 "infoURL": "http://www.brunet.bn/products_webrelated_domain_main.htm",
2 "infoURL": "https://www.iana.org/domains/root/db/bn.html",
33 "whoisServer": "whois.bnnic.bn",
44 "nameServers": [
55 "bn-ns.anycast.pch.net",
00 {
11 "domain": "bnl",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.bnl",
43 "tags": [
54 "brand",
00 {
11 "domain": "boehringer",
22 "registryOperator": "Boehringer Ingelheim International GmbH",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/boehringer",
44 "whoisServer": "whois.afilias-srs.net",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/boehringer/"
00 {
11 "domain": "bofa",
22 "registryOperator": "Bank of America Corporation",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/bofa",
44 "whoisServer": "whois.nic.bofa",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/bofa/v1/"
00 {
11 "domain": "bom",
22 "registryOperator": "Núcleo de Informação e Coordenação do Ponto BR - NIC.br",
3 "infoURL": "https://gtlds.nic.br/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/bom",
44 "whoisServer": "whois.gtlds.nic.br",
55 "rdapURLs": [
66 "https://rdap.gtlds.nic.br/"
00 {
11 "domain": "boots",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.boots",
43 "tags": [
54 "brand",
00 {
11 "domain": "bostik",
22 "registryOperator": "Bostik SA",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/bostik",
44 "whoisServer": "whois.nic.bostik",
55 "rdapURLs": [
66 "https://rdap.nic.bostik/"
00 {
11 "domain": "br",
22 "infoURL": "https://nic.br/",
3 "whoisServer": "whois.registro.br",
3 "whoisServer": "whois.nic.br",
44 "rdapURLs": [
55 "https://rdap.registro.br/"
66 ],
00 {
11 "domain": "broker",
22 "registryOperator": "Dog Beach, LLC",
3 "infoURL": "https://bostonivy.co/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.broker",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "budapest",
22 "registryOperator": "Minds + Machines Group Limited",
3 "infoURL": "http://nic.budapest/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/budapest",
44 "whoisServer": "whois.nic.budapest",
55 "rdapURLs": [
66 "https://rdap.nominet.uk/budapest/"
00 {
11 "domain": "bugatti",
22 "registryOperator": "Bugatti International SA",
3 "infoURL": "https://newgtlds.icann.org/",
43 "whoisServer": "whois.afilias-srs.net",
54 "rdapURLs": [
65 "https://rdap.afilias-srs.net/rdap/bugatti/"
00 {
11 "domain": "buick",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "bway",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "cadillac",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "canalplus",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "cancerresearch",
22 "registryOperator": "Australian Cancer Research Foundation",
3 "infoURL": "https://newgtlds.icann.org/",
43 "whoisServer": "whois.nic.cancerresearch",
54 "rdapURLs": [
65 "https://rdap.nic.cancerresearch/"
00 {
11 "domain": "capitalone",
22 "registryOperator": "Capital One Financial Corporation",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/capitalone",
44 "whoisServer": "whois.nic.capitalone",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/capitalone/v1/"
00 {
11 "domain": "carinsurance",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "generic",
54 "withdrawn"
00 {
11 "domain": "cartier",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.cartier",
43 "tags": [
54 "brand",
00 {
11 "domain": "caseih",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.caseih",
43 "tags": [
54 "brand",
00 {
11 "domain": "cashbackbonus",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "closed",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "catalonia",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "generic",
54 "withdrawn"
00 {
11 "domain": "ceb",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.afilias-srs.net",
43 "tags": [
54 "brand",
00 {
11 "domain": "cfa",
22 "registryOperator": "CFA Institute",
3 "infoURL": "https://www.cfainstitute.org/utility/Pages/nic.aspx",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/cfa",
44 "whoisServer": "whois.nic.cfa",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/cfa/v1/"
00 {
11 "domain": "cfd",
22 "registryOperator": "ShortDot SA",
3 "infoURL": "https://bostonivy.co/",
3 "infoURL": "https://shortdot.bond/cfd/",
44 "whoisServer": "whois.nic.cfd",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/cfd/"
00 {
11 "domain": "changiairport",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "chartis",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "chesapeake",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "chevrolet",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "chevy",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "chk",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "chloe",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.chloe",
43 "tags": [
54 "brand",
00 {
11 "domain": "chrysler",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.afilias-srs.net",
43 "tags": [
54 "brand",
00 {
11 "domain": "cimb",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "cipriani",
22 "registryOperator": "Hotel Cipriani Srl",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/cipriani",
44 "whoisServer": "whois.afilias-srs.net",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/cipriani/"
00 {
11 "domain": "cisco",
22 "registryOperator": "Cisco Technology, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.nic.cisco/",
44 "whoisServer": "whois.nic.cisco",
55 "rdapURLs": [
66 "https://rdap.nic.cisco/"
00 {
11 "domain": "citic",
22 "registryOperator": "CITIC Group Corporation",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://www.nic.citic/",
44 "whoisServer": "whois.nic.citic",
55 "rdapURLs": [
66 "https://rdap.zdnsgtld.com/citic/"
1111 "c.zdnscloud.com",
1212 "d.zdnscloud.com",
1313 "f.zdnscloud.com",
14 "g.zdnscloud.com",
15 "i.zdnscloud.com",
16 "j.zdnscloud.com"
14 "g.zdnscloud.com"
1715 ],
1816 "languages": [
1917 "zh-Hans",
00 {
11 "domain": "cityeats",
22 "registryOperator": "Lifestyle Domain Holdings, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/cityeats",
44 "whoisServer": "whois.nic.cityeats",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/cityeats/v1/"
44 "whoisServer": "whois.ck-nic.org.ck",
55 "nameServers": [
66 "circa.mcs.vuw.ac.nz",
7 "downstage.mcs.vuw.ac.nz",
87 "parau.oyster.net.ck",
98 "poiparau.oyster.net.ck"
109 ],
00 {
11 "domain": "clinique",
22 "registryOperator": "The Estée Lauder Companies Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/clinique",
44 "whoisServer": "whois.nic.clinique",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/clinique/"
00 {
11 "domain": "clubmed",
22 "registryOperator": "Club Méditerranée S.A.",
3 "infoURL": "http://ns.clubmed.com/ipm/nic_clubmed/index.html",
3 "infoURL": "https://ns.clubmed.com/ipm/nic_clubmed/index.html",
44 "whoisServer": "whois.nic.clubmed",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/clubmed/v1/"
00 {
11 "domain": "cn",
2 "infoURL": "http://cnnic.cn/",
3 "whoisServer": "whois.cnnic.cn",
2 "infoURL": "https://www.cnnic.net.cn/",
3 "whoisServer": "whois.cnnic.net.cn",
44 "nameServers": [
55 "a.dns.cn",
66 "b.dns.cn",
+0
-7
metadata/co.mp.json less more
0 {
1 "domain": "co.mp",
2 "nameServers": [
3 "ns1.nic.net.mp",
4 "ns2.nic.net.mp"
5 ]
6 }
00 {
11 "domain": "cologne",
22 "registryOperator": "dotKoeln GmbH",
3 "whoisServer": "whois.ryce-rsp.com",
3 "whoisServer": "whois.nic.cologne",
44 "rdapURLs": [
55 "https://rdap.ryce-rsp.com/rdap/"
66 ],
00 {
11 "domain": "com.al",
22 "nameServers": [
3 "al.cctld.authdns.ripe.net",
4 "ns-al.isti.cnr.it",
53 "ns1.nic.al",
64 "ns2.nic.al",
75 "nsx.nic.al",
11 "domain": "com.er",
22 "nameServers": [
33 "er.cctld.authdns.ripe.net",
4 "ns0.punchdown.org",
5 "ns1.punchdown.net",
64 "sawanew.noc.net.er",
75 "zaranew.noc.net.er"
86 ]
22 "nameServers": [
33 "ns.cocca.fr",
44 "ns1.cmc.iq",
5 "nsp-anycast.cmc.iq",
6 "sns-pb.isc.org"
5 "nsp-anycast.cmc.iq"
76 ],
87 "policies": [
98 {
55 "ans2.canar.sd",
66 "ns-sd.afrinic.net",
77 "ns.cocca.fr",
8 "ns1.uaenic.ae",
9 "ns2.uaenic.ae",
108 "pch.sis.sd",
119 "sd.cctld.authdns.ripe.net"
1210 ],
00 {
11 "domain": "comsec",
22 "registryOperator": "VeriSign, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/comsec",
44 "whoisServer": "whois.nic.comsec",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/comsec/v1/"
00 {
11 "domain": "connectors",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "generic",
54 "withdrawn"
00 {
11 "domain": "contractors",
22 "registryOperator": "Binky Moon, LLC",
3 "whoisServer": "whois.nic.contractors",
3 "whoisServer": "whois.nic.technology",
44 "rdapURLs": [
55 "https://rdap.donuts.co/rdap/"
66 ],
00 {
11 "domain": "cookingchannel",
22 "registryOperator": "Lifestyle Domain Holdings, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/cookingchannel",
44 "whoisServer": "whois.nic.cookingchannel",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/cookingchannel/v1/"
00 {
11 "domain": "corsica",
22 "registryOperator": "Collectivité de Corse",
3 "infoURL": "http://nic.corsica/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/corsica",
44 "whoisServer": "whois.nic.corsica",
55 "rdapURLs": [
66 "https://rdap.nic.corsica/"
11 "domain": "country",
22 "registryOperator": "Internet Naming Company LLC",
33 "infoURL": "https://uniregistry.link/extensions/country/",
4 "whoisServer": "whois.uniregistry.net",
4 "whoisServer": "whois.nic.country",
55 "rdapURLs": [
66 "https://whois.uniregistry.net/rdap/"
77 ],
00 {
11 "domain": "cricket",
22 "registryOperator": "dot Cricket Limited",
3 "infoURL": "https://www.famousfourmedia.com/",
3 "infoURL": "http://nic.cricket/",
44 "whoisServer": "whois.nic.cricket",
55 "rdapURLs": [
66 "https://rdap.nic.cricket/"
00 {
11 "domain": "csc",
22 "registryOperator": "Alliance-One Services, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
43 "whoisServer": "whois.nic.csc",
54 "rdapURLs": [
65 "https://tld-rdap.verisign.com/csc/v1/"
00 {
11 "domain": "data",
22 "registryOperator": "Dish DBS Corporation",
3 "infoURL": "http://www.dishtlds.com/data/",
3 "infoURL": "https://www.dishtlds.com/data/",
44 "whoisServer": "whois.nic.data",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/data/"
00 {
11 "domain": "date",
22 "registryOperator": "dot Date Limited",
3 "infoURL": "https://www.famousfourmedia.com/",
3 "infoURL": "http://nic.date/",
44 "whoisServer": "whois.nic.date",
55 "rdapURLs": [
66 "https://rdap.nic.date/"
00 {
11 "domain": "delmonte",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "delta",
22 "registryOperator": "Delta Air Lines, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://www.nic.delta/",
44 "whoisServer": "whois.nic.delta",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/delta/"
00 {
11 "domain": "deutschepost",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "digikey",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "dish",
22 "registryOperator": "Dish DBS Corporation",
3 "infoURL": "http://www.dishtlds.com/dish/",
3 "infoURL": "https://www.dishtlds.com/dish/",
44 "whoisServer": "whois.nic.dish",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/dish/"
00 {
11 "domain": "diy",
22 "registryOperator": "Lifestyle Domain Holdings, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/diy",
44 "whoisServer": "whois.nic.diy",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/diy/v1/"
00 {
11 "domain": "dm",
2 "whoisServer": "whois.dmdomains.dm",
2 "whoisServer": "whois.nic.dm",
33 "nameServers": [
44 "ns.blacknightsolutions.com",
55 "ns1.uniregistry.net",
00 {
11 "domain": "dnb",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "docomo",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "dodge",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.afilias-srs.net",
43 "tags": [
54 "brand",
00 {
11 "domain": "doha",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.doha",
43 "locations": [
54 "Doha",
00 {
11 "domain": "doosan",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.삼성",
43 "tags": [
54 "brand",
00 {
11 "domain": "dot",
22 "registryOperator": "Dish DBS Corporation",
3 "infoURL": "http://www.dishtlds.com/dot/",
3 "infoURL": "https://www.dishtlds.com/dot/",
44 "whoisServer": "whois.nic.dot",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/dot/"
00 {
11 "domain": "dotafrica",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "generic",
54 "withdrawn"
00 {
11 "domain": "download",
22 "registryOperator": "dot Support Limited",
3 "infoURL": "https://www.famousfourmedia.com/",
3 "infoURL": "http://nic.download/",
44 "whoisServer": "whois.nic.download",
55 "rdapURLs": [
66 "https://rdap.nic.download/"
00 {
11 "domain": "dstv",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "dtv",
22 "registryOperator": "Dish DBS Corporation",
3 "infoURL": "http://dishtlds.com/dtv/",
3 "infoURL": "https://dishtlds.com/dtv/",
44 "whoisServer": "whois.nic.dtv",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/dtv/"
00 {
11 "domain": "duck",
22 "registryOperator": "Johnson Shareholdings, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
43 "whoisServer": "whois.nic.duck",
54 "rdapURLs": [
65 "https://tld-rdap.verisign.com/duck/v1/"
00 {
11 "domain": "duns",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.duns",
43 "tags": [
54 "brand",
00 {
11 "domain": "dvr",
22 "registryOperator": "DISH Technologies L.L.C.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/dvr",
44 "whoisServer": "whois.nic.dvr",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/dvr/"
00 {
11 "domain": "dwg",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "ecom",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
4 "generic"
3 "generic",
4 "withdrawn"
55 ],
66 "policies": [
77 {
00 {
11 "domain": "edu.al",
22 "nameServers": [
3 "al.cctld.authdns.ripe.net",
4 "ns-al.isti.cnr.it",
53 "ns1.nic.al",
64 "ns2.nic.al",
75 "nsx.nic.al",
11 "domain": "edu.er",
22 "nameServers": [
33 "er.cctld.authdns.ripe.net",
4 "ns0.punchdown.org",
5 "ns1.punchdown.net",
64 "sawanew.noc.net.er",
75 "zaranew.noc.net.er"
86 ],
00 {
11 "domain": "edu.iq",
22 "nameServers": [
3 "ns.cocca.fr",
43 "ns1.cmc.iq",
5 "nsp-anycast.cmc.iq",
6 "sns-pb.isc.org"
4 "nsp-anycast.cmc.iq"
75 ],
86 "policies": [
97 {
00 {
11 "domain": "edu.mg",
22 "nameServers": [
3 "censvrns0001.ird.fr",
43 "ns.dts.mg",
54 "ns.nic.mg",
65 "pch.nic.mg"
00 {
11 "domain": "edu.ni",
22 "nameServers": [
3 "auth01.ns.uu.net",
43 "dns-ext.nic.cr",
54 "ns.ideay.net.ni",
65 "ns.ni",
1010 "ns2.pnina.ps",
1111 "ote.pnina.ps"
1212 ],
13 "wildcards": [
14 "2001:4860:4802:32::78",
15 "2001:cdba::3257:9652",
16 "208.91.112.55",
17 "forcesafesearch.google.com"
18 ],
1913 "policies": [
2014 {
2115 "type": "idn-disallowed"
00 {
11 "domain": "emerson",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "epost",
2 "infoURL": "https://newgtlds.icann.org/",
32 "languages": [
43 "mul-Latn"
54 ],
00 {
11 "domain": "erni",
22 "registryOperator": "ERNI Group Holding AG",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.nic.erni/",
44 "whoisServer": "whois.nic.erni",
55 "rdapURLs": [
66 "https://rdap.nic.erni/"
00 {
11 "domain": "esurance",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.afilias-srs.net",
43 "tags": [
54 "brand",
00 {
11 "domain": "et",
2 "infoURL": "http://www.ethionet.et/?q=ipservicedomainname",
2 "infoURL": "https://www.iana.org/domains/root/db/et.html",
33 "nameServers": [
44 "a.nic.et",
55 "b.nic.et"
00 {
11 "domain": "eu.ki",
2 "nameServers": [
3 "ns1.subdomain.net",
4 "ns2.subdomain.net"
5 ],
62 "wildcards": [
73 "95.217.58.108",
84 "eu.ki"
00 {
11 "domain": "everbank",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.everbank",
43 "tags": [
54 "brand",
00 {
11 "domain": "extraspace",
22 "registryOperator": "Extra Space Storage LLC",
3 "infoURL": "http://nic.extraspace/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/extraspace",
44 "whoisServer": "whois.afilias-srs.net",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/extraspace/"
00 {
11 "domain": "faith",
22 "registryOperator": "dot Faith Limited",
3 "infoURL": "https://www.famousfourmedia.com/",
3 "infoURL": "http://nic.faith/",
44 "whoisServer": "whois.nic.faith",
55 "rdapURLs": [
66 "https://rdap.nic.faith/"
00 {
11 "domain": "farmers",
22 "registryOperator": "Farmers Insurance Exchange",
3 "infoURL": "http://www.nic.farmers/",
3 "infoURL": "https://www.nic.farmers/",
44 "whoisServer": "whois.nic.farmers",
55 "rdapURLs": [
66 "https://rdap.nic.farmers/"
00 {
11 "domain": "fedex",
22 "registryOperator": "Federal Express Corporation",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.fedex.com/en-us/shipping.html",
44 "whoisServer": "whois.nic.fedex",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/fedex/"
00 {
11 "domain": "ferrari",
22 "registryOperator": "Fiat Chrysler Automobiles N.V.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/ferrari",
44 "whoisServer": "whois.nic.ferrari",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/ferrari/"
00 {
11 "domain": "final",
22 "registryOperator": "Núcleo de Informação e Coordenação do Ponto BR - NIC.br",
3 "infoURL": "https://gtlds.nic.br/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/final",
44 "whoisServer": "whois.gtlds.nic.br",
55 "rdapURLs": [
66 "https://rdap.gtlds.nic.br/"
00 {
11 "domain": "financialaid",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
4 "generic"
3 "generic",
4 "withdrawn"
55 ],
66 "policies": [
77 {
00 {
11 "domain": "finish",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
4 "generic"
3 "generic",
4 "withdrawn"
55 ],
66 "policies": [
77 {
00 {
11 "domain": "fls",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "flsmidth",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.ksregistry.net",
43 "tags": [
54 "brand",
11 "domain": "foo",
22 "registryOperator": "Charleston Road Registry Inc.",
33 "infoURL": "https://www.registry.google/",
4 "whoisServer": "whois.nic.google",
4 "whoisServer": "whois.nic.foo",
55 "rdapURLs": [
66 "https://www.registry.google/rdap/"
77 ],
00 {
11 "domain": "food",
22 "registryOperator": "Lifestyle Domain Holdings, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/food",
44 "whoisServer": "whois.nic.food",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/food/v1/"
00 {
11 "domain": "foodnetwork",
22 "registryOperator": "Lifestyle Domain Holdings, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/foodnetwork",
44 "whoisServer": "whois.nic.foodnetwork",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/foodnetwork/v1/"
00 {
11 "domain": "forex",
22 "registryOperator": "Dog Beach, LLC",
3 "infoURL": "https://bostonivy.co/",
3 "infoURL": "http://nic.forex/",
44 "whoisServer": "whois.nic.forex",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "forum",
22 "registryOperator": "Fegistry, LLC",
3 "infoURL": "http://nic.forum/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/forum",
44 "whoisServer": "whois.nic.forum",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/forum/"
00 {
11 "domain": "frontdoor",
22 "registryOperator": "Lifestyle Domain Holdings, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/frontdoor",
44 "whoisServer": "whois.nic.frontdoor",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/frontdoor/v1/"
00 {
11 "domain": "fujixerox",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.fujixerox",
43 "tags": [
54 "brand",
00 {
11 "domain": "gallo",
22 "registryOperator": "Gallo Vineyards, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/gallo",
44 "whoisServer": "whois.nic.gallo",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/gallo/v1/"
00 {
11 "domain": "garnier",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "gay",
22 "registryOperator": "Top Level Design, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/gay",
44 "whoisServer": "whois.nic.gay",
55 "rdapURLs": [
66 "https://rdap.nic.gay/"
00 {
11 "domain": "gcc",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
4 "generic"
3 "generic",
4 "withdrawn"
55 ],
66 "policies": [
77 {
00 {
11 "domain": "gecompany",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "ged",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "genting",
22 "registryOperator": "Resorts World Inc Pte. Ltd.",
3 "infoURL": "http://nic.genting/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/genting",
44 "whoisServer": "whois.nic.genting",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/genting/v1/"
00 {
11 "domain": "george",
22 "registryOperator": "Wal-Mart Stores, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/george",
44 "whoisServer": "whois.nic.george",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/george/v1/"
11 "domain": "gift",
22 "registryOperator": "DotGift, LLC",
33 "infoURL": "https://uniregistry.link/extensions/gift/",
4 "whoisServer": "whois.uniregistry.net",
4 "whoisServer": "whois.nic.gift",
55 "rdapURLs": [
66 "https://whois.uniregistry.net/rdap/"
77 ],
00 {
11 "domain": "glade",
22 "registryOperator": "Johnson Shareholdings, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
43 "whoisServer": "whois.nic.glade",
54 "rdapURLs": [
65 "https://tld-rdap.verisign.com/glade/v1/"
00 {
11 "domain": "globalx",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "gmc",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "gmx",
22 "registryOperator": "1\u00261 Mail \u0026 Media GmbH",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/gmx",
44 "whoisServer": "whois.nic.gmx",
55 "rdapURLs": [
66 "https://rdap.nic.gmx/"
00 {
11 "domain": "goodhands",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.afilias-srs.net",
43 "tags": [
54 "brand",
00 {
11 "domain": "gotv",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "gov.al",
22 "nameServers": [
3 "al.cctld.authdns.ripe.net",
4 "ns-al.isti.cnr.it",
53 "ns1.nic.al",
64 "ns2.nic.al",
75 "nsx.nic.al",
11 "domain": "gov.er",
22 "nameServers": [
33 "er.cctld.authdns.ripe.net",
4 "ns0.punchdown.org",
5 "ns1.punchdown.net",
64 "sawanew.noc.net.er",
75 "zaranew.noc.net.er"
86 ],
00 {
11 "domain": "gov.iq",
22 "nameServers": [
3 "ns.cocca.fr",
43 "ns1.cmc.iq",
5 "nsp-anycast.cmc.iq",
6 "sns-pb.isc.org"
4 "nsp-anycast.cmc.iq"
75 ],
86 "policies": [
97 {
00 {
11 "domain": "gov",
2 "whoisServer": "whois.dotgov.gov",
2 "whoisServer": "whois.nic.gov",
33 "nameServers": [
44 "a.gov-servers.net",
55 "b.gov-servers.net",
55 "ans2.canar.sd",
66 "ns-sd.afrinic.net",
77 "ns.cocca.fr",
8 "ns1.uaenic.ae",
9 "ns2.uaenic.ae",
108 "pch.sis.sd",
119 "sd.cctld.authdns.ripe.net"
1210 ],
00 {
11 "domain": "gree",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "green",
22 "registryOperator": "Identity Digital Limited",
3 "infoURL": "https://get.green/",
3 "infoURL": "http://nic.green/",
44 "whoisServer": "whois.nic.green",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "grocery",
22 "registryOperator": "Wal-Mart Stores, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/grocery",
44 "rdapURLs": [
55 "https://tld-rdap.verisign.com/grocery/v1/"
66 ],
00 {
11 "domain": "gu",
2 "infoURL": "http://gadao.gov.gu/",
2 "infoURL": "https://www.iana.org/domains/root/db/gu.html",
33 "whoisURL": "http://gadao.gov.gu/domainsearch.htm",
44 "nameServers": [
55 "gold.uog.edu",
00 {
11 "domain": "guardian",
22 "registryOperator": "The Guardian Life Insurance Company of America",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/guardian",
44 "rdapURLs": [
55 "https://tld-rdap.verisign.com/guardian/v1/"
66 ],
00 {
11 "domain": "guardianlife",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "guardianmedia",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "halal",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
4 "generic"
3 "generic",
4 "withdrawn"
55 ],
66 "policies": [
77 {
1414 "DE-HH"
1515 ],
1616 "languages": [
17 "mul-Cyrl",
1718 "mul-Latn"
1819 ],
1920 "tags": [
2425 "policies": [
2526 {
2627 "type": "idn-table",
28 "key": "mul-Cyrl",
29 "value": "https://www.iana.org/domains/idn-tables/tables/hamburg_cyrl_2.txt"
30 },
31 {
32 "type": "idn-table",
2733 "key": "mul-Latn",
2834 "value": "https://www.iana.org/domains/idn-tables/tables/hamburg_latn_1.txt"
2935 }
00 {
11 "domain": "hdfcbank",
22 "registryOperator": "HDFC Bank Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/hdfcbank",
44 "whoisServer": "whois.nic.hdfcbank",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/hdfcbank/"
00 {
11 "domain": "health",
22 "registryOperator": "DotHealth, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/health",
44 "whoisServer": "whois.nic.health",
55 "rdapURLs": [
66 "https://rdap.nic.health/"
00 {
11 "domain": "heart",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "generic",
54 "withdrawn"
00 {
11 "domain": "heinz",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "hgtv",
22 "registryOperator": "Lifestyle Domain Holdings, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/hgtv",
44 "whoisServer": "whois.nic.hgtv",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/hgtv/v1/"
00 {
11 "domain": "hilton",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "hk",
2 "whoisServer": "whois.hkirc.hk",
2 "whoisServer": "whois.hkdnr.net.hk",
33 "nameServers": [
44 "c.hkirc.net.hk",
55 "d.hkirc.net.hk",
00 {
11 "domain": "hkt",
22 "registryOperator": "PCCW-HKT DataCom Services Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/hkt",
44 "whoisServer": "whois.nic.hkt",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/hkt/"
00 {
11 "domain": "hn",
2 "whoisServer": "whois.nic.hn",
2 "whoisServer": "whois2.afilias-grs.net",
33 "nameServers": [
44 "a.lactld.org",
55 "ns1.anycastdns.cz",
00 {
11 "domain": "homedepot",
22 "registryOperator": "Home Depot Product Authority, LLC",
3 "infoURL": "https://www.homedepot.com/c/TLD_homedepot",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/homedepot",
44 "whoisServer": "whois.nic.homedepot",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/homedepot/"
00 {
11 "domain": "honeywell",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.honeywell",
43 "tags": [
54 "brand",
00 {
11 "domain": "hoteis",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
4 "generic"
3 "generic",
4 "withdrawn"
55 ],
66 "policies": [
77 {
00 {
11 "domain": "hotel",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
4 "generic"
3 "generic",
4 "withdrawn"
55 ],
66 "policies": [
77 {
00 {
11 "domain": "hotels",
22 "registryOperator": "Booking.com B.V.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/hotels",
44 "whoisServer": "whois.nic.hotels",
55 "rdapURLs": [
66 "https://rdap.nic.hotels/"
00 {
11 "domain": "htc",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "hughes",
22 "registryOperator": "Hughes Satellite Systems Corporation",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/hughes",
44 "whoisServer": "whois.nic.hughes",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/hughes/"
00 {
11 "domain": "hyatt",
22 "registryOperator": "Hyatt GTLD, L.L.C.",
3 "infoURL": "https://www.hyatt.com/info/nic",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/hyatt",
44 "whoisServer": "whois.nic.hyatt",
55 "rdapURLs": [
66 "https://rdap.nic.hyatt/"
00 {
11 "domain": "ice",
22 "registryOperator": "IntercontinentalExchange, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/ice",
44 "whoisServer": "whois.nic.ice",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/ice/v1/"
00 {
11 "domain": "idn",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
4 "generic"
3 "generic",
4 "withdrawn"
55 ],
66 "policies": [
77 {
00 {
11 "domain": "ie",
22 "infoURL": "https://www.weare.ie/",
3 "whoisServer": "whois.weare.ie",
3 "whoisServer": "whois.domainregistry.ie",
44 "nameServers": [
55 "b.ns.ie",
66 "c.ns.ie",
77 "d.ns.ie",
8 "e.ns.ie",
89 "g.ns.ie",
910 "h.ns.ie",
1011 "i.ns.ie"
00 {
11 "domain": "ifm",
22 "registryOperator": "ifm electronic gmbh",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/ifm",
44 "whoisServer": "whois.nic.ifm",
55 "rdapURLs": [
66 "https://rdap.nic.ifm/"
00 {
11 "domain": "iinet",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.aridnrs.net.au",
43 "tags": [
54 "brand",
00 {
11 "domain": "imamat",
22 "registryOperator": "Fondation Aga Khan (Aga Khan Foundation)",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/imamat",
44 "whoisServer": "whois.afilias-srs.net",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/imamat/"
00 {
11 "domain": "inc",
22 "registryOperator": "Intercap Registry Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/inc",
44 "whoisServer": "whois.nic.inc",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/inc/"
00 {
11 "domain": "indians",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
4 "generic"
3 "generic",
4 "withdrawn"
55 ],
66 "policies": [
77 {
00 {
11 "domain": "info",
22 "registryOperator": "Identity Digital Limited",
3 "infoURL": "https://info.info/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.info",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "infosys",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "infy",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "intel",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.intel",
43 "tags": [
54 "brand",
00 {
11 "domain": "ira",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
4 "generic"
3 "generic",
4 "withdrawn"
55 ],
66 "policies": [
77 {
00 {
11 "domain": "iselect",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.iselect",
43 "tags": [
54 "brand",
00 {
11 "domain": "islam",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
4 "generic"
3 "generic",
4 "withdrawn"
55 ],
66 "policies": [
77 {
00 {
11 "domain": "ismaili",
22 "registryOperator": "Fondation Aga Khan (Aga Khan Foundation)",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/ismaili",
44 "whoisServer": "whois.afilias-srs.net",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/ismaili/"
00 {
11 "domain": "ist",
22 "registryOperator": "Istanbul Metropolitan Municipality",
3 "infoURL": "http://nic.ist/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/ist",
44 "whoisServer": "whois.afilias-srs.net",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/ist/"
00 {
11 "domain": "iveco",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.iveco",
43 "rdapURLs": [
54 "https://rdap.afilias-srs.net/rdap/iveco/"
00 {
11 "domain": "iwc",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.iwc",
43 "tags": [
54 "brand",
11 "domain": "iz.hr",
22 "nameServers": [
33 "dns-ez-1.carnet.hr",
4 "dns1.from.hr",
54 "dns1.iz.hr",
6 "dns2.from.hr",
75 "dns2.iz.hr"
86 ],
97 "policies": [
00 {
11 "domain": "java",
22 "registryOperator": "Oracle Corporation",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/java",
44 "whoisServer": "whois.nic.java",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/java/v1/"
00 {
11 "domain": "jcp",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.afilias-srs.net",
43 "tags": [
54 "brand",
00 {
11 "domain": "jeep",
22 "registryOperator": "FCA US LLC.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/jeep",
44 "whoisServer": "whois.afilias-srs.net",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/jeep/"
00 {
11 "domain": "jlc",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.jlc",
43 "tags": [
54 "brand",
00 {
11 "domain": "jll",
22 "registryOperator": "Jones Lang LaSalle Incorporated",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/jll",
44 "whoisServer": "whois.afilias-srs.net",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/jll/"
00 {
11 "domain": "jpmorganchase",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "justforu",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "kerastase",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "kerryhotels",
22 "registryOperator": "Kerry Trading Co. Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/kerryhotels",
44 "whoisServer": "whois.nic.kerryhotels",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/kerryhotels/v1/"
00 {
11 "domain": "kerrylogisitics",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "kerryproperties",
22 "registryOperator": "Kerry Trading Co. Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/kerryproperties",
44 "whoisServer": "whois.nic.kerryproperties",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/kerryproperties/v1/"
00 {
11 "domain": "ketchup",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "kg",
2 "whoisServer": "whois.kg",
2 "whoisServer": "whois.domain.kg",
33 "nameServers": [
44 "kg.cctld.authdns.ripe.net",
55 "ns.kg",
11 "domain": "kh",
22 "nameServers": [
33 "dns1.online.com.kh",
4 "ns.camnet.com.kh",
5 "ns1.dns.net.kh",
64 "ns4.apnic.net"
75 ],
86 "tags": [
00 {
11 "domain": "kid",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
4 "generic"
3 "generic",
4 "withdrawn"
55 ],
66 "policies": [
77 {
11 "domain": "kids",
22 "registryOperator": "DotKids Foundation Limited",
33 "infoURL": "https://nic.kids/",
4 "whoisServer": "whois.afilias-srs.net",
4 "whoisServer": "whois.nic.kids",
55 "nameServers": [
66 "a0.nic.kids",
77 "a2.nic.kids",
00 {
11 "domain": "kiehls",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "kim",
22 "registryOperator": "Identity Digital Limited",
3 "infoURL": "https://get.kim/",
3 "infoURL": "http://nic.kim/",
44 "whoisServer": "whois.nic.kim",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "koeln",
22 "registryOperator": "dotKoeln GmbH",
3 "whoisServer": "whois.ryce-rsp.com",
3 "whoisServer": "whois.nic.koeln",
44 "rdapURLs": [
55 "https://rdap.ryce-rsp.com/rdap/"
66 ],
00 {
11 "domain": "konami",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "kone",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "kr",
2 "whoisServer": "whois.kr",
2 "whoisServer": "whois.krnic.net",
33 "nameServers": [
44 "b.dns.kr",
55 "c.dns.kr",
00 {
11 "domain": "kred",
22 "registryOperator": "KredTLD Pty Ltd",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.nic.kred/",
44 "whoisServer": "whois.nic.kred",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/kred/"
00 {
11 "domain": "kuokgroup",
22 "registryOperator": "Kerry Trading Co. Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/kuokgroup",
44 "whoisServer": "whois.nic.kuokgroup",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/kuokgroup/v1/"
00 {
11 "domain": "kyknet",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "lacaixa",
22 "registryOperator": "Fundación Bancaria Caixa d’Estalvis i Pensions de Barcelona, “la Caixa”",
3 "infoURL": "http://nic.lacaixa/",
3 "infoURL": "http://www.nic.lacaixa/",
44 "whoisServer": "whois.nic.lacaixa",
55 "rdapURLs": [
66 "https://rdap.nic.lacaixa/"
00 {
11 "domain": "ladbrokes",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.ladbrokes",
43 "tags": [
54 "brand",
00 {
11 "domain": "lamer",
22 "registryOperator": "The Estée Lauder Companies Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/lamer",
44 "whoisServer": "whois.nic.lamer",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/lamer/"
00 {
11 "domain": "lancome",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.lancome",
43 "tags": [
54 "brand",
00 {
11 "domain": "latino",
22 "registryOperator": "Dish DBS Corporation",
3 "infoURL": "http://www.dishtlds.com/latino/",
3 "infoURL": "https://www.dishtlds.com/latino/",
44 "whoisServer": "whois.nic.latino",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/latino/"
00 {
11 "domain": "latrobe",
22 "registryOperator": "La Trobe University",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/latrobe",
44 "whoisServer": "whois.nic.latrobe",
55 "rdapURLs": [
66 "https://rdap.nic.latrobe/"
00 {
11 "domain": "lds",
22 "registryOperator": "IRI Domain Management, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/lds",
44 "whoisServer": "whois.nic.lds",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/lds/"
00 {
11 "domain": "lgbt",
22 "registryOperator": "Identity Digital Limited",
3 "infoURL": "https://get.lgbt/",
3 "infoURL": "http://nic.lgbt/",
44 "whoisServer": "whois.nic.lgbt",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "li",
2 "whoisServer": "whois.nic.li",
2 "whoisServer": "whois.nic.ch",
33 "rdapURLs": [
44 "https://rdap.nic.li/"
55 ],
00 {
11 "domain": "liaison",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.liaison",
43 "tags": [
54 "brand",
00 {
11 "domain": "lifestyle",
22 "registryOperator": "Lifestyle Domain Holdings, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/lifestyle",
44 "whoisServer": "whois.nic.lifestyle",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/lifestyle/v1/"
00 {
11 "domain": "lilly",
22 "registryOperator": "Eli Lilly and Company",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.lilly.com/lilly-global-top-level-domain",
44 "whoisServer": "whois.nic.lilly",
55 "rdapURLs": [
66 "https://rdap.nic.lilly/"
11 "domain": "limited.np",
22 "infoURL": "https://register.com.np/",
33 "nameServers": [
4 "np-ns.npix.net.np",
54 "ns-ext.vix.com",
65 "ns4.apnic.net",
76 "pch.nnic.np",
8 "sec2.apnic.net",
97 "shikhar.mos.com.np"
108 ],
119 "policies": [
00 {
11 "domain": "linde",
22 "registryOperator": "Linde Aktiengesellschaft",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/linde",
44 "whoisServer": "whois.nic.linde",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/linde/v1/"
11 "domain": "link",
22 "registryOperator": "Nova Registry Ltd",
33 "infoURL": "https://nova.link/",
4 "whoisServer": "whois.uniregistry.net",
4 "whoisServer": "whois.nic.link",
55 "rdapURLs": [
66 "https://whois.uniregistry.net/rdap/"
77 ],
00 {
11 "domain": "livestrong",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "living",
22 "registryOperator": "Lifestyle Domain Holdings, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/living",
44 "rdapURLs": [
55 "https://tld-rdap.verisign.com/living/v1/"
66 ],
00 {
11 "domain": "lixil",
22 "registryOperator": "LIXIL Group Corporation",
3 "infoURL": "https://newgtlds.icann.org/",
43 "whoisServer": "whois.nic.lixil",
54 "rdapURLs": [
65 "https://rdap.gmoregistry.net/rdap/"
11 "domain": "llp",
22 "registryOperator": "Intercap Registry Inc.",
33 "infoURL": "https://uniregistry.link/extensions/llp/",
4 "whoisServer": "whois.uniregistry.net",
4 "whoisServer": "whois.nic.llp",
55 "nameServers": [
66 "ns1.uniregistry.net",
77 "ns2.uniregistry.info",
00 {
11 "domain": "loan",
22 "registryOperator": "dot Loan Limited",
3 "infoURL": "https://www.famousfourmedia.com/",
3 "infoURL": "http://nic.loan/",
44 "whoisServer": "whois.nic.loan",
55 "rdapURLs": [
66 "https://rdap.nic.loan/"
00 {
11 "domain": "locker",
22 "registryOperator": "Dish DBS Corporation",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://dishtlds.com/locker/",
44 "whoisServer": "whois.nic.locker",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/locker/"
00 {
11 "domain": "loreal",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "lotto",
22 "registryOperator": "Identity Digital Limited",
3 "infoURL": "https://nic.lotto/",
3 "infoURL": "http://nic.lotto/",
44 "whoisServer": "whois.nic.lotto",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "ltda",
22 "registryOperator": "InterNetX, Corp",
3 "infoURL": "https://nic.ltda/",
3 "infoURL": "http://nic.ltda/",
44 "whoisServer": "whois.afilias-srs.net",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/ltda/"
00 {
11 "domain": "lundbeck",
22 "registryOperator": "H. Lundbeck A/S",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.lundbeck.com/global/nic",
44 "whoisServer": "whois.nic.lundbeck",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/lundbeck/v1/"
00 {
11 "domain": "lupin",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "luxe",
22 "registryOperator": "Registry Services, LLC",
3 "infoURL": "http://nix.luxe/",
3 "infoURL": "https://nic.luxe/",
44 "whoisServer": "whois.nic.luxe",
55 "rdapURLs": [
66 "https://rdap.nic.luxe/"
00 {
11 "domain": "macys",
22 "registryOperator": "Macys, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/macys",
44 "whoisServer": "whois.nic.macys",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/macys/v1/"
11 "domain": "map",
22 "registryOperator": "Charleston Road Registry Inc.",
33 "infoURL": "https://www.registry.google/",
4 "whoisServer": "whois.nic.google",
4 "whoisServer": "whois.nic.map",
55 "rdapURLs": [
66 "https://www.registry.google/rdap/"
77 ],
00 {
11 "domain": "markets",
22 "registryOperator": "Dog Beach, LLC",
3 "infoURL": "https://bostonivy.co/",
3 "infoURL": "http://nic.markets/",
44 "whoisServer": "whois.nic.markets",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "maserati",
22 "registryOperator": "Fiat Chrysler Automobiles N.V.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/maserati",
44 "whoisServer": "whois.nic.maserati",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/maserati/"
00 {
11 "domain": "matrix",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "mattel",
22 "registryOperator": "Mattel Sites, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/mattel",
44 "whoisServer": "whois.nic.mattel",
55 "rdapURLs": [
66 "https://rdap.nic.mattel/"
00 {
11 "domain": "maybelline",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "mcd",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "mcdonalds",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "medical",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
4 "generic"
3 "generic",
4 "withdrawn"
55 ],
66 "policies": [
77 {
11 "domain": "meet",
22 "registryOperator": "Charleston Road Registry Inc.",
33 "infoURL": "https://www.registry.google/",
4 "whoisServer": "whois.nic.google",
4 "whoisServer": "whois.nic.meet",
55 "rdapURLs": [
66 "https://www.registry.google/rdap/"
77 ],
00 {
11 "domain": "men",
22 "registryOperator": "Exclusive Registry Limited",
3 "infoURL": "https://www.famousfourmedia.com/",
3 "infoURL": "http://nic.men/",
44 "whoisServer": "whois.nic.men",
55 "rdapURLs": [
66 "https://rdap.nic.men/"
00 {
11 "domain": "meo",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "merck",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "merckmsd",
22 "registryOperator": "MSD Registry Holdings, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/merckmsd",
44 "rdapURLs": [
55 "https://tld-rdap.verisign.com/merckmsd/v1/"
66 ],
00 {
11 "domain": "metlife",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.metlife",
43 "tags": [
54 "brand",
00 {
11 "domain": "mih",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "mii",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "generic",
54 "withdrawn"
00 {
11 "domain": "mil.eg",
2 "nameServers": [
3 "frcu.eun.eg",
4 "rip.psg.com"
5 ],
26 "policies": [
37 {
48 "type": "idn-disallowed"
00 {
11 "domain": "mil.iq",
22 "nameServers": [
3 "ns.cocca.fr",
43 "ns1.cmc.iq",
5 "nsp-anycast.cmc.iq",
6 "sns-pb.isc.org"
4 "nsp-anycast.cmc.iq"
75 ],
86 "policies": [
97 {
22 "nameServers": [
33 "dns5.telia.com",
44 "dns6.telia.com",
5 "ns.defence.se",
65 "ns.mil.se",
76 "ns2.mil.se",
87 "ns3.mil.se",
00 {
11 "domain": "mitek",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "mls",
22 "registryOperator": "The Canadian Real Estate Association",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/mls",
44 "whoisServer": "whois.nic.mls",
55 "rdapURLs": [
66 "https://rdap.mls.fury.ca/rdap/"
00 {
11 "domain": "mn",
2 "whoisServer": "whois.nic.mn",
2 "whoisServer": "whois.afilias-grs.info",
33 "nameServers": [
44 "a0.cctld.afilias-nst.info",
55 "a2.cctld.afilias-nst.info",
00 {
11 "domain": "mnet",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "mobi",
22 "registryOperator": "Identity Digital Limited",
3 "infoURL": "https://dotmobi.mobi/",
3 "infoURL": "http://nic.mobi/",
44 "whoisServer": "whois.nic.mobi",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "mobile",
22 "registryOperator": "Dish DBS Corporation",
3 "infoURL": "http://www.dishtlds.com/mobile/",
3 "infoURL": "https://www.dishtlds.com/mobile/",
44 "whoisServer": "whois.nic.mobile",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/mobile/"
00 {
11 "domain": "mobily",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.mobily",
43 "tags": [
54 "generic",
00 {
11 "domain": "moi",
22 "registryOperator": "Amazon Registry Services, Inc.",
3 "infoURL": "http://bienvenue.moi/",
3 "infoURL": "https://bienvenue.moi/",
44 "whoisServer": "whois.nic.moi",
55 "rdapURLs": [
66 "https://rdap.nominet.uk/moi/"
00 {
11 "domain": "montblanc",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "mopar",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.afilias-srs.net",
43 "tags": [
54 "brand",
00 {
11 "domain": "mormon",
22 "registryOperator": "IRI Domain Management, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/mormon",
44 "whoisServer": "whois.nic.mormon",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/mormon/"
00 {
11 "domain": "moscow",
22 "registryOperator": "Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://www.nic.moscow/",
44 "whoisServer": "whois.nic.moscow",
55 "rdapURLs": [
66 "https://flexireg.net/moscow/rdap/"
00 {
11 "domain": "moto",
22 "registryOperator": "Motorola Trademark Holdings, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://www.nic.moto/",
44 "whoisServer": "whois.nic.moto",
55 "rdapURLs": [
66 "https://rdap.nic.moto/"
00 {
11 "domain": "movistar",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois-fe.movistar.tango.knipp.de",
43 "tags": [
54 "brand",
00 {
11 "domain": "mozaic",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "mp",
2 "infoURL": "http://get.mp/",
2 "infoURL": "https://get.mp/",
33 "whoisServer": "whois.nic.mp",
44 "nameServers": [
55 "ns1.nic.mp",
00 {
11 "domain": "mrmuscle",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "mrporter",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "mtn",
22 "registryOperator": "MTN Dubai Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://www.nic.mtn/",
44 "whoisServer": "whois.nic.mtn",
55 "rdapURLs": [
66 "https://rdap.nominet.uk/mtn/"
00 {
11 "domain": "mtpc",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.mtpc",
43 "tags": [
54 "brand",
00 {
11 "domain": "mtr",
22 "registryOperator": "MTR Corporation Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/mtr",
44 "whoisServer": "whois.nic.mtr",
55 "rdapURLs": [
66 "https://whois.nic.mtr/rdap/"
00 {
11 "domain": "multichoice",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
11 "domain": "museum",
22 "registryOperator": "Museum Domain Management Association (MuseDoma)",
33 "infoURL": "https://welcome.museum/",
4 "whoisServer": "whois.nic.museum",
4 "whoisServer": "whois.museum",
55 "rdapURLs": [
66 "https://rdap.nic.museum/"
77 ],
00 {
11 "domain": "mutualfunds",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
4 "generic"
3 "generic",
4 "withdrawn"
55 ],
66 "policies": [
77 {
00 {
11 "domain": "mutuelle",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois-mutuelle.nic.fr",
43 "tags": [
54 "generic",
00 {
11 "domain": "mzansimagic",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "nab",
22 "registryOperator": "National Australia Bank Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.nab.com.au/nic",
44 "whoisServer": "whois.nic.nab",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/nab/v1/"
00 {
11 "domain": "nadex",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.nadex",
43 "tags": [
54 "brand",
11 "domain": "name.hr",
22 "nameServers": [
33 "dns-ez-1.carnet.hr",
4 "dns1.from.hr",
54 "dns1.name.hr",
6 "dns2.from.hr",
75 "dns2.name.hr"
86 ],
97 "policies": [
00 {
11 "domain": "naspers",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "nationwide",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.nationwide",
43 "rdapURLs": [
54 "https://tld-rdap.verisign.com/nationwide/v1/"
00 {
11 "domain": "natura",
22 "registryOperator": "NATURA COSMÉTICOS S.A.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.natura/",
44 "whoisServer": "whois.gtlds.nic.br",
55 "rdapURLs": [
66 "https://rdap.gtlds.nic.br/"
00 {
11 "domain": "nba",
22 "registryOperator": "NBA REGISTRY, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://www.nic.nba/",
44 "whoisServer": "whois.nic.nba",
55 "rdapURLs": [
66 "https://rdap.nic.nba/"
00 {
11 "domain": "net.al",
22 "nameServers": [
3 "al.cctld.authdns.ripe.net",
4 "ns-al.isti.cnr.it",
53 "ns1.nic.al",
64 "ns2.nic.al",
75 "nsx.nic.al",
11 "domain": "net.er",
22 "nameServers": [
33 "er.cctld.authdns.ripe.net",
4 "ns0.punchdown.org",
5 "ns1.punchdown.net",
64 "sawanew.noc.net.er",
75 "zaranew.noc.net.er"
86 ],
22 "nameServers": [
33 "ns.cocca.fr",
44 "ns1.cmc.iq",
5 "nsp-anycast.cmc.iq",
6 "sns-pb.isc.org"
5 "nsp-anycast.cmc.iq"
76 ]
87 }
00 {
11 "domain": "netaporter",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "netflix",
22 "registryOperator": "Netflix, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://about.netflix.com/en/nic",
44 "whoisServer": "whois.nic.netflix",
55 "rdapURLs": [
66 "https://rdap.nic.netflix/"
00 {
11 "domain": "neustar",
22 "registryOperator": "NeuStar, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.neustar/",
44 "whoisServer": "whois.nic.neustar",
55 "rdapURLs": [
66 "https://rdap.nic.neustar/"
00 {
11 "domain": "newholland",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.newholland",
43 "tags": [
54 "brand",
00 {
11 "domain": "news",
22 "registryOperator": "Dog Beach, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.news",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "next",
22 "registryOperator": "Next plc",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.next/",
44 "whoisServer": "whois.nic.next",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/next/v1/"
00 {
11 "domain": "nextdirect",
22 "registryOperator": "Next plc",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.nextdirect/",
44 "whoisServer": "whois.nic.nextdirect",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/nextdirect/v1/"
00 {
11 "domain": "nfl",
22 "registryOperator": "NFL Reg Ops LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://www.nic.nfl/",
44 "whoisServer": "whois.nic.nfl",
55 "rdapURLs": [
66 "https://rdap.nic.nfl/"
00 {
11 "domain": "nhk",
22 "registryOperator": "Japan Broadcasting Corporation (NHK)",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.nhk/",
44 "whoisServer": "whois.nic.nhk",
55 "rdapURLs": [
66 "https://rdap.gmoregistry.net/rdap/"
00 {
11 "domain": "nico",
22 "registryOperator": "DWANGO Co., Ltd.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.nico/",
44 "whoisServer": "whois.nic.nico",
55 "rdapURLs": [
66 "https://rdap.gmoregistry.net/rdap/"
00 {
11 "domain": "nike",
22 "registryOperator": "NIKE, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.nike.com/",
44 "whoisServer": "whois.nic.nike",
55 "rdapURLs": [
66 "https://rdap.nic.nike/"
00 {
11 "domain": "nikon",
22 "registryOperator": "NIKON CORPORATION",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.nic.nikon/",
44 "whoisServer": "whois.nic.nikon",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/nikon/v1/"
00 {
11 "domain": "nissay",
22 "registryOperator": "Nippon Life Insurance Company",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.nissay.co.jp/sorry/gtld/",
44 "whoisServer": "whois.nic.nissay",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/nissay/v1/"
00 {
11 "domain": "nokia",
22 "registryOperator": "Nokia Corporation",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.nokia/",
44 "whoisServer": "whois.afilias-srs.net",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/nokia/"
11 "domain": "nom.mg",
22 "nameServers": [
33 "censvrns0001.ird.fr",
4 "ns-mg.malagasy.com",
54 "ns.dts.mg",
65 "ns.nic.mg",
76 "pch.nic.mg"
00 {
11 "domain": "northlandinsurance",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "northwesternmutual",
22 "registryOperator": "Northwestern Mutual Registry, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.nic.northwesternmutual/",
44 "whoisServer": "whois.nic.northwesternmutual",
55 "rdapURLs": [
66 "https://rdap.nic.northwesternmutual/"
00 {
11 "domain": "norton",
22 "registryOperator": "NortonLifeLock Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/norton",
44 "whoisServer": "whois.nic.norton",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/norton/v1/"
00 {
11 "domain": "now",
22 "registryOperator": "Amazon Registry Services, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.now/",
44 "whoisServer": "whois.nic.now",
55 "rdapURLs": [
66 "https://rdap.nominet.uk/now/"
00 {
11 "domain": "nowruz",
22 "registryOperator": "Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.nowruz/",
44 "whoisServer": "whois.nic.nowruz",
55 "rdapURLs": [
66 "https://api.rdap.agitsys.net/"
00 {
11 "domain": "nowtv",
22 "registryOperator": "Starbucks (HK) Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/nowtv",
44 "whoisServer": "whois.nic.nowtv",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/nowtv/"
00 {
11 "domain": "nra",
22 "registryOperator": "NRA Holdings Company, INC.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/nra",
44 "whoisServer": "whois.afilias-srs.net",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/nra/"
00 {
11 "domain": "nrw",
22 "registryOperator": "Minds + Machines GmbH",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.nrw/",
44 "whoisServer": "whois.nic.nrw",
55 "rdapURLs": [
66 "https://rdap.nic.nrw/"
00 {
11 "domain": "ntt",
22 "registryOperator": "NIPPON TELEGRAPH AND TELEPHONE CORPORATION",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/ntt",
44 "rdapURLs": [
55 "https://rdap.nic.ntt/rdap/"
66 ],
00 {
11 "domain": "nz",
2 "whoisServer": "whois.irs.net.nz",
2 "whoisServer": "whois.srs.net.nz",
33 "nameServers": [
44 "ns1.dns.net.nz",
55 "ns2.dns.net.nz",
00 {
11 "domain": "obi",
22 "registryOperator": "OBI Group Holding SE \u0026 Co. KGaA",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.obi/",
44 "whoisServer": "whois.nic.obi",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/obi/v1/"
00 {
11 "domain": "observer",
22 "registryOperator": "Dog Beach, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.observer",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "off",
22 "registryOperator": "Johnson Shareholdings, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
43 "whoisServer": "whois.nic.off",
54 "rdapURLs": [
65 "https://tld-rdap.verisign.com/off/v1/"
00 {
11 "domain": "olayan",
22 "registryOperator": "Crescent Holding GmbH",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.olayan/",
44 "whoisServer": "whois.nic.olayan",
55 "rdapURLs": [
66 "https://rdap.nic.olayan/"
00 {
11 "domain": "olayangroup",
22 "registryOperator": "Crescent Holding GmbH",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.olayangroup/",
44 "whoisServer": "whois.nic.olayangroup",
55 "rdapURLs": [
66 "https://rdap.nic.olayangroup/"
00 {
11 "domain": "oldnavy",
22 "registryOperator": "The Gap, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.nic.gap/",
44 "whoisServer": "whois.nic.oldnavy",
55 "rdapURLs": [
66 "https://rdap.nic.oldnavy/"
00 {
11 "domain": "ollo",
22 "registryOperator": "Dish DBS Corporation",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://dishtlds.com/ollo/",
44 "whoisServer": "whois.nic.ollo",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/ollo/"
00 {
11 "domain": "olympus",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "om",
2 "infoURL": "http://www.registry.om/",
2 "infoURL": "https://www.registry.om/",
33 "whoisServer": "whois.registry.om",
44 "nameServers": [
55 "cctld.alpha.aridns.net.au",
00 {
11 "domain": "omega",
22 "registryOperator": "The Swatch Group Ltd",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.omega/",
44 "whoisServer": "whois.nic.omega",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/omega/v1/"
00 {
11 "domain": "one",
22 "registryOperator": "One.com A/S",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://get.one/",
44 "whoisServer": "whois.nic.one",
55 "rdapURLs": [
66 "https://rdap.nic.one/"
11 "domain": "onl",
22 "registryOperator": "iRegistry GmbH",
33 "infoURL": "https://nic.onl/",
4 "whoisServer": "whois.afilias-srs.net",
4 "whoisServer": "whois.nic.onl",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/onl/"
77 ],
00 {
11 "domain": "online",
22 "registryOperator": "Radix FZC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://radix.website/dot-online",
44 "whoisServer": "whois.nic.online",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/online/"
00 {
11 "domain": "onyourside",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.onyourside",
43 "rdapURLs": [
54 "https://tld-rdap.verisign.com/onyourside/v1/"
00 {
11 "domain": "open",
22 "registryOperator": "American Express Travel Related Services Company, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://about.americanexpress.com/newsroom/#media-contacts",
44 "whoisServer": "whois.nic.open",
55 "rdapURLs": [
66 "https://rdap.nic.open/"
00 {
11 "domain": "oracle",
22 "registryOperator": "Oracle Corporation",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/oracle",
44 "whoisServer": "whois.nic.oracle",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/oracle/v1/"
00 {
11 "domain": "orange",
22 "registryOperator": "Orange Brand Services Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.orange.com/en/nic/domains",
44 "whoisServer": "whois.nic.orange",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/orange/v1/"
00 {
11 "domain": "org.al",
22 "nameServers": [
3 "al.cctld.authdns.ripe.net",
4 "ns-al.isti.cnr.it",
53 "ns1.nic.al",
64 "ns2.nic.al",
75 "nsx.nic.al",
11 "domain": "org.er",
22 "nameServers": [
33 "er.cctld.authdns.ripe.net",
4 "ns0.punchdown.org",
5 "ns1.punchdown.net",
64 "sawanew.noc.net.er",
75 "zaranew.noc.net.er"
86 ],
22 "nameServers": [
33 "ns.cocca.fr",
44 "ns1.cmc.iq",
5 "nsp-anycast.cmc.iq",
6 "sns-pb.isc.org"
5 "nsp-anycast.cmc.iq"
76 ],
87 "policies": [
98 {
00 {
11 "domain": "organic",
22 "registryOperator": "Identity Digital Limited",
3 "infoURL": "https://get.organic/",
3 "infoURL": "http://nic.organic/",
44 "whoisServer": "whois.nic.organic",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "orientexpress",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.afilias-srs.net",
43 "tags": [
54 "brand",
00 {
11 "domain": "origin",
2 "whoisServer": "whois.afilias-srs.net"
2 "whoisServer": "whois.afilias-srs.net",
3 "tags": [
4 "withdrawn"
5 ]
36 }
00 {
11 "domain": "origins",
22 "registryOperator": "The Estée Lauder Companies Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/origins",
44 "whoisServer": "whois.nic.origins",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/origins/"
00 {
11 "domain": "osaka",
22 "registryOperator": "Osaka Registry Co., Ltd.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://domain.osaka/",
44 "whoisServer": "whois.nic.osaka",
55 "rdapURLs": [
66 "https://rdap.nic.osaka/"
00 {
11 "domain": "otsuka",
22 "registryOperator": "Otsuka Holdings Co., Ltd.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.otsuka/",
44 "whoisServer": "whois.nic.otsuka",
55 "rdapURLs": [
66 "https://rdap.gmoregistry.net/rdap/"
00 {
11 "domain": "ott",
22 "registryOperator": "Dish DBS Corporation",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://dishtlds.com/ott/",
44 "whoisServer": "whois.nic.ott",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/ott/"
00 {
11 "domain": "overheidnl",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "pamperedchef",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "panasonic",
22 "registryOperator": "Panasonic Corporation",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.panasonic/",
44 "whoisServer": "whois.nic.gmo",
55 "rdapURLs": [
66 "https://rdap.gmoregistry.net/rdap/"
00 {
11 "domain": "panerai",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.panerai",
43 "tags": [
54 "brand",
00 {
11 "domain": "pars",
22 "registryOperator": "Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.pars/",
44 "whoisServer": "whois.nic.pars",
55 "rdapURLs": [
66 "https://api.rdap.agitsys.net/"
00 {
11 "domain": "party",
22 "registryOperator": "Blue Sky Registry Limited",
3 "infoURL": "https://www.famousfourmedia.com/",
3 "infoURL": "http://nic.party/",
44 "whoisServer": "whois.nic.party",
55 "rdapURLs": [
66 "https://rdap.nic.party/"
00 {
11 "domain": "passagens",
22 "registryOperator": "Travel Reservations SRL",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/passagens",
44 "whoisServer": "whois.nic.passagens",
55 "rdapURLs": [
66 "https://rdap.nic.passagens/"
00 {
11 "domain": "patagonia",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "patch",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "pay",
22 "registryOperator": "Amazon Registry Services, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.pay/",
44 "whoisServer": "whois.nic.pay",
55 "rdapURLs": [
66 "https://rdap.nominet.uk/pay/"
00 {
11 "domain": "payu",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "pccw",
22 "registryOperator": "PCCW Enterprises Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/pccw",
44 "whoisServer": "whois.nic.pccw",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/pccw/"
00 {
11 "domain": "persiangulf",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "generic",
5 "geo"
4 "geo",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "pet",
22 "registryOperator": "Identity Digital Limited",
3 "infoURL": "https://get.pet/",
3 "infoURL": "http://nic.pet/",
44 "whoisServer": "whois.nic.pet",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "pets",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
4 "generic"
3 "generic",
4 "withdrawn"
55 ],
66 "policies": [
77 {
00 {
11 "domain": "pfizer",
22 "registryOperator": "Pfizer Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.nic.pfizer/",
44 "whoisServer": "whois.nic.pfizer",
55 "rdapURLs": [
66 "https://rdap.nic.pfizer/"
22 "nameServers": [
33 "munnari.oz.au",
44 "ns.uu.net",
5 "ns1.tiare.net.pg",
6 "ns1.unitech.ac.pg",
7 "ns2.tiare.net.pg"
5 "ns1.unitech.ac.pg"
86 ],
97 "tags": [
108 "country",
00 {
11 "domain": "pharmacy",
22 "registryOperator": "National Association of Boards of Pharmacy",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.pharmacy/",
44 "whoisServer": "whois.nic.pharmacy",
55 "rdapURLs": [
66 "https://rdap.nominet.uk/pharmacy/"
00 {
11 "domain": "philips",
22 "registryOperator": "Koninklijke Philips N.V.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.philips/",
44 "whoisServer": "whois.nic.philips",
55 "rdapURLs": [
66 "https://rdap.nic.philips/"
00 {
11 "domain": "phone",
22 "registryOperator": "Dish DBS Corporation",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.dishtlds.com/phone/",
44 "whoisServer": "whois.nic.phone",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/phone/"
11 "domain": "photo",
22 "registryOperator": "Registry Services, LLC",
33 "infoURL": "https://nic.photo/",
4 "whoisServer": "whois.uniregistry.net",
4 "whoisServer": "whois.nic.photo",
55 "rdapURLs": [
66 "https://whois.uniregistry.net/rdap/"
77 ],
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "np.cctld.authdns.ripe.net",
6 "ns-ext.vix.com",
76 "ns4.apnic.net",
87 "pch.nnic.np",
9 "sec2.apnic.net",
108 "shikhar.mos.com.np"
119 ],
1210 "policies": [
00 {
11 "domain": "physio",
22 "registryOperator": "PhysBiz Pty Ltd",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.physio/",
44 "whoisServer": "whois.nic.physio",
55 "rdapURLs": [
66 "https://rdap.nic.physio/"
00 {
11 "domain": "piaget",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.piaget",
43 "tags": [
54 "brand",
00 {
11 "domain": "pictet",
22 "registryOperator": "Pictet Europe S.A.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/pictet",
44 "rdapURLs": [
55 "https://tld-rdap.verisign.com/pictet/v1/"
66 ],
00 {
11 "domain": "pid",
22 "registryOperator": "Top Level Spectrum, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://www.nic.pid/",
44 "whoisServer": "whois.nic.pid",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/pid/"
00 {
11 "domain": "pin",
22 "registryOperator": "Amazon Registry Services, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.pin/",
44 "whoisServer": "whois.nic.pin",
55 "rdapURLs": [
66 "https://rdap.nominet.uk/pin/"
00 {
11 "domain": "ping",
22 "registryOperator": "Ping Registry Provider, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.ping/",
44 "whoisServer": "whois.nic.ping",
55 "rdapURLs": [
66 "https://rdap.nic.ping/"
00 {
11 "domain": "pink",
22 "registryOperator": "Identity Digital Limited",
3 "infoURL": "https://get.pink/",
3 "infoURL": "http://nic.pink/",
44 "whoisServer": "whois.nic.pink",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "pioneer",
22 "registryOperator": "Pioneer Corporation",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.pioneer/",
44 "whoisServer": "whois.nic.pioneer",
55 "rdapURLs": [
66 "https://rdap.nominet.uk/pioneer/"
00 {
11 "domain": "piperlime",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "pitney",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "pizza",
22 "registryOperator": "Binky Moon, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.pizza",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "playstation",
22 "registryOperator": "Sony Interactive Entertainment Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.playstation/",
44 "whoisServer": "whois.nic.playstation",
55 "rdapURLs": [
66 "https://rdap.gmoregistry.net/rdap/"
00 {
11 "domain": "plus",
22 "registryOperator": "Binky Moon, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.plus",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "pnc",
22 "registryOperator": "PNC Domain Co., LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.pnc.com/en/security-privacy/nic.html",
44 "whoisServer": "whois.nic.pnc",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/pnc/"
00 {
11 "domain": "pohl",
22 "registryOperator": "Deutsche Vermögensberatung Aktiengesellschaft DVAG",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/pohl",
44 "whoisServer": "whois.nic.pohl",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/pohl/"
00 {
11 "domain": "poker",
22 "registryOperator": "Identity Digital Limited",
3 "infoURL": "https://get.poker/",
3 "infoURL": "http://nic.poker/",
44 "whoisServer": "whois.nic.poker",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "politie",
22 "registryOperator": "Politie Nederland",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.politie/",
44 "whoisServer": "whois.nic.politie",
55 "rdapURLs": [
66 "https://rdap.nic.politie/"
00 {
11 "domain": "polo",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "pr",
22 "infoURL": "https://domains.pr/",
3 "whoisServer": "whois.afilias-srs.net",
3 "whoisServer": "whois.nic.pr",
44 "nameServers": [
55 "a.lactld.org",
66 "a0.pr.afilias-nst.info",
00 {
11 "domain": "pramerica",
22 "registryOperator": "Prudential Financial, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.pramerica/nicpramerica/nic%20pramerica%20static%20page%20.html",
44 "whoisServer": "whois.nic.pramerica",
55 "rdapURLs": [
66 "https://rdap.nic.pramerica/"
00 {
11 "domain": "praxi",
22 "registryOperator": "Praxi S.p.A.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.praxi/",
44 "whoisServer": "whois.nic.praxi",
55 "rdapURLs": [
66 "https://rdap.nic.praxi/"
00 {
11 "domain": "prime",
22 "registryOperator": "Amazon Registry Services, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.prime/",
44 "whoisServer": "whois.nic.prime",
55 "rdapURLs": [
66 "https://rdap.nominet.uk/prime/"
00 {
11 "domain": "pro",
22 "registryOperator": "Identity Digital Limited",
3 "infoURL": "https://registry.pro/",
3 "infoURL": "http://nic.pro/",
44 "whoisServer": "whois.nic.pro",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
22 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
5 "np.cctld.authdns.ripe.net",
6 "ns4.apnic.net",
75 "pch.nnic.np",
86 "shikhar.mos.com.np"
97 ],
00 {
11 "domain": "progressive",
22 "registryOperator": "Progressive Casualty Insurance Company",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.progressive.com/support/gtld/",
44 "whoisServer": "whois.afilias-srs.net",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/progressive/"
00 {
11 "domain": "promo",
22 "registryOperator": "Identity Digital Limited",
3 "infoURL": "https://get.promo/",
3 "infoURL": "http://nic.promo/",
44 "whoisServer": "whois.nic.promo",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "protection",
22 "registryOperator": "XYZ.COM LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.protection/",
44 "whoisServer": "whois.nic.protection",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/protection/"
00 {
11 "domain": "pru",
22 "registryOperator": "Prudential Financial, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.pru/nicpru/nic-%20pru.html",
44 "whoisServer": "whois.nic.pru",
55 "rdapURLs": [
66 "https://rdap.nic.pru/"
00 {
11 "domain": "prudential",
22 "registryOperator": "Prudential Financial, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.prudential/nicprudential/nic-%20prudential%20static%20page.html",
44 "whoisServer": "whois.nic.prudential",
55 "rdapURLs": [
66 "https://rdap.nic.prudential/"
00 {
11 "domain": "pwc",
22 "registryOperator": "PricewaterhouseCoopers LLP",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://www.nic.pwc/",
44 "whoisServer": "whois.afilias-srs.net",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/pwc/"
00 {
11 "domain": "qtel",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "quest",
22 "registryOperator": "XYZ.COM LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.quest/",
44 "whoisServer": "whois.nic.quest",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/quest/"
00 {
11 "domain": "qvc",
22 "registryOperator": "QVC, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
43 "whoisServer": "whois.nic.qvc",
54 "rdapURLs": [
65 "https://rdap.nic.qvc/"
00 {
11 "domain": "racing",
22 "registryOperator": "Premier Registry Limited",
3 "infoURL": "https://www.famousfourmedia.com/",
3 "infoURL": "http://nic.racing/",
44 "whoisServer": "whois.nic.racing",
55 "rdapURLs": [
66 "https://rdap.nic.racing/"
00 {
11 "domain": "raid",
22 "registryOperator": "Johnson Shareholdings, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
43 "whoisServer": "whois.nic.raid",
54 "rdapURLs": [
65 "https://tld-rdap.verisign.com/raid/v1/"
00 {
11 "domain": "ram",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "read",
22 "registryOperator": "Amazon Registry Services, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.read/",
44 "whoisServer": "whois.nic.read",
55 "rdapURLs": [
66 "https://rdap.nominet.uk/read/"
00 {
11 "domain": "realestate",
22 "registryOperator": "dotRealEstate LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://home.realestate/",
44 "whoisServer": "whois.nic.realestate",
55 "rdapURLs": [
66 "https://rdap.nominet.uk/realestate/"
00 {
11 "domain": "realtor",
22 "registryOperator": "Real Estate Domains LLC",
3 "infoURL": "https://www.claim.realtor/",
3 "infoURL": "http://nic.realtor/",
44 "rdapURLs": [
55 "https://rdap.nominet.uk/realtor/"
66 ],
00 {
11 "domain": "realty",
22 "registryOperator": "Dog Beach, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.realty",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "red",
22 "registryOperator": "Identity Digital Limited",
3 "infoURL": "https://get.red/",
3 "infoURL": "http://nic.red/",
44 "whoisServer": "whois.nic.red",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "redken",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "redstone",
22 "registryOperator": "Redstone Haute Couture Co., Ltd.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.redstone/",
44 "whoisServer": "whois.nic.redstone",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/redstone/"
00 {
11 "domain": "redumbrella",
22 "registryOperator": "Travelers TLD, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.redumbrella/",
44 "whoisServer": "whois.afilias-srs.net",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/redumbrella/"
00 {
11 "domain": "rehab",
22 "registryOperator": "Dog Beach, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.rehab",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "reise",
22 "registryOperator": "Binky Moon, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.reise",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "reit",
22 "registryOperator": "National Association of Real Estate Investment Trusts, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.reit/",
44 "whoisServer": "whois.nic.reit",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/reit/"
00 {
11 "domain": "reliance",
22 "registryOperator": "Reliance Industries Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.reliance/",
44 "whoisServer": "whois.nic.reliance",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/reliance/"
00 {
11 "domain": "ren",
22 "registryOperator": "ZDNS International Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.ren/",
44 "whoisServer": "whois.nic.ren",
55 "rdapURLs": [
66 "https://rdap.zdnsgtld.com/ren/"
1111 "c.zdnscloud.com",
1212 "d.zdnscloud.com",
1313 "f.zdnscloud.com",
14 "g.zdnscloud.com",
15 "i.zdnscloud.com",
16 "j.zdnscloud.com"
14 "g.zdnscloud.com"
1715 ],
1816 "languages": [
1917 "zh-Hans",
00 {
11 "domain": "rent",
22 "registryOperator": "XYZ.COM LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.rent/",
44 "whoisServer": "whois.nic.rent",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/rent/"
00 {
11 "domain": "retirement",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
4 "generic"
3 "generic",
4 "withdrawn"
55 ],
66 "policies": [
77 {
00 {
11 "domain": "review",
22 "registryOperator": "dot Review Limited",
3 "infoURL": "https://www.famousfourmedia.com/",
3 "infoURL": "http://nic.review/",
44 "whoisServer": "whois.nic.review",
55 "rdapURLs": [
66 "https://rdap.nic.review/"
00 {
11 "domain": "rexroth",
22 "registryOperator": "Robert Bosch GMBH",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://apps.boschrexroth.com/microsites/nic_rexroth/index.html",
44 "whoisServer": "whois.nic.rexroth",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/rexroth/v1/"
11 "domain": "rich",
22 "registryOperator": "iRegistry GmbH",
33 "infoURL": "https://nic.rich/",
4 "whoisServer": "whois.afilias-srs.net",
4 "whoisServer": "whois.nic.rich",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/rich/"
77 ],
00 {
11 "domain": "richardli",
22 "registryOperator": "Pacific Century Asset Management (HK) Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/richardli",
44 "whoisServer": "whois.nic.richardli",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/richardli/"
00 {
11 "domain": "ricoh",
22 "registryOperator": "Ricoh Company, Ltd.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.ricoh/",
44 "whoisServer": "whois.nic.ricoh",
55 "rdapURLs": [
66 "https://rdap.gmoregistry.net/rdap/"
00 {
11 "domain": "rightathome",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.rightathome",
43 "tags": [
54 "brand",
00 {
11 "domain": "ril",
22 "registryOperator": "Reliance Industries Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.ril/",
44 "whoisServer": "whois.nic.ril",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/ril/"
00 {
11 "domain": "rio",
22 "registryOperator": "Empresa Municipal de Informática SA - IPLANRIO",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.rio/",
44 "whoisServer": "whois.gtlds.nic.br",
55 "rdapURLs": [
66 "https://rdap.gtlds.nic.br/"
00 {
11 "domain": "rip",
22 "registryOperator": "Dog Beach, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.rip",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "rmit",
22 "registryOperator": "Royal Melbourne Institute of Technology",
3 "infoURL": "https://newgtlds.icann.org/",
43 "whoisServer": "whois.nic.rmit",
54 "rdapURLs": [
65 "https://rdap.nic.rmit/"
00 {
11 "domain": "rocher",
22 "registryOperator": "Ferrero Trading Lux S.A.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.rocher/",
44 "whoisServer": "whois.nic.rocher",
55 "rdapURLs": [
66 "https://rdap.nic.rocher/"
00 {
11 "domain": "rockwool",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "rogers",
22 "registryOperator": "Rogers Communications Canada Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.rogers.com/nic",
44 "whoisServer": "whois.afilias-srs.net",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/rogers/"
00 {
11 "domain": "roma",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
4 "generic"
3 "generic",
4 "withdrawn"
55 ],
66 "policies": [
77 {
00 {
11 "domain": "room",
22 "registryOperator": "Amazon Registry Services, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.room/",
44 "whoisServer": "whois.nic.room",
55 "rdapURLs": [
66 "https://rdap.nominet.uk/room/"
00 {
11 "domain": "root",
22 "tags": [
3 "generic"
3 "generic",
4 "withdrawn"
45 ],
56 "policies": [
67 {
00 {
11 "domain": "ru",
2 "whoisServer": "whois.tcinet.ru",
2 "whoisServer": "whois.ripn.net",
33 "nameServers": [
44 "a.dns.ripn.net",
55 "b.dns.ripn.net",
00 {
11 "domain": "rugby",
22 "registryOperator": "World Rugby Strategic Developments Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.rugby/",
44 "whoisServer": "whois.nic.rugby",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/rugby/"
00 {
11 "domain": "run",
22 "registryOperator": "Binky Moon, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.run",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "rwe",
22 "registryOperator": "RWE AG",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.rwe/",
44 "whoisServer": "whois.nic.rwe",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/rwe/v1/"
00 {
11 "domain": "ryukyu",
22 "registryOperator": "BRregistry, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.brregistry.com/geotlds/",
44 "whoisServer": "whois.nic.ryukyu",
55 "rdapURLs": [
66 "https://rdap.gmoregistry.net/rdap/"
00 {
11 "domain": "safe",
22 "registryOperator": "Amazon Registry Services, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.safe/",
44 "whoisServer": "whois.nic.safe",
55 "rdapURLs": [
66 "https://rdap.nominet.uk/safe/"
00 {
11 "domain": "safety",
22 "registryOperator": "Safety Registry Services, LLC.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.safety/",
44 "whoisServer": "whois.nic.safety",
55 "rdapURLs": [
66 "https://rdap.nic.safety/"
00 {
11 "domain": "safeway",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "sakura",
22 "registryOperator": "SAKURA Internet Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/sakura",
44 "rdapURLs": [
55 "https://rdap.nic.sakura/rdap/"
66 ],
00 {
11 "domain": "sale",
22 "registryOperator": "Dog Beach, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.sale",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "salon",
22 "registryOperator": "Binky Moon, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.salon",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "samsclub",
22 "registryOperator": "Wal-Mart Stores, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/samsclub",
44 "whoisServer": "whois.nic.samsclub",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/samsclub/v1/"
00 {
11 "domain": "samsung",
22 "registryOperator": "SAMSUNG SDS CO., LTD",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.samsung/",
44 "whoisServer": "whois.nic.samsung",
55 "rdapURLs": [
66 "https://nic.samsung:8443/rdap/"
00 {
11 "domain": "sandvik",
22 "registryOperator": "Sandvik AB",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.nic.sandvik/en/",
44 "whoisServer": "whois.nic.sandvik",
55 "rdapURLs": [
66 "https://rdap.nic.sandvik/"
00 {
11 "domain": "sandvikcoromant",
22 "registryOperator": "Sandvik AB",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.sandvik.coromant.com/en-gb/pages/nic-sandvikcoromant.aspx",
44 "whoisServer": "whois.nic.sandvikcoromant",
55 "rdapURLs": [
66 "https://rdap.nic.sandvikcoromant/"
00 {
11 "domain": "sanofi",
22 "registryOperator": "Sanofi",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.sanofi/",
44 "whoisServer": "whois.nic.sanofi",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/sanofi/v1/"
00 {
11 "domain": "sap",
22 "registryOperator": "SAP AG",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/sap",
44 "whoisServer": "whois.nic.sap",
55 "rdapURLs": [
66 "https://rdap.nic.sap/"
00 {
11 "domain": "sapo",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "sapphire",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "sas",
22 "registryOperator": "Research IP LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.sas/",
44 "whoisServer": "whois.nic.sas",
55 "rdapURLs": [
66 "https://rdap.nic.sas/"
00 {
11 "domain": "save",
22 "registryOperator": "Amazon Registry Services, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.save/",
44 "whoisServer": "whois.nic.save",
55 "rdapURLs": [
66 "https://rdap.nominet.uk/save/"
00 {
11 "domain": "saxo",
22 "registryOperator": "Saxo Bank A/S",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.saxo/",
44 "whoisServer": "whois.nic.saxo",
55 "rdapURLs": [
66 "https://rdap.nic.saxo/"
00 {
11 "domain": "sbi",
22 "registryOperator": "STATE BANK OF INDIA",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.sbi/",
44 "whoisServer": "whois.nic.sbi",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/sbi/"
00 {
11 "domain": "sbs",
22 "registryOperator": "ShortDot SA",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://shortdot.bond/sbs/",
44 "whoisServer": "whois.nic.sbs",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/sbs/"
00 {
11 "domain": "sca",
22 "registryOperator": "SVENSKA CELLULOSA AKTIEBOLAGET SCA (publ)",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.sca/",
44 "whoisServer": "whois.nic.sca",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/sca/v1/"
00 {
11 "domain": "scb",
22 "registryOperator": "The Siam Commercial Bank Public Company Limited (\"SCB\")",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.nic.scb/",
44 "whoisServer": "whois.nic.scb",
55 "rdapURLs": [
66 "https://rdap.nic.scb/"
00 {
11 "domain": "schaeffler",
22 "registryOperator": "Schaeffler Technologies AG \u0026 Co. KG",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.nic.schaeffler/en/",
44 "whoisServer": "whois.afilias-srs.net",
55 "rdapURLs": [
66 "https://rdap.nic.schaeffler/"
00 {
11 "domain": "schmidt",
22 "registryOperator": "SCHMIDT GROUPE S.A.S.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.schmidt/",
44 "whoisServer": "whois.nic.schmidt",
55 "rdapURLs": [
66 "https://rdap.nic.schmidt/"
00 {
11 "domain": "scholarships",
22 "registryOperator": "Scholarships.com, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.scholarships/",
44 "whoisServer": "whois.nic.scholarships",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/scholarships/"
00 {
11 "domain": "school",
22 "registryOperator": "Binky Moon, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.school",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "schwarz",
22 "registryOperator": "Schwarz Domains und Services GmbH \u0026 Co. KG",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.schwarz/",
44 "whoisServer": "whois.nic.schwarz",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/schwarz/"
00 {
11 "domain": "schwarzgroup",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "science",
22 "registryOperator": "dot Science Limited",
3 "infoURL": "https://www.famousfourmedia.com/",
3 "infoURL": "http://nic.science/",
44 "whoisServer": "whois.nic.science",
55 "rdapURLs": [
66 "https://rdap.nic.science/"
00 {
11 "domain": "scjohnson",
22 "registryOperator": "Johnson Shareholdings, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
43 "whoisServer": "whois.nic.scjohnson",
54 "rdapURLs": [
65 "https://tld-rdap.verisign.com/scjohnson/v1/"
00 {
11 "domain": "scor",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.scor",
43 "tags": [
54 "brand",
11 "domain": "search",
22 "registryOperator": "Charleston Road Registry Inc.",
33 "infoURL": "https://www.registry.google/",
4 "whoisServer": "whois.nic.google",
4 "whoisServer": "whois.nic.search",
55 "rdapURLs": [
66 "https://www.registry.google/rdap/"
77 ],
00 {
11 "domain": "seat",
22 "registryOperator": "SEAT, S.A. (Sociedad Unipersonal)",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/seat",
44 "whoisServer": "whois.nic.seat",
55 "rdapURLs": [
66 "https://rdap.nic.seat/"
00 {
11 "domain": "secure",
22 "registryOperator": "Amazon Registry Services, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.secure/",
44 "whoisServer": "whois.nic.secure",
55 "rdapURLs": [
66 "https://rdap.nominet.uk/secure/"
00 {
11 "domain": "security",
22 "registryOperator": "XYZ.COM LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.security/",
44 "whoisServer": "whois.nic.security",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/security/"
00 {
11 "domain": "seek",
22 "registryOperator": "Seek Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://www.nic.seek/",
44 "whoisServer": "whois.nic.seek",
55 "rdapURLs": [
66 "https://rdap.nic.seek/"
00 {
11 "domain": "select",
22 "registryOperator": "Registry Services, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.be.select/",
44 "whoisServer": "whois.nic.select",
55 "rdapURLs": [
66 "https://rdap.nic.select/"
00 {
11 "domain": "sener",
22 "registryOperator": "Sener Ingeniería y Sistemas, S.A.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.sener/",
44 "rdapURLs": [
55 "https://tld-rdap.verisign.com/sener/v1/"
66 ],
00 {
11 "domain": "ses",
22 "registryOperator": "SES",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.ses/",
44 "whoisServer": "whois.nic.ses",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/ses/v1/"
00 {
11 "domain": "seven",
22 "registryOperator": "Seven West Media Ltd",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.seven/",
44 "whoisServer": "whois.nic.seven",
55 "rdapURLs": [
66 "https://rdap.nic.seven/"
00 {
11 "domain": "sew",
22 "registryOperator": "SEW-EURODRIVE GmbH \u0026 Co KG",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.sew/",
44 "whoisServer": "whois.afilias-srs.net",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/sew/"
11 "domain": "sexy",
22 "registryOperator": "Internet Naming Company LLC",
33 "infoURL": "https://nic.sexy/",
4 "whoisServer": "whois.uniregistry.net",
4 "whoisServer": "whois.nic.sexy",
55 "rdapURLs": [
66 "https://whois.uniregistry.net/rdap/"
77 ],
00 {
11 "domain": "sfr",
22 "registryOperator": "Societe Francaise du Radiotelephone - SFR",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.sfr/",
44 "whoisServer": "whois.nic.sfr",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/sfr/"
00 {
11 "domain": "shangrila",
22 "registryOperator": "Shangri‐La International Hotel Management Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/shangrila",
44 "whoisServer": "whois.nic.shangrila",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/shangrila/v1/"
00 {
11 "domain": "sharp",
22 "registryOperator": "Sharp Corporation",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.sharp/",
44 "whoisServer": "whois.nic.gmo",
55 "rdapURLs": [
66 "https://rdap.gmoregistry.net/rdap/"
00 {
11 "domain": "shaw",
22 "registryOperator": "Shaw Cablesystems G.P.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.shaw.ca/terms-of-use/",
44 "whoisServer": "whois.afilias-srs.net",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/shaw/"
00 {
11 "domain": "shell",
22 "registryOperator": "Shell Information Technology International Inc",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.nic.shell/",
44 "whoisServer": "whois.nic.shell",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/shell/v1/"
00 {
11 "domain": "shia",
22 "registryOperator": "Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.shia/",
44 "whoisServer": "whois.nic.shia",
55 "rdapURLs": [
66 "https://api.rdap.agitsys.net/"
00 {
11 "domain": "shiksha",
22 "registryOperator": "Identity Digital Limited",
3 "infoURL": "https://get.shiksha/",
3 "infoURL": "http://nic.shiksha/",
44 "whoisServer": "whois.nic.shiksha",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "shop",
22 "registryOperator": "GMO Registry, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://get.shop/",
44 "whoisServer": "whois.nic.shop",
55 "rdapURLs": [
66 "https://rdap.gmoregistry.net/rdap/"
00 {
11 "domain": "shopping",
22 "registryOperator": "Binky Moon, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.shopping",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "shopyourway",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "shouji",
22 "registryOperator": "Beijing Qihu Keji Co., Ltd.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/shouji",
44 "whoisServer": "whois.teleinfo.cn",
55 "rdapURLs": [
66 "https://rdap.teleinfo.cn/"
00 {
11 "domain": "show",
22 "registryOperator": "Binky Moon, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.show",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "showtime",
22 "registryOperator": "CBS Domains Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.showtime/",
44 "whoisServer": "whois.afilias-srs.net",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/showtime/"
00 {
11 "domain": "shriram",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.afilias-srs.net",
43 "tags": [
54 "brand",
00 {
11 "domain": "si",
2 "whoisServer": "whois.register.si",
2 "whoisServer": "whois.arnes.si",
33 "nameServers": [
44 "b.dns.si",
55 "f.dns.si",
00 {
11 "domain": "silk",
22 "registryOperator": "Amazon Registry Services, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.silk/",
44 "whoisServer": "whois.nic.silk",
55 "rdapURLs": [
66 "https://rdap.nominet.uk/silk/"
00 {
11 "domain": "sina",
22 "registryOperator": "Sina Corporation",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/sina",
44 "whoisServer": "whois.nic.sina",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/sina/"
00 {
11 "domain": "site",
22 "registryOperator": "Radix FZC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://radix.website/dot-site",
44 "whoisServer": "whois.nic.site",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/site/"
00 {
11 "domain": "ski",
22 "registryOperator": "Identity Digital Limited",
3 "infoURL": "https://domains.ski/",
3 "infoURL": "http://nic.ski/",
44 "whoisServer": "whois.nic.ski",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "skin",
22 "registryOperator": "XYZ.COM LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.skin/",
44 "whoisServer": "whois.nic.skin",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/skin/"
00 {
11 "domain": "skolkovo",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "sky",
22 "registryOperator": "Sky International AG",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.skygroup.sky/nic-sky",
44 "whoisServer": "whois.nic.sky",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/sky/v1/"
00 {
11 "domain": "skydrive",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "skype",
22 "registryOperator": "Microsoft Corporation",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.skype/",
44 "whoisServer": "whois.nic.skype",
55 "rdapURLs": [
66 "https://rdap.nic.skype/"
00 {
11 "domain": "sling",
22 "registryOperator": "DISH Technologies L.L.C.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/sling",
44 "whoisServer": "whois.nic.sling",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/sling/"
00 {
11 "domain": "smart",
22 "registryOperator": "Smart Communications, Inc. (SMART)",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/smart",
44 "whoisServer": "whois.nic.smart",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/smart/"
00 {
11 "domain": "smile",
22 "registryOperator": "Amazon Registry Services, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.smile/",
44 "whoisServer": "whois.nic.smile",
55 "rdapURLs": [
66 "https://rdap.nominet.uk/smile/"
00 {
11 "domain": "sncf",
22 "registryOperator": "Société Nationale des Chemins de fer Francais S N C F",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/sncf",
44 "whoisServer": "whois.nic.sncf",
55 "rdapURLs": [
66 "https://rdap.nic.sncf/"
00 {
11 "domain": "soccer",
22 "registryOperator": "Binky Moon, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.soccer",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "softbank",
22 "registryOperator": "SoftBank Group Corp.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.softbank/",
44 "whoisServer": "whois.nic.softbank",
55 "rdapURLs": [
66 "https://rdap.gmoregistry.net/rdap/"
00 {
11 "domain": "software",
22 "registryOperator": "Dog Beach, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.software",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "sohu",
22 "registryOperator": "Sohu.com Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/sohu",
44 "whoisServer": "whois.nic.sohu",
55 "rdapURLs": [
66 "https://rdap.zdnsgtld.com/sohu/"
1111 "c.zdnscloud.com",
1212 "d.zdnscloud.com",
1313 "f.zdnscloud.com",
14 "g.zdnscloud.com",
15 "i.zdnscloud.com",
16 "j.zdnscloud.com"
14 "g.zdnscloud.com"
1715 ],
1816 "languages": [
1917 "zh-Hans",
22 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
5 "ns-ext.vix.com",
6 "ns4.apnic.net",
75 "pch.nnic.np",
8 "sec2.apnic.net",
96 "shikhar.mos.com.np"
107 ],
118 "policies": [
00 {
11 "domain": "song",
22 "registryOperator": "Amazon Registry Services, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.song/",
44 "whoisServer": "whois.nic.song",
55 "rdapURLs": [
66 "https://rdap.nic.song/"
00 {
11 "domain": "sony",
22 "registryOperator": "Sony Corporation",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.sony/",
44 "whoisServer": "whois.nic.sony",
55 "rdapURLs": [
66 "https://rdap.gmoregistry.net/rdap/"
11 "domain": "soy",
22 "registryOperator": "Charleston Road Registry Inc.",
33 "infoURL": "https://www.registry.google/",
4 "whoisServer": "whois.nic.google",
4 "whoisServer": "whois.nic.soy",
55 "rdapURLs": [
66 "https://www.registry.google/rdap/"
77 ],
00 {
11 "domain": "spa",
22 "registryOperator": "Asia Spa and Wellness Promotion Council Limited",
3 "infoURL": "http://www.nic.spa/",
3 "infoURL": "https://www.nic.spa/",
44 "whoisServer": "whois.afilias-srs.net",
55 "nameServers": [
66 "a0.nic.spa",
00 {
11 "domain": "space",
22 "registryOperator": "Radix FZC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://radix.website/dot-space",
44 "whoisServer": "whois.nic.space",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/space/"
00 {
11 "domain": "spiegel",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.ksregistry.net",
43 "tags": [
54 "brand",
00 {
11 "domain": "sport",
22 "registryOperator": "Global Association of International Sports Federations (GAISF)",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.sport/",
44 "whoisServer": "whois.nic.sport",
55 "rdapURLs": [
66 "https://rdap.nic.sport/"
00 {
11 "domain": "spot",
22 "registryOperator": "Amazon Registry Services, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.spot/",
44 "whoisServer": "whois.nic.spot",
55 "rdapURLs": [
66 "https://rdap.nominet.uk/spot/"
00 {
11 "domain": "spreadbetting",
2 "infoURL": "https://bostonivy.co/",
2 "infoURL": "https://www.icann.org/en/registry-agreements/details/spreadbetting",
33 "whoisServer": "whois.nic.spreadbetting",
44 "rdapURLs": [
55 "https://rdap.centralnic.com/spreadbetting/"
00 {
11 "domain": "srt",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.afilias-srs.net",
43 "tags": [
54 "brand",
11 "domain": "st",
22 "whoisServer": "whois.nic.st",
33 "nameServers": [
4 "dns-au.st",
54 "dns-st.bahnhof.net",
6 "dns-us.st",
7 "ns1.bahnhof.net"
5 "ns1.bahnhof.net",
6 "southeast-2.dns-au.st"
87 ],
98 "tags": [
109 "country",
00 {
11 "domain": "stada",
22 "registryOperator": "STADA Arzneimittel AG",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.stada/",
44 "whoisServer": "whois.afilias-srs.net",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/stada/"
00 {
11 "domain": "staples",
22 "registryOperator": "Staples, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/staples",
44 "whoisServer": "whois.nic.staples",
55 "rdapURLs": [
66 "https://rdap.nic.staples/"
00 {
11 "domain": "star",
22 "registryOperator": "Star India Private Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/star",
44 "whoisServer": "whois.nic.star",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/star/"
00 {
11 "domain": "starhub",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.starhub",
43 "tags": [
54 "brand",
00 {
11 "domain": "statebank",
22 "registryOperator": "STATE BANK OF INDIA",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.statebank/",
44 "whoisServer": "whois.nic.statebank",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/statebank/"
00 {
11 "domain": "statefarm",
22 "registryOperator": "State Farm Mutual Automobile Insurance Company",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.statefarm/",
44 "whoisServer": "whois.nic.statefarm",
55 "rdapURLs": [
66 "https://rdap.nic.statefarm/"
00 {
11 "domain": "statoil",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.statoil",
43 "tags": [
54 "brand",
00 {
11 "domain": "stc",
22 "registryOperator": "Saudi Telecom Company",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.stc/",
44 "whoisServer": "whois.nic.stc",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/stc/"
00 {
11 "domain": "stcgroup",
22 "registryOperator": "Saudi Telecom Company",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.stcgroup/",
44 "whoisServer": "whois.nic.stcgroup",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/stcgroup/"
00 {
11 "domain": "stockholm",
22 "registryOperator": "Stockholms kommun",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.stockholm/",
44 "whoisServer": "whois.afilias-srs.net",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/stockholm/"
00 {
11 "domain": "storage",
22 "registryOperator": "XYZ.COM LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.storage/",
44 "whoisServer": "whois.nic.storage",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/storage/"
00 {
11 "domain": "store",
22 "registryOperator": "Radix FZC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://radix.website/dot-store",
44 "whoisServer": "whois.nic.store",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/store/"
00 {
11 "domain": "stream",
22 "registryOperator": "dot Stream Limited",
3 "infoURL": "https://www.famousfourmedia.com/",
3 "infoURL": "http://nic.stream/",
44 "whoisServer": "whois.nic.stream",
55 "rdapURLs": [
66 "https://rdap.nic.stream/"
00 {
11 "domain": "stroke",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "generic",
54 "withdrawn"
00 {
11 "domain": "studio",
22 "registryOperator": "Dog Beach, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.studio",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "study",
22 "registryOperator": "Registry Services, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.get.study/",
44 "whoisServer": "whois.nic.study",
55 "rdapURLs": [
66 "https://rdap.nic.study/"
00 {
11 "domain": "style",
22 "registryOperator": "Binky Moon, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.style",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "su",
2 "whoisServer": "whois.tcinet.ru",
2 "whoisServer": "whois.ripn.net",
33 "nameServers": [
44 "a.dns.ripn.net",
55 "b.dns.ripn.net",
00 {
11 "domain": "sucks",
22 "registryOperator": "Vox Populi Registry Ltd.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.get.sucks/",
44 "whoisServer": "whois.nic.sucks",
55 "rdapURLs": [
66 "https://rdap.nic.sucks/"
00 {
11 "domain": "supersport",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "suzuki",
22 "registryOperator": "SUZUKI MOTOR CORPORATION",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.suzuki/",
44 "whoisServer": "whois.nic.suzuki",
55 "rdapURLs": [
66 "https://rdap.gmoregistry.net/rdap/"
00 {
11 "domain": "svr",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "swatch",
22 "registryOperator": "The Swatch Group Ltd",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.swatch/",
44 "whoisServer": "whois.nic.swatch",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/swatch/v1/"
00 {
11 "domain": "swiftcover",
22 "registryOperator": "Swiftcover Insurance Services Limited",
3 "infoURL": "https://newgtlds.icann.org/",
43 "whoisServer": "whois.nic.swiftcover",
54 "rdapURLs": [
65 "https://rdap.nic.swiftcover/"
00 {
11 "domain": "swiss",
22 "registryOperator": "Swiss Confederation",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.nic.swiss/nic/de/home.html",
44 "whoisServer": "whois.nic.swiss",
55 "rdapURLs": [
66 "https://rdap.nic.swiss/"
00 {
11 "domain": "sy",
2 "infoURL": "http://www.ste.gov.sy/",
2 "infoURL": "https://nic.sy/",
33 "whoisServer": "whois.tld.sy",
44 "nameServers": [
55 "ns1.tld.sy",
00 {
11 "domain": "symantec",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.symantec",
43 "tags": [
54 "brand",
00 {
11 "domain": "tab",
22 "registryOperator": "Tabcorp Holdings Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.tab/",
44 "whoisServer": "whois.nic.tab",
55 "rdapURLs": [
66 "https://rdap.nic.tab/"
00 {
11 "domain": "taipei",
22 "registryOperator": "Taipei City Government",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.taipei/",
44 "whoisServer": "whois.nic.taipei",
55 "rdapURLs": [
66 "https://rdap.nic.taipei/"
00 {
11 "domain": "talk",
22 "registryOperator": "Amazon Registry Services, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.talk/",
44 "whoisServer": "whois.nic.talk",
55 "rdapURLs": [
66 "https://rdap.nominet.uk/talk/"
00 {
11 "domain": "taobao",
22 "registryOperator": "Alibaba Group Holding Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.taobao/",
44 "whoisServer": "whois.nic.taobao",
55 "rdapURLs": [
66 "https://rdap.nic.taobao/"
00 {
11 "domain": "target",
22 "registryOperator": "Target Domain Holdings, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.target/",
44 "whoisServer": "whois.nic.target",
55 "rdapURLs": [
66 "https://rdap.nic.target/"
00 {
11 "domain": "tata",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "tatamotors",
22 "registryOperator": "Tata Motors Ltd",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/tatamotors",
44 "whoisServer": "whois.nic.tatamotors",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/tatamotors/v1/"
00 {
11 "domain": "tatar",
22 "registryOperator": "Limited Liability Company \"Coordination Center of Regional Domain of Tatarstan Republic\"",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.tatar/",
44 "whoisServer": "whois.nic.tatar",
55 "rdapURLs": [
66 "https://whois.nic.tatar/rdap/"
11 "domain": "tattoo",
22 "registryOperator": "Top Level Design, LLC",
33 "infoURL": "https://nic.tattoo/",
4 "whoisServer": "whois.uniregistry.net",
4 "whoisServer": "whois.nic.tattoo",
55 "rdapURLs": [
66 "https://whois.uniregistry.net/rdap/"
77 ],
00 {
11 "domain": "taxi",
22 "registryOperator": "Binky Moon, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.taxi",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "tci",
22 "registryOperator": "Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.tci/",
44 "whoisServer": "whois.nic.tci",
55 "rdapURLs": [
66 "https://api.rdap.agitsys.net/"
00 {
11 "domain": "td",
2 "infoURL": "http://nic.td/",
2 "infoURL": "https://nic.td/",
33 "whoisServer": "whois.nic.td",
44 "nameServers": [
55 "anycastdns1.nic.td",
00 {
11 "domain": "tdk",
22 "registryOperator": "TDK Corporation",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.tdk/",
44 "whoisServer": "whois.nic.tdk",
55 "rdapURLs": [
66 "https://rdap.nic.tdk/"
00 {
11 "domain": "team",
22 "registryOperator": "Binky Moon, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.team",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "tech",
22 "registryOperator": "Radix FZC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://radix.website/dot-tech",
44 "whoisServer": "whois.nic.tech",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/tech/"
22 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
5 "ns-ext.vix.com",
6 "ns4.apnic.net",
75 "pch.nnic.np",
86 "shikhar.mos.com.np"
97 ],
00 {
11 "domain": "telecity",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.telecity",
43 "tags": [
54 "brand",
00 {
11 "domain": "telefonica",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois-fe.telefonica.tango.knipp.de",
43 "tags": [
54 "brand",
00 {
11 "domain": "temasek",
22 "registryOperator": "Temasek Holdings (Private) Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.temasek.com.sg/en/site-services/nictemasek",
44 "whoisServer": "whois.afilias-srs.net",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/temasek/"
00 {
11 "domain": "tennis",
22 "registryOperator": "Binky Moon, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.tennis",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "terra",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "teva",
22 "registryOperator": "Teva Pharmaceutical Industries Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.teva/",
44 "whoisServer": "whois.nic.teva",
55 "rdapURLs": [
66 "https://rdap.nic.teva/"
00 {
11 "domain": "tg",
2 "infoURL": "http://www.nic.tg/",
2 "infoURL": "https://www.nic.tg/",
33 "whoisServer": "whois.nic.tg",
44 "nameServers": [
55 "ns1.admin.net",
00 {
11 "domain": "th",
22 "infoURL": "https://www.thnic.co.th/",
3 "whoisServer": "whois.thnic.co.th",
3 "whoisServer": "whois.thnic.net",
44 "nameServers": [
55 "a.thains.co.th",
66 "b.thains.co.th",
00 {
11 "domain": "thai",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
4 "generic"
3 "generic",
4 "withdrawn"
55 ],
66 "policies": [
77 {
00 {
11 "domain": "thd",
22 "registryOperator": "Home Depot Product Authority, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/thd",
44 "whoisServer": "whois.nic.thd",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/thd/"
00 {
11 "domain": "theater",
22 "registryOperator": "Binky Moon, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.theater",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "theatre",
22 "registryOperator": "XYZ.COM LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.theatre/",
44 "whoisServer": "whois.nic.theatre",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/theatre/"
00 {
11 "domain": "theguardian",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "thehartford",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "tiaa",
22 "registryOperator": "Teachers Insurance and Annuity Association of America",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/tiaa",
44 "whoisServer": "whois.nic.tiaa",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/tiaa/v1/"
00 {
11 "domain": "tickets",
22 "registryOperator": "XYZ.COM LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.tickets/",
44 "whoisServer": "whois.nic.tickets",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/tickets/"
00 {
11 "domain": "tiffany",
22 "registryOperator": "Tiffany and Company",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.tiffany/",
44 "whoisServer": "whois.nic.tiffany",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/tiffany/v1/"
00 {
11 "domain": "tiffay",
2 "whoisServer": "whois.nic.tiffany"
2 "whoisServer": "whois.nic.tiffany",
3 "tags": [
4 "withdrawn"
5 ]
36 }
0 {
1 "domain": "tiia",
2 "tags": [
3 "generic",
4 "withdrawn"
5 ]
6 }
00 {
11 "domain": "tires",
22 "registryOperator": "Binky Moon, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.tires",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "tirol",
22 "registryOperator": "punkt Tirol GmbH",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://www.nic.tirol/",
44 "whoisServer": "whois.nic.tirol",
55 "rdapURLs": [
66 "https://rdap.ryce-rsp.com/rdap/"
00 {
11 "domain": "tjmaxx",
22 "registryOperator": "The TJX Companies, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.tjmaxx/",
44 "whoisServer": "whois.nic.tjmaxx",
55 "rdapURLs": [
66 "https://rdap.nic.tjmaxx/"
00 {
11 "domain": "tjx",
22 "registryOperator": "The TJX Companies, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.tjx/",
44 "whoisServer": "whois.nic.tjx",
55 "rdapURLs": [
66 "https://rdap.nic.tjx/"
00 {
11 "domain": "tkmaxx",
22 "registryOperator": "The TJX Companies, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.tkmaxx/",
44 "whoisServer": "whois.nic.tkmaxx",
55 "rdapURLs": [
66 "https://rdap.nic.tkmaxx/"
00 {
11 "domain": "tm",
2 "infoURL": "http://nic.tm/",
2 "infoURL": "https://nic.tm/",
33 "whoisServer": "whois.nic.tm",
44 "nameServers": [
55 "ns-a1.tm",
00 {
11 "domain": "tmall",
22 "registryOperator": "Alibaba Group Holding Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.tmall/",
44 "whoisServer": "whois.nic.tmall",
55 "rdapURLs": [
66 "https://rdap.nic.tmall/"
00 {
11 "domain": "top",
22 "registryOperator": ".TOP Registry",
3 "infoURL": "http://www.nic.top/",
3 "infoURL": "https://www.nic.top/",
44 "whoisServer": "whois.nic.top",
55 "rdapURLs": [
66 "https://rdap.zdnsgtld.com/top/"
1111 "c.zdnscloud.com",
1212 "d.zdnscloud.com",
1313 "f.zdnscloud.com",
14 "g.zdnscloud.com",
15 "i.zdnscloud.com",
16 "j.zdnscloud.com"
14 "g.zdnscloud.com"
1715 ],
1816 "languages": [
1917 "ar",
00 {
11 "domain": "toray",
22 "registryOperator": "Toray Industries, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.toray/",
44 "whoisServer": "whois.nic.toray",
55 "rdapURLs": [
66 "https://rdap.gmoregistry.net/rdap/"
00 {
11 "domain": "toshiba",
22 "registryOperator": "TOSHIBA Corporation",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/toshiba",
44 "whoisServer": "whois.nic.toshiba",
55 "rdapURLs": [
66 "https://rdap.gmoregistry.net/rdap/"
00 {
11 "domain": "total",
22 "registryOperator": "TOTAL SE",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.total/",
44 "whoisServer": "whois.nic.total",
55 "rdapURLs": [
66 "https://rdap.nic.total/"
00 {
11 "domain": "tour",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
4 "generic"
3 "generic",
4 "withdrawn"
55 ],
66 "policies": [
77 {
00 {
11 "domain": "tours",
22 "registryOperator": "Binky Moon, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.tours",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "toyota",
22 "registryOperator": "TOYOTA MOTOR CORPORATION",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://www.nic.toyota/",
44 "whoisServer": "whois.nic.toyota",
55 "rdapURLs": [
66 "https://rdap.gmoregistry.net/rdap/"
00 {
11 "domain": "tr",
2 "infoURL": "https://www.nic.tr/",
2 "infoURL": "https://www.iana.org/domains/root/db/tr.html",
33 "whoisServer": "whois.nic.tr",
44 "nameServers": [
55 "ns31.nic.tr",
00 {
11 "domain": "trade",
22 "registryOperator": "Elite Registry Limited",
3 "infoURL": "https://www.famousfourmedia.com/",
3 "infoURL": "http://nic.trade/",
44 "whoisServer": "whois.nic.trade",
55 "rdapURLs": [
66 "https://rdap.nic.trade/"
00 {
11 "domain": "tradershotels",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "trading",
22 "registryOperator": "Dog Beach, LLC",
3 "infoURL": "https://bostonivy.co/",
3 "infoURL": "http://nic.trading/",
44 "whoisServer": "whois.nic.trading",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "transformers",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "translations",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "transunion",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "travelchannel",
22 "registryOperator": "Lifestyle Domain Holdings, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/travelchannel",
44 "whoisServer": "whois.nic.travelchannel",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/travelchannel/v1/"
00 {
11 "domain": "travelers",
22 "registryOperator": "Travelers TLD, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.travelers/",
44 "whoisServer": "whois.afilias-srs.net",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/travelers/"
00 {
11 "domain": "travelersinsurance",
22 "registryOperator": "Travelers TLD, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.travelersinsurance/",
44 "whoisServer": "whois.afilias-srs.net",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/travelersinsurance/"
00 {
11 "domain": "travelguard",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "trust",
22 "registryOperator": "Internet Naming Company LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://uniregistry.link/extensions/trust/",
44 "whoisServer": "whois.nic.trust",
55 "rdapURLs": [
66 "https://rdap.nic.trust/"
00 {
11 "domain": "trv",
22 "registryOperator": "Travelers TLD, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.trv/",
44 "whoisServer": "whois.afilias-srs.net",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/trv/"
00 {
11 "domain": "tube",
22 "registryOperator": "Latin American Telecom LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.tube/",
44 "whoisServer": "whois.nic.tube",
55 "rdapURLs": [
66 "https://rdap.nic.tube/"
00 {
11 "domain": "tui",
22 "registryOperator": "TUI AG",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.tui/",
44 "whoisServer": "whois.nic.tui",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/tui/"
00 {
11 "domain": "tunes",
22 "registryOperator": "Amazon Registry Services, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.tunes/",
44 "whoisServer": "whois.nic.tunes",
55 "rdapURLs": [
66 "https://rdap.nominet.uk/tunes/"
00 {
11 "domain": "tur.cu",
22 "nameServers": [
3 "ns.ceniai.net.cu",
4 "ns1.g4its.com",
53 "ns1.tur.cu",
6 "ns2.g4its.com",
74 "ns2.tur.cu",
85 "ns3.tur.cu",
9 "ns4.tur.cu",
10 "ns5.tur.cu"
6 "ns4.tur.cu"
117 ],
128 "policies": [
139 {
00 {
11 "domain": "tushu",
22 "registryOperator": "Amazon Registry Services, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.tushu/",
44 "whoisServer": "whois.nic.tushu",
55 "rdapURLs": [
66 "https://rdap.nominet.uk/tushu/"
22 "nameServers": [
33 "ns.cocca.fr",
44 "ns1.cmc.iq",
5 "nsp-anycast.cmc.iq",
6 "sns-pb.isc.org"
5 "nsp-anycast.cmc.iq"
76 ]
87 }
00 {
11 "domain": "tv.sd",
22 "nameServers": [
3 "ans1.sis.sd",
4 "ns.cocca.fr",
53 "ns1.domains.sd",
64 "ns2.domains.sd"
75 ],
00 {
11 "domain": "tvs",
22 "registryOperator": "T V SUNDRAM IYENGAR \u0026 SONS LIMITED",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.tvs/",
44 "whoisServer": "whois.nic.tvs",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/tvs/"
00 {
11 "domain": "tw",
2 "whoisServer": "whois.twnic.net.tw",
2 "whoisServer": "whois.twnic.net",
33 "nameServers": [
44 "a.dns.tw",
55 "anytld.apnic.net",
00 {
11 "domain": "ua",
2 "infoURL": "http://www.nic.net.ua/",
2 "infoURL": "https://www.nic.net.ua/",
33 "whoisServer": "whois.ua",
44 "nameServers": [
55 "bg.ns.ua",
00 {
11 "domain": "ubank",
22 "registryOperator": "National Australia Bank Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.ubank.com.au/nic",
44 "whoisServer": "whois.nic.ubank",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/ubank/v1/"
00 {
11 "domain": "ubs",
22 "registryOperator": "UBS AG",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/ubs",
44 "whoisServer": "whois.nic.ubs",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/ubs/v1/"
00 {
11 "domain": "uconnect",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.afilias-srs.net",
43 "tags": [
54 "brand",
00 {
11 "domain": "ultrabook",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "ummah",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
54 "generic",
00 {
11 "domain": "unicom",
22 "registryOperator": "China United Network Communications Corporation Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/unicom",
44 "whoisServer": "whois.nic.unicom",
55 "rdapURLs": [
66 "https://rdap.zdnsgtld.com/unicom/"
00 {
11 "domain": "unicorn",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "uol",
22 "registryOperator": "UBN INTERNET LTDA.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.uol/",
44 "whoisServer": "whois.gtlds.nic.br",
55 "rdapURLs": [
66 "https://rdap.gtlds.nic.br/"
00 {
11 "domain": "ups",
22 "registryOperator": "UPS Market Driver, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.ups.com/lasso/login?reasonCode=-1",
44 "whoisServer": "whois.nic.ups",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/ups/"
00 {
11 "domain": "vana",
22 "registryOperator": "Lifestyle Domain Holdings, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/vana",
44 "whoisServer": "whois.nic.vana",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/vana/v1/"
00 {
11 "domain": "vanguard",
22 "registryOperator": "The Vanguard Group, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/vanguard",
44 "whoisServer": "whois.nic.vanguard",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/vanguard/v1/"
00 {
11 "domain": "vanish",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "vegas",
22 "registryOperator": "Dot Vegas, Inc.",
3 "infoURL": "http://nic.vegas/",
3 "infoURL": "https://nic.vegas/",
44 "whoisServer": "whois.nic.vegas",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/vegas/"
00 {
11 "domain": "verisign",
22 "registryOperator": "VeriSign, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/verisign",
44 "whoisServer": "whois.nic.verisign",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/verisign/v1/"
00 {
11 "domain": "video",
22 "registryOperator": "Dog Beach, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.video",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "vig",
22 "registryOperator": "VIENNA INSURANCE GROUP AG Wiener Versicherung Gruppe",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.vig/en/home.html",
44 "whoisServer": "whois.afilias-srs.net",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/vig/"
00 {
11 "domain": "viking",
22 "registryOperator": "Viking River Cruises (Bermuda) Ltd.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.viking/",
44 "whoisServer": "whois.afilias-srs.net",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/viking/"
00 {
11 "domain": "vin",
22 "registryOperator": "Binky Moon, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.vin",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "virgin",
22 "registryOperator": "Virgin Enterprises Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.virgin/",
44 "whoisServer": "whois.nic.virgin",
55 "rdapURLs": [
66 "https://rdap.nominet.uk/virgin/"
00 {
11 "domain": "visa",
22 "registryOperator": "Visa Worldwide Pte. Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://usa.visa.com/legal/visa-nic.html",
44 "whoisServer": "whois.nic.visa",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/visa/v1/"
00 {
11 "domain": "vista",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.vista",
43 "tags": [
54 "brand",
00 {
11 "domain": "vistaprint",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.vistaprint",
43 "tags": [
54 "brand",
00 {
11 "domain": "viva",
22 "registryOperator": "Saudi Telecom Company",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.viva/",
44 "whoisServer": "whois.nic.viva",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/viva/"
00 {
11 "domain": "vivo",
22 "registryOperator": "Telefonica Brasil S.A.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.vivo.com.br/para-voce",
44 "whoisServer": "whois.nic.vivo",
55 "rdapURLs": [
66 "https://rdap.nic.vivo/"
00 {
11 "domain": "vlaanderen",
22 "registryOperator": "DNS.be vzw",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.dnsbelgium.be/",
44 "whoisServer": "whois.nic.vlaanderen",
55 "rdapURLs": [
66 "https://rdap.nic.vlaanderen/"
00 {
11 "domain": "volkswagen",
22 "registryOperator": "Volkswagen Group of America Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.volkswagen/",
44 "whoisServer": "whois.afilias-srs.net",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/volkswagen/"
00 {
11 "domain": "volvo",
22 "registryOperator": "Volvo Holding Sverige Aktiebolag",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.nic.volvo/en/",
44 "whoisServer": "whois.nic.volvo",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/volvo/v1/"
00 {
11 "domain": "vons",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "vote",
22 "registryOperator": "Monolith Registry LLC",
3 "infoURL": "https://get.vote/",
3 "infoURL": "http://nic.vote/",
44 "whoisServer": "whois.nic.vote",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "voto",
22 "registryOperator": "Monolith Registry LLC",
3 "infoURL": "https://get.voto/",
3 "infoURL": "http://nic.voto/",
44 "whoisServer": "whois.nic.voto",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "vuelos",
22 "registryOperator": "Travel Reservations SRL",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.vuelos/",
44 "whoisServer": "whois.nic.vuelos",
55 "rdapURLs": [
66 "https://rdap.nic.vuelos/"
00 {
11 "domain": "walmart",
22 "registryOperator": "Wal-Mart Stores, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/walmart",
44 "whoisServer": "whois.nic.walmart",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/walmart/v1/"
00 {
11 "domain": "walter",
22 "registryOperator": "Sandvik AB",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.walter-tools.com/en-gb/company/mission_facts/legal_notice/pages/nic-walter.aspx",
44 "whoisServer": "whois.nic.walter",
55 "rdapURLs": [
66 "https://rdap.nic.walter/"
00 {
11 "domain": "wang",
22 "registryOperator": "Zodiac Wang Limited",
3 "whoisServer": "whois.gtld.knet.cn",
3 "whoisServer": "whois.nic.wang",
44 "rdapURLs": [
55 "https://rdap.zdnsgtld.com/wang/"
66 ],
1010 "c.zdnscloud.com",
1111 "d.zdnscloud.com",
1212 "f.zdnscloud.com",
13 "g.zdnscloud.com",
14 "i.zdnscloud.com",
15 "j.zdnscloud.com"
13 "g.zdnscloud.com"
1614 ],
1715 "languages": [
1816 "zh-Hans",
00 {
11 "domain": "wanggou",
22 "registryOperator": "Amazon Registry Services, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.wanggou/",
44 "whoisServer": "whois.nic.wanggou",
55 "rdapURLs": [
66 "https://rdap.nominet.uk/wanggou/"
00 {
11 "domain": "warman",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.warman",
43 "tags": [
54 "brand",
00 {
11 "domain": "watches",
22 "registryOperator": "Identity Digital Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.watches",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "weather",
22 "registryOperator": "International Business Machines Corporation",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://www.nic.weather/",
44 "whoisServer": "whois.nic.weather",
55 "rdapURLs": [
66 "https://rdap.nic.weather/"
00 {
11 "domain": "weatherchannel",
22 "registryOperator": "International Business Machines Corporation",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://www.nic.weatherchannel/",
44 "whoisServer": "whois.nic.weatherchannel",
55 "rdapURLs": [
66 "https://rdap.nic.weatherchannel/"
00 {
11 "domain": "web",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
4 "generic"
3 "generic",
4 "withdrawn"
55 ],
66 "policies": [
77 {
00 {
11 "domain": "webcam",
22 "registryOperator": "dot Webcam Limited",
3 "infoURL": "https://www.famousfourmedia.com/",
3 "infoURL": "http://nic.webcam/",
44 "whoisServer": "whois.nic.webcam",
55 "rdapURLs": [
66 "https://rdap.nic.webcam/"
00 {
11 "domain": "weber",
22 "registryOperator": "Saint-Gobain Weber SA",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.weber/",
44 "whoisServer": "whois.nic.weber",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/weber/v1/"
00 {
11 "domain": "webjet",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "webs",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
4 "generic"
3 "generic",
4 "withdrawn"
55 ],
66 "policies": [
77 {
00 {
11 "domain": "wed",
2 "infoURL": "https://newgtlds.icann.org/",
2 "infoURL": "https://www.icann.org/resources/pages/ebero-2013-04-02-en",
33 "whoisServer": "whois.nic.wed",
44 "rdapURLs": [
55 "https://rdap.nominet.uk/wed/"
00 {
11 "domain": "weibo",
22 "registryOperator": "Sina Corporation",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/weibo",
44 "whoisServer": "whois.nic.weibo",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/weibo/"
00 {
11 "domain": "weir",
22 "registryOperator": "Weir Group IP Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.weir/",
44 "rdapURLs": [
55 "https://tld-rdap.verisign.com/weir/v1/"
66 ],
00 {
11 "domain": "whoswho",
22 "registryOperator": "Who's Who Registry",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://internet.whoswho/",
44 "whoisServer": "whois.nic.whoswho",
55 "rdapURLs": [
66 "https://rdap.nic.whoswho/"
00 {
11 "domain": "williamhill",
22 "registryOperator": "William Hill Organization Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.williamhill/",
44 "whoisServer": "whois.nic.williamhill",
55 "rdapURLs": [
66 "https://rdap.nic.williamhill/"
00 {
11 "domain": "wilmar",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "brand",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "win",
22 "registryOperator": "First Registry Limited",
3 "infoURL": "https://www.famousfourmedia.com/",
3 "infoURL": "http://nic.win/",
44 "whoisServer": "whois.nic.win",
55 "rdapURLs": [
66 "https://rdap.nic.win/"
00 {
11 "domain": "windows",
22 "registryOperator": "Microsoft Corporation",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.windows/",
44 "rdapURLs": [
55 "https://tld-rdap.verisign.com/windows/v1/"
66 ],
00 {
11 "domain": "wine",
22 "registryOperator": "Binky Moon, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.wine",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "winners",
22 "registryOperator": "The TJX Companies, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.winners/",
44 "whoisServer": "whois.nic.winners",
55 "rdapURLs": [
66 "https://rdap.nic.winners/"
00 {
11 "domain": "wme",
22 "registryOperator": "William Morris Endeavor Entertainment, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.wme/",
44 "whoisServer": "whois.nic.wme",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/wme/"
00 {
11 "domain": "wolterskluwer",
22 "registryOperator": "Wolters Kluwer N.V.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.wolterskluwer/",
44 "whoisServer": "whois.nic.wolterskluwer",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/wolterskluwer/"
00 {
11 "domain": "woodside",
22 "registryOperator": "Woodside Petroleum Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.woodside/",
44 "whoisServer": "whois.nic.woodside",
55 "rdapURLs": [
66 "https://rdap.nic.woodside/"
00 {
11 "domain": "world",
22 "registryOperator": "Binky Moon, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.world",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "wow",
22 "registryOperator": "Amazon Registry Services, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.wow/",
44 "whoisServer": "whois.nic.wow",
55 "rdapURLs": [
66 "https://rdap.nominet.uk/wow/"
00 {
11 "domain": "ws",
22 "infoURL": "https://www.worldsite.ws/",
3 "whoisServer": "whois.website.ws",
3 "whoisServer": "whois.worldsite.ws",
44 "nameServers": [
55 "a.dns.ws",
66 "ns2.dns.ws",
00 {
11 "domain": "wtc",
22 "registryOperator": "World Trade Centers Association, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.wtc/",
44 "whoisServer": "whois.nic.wtc",
55 "rdapURLs": [
66 "https://rdap.nic.wtc/"
00 {
11 "domain": "xbox",
22 "registryOperator": "Microsoft Corporation",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.xbox/",
44 "rdapURLs": [
55 "https://tld-rdap.verisign.com/xbox/v1/"
66 ],
00 {
11 "domain": "xerox",
22 "registryOperator": "Xerox DNHC LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.xerox/",
44 "whoisServer": "whois.nic.xerox",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/xerox/v1/"
00 {
11 "domain": "xfinity",
22 "registryOperator": "Comcast IP Holdings I, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.xfinity/",
44 "whoisServer": "whois.nic.xfinity",
55 "rdapURLs": [
66 "https://rdap.nominet.uk/xfinity/"
00 {
11 "domain": "xihuan",
22 "registryOperator": "Beijing Qihu Keji Co., Ltd.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xihuan",
44 "whoisServer": "whois.teleinfo.cn",
55 "rdapURLs": [
66 "https://rdap.teleinfo.cn/"
00 {
11 "domain": "xin",
22 "registryOperator": "Elegant Leader Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.xin/",
44 "whoisServer": "whois.nic.xin",
55 "rdapURLs": [
66 "https://rdap.aceregistry.net/rdap/xin/"
0 {
1 "domain": "测试",
2 "registryOperator": "IANA",
3 "infoURL": "https://www.iana.org/domains/reserved",
4 "tags": [
5 "retired",
6 "test"
7 ]
8 }
00 {
11 "domain": "कॉम",
22 "registryOperator": "VeriSign Sarl",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--11b4c3d",
44 "whoisServer": "whois.nic.कॉम",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/xn--11b4c3d/v1/"
00 {
11 "domain": "परीक्षा",
2 "registryOperator": "IANA",
3 "infoURL": "https://www.iana.org/domains/reserved",
24 "tags": [
3 "generic"
5 "retired",
6 "test"
47 ]
58 }
00 {
11 "domain": "セール",
22 "registryOperator": "Amazon Registry Services, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.セール/",
44 "whoisServer": "whois.nic.セール",
55 "rdapURLs": [
66 "https://rdap.nic.セール/"
00 {
11 "domain": "佛山",
22 "registryOperator": "Guangzhou YU Wei Information Technology Co., Ltd.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--1qqw23a",
44 "whoisServer": "whois.ngtld.cn",
55 "rdapURLs": [
66 "https://restwhois.ngtld.cn/"
00 {
11 "domain": "慈善",
22 "registryOperator": "Excellent First Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--30rr7y",
44 "whoisServer": "whois.gtld.knet.cn",
55 "rdapURLs": [
66 "https://rdap.zdnsgtld.com/xn--30rr7y/"
1111 "c.zdnscloud.com",
1212 "d.zdnscloud.com",
1313 "f.zdnscloud.com",
14 "g.zdnscloud.com",
15 "i.zdnscloud.com",
16 "j.zdnscloud.com"
14 "g.zdnscloud.com"
1715 ],
1816 "languages": [
1917 "zh-Hans",
00 {
11 "domain": "集团",
22 "registryOperator": "Eagle Horizon Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--3bst00m",
44 "whoisServer": "whois.gtld.knet.cn",
55 "rdapURLs": [
66 "https://rdap.zdnsgtld.com/xn--3bst00m/"
00 {
11 "domain": "大众汽车",
22 "registryOperator": "Volkswagen (China) Investment Co., Ltd.",
3 "infoURL": "https://newgtlds.icann.org/",
43 "whoisServer": "whois.nic.大众汽车",
54 "rdapURLs": [
65 "https://rdap.afilias-srs.net/rdap/xn--3oq18vl8pn36a/"
00 {
11 "domain": "点看",
22 "registryOperator": "VeriSign Sarl",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--3pxu8k",
44 "whoisServer": "whois.nic.点看",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/xn--3pxu8k/v1/"
00 {
11 "domain": "คอม",
22 "registryOperator": "VeriSign Sarl",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--42c2d9a",
44 "whoisServer": "whois.nic.คอม",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/xn--42c2d9a/v1/"
00 {
11 "domain": "八卦",
22 "registryOperator": "Zodiac Gemini Ltd",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--45q11c",
44 "whoisServer": "whois.gtld.knet.cn",
55 "rdapURLs": [
66 "https://rdap.zdnsgtld.com/XN--45Q11C/"
1111 "c.zdnscloud.com",
1212 "d.zdnscloud.com",
1313 "f.zdnscloud.com",
14 "g.zdnscloud.com",
15 "i.zdnscloud.com",
16 "j.zdnscloud.com"
14 "g.zdnscloud.com"
1715 ],
1816 "languages": [
1917 "zh-Hans",
00 {
11 "domain": "موقع",
22 "registryOperator": "Helium TLDs Ltd",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--4gbrim",
44 "whoisServer": "whois.nic.موقع",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/xn--4gbrim/"
00 {
11 "domain": "一号店",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "generic",
54 "withdrawn"
00 {
11 "domain": "বাংলা",
22 "nameServers": [
3 "bayanno.btcl.net.bd",
4 "bd-ns.anycast.pch.net",
5 "ekushey.btcl.net.bd"
3 "bd-ns.anycast.pch.net"
64 ],
75 "tags": [
86 "country",
00 {
11 "domain": "公益",
22 "registryOperator": "China Organizational Name Administration Center",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--55qw42g",
44 "whoisServer": "whois.conac.cn",
55 "rdapURLs": [
66 "https://rdap.conac.cn/"
00 {
11 "domain": "通用电气公司",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
4 "generic"
3 "generic",
4 "withdrawn"
55 ]
66 }
00 {
11 "domain": "香格里拉",
22 "registryOperator": "Shangri‐La International Hotel Management Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--5su34j936bgsg",
44 "whoisServer": "whois.nic.香格里拉",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/xn--5su34j936bgsg/v1/"
00 {
11 "domain": "网站",
22 "registryOperator": "Global Website TLD Asia Limited",
3 "infoURL": "https://nic.网站/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.网站",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "我爱你",
22 "registryOperator": "Tycoon Treasure Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://520.newgtld.cn/",
44 "whoisServer": "whois.gtld.knet.cn",
55 "rdapURLs": [
66 "https://rdap.zdnsgtld.com/xn--6qq986b3xl/"
1111 "c.zdnscloud.com",
1212 "d.zdnscloud.com",
1313 "f.zdnscloud.com",
14 "g.zdnscloud.com",
15 "i.zdnscloud.com",
16 "j.zdnscloud.com"
14 "g.zdnscloud.com"
1715 ],
1816 "languages": [
1917 "zh-Hans",
00 {
11 "domain": "广州",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "withdrawn"
54 ]
00 {
11 "domain": "испытание",
2 "registryOperator": "IANA",
3 "infoURL": "https://www.iana.org/domains/reserved",
24 "tags": [
3 "generic"
5 "retired",
6 "test"
47 ]
58 }
00 {
11 "domain": "католик",
22 "registryOperator": "Pontificium Consilium de Comunicationibus Socialibus (PCCS) (Pontifical Council for Social Communication)",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.католик/",
44 "whoisServer": "whois.nic.католик",
55 "rdapURLs": [
66 "https://rdap.nic.католик/"
00 {
11 "domain": "联通",
22 "registryOperator": "China United Network Communications Corporation Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--8y0a063a",
44 "whoisServer": "whois.nic.联通",
55 "rdapURLs": [
66 "https://rdap.zdnsgtld.com/xn--8y0a063a/"
1111 "c.zdnscloud.com",
1212 "d.zdnscloud.com",
1313 "f.zdnscloud.com",
14 "g.zdnscloud.com",
15 "i.zdnscloud.com",
16 "j.zdnscloud.com"
14 "g.zdnscloud.com"
1715 ],
1816 "languages": [
1917 "zh-Hans",
00 {
11 "domain": "时尚",
22 "registryOperator": "RISE VICTORY LIMITED",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--9et52u",
44 "whoisServer": "whois.gtld.knet.cn",
55 "rdapURLs": [
66 "https://rdap.zdnsgtld.com/xn--9et52u/"
1111 "c.zdnscloud.com",
1212 "d.zdnscloud.com",
1313 "f.zdnscloud.com",
14 "g.zdnscloud.com",
15 "i.zdnscloud.com",
16 "j.zdnscloud.com"
14 "g.zdnscloud.com"
1715 ],
1816 "languages": [
1917 "zh-Hans",
00 {
11 "domain": "微博",
22 "registryOperator": "Sina Corporation",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--9krt00a",
44 "whoisServer": "whois.nic.微博",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/xn--9krt00a/"
00 {
11 "domain": "테스트",
2 "registryOperator": "IANA",
3 "infoURL": "https://www.iana.org/domains/reserved",
24 "tags": [
3 "generic"
5 "retired",
6 "test"
47 ]
58 }
00 {
11 "domain": "淡马锡",
22 "registryOperator": "Temasek Holdings (Private) Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.temasek.com.sg/zh/site-services/nictemasek",
44 "whoisServer": "whois.afilias-srs.net",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/xn--b4w605ferd/"
00 {
11 "domain": "ファッション",
22 "registryOperator": "Amazon Registry Services, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.ファッション/",
44 "whoisServer": "whois.nic.ファッション",
55 "rdapURLs": [
66 "https://rdap.nic.ファッション/"
00 {
11 "domain": "орг",
22 "registryOperator": "Public Interest Registry",
3 "infoURL": "https://pir.org/products/opr-domain/",
3 "infoURL": "https://thenew.org/org-people/domain-products/opr/",
44 "whoisServer": "whois.nic.орг",
55 "rdapURLs": [
66 "https://rdap.publicinterestregistry.org/rdap/"
00 {
11 "domain": "點看",
2 "infoURL": "https://newgtlds.icann.org/"
2 "tags": [
3 "withdrawn"
4 ]
35 }
00 {
11 "domain": "नेट",
22 "registryOperator": "VeriSign Sarl",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--c2br7g",
44 "whoisServer": "whois.nic.नेट",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/xn--c2br7g/v1/"
00 {
11 "domain": "アマゾン",
22 "registryOperator": "Amazon Registry Services, Inc.",
3 "infoURL": "http://nic.アマゾン/",
3 "infoURL": "https://nic.アマゾン/",
44 "whoisServer": "whois.nic.アマゾン",
55 "rdapURLs": [
66 "https://rdap.nominet.uk/xn--cckwcxetd/"
00 {
11 "domain": "삼성",
22 "registryOperator": "SAMSUNG SDS CO., LTD",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.삼성/",
44 "whoisServer": "whois.kr",
55 "rdapURLs": [
66 "https://nic.samsung:8443/rdap/"
00 {
11 "domain": "商标",
22 "registryOperator": "Internet DotTrademark Organisation Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--czr694b",
44 "rdapURLs": [
55 "https://rdap.zdnsgtld.com/xn--czr694b/"
66 ],
1010 "c.zdnscloud.com",
1111 "d.zdnscloud.com",
1212 "f.zdnscloud.com",
13 "g.zdnscloud.com",
14 "i.zdnscloud.com",
15 "j.zdnscloud.com"
13 "g.zdnscloud.com"
1614 ],
1715 "languages": [
1816 "zh-Hans",
00 {
11 "domain": "商店",
22 "registryOperator": "Binky Moon, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.商店",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
1010 "c.zdnscloud.com",
1111 "d.zdnscloud.com",
1212 "f.zdnscloud.com",
13 "g.zdnscloud.com",
14 "i.zdnscloud.com",
15 "j.zdnscloud.com"
13 "g.zdnscloud.com"
1614 ],
1715 "languages": [
1816 "zh-Hans",
00 {
11 "domain": "мкд",
2 "infoURL": "https://newgtlds.icann.org/",
2 "infoURL": "https://www.iana.org/domains/root/db/xn--d1alf.html",
33 "whoisServer": "whois.marnet.mk",
44 "nameServers": [
55 "d.ext.nic.cz",
00 {
11 "domain": "טעסט",
2 "registryOperator": "IANA",
3 "infoURL": "https://www.iana.org/domains/reserved",
24 "tags": [
3 "generic"
5 "retired",
6 "test"
47 ]
58 }
00 {
11 "domain": "欧莱雅",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "generic",
54 "withdrawn"
00 {
11 "domain": "ポイント",
22 "registryOperator": "Amazon Registry Services, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.ポイント/",
44 "whoisServer": "whois.nic.ポイント",
55 "rdapURLs": [
66 "https://rdap.nic.ポイント/"
00 {
11 "domain": "新闻",
22 "registryOperator": "Guangzhou YU Wei Information Technology Co., Ltd.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--efvy88h",
44 "whoisServer": "whois.nic.新闻",
55 "rdapURLs": [
66 "https://rdap.zdnsgtld.com/XN--EFVY88H/"
1111 "c.zdnscloud.com",
1212 "d.zdnscloud.com",
1313 "f.zdnscloud.com",
14 "g.zdnscloud.com",
15 "i.zdnscloud.com",
16 "j.zdnscloud.com"
14 "g.zdnscloud.com"
1715 ],
1816 "languages": [
1917 "zh-Hans",
00 {
11 "domain": "工行",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.工行",
43 "tags": [
54 "retired"
00 {
11 "domain": "家電",
22 "registryOperator": "Amazon Registry Services, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.家電/",
44 "whoisServer": "whois.nic.家電",
55 "rdapURLs": [
66 "https://rdap.nic.家電/"
00 {
11 "domain": "深圳",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "withdrawn"
54 ]
00 {
11 "domain": "كوم",
22 "registryOperator": "VeriSign Sarl",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--fhbei",
44 "whoisServer": "whois.nic.كوم",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/xn--fhbei/v1/"
00 {
11 "domain": "中信",
22 "registryOperator": "CITIC Group Corporation",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--fiq64b",
44 "whoisServer": "whois.gtld.knet.cn",
55 "rdapURLs": [
66 "https://rdap.zdnsgtld.com/xn--fiq64b/"
1111 "c.zdnscloud.com",
1212 "d.zdnscloud.com",
1313 "f.zdnscloud.com",
14 "g.zdnscloud.com",
15 "i.zdnscloud.com",
16 "j.zdnscloud.com"
14 "g.zdnscloud.com"
1715 ],
1816 "languages": [
1917 "zh-Hans",
00 {
11 "domain": "中国",
2 "infoURL": "http://cnnic.cn/",
2 "infoURL": "https://wanwang.aliyun.com/hosting/cn_domain",
33 "whoisServer": "cwhois.cnnic.cn",
44 "nameServers": [
55 "h.dns.cn",
00 {
11 "domain": "中國",
2 "infoURL": "http://cnnic.cn/",
2 "infoURL": "https://wanwang.aliyun.com/hosting/cn_domain",
33 "whoisServer": "cwhois.cnnic.cn",
44 "nameServers": [
55 "h.dns.cn",
00 {
11 "domain": "娱乐",
22 "registryOperator": "Binky Moon, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.娱乐",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
77 "ns-d.nic.lk",
88 "ns-l.nic.lk",
99 "ns-t.nic.lk",
10 "ns1.ac.lk",
11 "ns3.ac.lk"
10 "ns1.ac.lk"
1211 ],
1312 "tags": [
1413 "country",
00 {
11 "domain": "電訊盈科",
22 "registryOperator": "PCCW Enterprises Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--fzys8d69uvgm",
44 "whoisServer": "whois.nic.電訊盈科",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/xn--fzys8d69uvgm/"
00 {
11 "domain": "购物",
22 "registryOperator": "Nawang Heli(Xiamen) Network Service Co., LTD.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.购物/",
44 "whoisServer": "whois.nic.购物",
55 "rdapURLs": [
66 "https://rdap.nic.购物/"
0 {
1 "domain": "測試",
2 "registryOperator": "IANA",
3 "infoURL": "https://www.iana.org/domains/reserved",
4 "tags": [
5 "retired",
6 "test"
7 ]
8 }
00 {
11 "domain": "クラウド",
22 "registryOperator": "Amazon Registry Services, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.クラウド/",
44 "whoisServer": "whois.nic.クラウド",
55 "rdapURLs": [
66 "https://rdap.nic.クラウド/"
00 {
11 "domain": "通販",
22 "registryOperator": "Amazon Registry Services, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.通販/",
44 "whoisServer": "whois.nic.通販",
55 "rdapURLs": [
66 "https://rdap.nic.通販/"
00 {
11 "domain": "آزمایشی",
2 "registryOperator": "IANA",
3 "infoURL": "https://www.iana.org/domains/reserved",
24 "tags": [
3 "generic"
5 "retired",
6 "test"
47 ]
58 }
00 {
11 "domain": "பரிட்சை",
2 "registryOperator": "IANA",
3 "infoURL": "https://www.iana.org/domains/reserved",
24 "tags": [
3 "generic"
5 "retired",
6 "test"
47 ]
58 }
00 {
11 "domain": "盛貿飯店",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
4 "generic"
3 "generic",
4 "withdrawn"
55 ]
66 }
00 {
11 "domain": "网店",
22 "registryOperator": "Zodiac Taurus Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--hxt814e",
44 "whoisServer": "whois.gtld.knet.cn",
55 "rdapURLs": [
66 "https://rdap.zdnsgtld.com/xn--hxt814e/"
1111 "c.zdnscloud.com",
1212 "d.zdnscloud.com",
1313 "f.zdnscloud.com",
14 "g.zdnscloud.com",
15 "i.zdnscloud.com",
16 "j.zdnscloud.com"
14 "g.zdnscloud.com"
1715 ],
1816 "languages": [
1917 "zh-Hans",
00 {
11 "domain": "संगठन",
22 "registryOperator": "Public Interest Registry",
3 "infoURL": "https://pir.org/products/hindi-domain/",
3 "infoURL": "https://thenew.org/org-people/domain-products/%E0%A4%B8%E0%A4%82%E0%A4%97%E0%A4%A0%E0%A4%A8/",
44 "whoisServer": "whois.nic.संगठन",
55 "rdapURLs": [
66 "https://rdap.publicinterestregistry.org/rdap/"
00 {
11 "domain": "餐厅",
22 "registryOperator": "Internet DotTrademark Organisation Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--imr513n",
44 "rdapURLs": [
55 "https://rdap.zdnsgtld.com/xn--imr513n/"
66 ],
1010 "c.zdnscloud.com",
1111 "d.zdnscloud.com",
1212 "f.zdnscloud.com",
13 "g.zdnscloud.com",
14 "i.zdnscloud.com",
15 "j.zdnscloud.com"
13 "g.zdnscloud.com"
1614 ],
1715 "languages": [
1816 "zh-Hans",
00 {
11 "domain": "ком",
22 "registryOperator": "VeriSign Sarl",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--j1aef",
44 "whoisServer": "whois.nic.ком",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/xn--j1aef/v1/"
00 {
11 "domain": "香港電訊",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "generic",
54 "withdrawn"
00 {
11 "domain": "亚马逊",
22 "registryOperator": "Amazon Registry Services, Inc.",
3 "infoURL": "http://nic.亚马逊/",
3 "infoURL": "https://nic.亚马逊/",
44 "whoisServer": "whois.nic.亚马逊",
55 "rdapURLs": [
66 "https://rdap.nominet.uk/xn--jlq480n2rg/"
00 {
11 "domain": "诺基亚",
22 "registryOperator": "Nokia Corporation",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.诺基亚/",
44 "whoisServer": "whois.nic.诺基亚",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/xn--jlq61u9w7b/"
00 {
11 "domain": "食品",
22 "registryOperator": "Amazon Registry Services, Inc.",
3 "infoURL": "http://nic.食品/",
3 "infoURL": "https://nic.食品/",
44 "whoisServer": "whois.nic.食品",
55 "rdapURLs": [
66 "https://rdap.nic.食品/"
00 {
11 "domain": "δοκιμή",
2 "registryOperator": "IANA",
3 "infoURL": "https://www.iana.org/domains/reserved",
24 "tags": [
3 "generic"
5 "retired",
6 "test"
47 ]
58 }
00 {
11 "domain": "飞利浦",
22 "registryOperator": "Koninklijke Philips N.V.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.飞利浦/",
44 "whoisServer": "whois.nic.飞利浦",
55 "rdapURLs": [
66 "https://rdap.nic.飞利浦/"
00 {
11 "domain": "普利司通",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "generic",
54 "withdrawn"
00 {
11 "domain": "إختبار",
2 "registryOperator": "IANA",
3 "infoURL": "https://www.iana.org/domains/reserved",
24 "tags": [
3 "generic"
5 "retired",
6 "test"
47 ]
58 }
00 {
11 "domain": "手表",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.手表",
43 "tags": [
54 "retired"
00 {
11 "domain": "手机",
22 "registryOperator": "Beijing RITT-Net Technology Development Co., Ltd",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--kput3i",
44 "whoisServer": "whois.nic.手机",
55 "rdapURLs": [
66 "https://rdap.registrysystem.net/rdap/xn--kput3i/"
00 {
11 "domain": "мон",
2 "infoURL": "https://newgtlds.icann.org/",
2 "registryOperator": "Datacom Co.,Ltd",
3 "infoURL": "https://www.mon.mn/",
34 "nameServers": [
45 "ns1.idn.mn",
56 "ns2.idn.mn",
00 {
11 "domain": "الجزائر",
2 "infoURL": "https://newgtlds.icann.org/",
2 "infoURL": "https://www.iana.org/domains/root/db/xn--lgbbat1ad8j.html",
33 "whoisServer": "whois.nic.dz",
44 "nameServers": [
55 "idn1.nic.dz",
00 {
11 "domain": "عمان",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.registry.om",
43 "nameServers": [
54 "cctld.alpha.aridns.net.au",
00 {
11 "domain": "ارامكو",
22 "registryOperator": "Aramco Services Company",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://www.nic.ارامكو/",
44 "whoisServer": "whois.nic.ارامكو",
55 "rdapURLs": [
66 "https://rdap.nic.ارامكو/"
00 {
11 "domain": "العليان",
22 "registryOperator": "Crescent Holding GmbH",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.العليان/",
44 "whoisServer": "whois.nic.العليان",
55 "rdapURLs": [
66 "https://rdap.nic.العليان/"
00 {
11 "domain": "اتصالات",
22 "registryOperator": "Emirates Telecommunications Corporation (trading as Etisalat)",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.اتصالات/",
44 "whoisServer": "whois.centralnic.com",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/xn--mgbaakc7dvf/"
00 {
11 "domain": "موبايلي",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.موبايلي",
43 "tags": [
54 "generic",
00 {
11 "domain": "المغرب",
2 "infoURL": "https://newgtlds.icann.org/",
2 "infoURL": "https://www.iana.org/domains/root/db/xn--mgbc0a9azcg.html",
33 "whoisServer": "whois.iam.net.ma",
44 "nameServers": [
55 "a.tld.ma",
00 {
11 "domain": "ابوظبي",
22 "registryOperator": "Abu Dhabi Systems and Information Centre",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--mgbca7dzdo",
44 "whoisServer": "whois.nic.ابوظبي",
55 "rdapURLs": [
66 "https://rdap.nic.ابوظبي/"
00 {
11 "domain": "كاثوليك",
22 "registryOperator": "Pontificium Consilium de Comunicationibus Socialibus (PCCS) (Pontifical Council for Social Communication)",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.كاثوليك/",
44 "whoisServer": "whois.nic.كاثوليك",
55 "rdapURLs": [
66 "https://rdap.nic.كاثوليك/"
00 {
11 "domain": "همراه",
22 "registryOperator": "Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--mgbt3dhd",
44 "whoisServer": "whois.nic.همراه",
55 "rdapURLs": [
66 "https://api.rdap.agitsys.net/"
00 {
11 "domain": "موزايك",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
4 "generic"
3 "generic",
4 "withdrawn"
55 ]
66 }
00 {
11 "domain": "닷컴",
22 "registryOperator": "VeriSign Sarl",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--mk1bu44c",
44 "whoisServer": "whois.nic.닷컴",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/xn--mk1bu44c/v1/"
00 {
11 "domain": "政府",
22 "registryOperator": "Net-Chinese Co., Ltd.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--mxtq1m",
44 "whoisServer": "whois.nic.政府",
55 "rdapURLs": [
66 "https://rdap.twnic.tw/rdap/"
00 {
11 "domain": "بيتك",
22 "registryOperator": "Kuwait Finance House",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.بيتك/",
44 "whoisServer": "whois.nic.بيتك",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/xn--ngbe9e0a/"
00 {
11 "domain": "عرب",
22 "registryOperator": "League of Arab States",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.عرب/",
44 "whoisServer": "whois.nic.عرب",
55 "rdapURLs": [
66 "https://rdap.nic.عرب/"
00 {
11 "domain": "გე",
2 "infoURL": "https://newgtlds.icann.org/",
2 "infoURL": "http://nic.გე/",
33 "whoisServer": "whois.itdc.ge",
44 "nameServers": [
55 "a.გე.globalanycastcloud.freenom.net",
88 "d.გე.globalanycastcloud.freenom.net",
99 "გე.ns.anycast.pch.net"
1010 ],
11 "wildcards": [
12 "188.93.95.11"
13 ],
1114 "tags": [
1215 "country",
1316 "geo"
00 {
11 "domain": "机构",
22 "registryOperator": "Public Interest Registry",
3 "infoURL": "https://pir.org/products/chinese2char-domain/",
3 "infoURL": "https://thenew.org/org-people/domain-products/%E6%9C%BA%E6%9E%84/",
44 "whoisServer": "whois.nic.机构",
55 "rdapURLs": [
66 "https://rdap.publicinterestregistry.org/rdap/"
00 {
11 "domain": "组织机构",
22 "registryOperator": "Public Interest Registry",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://thenew.org/org-people/work-with-us/contact/",
44 "whoisServer": "whois.nic.组织机构",
55 "rdapURLs": [
66 "https://rdap.publicinterestregistry.org/rdap/"
00 {
11 "domain": "健康",
22 "registryOperator": "Stable Tone Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--nyqy26a",
44 "whoisServer": "whois.nic.健康",
55 "rdapURLs": [
66 "https://rdap.teleinfo.cn/xn--nyqy26a/"
00 {
11 "domain": "招聘",
22 "registryOperator": "Jiang Yu Liang Cai Technology Company Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--otu796d",
44 "rdapURLs": [
55 "https://rdap.zdnsgtld.com/xn--otu796d/"
66 ],
00 {
11 "domain": "рус",
22 "registryOperator": "Rusnames Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.webnames.ru/",
44 "whoisServer": "whois.nic.рус",
55 "rdapURLs": [
66 "https://api.rdap.nic.рус/"
00 {
11 "domain": "рф",
2 "infoURL": "https://cctld.ru/",
3 "whoisServer": "whois.tcinet.ru",
2 "infoURL": "https://www.iana.org/domains/root/db/xn--p1ai.html",
3 "whoisServer": "whois.ripn.net",
44 "nameServers": [
55 "a.dns.ripn.net",
66 "b.dns.ripn.net",
00 {
11 "domain": "珠宝",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.珠宝",
43 "tags": [
54 "retired"
00 {
11 "domain": "كيوتل",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
4 "generic"
3 "generic",
4 "withdrawn"
55 ]
66 }
00 {
11 "domain": "大拿",
22 "registryOperator": "VeriSign Sarl",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--pssy2u",
44 "whoisServer": "whois.nic.大拿",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/xn--pssy2u/v1/"
00 {
11 "domain": "書籍",
22 "registryOperator": "Amazon Registry Services, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.書籍/",
44 "whoisServer": "whois.nic.書籍",
55 "rdapURLs": [
66 "https://rdap.nic.書籍/"
00 {
11 "domain": "网址",
22 "registryOperator": "KNET Co., Ltd.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.网址/",
44 "whoisServer": "whois.nic.网址",
55 "rdapURLs": [
66 "https://rdap.zdnsgtld.com/xn--ses554g/"
1111 "c.zdnscloud.com",
1212 "d.zdnscloud.com",
1313 "f.zdnscloud.com",
14 "g.zdnscloud.com",
15 "i.zdnscloud.com",
16 "j.zdnscloud.com"
14 "g.zdnscloud.com"
1715 ],
1816 "languages": [
1917 "de",
00 {
11 "domain": "닷넷",
22 "registryOperator": "VeriSign Sarl",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--t60b56a",
44 "whoisServer": "whois.nic.닷넷",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/xn--t60b56a/v1/"
00 {
11 "domain": "天主教",
22 "registryOperator": "Pontificium Consilium de Comunicationibus Socialibus (PCCS) (Pontifical Council for Social Communication)",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "http://nic.天主教/",
44 "whoisServer": "whois.nic.天主教",
55 "rdapURLs": [
66 "https://rdap.nic.天主教/"
00 {
11 "domain": "机构体制",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
4 "generic"
3 "generic",
4 "withdrawn"
55 ]
66 }
00 {
11 "domain": "游戏",
22 "registryOperator": "Binky Moon, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.游戏",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "vermögensberater",
22 "registryOperator": "Deutsche Vermögensberatung Aktiengesellschaft DVAG",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--vermgensberater-ctb",
44 "whoisServer": "whois.nic.vermögensberater",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/xn--vermgensberater-ctb/"
00 {
11 "domain": "vermögensberatung",
22 "registryOperator": "Deutsche Vermögensberatung Aktiengesellschaft DVAG",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--vermgensberatung-pwb",
44 "whoisServer": "whois.nic.vermögensberatung",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/xn--vermgensberatung-pwb/"
00 {
11 "domain": "企业",
22 "registryOperator": "Binky Moon, LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://identity.digital/",
44 "whoisServer": "whois.nic.企业",
55 "rdapURLs": [
66 "https://rdap.donuts.co/rdap/"
00 {
11 "domain": "信息",
22 "registryOperator": "Beijing Tele-info Network Technology Co., Ltd.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--vuq861b",
44 "whoisServer": "whois.teleinfo.cn",
55 "rdapURLs": [
66 "https://rdap.teleinfo.cn/"
00 {
11 "domain": "嘉里大酒店",
22 "registryOperator": "Kerry Trading Co. Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--w4r85el8fhu5dnra",
44 "whoisServer": "whois.nic.嘉里大酒店",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/xn--w4r85el8fhu5dnra/v1/"
00 {
11 "domain": "嘉里",
22 "registryOperator": "Kerry Trading Co. Limited",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--w4rs40l",
44 "whoisServer": "whois.nic.嘉里",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/xn--w4rs40l/v1/"
00 {
11 "domain": "广东",
22 "registryOperator": "Guangzhou YU Wei Information Technology Co., Ltd.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--xhq521b",
44 "whoisServer": "whois.ngtld.cn",
55 "rdapURLs": [
66 "https://restwhois.ngtld.cn/"
00 {
11 "domain": "இலங்கை",
2 "infoURL": "https://newgtlds.icann.org/",
2 "infoURL": "https://www.iana.org/domains/root/db/xn--xkc2al3hye2a.html",
33 "whoisServer": "whois.nic.lk",
44 "nameServers": [
55 "lk.communitydns.net",
88 "ns-d.nic.lk",
99 "ns-l.nic.lk",
1010 "ns-t.nic.lk",
11 "ns1.ac.lk",
12 "ns3.ac.lk"
11 "ns1.ac.lk"
1312 ],
1413 "tags": [
1514 "country",
33 "nameServers": [
44 "dns1.gov.ps",
55 "dns3.gov.ps",
6 "idn.pnina.ps",
76 "ns1.pnina.ps"
87 ],
98 "tags": [
00 {
11 "domain": "テスト",
2 "registryOperator": "IANA",
3 "infoURL": "https://www.iana.org/domains/reserved",
24 "tags": [
3 "generic"
5 "retired",
6 "test"
47 ]
58 }
00 {
11 "domain": "政务",
22 "registryOperator": "China Organizational Name Administration Center",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/xn--zfr164b",
44 "whoisServer": "whois.conac.cn",
55 "rdapURLs": [
66 "https://rdap.conac.cn/"
00 {
11 "domain": "xperia",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.xperia",
43 "tags": [
54 "brand",
22 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
5 "ns-ext.vix.com",
65 "ns4.apnic.net",
76 "pch.nnic.np",
87 "sec2.apnic.net",
00 {
11 "domain": "yachts",
22 "registryOperator": "XYZ.COM LLC",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.yachts/",
44 "whoisServer": "whois.nic.yachts",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/yachts/"
00 {
11 "domain": "yahoo",
22 "registryOperator": "Oath Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://gtldyahoo.tumblr.com/",
44 "whoisServer": "whois.nic.yahoo",
55 "rdapURLs": [
66 "https://tld-rdap.verisign.com/yahoo/v1/"
00 {
11 "domain": "yamaxun",
22 "registryOperator": "Amazon Registry Services, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.yamaxun/",
44 "whoisServer": "whois.nic.yamaxun",
55 "rdapURLs": [
66 "https://rdap.nominet.uk/yamaxun/"
00 {
11 "domain": "yandex",
22 "registryOperator": "Yandex Europe B.V.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.yandex/",
44 "whoisServer": "whois.nic.yandex",
55 "rdapURLs": [
66 "https://rdap.nic.yandex/"
00 {
11 "domain": "yellowpages",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
43 "closed",
5 "generic"
4 "generic",
5 "withdrawn"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "yodobashi",
22 "registryOperator": "YODOBASHI CAMERA CO.,LTD.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.yodobashi/",
44 "whoisServer": "whois.nic.gmo",
55 "rdapURLs": [
66 "https://rdap.gmoregistry.net/rdap/"
00 {
11 "domain": "you",
22 "registryOperator": "Amazon Registry Services, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.you/",
44 "whoisServer": "whois.nic.you",
55 "rdapURLs": [
66 "https://rdap.nominet.uk/you/"
00 {
11 "domain": "yun",
22 "registryOperator": "Beijing Qihu Keji Co., Ltd.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://www.icann.org/en/registry-agreements/details/yun",
44 "whoisServer": "whois.teleinfo.cn",
55 "rdapURLs": [
66 "https://rdap.teleinfo.cn/"
00 {
11 "domain": "zappos",
22 "registryOperator": "Amazon Registry Services, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.zappos/",
44 "whoisServer": "whois.nic.zappos",
55 "rdapURLs": [
66 "https://rdap.nominet.uk/zappos/"
00 {
11 "domain": "zara",
22 "registryOperator": "Industria de Diseño Textil, S.A. (INDITEX, S.A.)",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.zara/",
44 "whoisServer": "whois.afilias-srs.net",
55 "rdapURLs": [
66 "https://rdap.afilias-srs.net/rdap/zara/"
00 {
11 "domain": "zero",
22 "registryOperator": "Amazon Registry Services, Inc.",
3 "infoURL": "https://newgtlds.icann.org/",
3 "infoURL": "https://nic.zero/",
44 "whoisServer": "whois.nic.zero",
55 "rdapURLs": [
66 "https://rdap.nic.zero/"
00 {
11 "domain": "zippo",
2 "infoURL": "https://newgtlds.icann.org/",
32 "whoisServer": "whois.nic.zippo",
43 "tags": [
54 "brand",
00 {
11 "domain": "zuerich",
22 "registryOperator": "Kanton Zürich (Canton of Zurich)",
3 "infoURL": "http://nic.zuerich/",
3 "infoURL": "https://nic.zuerich/",
44 "whoisServer": "whois.nic.zuerich",
55 "rdapURLs": [
66 "https://rdap.centralnic.com/zuerich/"
00 {
11 "domain": "zulu",
2 "infoURL": "https://newgtlds.icann.org/",
32 "tags": [
4 "generic"
3 "generic",
4 "withdrawn"
55 ],
66 "policies": [
77 {
+882
-879
zones.go less more
4848 TagRegion = 1024
4949 TagRetired = 2048
5050 TagSponsored = 4096
51 TagWithdrawn = 8192
52 numTags = 14
51 TagTest = 8192
52 TagWithdrawn = 16384
53 numTags = 15
5354 )
5455
5556 // TagStrings maps integer tag values to strings.
6768 TagRegion: "region",
6869 TagRetired: "retired",
6970 TagSponsored: "sponsored",
71 TagTest: "test",
7072 TagWithdrawn: "withdrawn",
7173 }
7274
8587 "region": TagRegion,
8688 "retired": TagRetired,
8789 "sponsored": TagSponsored,
90 "test": TagTest,
8891 "withdrawn": TagWithdrawn,
8992 }
9093
106109 {"aaa", r, x, 0x42, "American Automobile Association, Inc.", "http://nic.aaa/", w{"a.nic.aaa", "b.nic.aaa", "c.nic.aaa", "ns1.dns.nic.aaa", "ns2.dns.nic.aaa", "ns3.dns.nic.aaa"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.aaa", e, w{"https://rdap.nic.aaa/"}, t},
107110 {"aarp", r, x, 0x42, "AARP", "https://www.aarp.org/everywhere/aarp-nic/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.aarp", e, w{"https://tld-rdap.verisign.com/aarp/v1/"}, t},
108111 {"abarth", r, x, 0x42, "Fiat Chrysler Automobiles N.V.", "http://nic.abarth/", w{"a0.nic.abarth", "a2.nic.abarth", "b0.nic.abarth", "c0.nic.abarth"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/abarth/"}, f},
109 {"abb", r, x, 0x42, "ABB Ltd", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, w{"https://tld-rdap.verisign.com/abb/v1/"}, f},
112 {"abb", r, x, 0x42, "ABB Ltd", "https://www.icann.org/en/registry-agreements/details/abb", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, w{"https://tld-rdap.verisign.com/abb/v1/"}, f},
110113 {"abbott", r, x, 0x42, "Abbott Laboratories, Inc.", "https://nic.abbott/", w{"a0.nic.abbott", "a2.nic.abbott", "b0.nic.abbott", "c0.nic.abbott"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/abbott/"}, f},
111114 {"abbvie", r, x, 0x42, "AbbVie Inc.", "http://nic.abbvie/", w{"dns1.nic.abbvie", "dns2.nic.abbvie", "dns3.nic.abbvie", "dns4.nic.abbvie", "dnsa.nic.abbvie", "dnsb.nic.abbvie", "dnsc.nic.abbvie", "dnsd.nic.abbvie"}, n, n, n, "whois.nic.abbvie", e, w{"https://rdap.nominet.uk/abbvie/"}, f},
112115 {"abc", r, x, 0x42, "Disney Enterprises, Inc.", "https://www.nic.abc/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.abc", e, w{"https://tld-rdap.verisign.com/abc/v1/"}, f},
116119 {"ac", r, z[1754:1759], 0xa0, e, "https://icb.co.uk/", w{"a0.nic.ac", "a2.nic.ac", "b0.nic.ac", "c0.nic.ac"}, n, n, n, "whois.nic.ac", e, n, t},
117120 {"academy", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.academy", "v0n1.nic.academy", "v0n2.nic.academy", "v0n3.nic.academy", "v2n0.nic.academy", "v2n1.nic.academy"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.academy", e, w{"https://rdap.donuts.co/rdap/"}, t},
118121 {"accenture", r, x, 0x42, "Accenture plc", "https://www.accenture.com/us-en/acn-welcome-registry", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, e, e, w{"https://tld-rdap.verisign.com/accenture/v1/"}, t},
119 {"accountant", r, x, 0x40, "dot Accountant Limited", "https://www.famousfourmedia.com/", w{"a.nic.accountant", "b.nic.accountant", "c.nic.accountant", "ns1.dns.nic.accountant", "ns2.dns.nic.accountant", "ns3.dns.nic.accountant"}, n, n, w{"da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.accountant", e, w{"https://rdap.nic.accountant/"}, t},
122 {"accountant", r, x, 0x40, "dot Accountant Limited", "http://nic.accountant/", w{"a.nic.accountant", "b.nic.accountant", "c.nic.accountant", "ns1.dns.nic.accountant", "ns2.dns.nic.accountant", "ns3.dns.nic.accountant"}, n, n, w{"da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.accountant", e, w{"https://rdap.nic.accountant/"}, t},
120123 {"accountants", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.accountants", "v0n1.nic.accountants", "v0n2.nic.accountants", "v0n3.nic.accountants", "v2n0.nic.accountants", "v2n1.nic.accountants"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.accountants", e, w{"https://rdap.donuts.co/rdap/"}, t},
121 {"acer", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
124 {"acer", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
122125 {"aco", r, x, 0x42, "ACO Severin Ahlmann GmbH & Co. KG", "https://nic.aco.com/", w{"a.dns.nic.aco", "m.dns.nic.aco", "n.dns.nic.aco"}, n, n, w{"be", "bg", "bs", "da", "de", "es", "hu", "is", "ko", "lt", "lv", "mk", "pl", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.aco", e, w{"https://rdap.nic.aco/"}, t},
123 {"active", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.afilias-srs.net", e, n, f},
126 {"active", r, x, 0x842, e, e, n, n, n, n, "whois.afilias-srs.net", e, n, f},
124127 {"actor", r, x, 0x40, "Dog Beach, LLC", e, w{"v0n0.nic.actor", "v0n1.nic.actor", "v0n2.nic.actor", "v0n3.nic.actor", "v2n0.nic.actor", "v2n1.nic.actor"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.actor", e, w{"https://rdap.donuts.co/rdap/"}, t},
125 {"ad", r, z[1759:1760], 0xe0, e, "http://www.nic.ad/", w{"ad.cctld.authdns.ripe.net", "ad.ns.nic.es", "dnsc.ad", "dnsm.ad", "ns3.nic.fr"}, n, n, n, e, e, n, t},
128 {"ad", r, z[1759:1760], 0xe0, e, "https://www.iana.org/domains/root/db/ad.html", w{"ad.cctld.authdns.ripe.net", "ad.ns.nic.es", "dnsc.ad", "dnsm.ad", "ns3.nic.fr"}, n, n, n, e, e, n, t},
126129 {"adac", r, x, 0x42, "Allgemeiner Deutscher Automobil-Club e.V. (ADAC)", "https://www.adac.de/nic-adac/", w{"a.nic.adac", "b.nic.adac", "c.nic.adac", "d.nic.adac"}, n, n, w{"mul-Cyrl", "mul-Grek", "mul-Latn"}, "whois.nic.adac", e, w{"https://rdap.centralnic.com/adac/"}, t},
127130 {"ads", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
128131 {"adult", r, x, 0x41, "ICM Registry AD LLC", "https://nic.adult/", w{"a.nic.adult", "b.nic.adult", "c.nic.adult", "d.nic.adult"}, n, n, w{"ar", "be", "bg", "bs", "cnr", "da", "de", "es", "fr", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.adult", e, w{"https://rdap.nic.adult/"}, t},
130133 {"aeg", r, x, 0x42, "Aktiebolaget Electrolux", "https://nic.aeg/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.aeg", e, w{"https://tld-rdap.verisign.com/aeg/v1/"}, t},
131134 {"aero", r, z[1769:1772], 0x1040, "SITA Information Networking Computing USA", "https://information.aero/", w{"a0.nic.aero", "a2.nic.aero", "b0.nic.aero", "b2.nic.aero", "c0.nic.aero"}, n, n, n, "whois.aero", e, n, f},
132135 {"aetna", r, x, 0x42, "Aetna Life Insurance Company", "http://nic.aetna/", w{"a.nic.aetna", "b.nic.aetna", "c.nic.aetna", "ns1.dns.nic.aetna", "ns2.dns.nic.aetna", "ns3.dns.nic.aetna"}, n, n, w{"es", "pt"}, "whois.nic.aetna", e, w{"https://rdap.nic.aetna/"}, t},
133 {"af", r, z[1772:1782], 0xa0, e, "http://www.nic.af/", w{"ns.anycast.nic.af", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, "whois.nic.af", e, n, f},
134 {"afamilycompany", r, x, 0x842, "Johnson Shareholdings, Inc.", "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.afamilycompany", e, w{"https://tld-rdap.verisign.com/afamilycompany/v1/"}, f},
136 {"af", r, z[1772:1782], 0xa0, e, "https://nic.af/", w{"ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, "whois.nic.af", e, n, f},
137 {"afamilycompany", r, x, 0x842, "Johnson Shareholdings, Inc.", e, n, n, n, n, "whois.nic.afamilycompany", e, w{"https://tld-rdap.verisign.com/afamilycompany/v1/"}, f},
135138 {"afl", r, x, 0x42, "Australian Football League", "http://nic.afl/", w{"a.nic.afl", "b.nic.afl", "c.nic.afl", "d.nic.afl"}, n, n, n, "whois.nic.afl", e, w{"https://rdap.nic.afl/"}, f},
136 {"africa", r, x, 0xc0, "ZA Central Registry NPC trading as Registry.Africa", "https://newgtlds.icann.org/", w{"coza1.dnsnode.net", "nsp.netnod.se"}, n, w{"Africa"}, n, "whois.nic.africa", e, w{"https://rdap.nic.africa/rdap/"}, f},
137 {"africamagic", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
139 {"africa", r, x, 0xc0, "ZA Central Registry NPC trading as Registry.Africa", "https://registry.africa/", w{"coza1.dnsnode.net", "nsp.netnod.se"}, n, w{"Africa"}, n, "whois.nic.africa", e, w{"https://rdap.nic.africa/rdap/"}, f},
140 {"africamagic", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
138141 {"ag", r, z[1782:1788], 0xa0, e, "https://www.nic.ag/", w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, n, "whois.nic.ag", e, n, f},
139 {"agakhan", r, x, 0x42, "Fondation Aga Khan (Aga Khan Foundation)", "https://newgtlds.icann.org/", w{"a0.nic.agakhan", "a2.nic.agakhan", "b0.nic.agakhan", "c0.nic.agakhan"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/agakhan/"}, f},
142 {"agakhan", r, x, 0x42, "Fondation Aga Khan (Aga Khan Foundation)", "https://www.icann.org/en/registry-agreements/details/agakhan", w{"a0.nic.agakhan", "a2.nic.agakhan", "b0.nic.agakhan", "c0.nic.agakhan"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/agakhan/"}, f},
140143 {"agency", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.agency", "v0n1.nic.agency", "v0n2.nic.agency", "v0n3.nic.agency", "v2n0.nic.agency", "v2n1.nic.agency"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.agency", e, w{"https://rdap.donuts.co/rdap/"}, t},
141144 {"ai", r, z[1788:1792], 0xa0, e, "http://nic.com.ai/", w{"a.lactld.org", "anycastdns1-cz.nic.ai", "anycastdns2-cz.nic.ai", "pch.whois.ai"}, n, n, n, "whois.nic.ai", e, n, f},
142145 {"aig", r, x, 0x42, "American International Group, Inc.", "https://www.nic.aig/home", w{"a.nic.aig", "b.nic.aig", "c.nic.aig", "ns1.dns.nic.aig", "ns2.dns.nic.aig", "ns3.dns.nic.aig"}, n, n, w{"es"}, "whois.nic.aig", e, w{"https://rdap.nic.aig/"}, t},
143 {"aigo", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.afilias-srs.net", e, n, f},
146 {"aigo", r, x, 0x842, e, e, n, n, n, n, "whois.afilias-srs.net", e, n, f},
144147 {"airbus", r, x, 0x42, "Airbus S.A.S.", "https://nic.airbus/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"mul-Arab", "mul-Hani", "mul-Hano", "mul-Latn", "ru"}, "whois.nic.airbus", e, w{"https://tld-rdap.verisign.com/airbus/v1/"}, t},
145148 {"airforce", r, x, 0x40, "Dog Beach, LLC", e, w{"v0n0.nic.airforce", "v0n1.nic.airforce", "v0n2.nic.airforce", "v0n3.nic.airforce", "v2n0.nic.airforce", "v2n1.nic.airforce"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.airforce", e, w{"https://rdap.donuts.co/rdap/"}, t},
146 {"airtel", r, x, 0x42, "Bharti Airtel Limited", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.airtel", e, w{"https://tld-rdap.verisign.com/airtel/v1/"}, f},
147 {"akdn", r, x, 0x42, "Fondation Aga Khan (Aga Khan Foundation)", "https://newgtlds.icann.org/", w{"a0.nic.akdn", "a2.nic.akdn", "b0.nic.akdn", "c0.nic.akdn"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/akdn/"}, f},
148 {"al", r, z[1792:1802], 0xa0, e, "http://www.ert.gov.al/ert_eng/domain.html", w{"munnari.oz.au", "ns1.nic.al", "nsx.nic.al", "rip.psg.com"}, n, n, n, e, "http://www.akep.al/sq/kerkoni-domain", n, f},
149 {"alcon", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
149 {"airtel", r, x, 0x42, "Bharti Airtel Limited", "https://www.icann.org/en/registry-agreements/details/airtel", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.airtel", e, w{"https://tld-rdap.verisign.com/airtel/v1/"}, f},
150 {"akdn", r, x, 0x42, "Fondation Aga Khan (Aga Khan Foundation)", "https://www.icann.org/en/registry-agreements/details/akdn", w{"a0.nic.akdn", "a2.nic.akdn", "b0.nic.akdn", "c0.nic.akdn"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/akdn/"}, f},
151 {"al", r, z[1792:1802], 0xa0, e, "https://www.iana.org/domains/root/db/al.html", w{"munnari.oz.au", "ns1.nic.al", "nsx.nic.al", "rip.psg.com"}, n, n, n, e, "http://www.akep.al/sq/kerkoni-domain", n, f},
152 {"alcon", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
150153 {"alfaromeo", r, x, 0x42, "Fiat Chrysler Automobiles N.V.", "http://nic.alfaromeo/", w{"a0.nic.alfaromeo", "a2.nic.alfaromeo", "b0.nic.alfaromeo", "c0.nic.alfaromeo"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/alfaromeo/"}, f},
151154 {"alibaba", r, x, 0x42, "Alibaba Group Holding Limited", "http://nic.alibaba/", w{"a0.nic.alibaba", "a2.nic.alibaba", "b0.nic.alibaba", "c0.nic.alibaba"}, n, n, n, "whois.nic.alibaba", e, w{"https://rdap.afilias-srs.net/rdap/alibaba/"}, f},
152155 {"alipay", r, x, 0x42, "Alibaba Group Holding Limited", "http://nic.alipay/", w{"a0.nic.alipay", "a2.nic.alipay", "b0.nic.alipay", "c0.nic.alipay"}, n, n, n, "whois.nic.alipay", e, w{"https://rdap.afilias-srs.net/rdap/alipay/"}, f},
153156 {"allfinanz", r, x, 0x42, "Allfinanz Deutsche Vermögensberatung Aktiengesellschaft", "https://nic.allfinanz/", w{"a.nic.allfinanz", "b.nic.allfinanz", "c.nic.allfinanz", "d.nic.allfinanz"}, n, n, w{"de"}, "whois.nic.allfinanz", e, w{"https://rdap.centralnic.com/allfinanz/"}, t},
154 {"allfinanzberater", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
155 {"allfinanzberatung", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
157 {"allfinanzberater", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
158 {"allfinanzberatung", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
156159 {"allstate", r, x, 0x42, "Allstate Fire and Casualty Insurance Company", "https://www.allstate.com/landingpages/nic/nic-allstate.aspx", w{"a0.nic.allstate", "a2.nic.allstate", "b0.nic.allstate", "c0.nic.allstate"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/allstate/"}, f},
157160 {"ally", r, x, 0x42, "Ally Financial Inc.", "https://www.ally.com/learn/nic/", w{"a.nic.ally", "b.nic.ally", "c.nic.ally", "d.nic.ally"}, n, n, n, "whois.nic.ally", e, w{"https://rdap.afilias-srs.net/rdap/ally/"}, f},
158 {"alsace", r, x, 0x4c0, "Region Grand Est", "https://newgtlds.icann.org/", w{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, w{"FR-A"}, w{"mul-Latn"}, "whois.nic.alsace", e, w{"https://rdap.nic.alsace/"}, t},
161 {"alsace", r, x, 0x4c0, "Region Grand Est", "https://www.icann.org/en/registry-agreements/details/alsace", w{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, w{"FR-A"}, w{"mul-Latn"}, "whois.nic.alsace", e, w{"https://rdap.nic.alsace/"}, t},
159162 {"alstom", r, x, 0x42, "ALSTOM", "http://nic.alstom/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, w{"mul-Latn"}, "whois.nic.alstom", e, w{"https://rdap.nic.alstom/"}, t},
160163 {"am", r, z[1802:1809], 0xa0, e, "https://www.amnic.net/", w{"fork.sth.dnsnode.net", "ns-cdn.amnic.net", "ns-pch.amnic.net", "ns-pri.nic.am"}, n, n, n, "whois.amnic.net", e, n, t},
161164 {"amazon", r, x, 0x42, "Amazon Registry Services, Inc.", "https://nic.amazon/", w{"dns1.nic.amazon", "dns2.nic.amazon", "dns3.nic.amazon", "dns4.nic.amazon", "dnsa.nic.amazon", "dnsb.nic.amazon", "dnsc.nic.amazon", "dnsd.nic.amazon"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.amazon", e, w{"https://rdap.nominet.uk/amazon/"}, t},
164167 {"amex", r, x, 0x42, "American Express Travel Related Services Company, Inc.", "https://about.americanexpress.com/newsroom/#media-contacts", w{"a.nic.amex", "b.nic.amex", "c.nic.amex", "ns1.dns.nic.amex", "ns2.dns.nic.amex", "ns3.dns.nic.amex"}, n, n, w{"es"}, "whois.nic.amex", e, w{"https://rdap.nic.amex/"}, t},
165168 {"amfam", r, x, 0x42, "AmFam, Inc.", "https://www.amfam.com/nic-amfam", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.amfam", e, w{"https://tld-rdap.verisign.com/amfam/v1/"}, t},
166169 {"amica", r, x, 0x42, "Amica Mutual Insurance Company", "https://nic.amica/", w{"a.nic.amica", "b.nic.amica", "c.nic.amica", "ns1.dns.nic.amica", "ns2.dns.nic.amica", "ns3.dns.nic.amica"}, n, n, n, "whois.nic.amica", e, w{"https://rdap.nic.amica/"}, f},
167 {"amp", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
170 {"amp", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
168171 {"amsterdam", r, x, 0xc4, "Gemeente Amsterdam", "https://nic.amsterdam/", w{"ns1.nic.amsterdam", "ns2.nic.amsterdam", "ns3.nic.amsterdam", "ns4.nic.amsterdam"}, n, w{"Amsterdam", "NL-NH"}, n, "whois.nic.amsterdam", e, w{"https://rdap.nic.amsterdam/"}, f},
169 {"an", r, z[1809:1813], 0x8a8, e, "http://www.una.an/an_domreg/", n, n, n, n, e, e, n, f},
172 {"an", r, z[1809:1813], 0x8a8, e, "https://www.iana.org/domains/root/db/an.html", n, n, n, n, e, e, n, f},
170173 {"analytics", r, x, 0x40, "Campus IP LLC", "https://nic.analytics/", w{"a.nic.analytics", "b.nic.analytics", "c.nic.analytics", "ns1.dns.nic.analytics", "ns2.dns.nic.analytics", "ns3.dns.nic.analytics"}, n, n, w{"es"}, "whois.nic.analytics", e, w{"https://rdap.nic.analytics/"}, t},
171174 {"android", r, x, 0x42, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
172 {"anquan", r, x, 0x40, "Beijing Qihu Keji Co., Ltd.", "https://newgtlds.icann.org/", w{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, n, "whois.teleinfo.cn", e, w{"https://rdap.teleinfo.cn/"}, f},
173 {"ansons", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
174 {"anthem", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
175 {"antivirus", r, x, 0x40, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
175 {"anquan", r, x, 0x40, "Beijing Qihu Keji Co., Ltd.", "https://www.icann.org/en/registry-agreements/details/anquan", w{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, n, "whois.teleinfo.cn", e, w{"https://rdap.teleinfo.cn/"}, f},
176 {"ansons", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
177 {"anthem", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
178 {"antivirus", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
176179 {"anz", r, x, 0x42, "Australia and New Zealand Banking Group Limited", "http://nic.anz/", w{"a.nic.anz", "b.nic.anz", "c.nic.anz", "d.nic.anz"}, n, n, n, "whois.nic.anz", e, w{"https://rdap.nic.anz/"}, f},
177180 {"ao", r, z[1813:1819], 0xa0, e, "https://www.dns.ao/ao/", w{"ao01.dns.pt", "ao03.dns.pt", "h.dns.pt"}, n, n, n, e, e, n, f},
178181 {"aol", r, x, 0x42, "Oath Inc.", "https://nic.aol.com/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.aol", e, w{"https://tld-rdap.verisign.com/aol/v1/"}, f},
179182 {"apartments", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.apartments", "v0n1.nic.apartments", "v0n2.nic.apartments", "v0n3.nic.apartments", "v2n0.nic.apartments", "v2n1.nic.apartments"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.apartments", e, w{"https://rdap.donuts.co/rdap/"}, t},
180183 {"app", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"ja", "mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
181184 {"apple", r, x, 0x42, "Apple Inc.", "https://www.apple.com/legal/intellectual-property/tld/", w{"a0.nic.apple", "a2.nic.apple", "b0.nic.apple", "c0.nic.apple"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/apple/"}, f},
182 {"aq", r, z[1819:1820], 0xa0, e, "http://www.gobin.info/domainname/aq.txt", w{"fork.sth.dnsnode.net", "ns1.anycast.dns.aq", "ns99.dns.net.nz"}, n, n, n, e, e, n, f},
183 {"aquarelle", r, x, 0x42, "Aquarelle.com", "https://newgtlds.icann.org/", w{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, w{"mul-Latn"}, "whois.nic.aquarelle", e, w{"https://rdap.nic.aquarelle/"}, t},
184 {"aquitaine", r, x, 0x40, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
185 {"aq", r, z[1819:1820], 0xa0, "Antarctica Network Information Centre Limited", "https://www.iana.org/domains/root/db/aq.html", w{"fork.sth.dnsnode.net", "ns1.anycast.dns.aq", "ns99.dns.net.nz"}, n, n, n, e, e, n, f},
186 {"aquarelle", r, x, 0x42, "Aquarelle.com", "http://www.nic.aquarelle/", w{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, w{"mul-Latn"}, "whois.nic.aquarelle", e, w{"https://rdap.nic.aquarelle/"}, t},
187 {"aquitaine", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
185188 {"ar", r, z[1820:1829], 0xa0, e, "https://nic.ar/", w{"a.dns.ar", "ar.cctld.authdns.ripe.net", "b.dns.ar", "c.dns.ar", "d.dns.ar", "e.dns.ar", "f.dns.ar"}, n, n, n, "whois.nic.ar", e, w{"https://rdap.nic.ar/"}, t},
186189 {"arab", r, x, 0x40, "League of Arab States", "http://nic.arab/", w{"gtld.alpha.aridns.net.au", "gtld.beta.aridns.net.au", "gtld.delta.aridns.net.au", "gtld.gamma.aridns.net.au"}, n, n, w{"ar"}, "whois.nic.arab", e, w{"https://rdap.nic.arab/"}, t},
187190 {"aramco", r, x, 0x42, "Aramco Services Company", "http://www.nic.aramco/", w{"ns1.dns.nic.aramco", "ns2.dns.nic.aramco", "ns3.dns.nic.aramco", "ns4.dns.nic.aramco", "ns5.dns.nic.aramco", "ns6.dns.nic.aramco"}, n, n, w{"ar", "es"}, "whois.nic.aramco", e, w{"https://rdap.nic.aramco/"}, t},
188 {"archi", r, x, 0x40, "Identity Digital Limited", "https://domains.archi/", w{"a0.nic.archi", "a2.nic.archi", "b0.nic.archi", "c0.nic.archi"}, n, n, n, "whois.nic.archi", e, w{"https://rdap.donuts.co/rdap/"}, f},
189 {"architect", r, x, 0x40, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
191 {"archi", r, x, 0x40, "Identity Digital Limited", "https://identity.digital/", w{"a0.nic.archi", "a2.nic.archi", "b0.nic.archi", "c0.nic.archi"}, n, n, n, "whois.nic.archi", e, w{"https://rdap.donuts.co/rdap/"}, f},
192 {"architect", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
190193 {"army", r, x, 0x40, "Dog Beach, LLC", e, w{"v0n0.nic.army", "v0n1.nic.army", "v0n2.nic.army", "v0n3.nic.army", "v2n0.nic.army", "v2n1.nic.army"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.army", e, w{"https://rdap.donuts.co/rdap/"}, t},
191194 {"arpa", r, z[1829:1835], 0x148, e, "https://www.iana.org/domains/arpa", w{"a.ns.arpa", "b.ns.arpa", "c.ns.arpa", "d.ns.arpa", "e.ns.arpa", "f.ns.arpa", "g.ns.arpa", "h.ns.arpa", "i.ns.arpa", "k.ns.arpa", "l.ns.arpa", "m.ns.arpa"}, n, n, n, "whois.iana.org", e, n, f},
192195 {"art", r, x, 0x40, "UK Creative Ideas Limited", "https://nic.art/", w{"a.nic.art", "b.nic.art", "c.nic.art", "d.nic.art"}, n, n, w{"ar", "da", "he", "ja", "ko", "lo", "mul-Cyrl", "mul-Grek", "mul-Latn", "mul-Mymr", "pl", "ru", "sv", "th", "zh"}, "whois.nic.art", e, w{"https://rdap.centralnic.com/art/"}, t},
193 {"arte", r, x, 0x42, "Association Relative à la Télévision Européenne G.E.I.E.", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.arte", e, w{"https://tld-rdap.verisign.com/arte/v1/"}, t},
196 {"arte", r, x, 0x42, "Association Relative à la Télévision Européenne G.E.I.E.", "https://www.icann.org/en/registry-agreements/details/arte", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.arte", e, w{"https://tld-rdap.verisign.com/arte/v1/"}, t},
194197 {"as", r, x, 0xe0, e, "https://nic.as/", w{"ns1.asnic.biz", "ns2.asnic.info", "ns3.asnic.org", "ns4.asnic.uk", "ns5.asnic.us", "pch.nic.as"}, n, n, n, "whois.nic.as", e, n, t},
195 {"asda", r, x, 0x42, "Wal-Mart Stores, Inc.", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.asda", e, w{"https://tld-rdap.verisign.com/asda/v1/"}, f},
198 {"asda", r, x, 0x42, "Wal-Mart Stores, Inc.", "https://www.icann.org/en/registry-agreements/details/asda", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.asda", e, w{"https://tld-rdap.verisign.com/asda/v1/"}, f},
196199 {"asia", r, x, 0x1040, "DotAsia Organisation Limited", "https://www.dot.asia/", w{"a0.asia.afilias-nst.info", "a2.asia.afilias-nst.info", "b0.asia.afilias-nst.asia", "b2.asia.afilias-nst.org", "c0.asia.afilias-nst.info", "d0.asia.afilias-nst.asia"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hr", "hu", "is", "it", "ja", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "tr", "uk", "zh"}, "whois.nic.asia", e, w{"https://rdap.afilias-srs.net/rdap/asia/"}, t},
197200 {"associates", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.associates", "v0n1.nic.associates", "v0n2.nic.associates", "v0n3.nic.associates", "v2n0.nic.associates", "v2n1.nic.associates"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.associates", e, w{"https://rdap.donuts.co/rdap/"}, t},
198 {"astrium", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
199 {"at", r, z[1835:1840], 0xa0, e, "https://www.nic.at/de", w{"d.ns.at", "j.ns.at", "n.ns.at", "ns1.univie.ac.at", "ns2.univie.ac.at", "ns9.univie.ac.at", "r.ns.at", "u.ns.at"}, n, n, w{"mul-Latn"}, "whois.nic.at", e, n, t},
201 {"astrium", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
202 {"at", r, z[1835:1840], 0xa0, e, "https://www.nic.at/", w{"d.ns.at", "j.ns.at", "n.ns.at", "ns1.univie.ac.at", "ns2.univie.ac.at", "ns9.univie.ac.at", "r.ns.at", "u.ns.at"}, n, n, w{"mul-Latn"}, "whois.nic.at", e, n, t},
200203 {"athleta", r, x, 0x42, "The Gap, Inc.", "https://www.nic.gap/", w{"a.nic.athleta", "b.nic.athleta", "c.nic.athleta", "ns1.dns.nic.athleta", "ns2.dns.nic.athleta", "ns3.dns.nic.athleta"}, n, n, w{"es"}, "whois.nic.athleta", e, w{"https://rdap.nic.athleta/"}, t},
201204 {"attorney", r, x, 0x40, "Dog Beach, LLC", e, w{"v0n0.nic.attorney", "v0n1.nic.attorney", "v0n2.nic.attorney", "v0n3.nic.attorney", "v2n0.nic.attorney", "v2n1.nic.attorney"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.attorney", e, w{"https://rdap.donuts.co/rdap/"}, t},
202205 {"au", r, z[1840:1860], 0xa0, e, "https://www.auda.org.au/", w{"c.au", "d.au", "m.au", "n.au", "q.au", "r.au", "s.au", "t.au"}, n, n, n, "whois.auda.org.au", e, n, f},
207210 {"auspost", r, x, 0x42, "Australian Postal Corporation", "http://nic.auspost/", w{"a.nic.auspost", "b.nic.auspost", "c.nic.auspost", "d.nic.auspost"}, n, n, n, "whois.nic.auspost", e, w{"https://rdap.nic.auspost/"}, f},
208211 {"author", r, x, 0x40, "Amazon Registry Services, Inc.", "https://nic.author/", w{"dns1.nic.author", "dns2.nic.author", "dns3.nic.author", "dns4.nic.author", "dnsa.nic.author", "dnsb.nic.author", "dnsc.nic.author", "dnsd.nic.author"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.author", e, w{"https://rdap.nominet.uk/author/"}, t},
209212 {"auto", r, x, 0x40, "XYZ.COM LLC", "https://nic.auto/", w{"a.nic.auto", "b.nic.auto", "c.nic.auto", "d.nic.auto"}, n, n, w{"de", "es", "fr", "it", "ja", "mul-Cyrl", "pt", "zh"}, "whois.nic.auto", e, w{"https://rdap.centralnic.com/auto/"}, t},
210 {"autoinsurance", r, x, 0x2040, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
213 {"autoinsurance", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
211214 {"autos", r, x, 0x40, "XYZ.COM LLC", "https://nic.autos/", w{"a.nic.autos", "b.nic.autos", "c.nic.autos", "d.nic.autos"}, n, n, n, "whois.nic.autos", e, w{"https://rdap.centralnic.com/autos/"}, f},
212 {"avery", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
213 {"avianca", r, x, 0x42, "Avianca Inc.", "https://newgtlds.icann.org/", w{"a0.nic.avianca", "a2.nic.avianca", "b0.nic.avianca", "c0.nic.avianca"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/avianca/"}, f},
215 {"avery", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
216 {"avianca", r, x, 0x42, "Avianca Inc.", "https://www.icann.org/en/registry-agreements/details/avianca", w{"a0.nic.avianca", "a2.nic.avianca", "b0.nic.avianca", "c0.nic.avianca"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/avianca/"}, f},
214217 {"aw", r, z[1860:1861], 0xa0, e, "https://www.setarnet.aw/", w{"aw01.setarnet.aw", "aw02.setarnet.aw", "ns1.dns.aw", "ns2.dns.aw", "ns3.dns.aw", "ns4.dns.aw"}, n, n, n, "whois.nic.aw", e, n, f},
215218 {"aws", r, x, 0x42, "AWS Registry LLC", "https://nic.aws/", w{"dns1.nic.aws", "dns2.nic.aws", "dns3.nic.aws", "dns4.nic.aws", "dnsa.nic.aws", "dnsb.nic.aws", "dnsc.nic.aws", "dnsd.nic.aws"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.aws", e, w{"https://rdap.nominet.uk/aws/"}, t},
216 {"ax", r, x, 0xa0, e, "https://www.regeringen.ax/naringsliv-foretagande/ansok-om-ax-domannamn", w{"ns1.aland.net", "ns2.aland.net", "ns3.alcom.fi", "ns4.alcom.fi"}, n, n, n, "whois.ax", e, n, f},
219 {"ax", r, x, 0xa0, e, "https://whois.ax/", w{"ns1.aland.net", "ns2.aland.net", "ns3.alcom.fi", "ns4.alcom.fi"}, n, n, n, "whois.ax", e, n, f},
217220 {"axa", r, x, 0x42, "AXA Group Operations SAS", "https://nic.axa/", w{"a.nic.axa", "b.nic.axa", "c.nic.axa", "ns1.dns.nic.axa", "ns2.dns.nic.axa", "ns3.dns.nic.axa"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.axa", e, w{"https://rdap.nic.axa/"}, t},
218 {"axis", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
221 {"axis", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
219222 {"az", r, z[1861:1882], 0xa0, e, "https://www.nic.az/", w{"az.hostmaster.ua", "ns3.intrans.az", "rip.psg.com"}, n, n, n, e, e, n, f},
220223 {"azure", r, x, 0x42, "Microsoft Corporation", "https://nic.azure/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, e, e, w{"https://tld-rdap.verisign.com/azure/v1/"}, t},
221224 {"ba", r, z[1882:1895], 0xa0, e, "https://www.nic.ba/", w{"ns.ba", "sava.utic.net.ba", "una.utic.net.ba"}, n, n, n, e, "http://nic.ba/lat/menu/view/13", n, f},
222225 {"baby", r, x, 0x40, "XYZ.COM LLC", "https://nic.baby/", w{"a.nic.baby", "b.nic.baby", "c.nic.baby", "d.nic.baby"}, n, n, w{"ar", "es", "he", "ja", "ko", "lo", "mul-Grek", "mul-Latn", "ru", "th", "zh"}, "whois.nic.baby", e, w{"https://rdap.centralnic.com/baby/"}, t},
223 {"baidu", r, x, 0x42, "Baidu, Inc.", "http://nic.baidu/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.gtld.knet.cn", e, w{"https://rdap.zdnsgtld.com/baidu/"}, t},
226 {"baidu", r, x, 0x42, "Baidu, Inc.", "https://www.icann.org/en/registry-agreements/details/baidu", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.gtld.knet.cn", e, w{"https://rdap.zdnsgtld.com/baidu/"}, t},
224227 {"banamex", r, x, 0x42, "Citigroup Inc.", "https://www.citi.com/", w{"a.nic.banamex", "b.nic.banamex", "c.nic.banamex", "ns1.dns.nic.banamex", "ns2.dns.nic.banamex", "ns3.dns.nic.banamex"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.banamex", e, w{"https://rdap.nic.banamex/"}, t},
225228 {"bananarepublic", r, x, 0x42, "The Gap, Inc.", "https://www.nic.gap/", w{"a.nic.bananarepublic", "b.nic.bananarepublic", "c.nic.bananarepublic", "ns1.dns.nic.bananarepublic", "ns2.dns.nic.bananarepublic", "ns3.dns.nic.bananarepublic"}, n, n, w{"es"}, "whois.nic.bananarepublic", e, w{"https://rdap.nic.bananarepublic/"}, t},
226229 {"band", r, x, 0x40, "Dog Beach, LLC", "https://identity.digital/", w{"v0n0.nic.band", "v0n1.nic.band", "v0n2.nic.band", "v0n3.nic.band", "v2n0.nic.band", "v2n1.nic.band"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.band", e, w{"https://rdap.donuts.co/rdap/"}, t},
227230 {"bank", r, x, 0x40, "fTLD Registry Services LLC", "https://www.register.bank/", w{"d.nic.bank", "e.nic.bank", "f.nic.bank", "w.nic.bank", "x.nic.bank", "y.nic.bank"}, n, n, n, "whois.nic.bank", e, w{"https://rdap.nic.bank/"}, f},
228 {"banque", r, x, 0x40, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
231 {"banque", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
229232 {"bar", r, x, 0x40, "Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable", e, w{"a.nic.bar", "b.nic.bar", "c.nic.bar", "d.nic.bar"}, n, n, w{"mul-Latn"}, "whois.nic.bar", e, w{"https://rdap.centralnic.com/bar/"}, t},
230233 {"barcelona", r, x, 0x40, "Municipi de Barcelona", "https://www.domini.barcelona/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, w{"mul-Latn"}, "whois.nic.barcelona", e, w{"https://rdap.nic.barcelona/"}, t},
231234 {"barclaycard", r, x, 0x42, "Barclays Bank PLC", "https://nic.barclaycard/", w{"a0.nic.barclaycard", "a2.nic.barclaycard", "b0.nic.barclaycard", "c0.nic.barclaycard"}, n, n, n, "whois.nic.barclaycard", e, w{"https://rdap.afilias-srs.net/rdap/barclaycard/"}, f},
232235 {"barclays", r, x, 0x42, "Barclays Bank PLC", "https://nic.barclays/", w{"a0.nic.barclays", "a2.nic.barclays", "b0.nic.barclays", "c0.nic.barclays"}, n, n, n, "whois.nic.barclays", e, w{"https://rdap.afilias-srs.net/rdap/barclays/"}, f},
233 {"barefoot", r, x, 0x42, "Gallo Vineyards, Inc.", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.barefoot", e, w{"https://tld-rdap.verisign.com/barefoot/v1/"}, f},
236 {"barefoot", r, x, 0x42, "Gallo Vineyards, Inc.", "https://www.icann.org/en/registry-agreements/details/barefoot", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.barefoot", e, w{"https://tld-rdap.verisign.com/barefoot/v1/"}, f},
234237 {"bargains", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.bargains", "v0n1.nic.bargains", "v0n2.nic.bargains", "v0n3.nic.bargains", "v2n0.nic.bargains", "v2n1.nic.bargains"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.bargains", e, w{"https://rdap.donuts.co/rdap/"}, t},
235238 {"baseball", r, x, 0x40, "MLB Advanced Media DH, LLC", "https://www.mlb.com/official-information/baseball-nic", w{"a.nic.baseball", "b.nic.baseball", "c.nic.baseball", "ns1.dns.nic.baseball", "ns2.dns.nic.baseball", "ns3.dns.nic.baseball"}, n, n, w{"es"}, "whois.nic.baseball", e, w{"https://rdap.nic.baseball/"}, t},
236239 {"basketball", r, x, 0x40, "Fédération Internationale de Basketball (FIBA)", "https://get.basketball/", w{"a.nic.basketball", "b.nic.basketball", "c.nic.basketball", "d.nic.basketball"}, n, n, n, "whois.nic.basketball", e, w{"https://rdap.centralnic.com/basketball/"}, f},
237240 {"bauhaus", r, x, 0x42, "Werkhaus GmbH", "https://nic.bauhaus/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, n, "whois.nic.bauhaus", e, w{"https://rdap.nic.bauhaus/"}, f},
238241 {"bayern", r, x, 0x4c0, "Bayern Connect GmbH", "https://nic.bayern/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, w{"DE-BY"}, w{"de"}, "whois.nic.bayern", e, w{"https://rdap.nic.bayern/"}, t},
239 {"bb", r, z[1895:1904], 0xa0, e, "http://www.barbadosdomains.net/", w{"ns1.nic.bb", "ns2.nic.bb", "ns3.nic.bb", "ns4.nic.bb", "ns5.nic.bb"}, n, n, n, e, "http://whois.telecoms.gov.bb/search_domain.php", n, f},
240 {"bbb", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
242 {"bb", r, z[1895:1904], 0xa0, e, "https://whois.telecoms.gov.bb/", w{"ns1.nic.bb", "ns2.nic.bb", "ns3.nic.bb", "ns4.nic.bb", "ns5.nic.bb"}, n, n, n, e, "http://whois.telecoms.gov.bb/search_domain.php", n, f},
243 {"bbb", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
241244 {"bbc", r, x, 0x42, "British Broadcasting Corporation", "http://nic.bbc/", w{"dns1.nic.bbc", "dns2.nic.bbc", "dns3.nic.bbc", "dns4.nic.bbc", "dnsa.nic.bbc", "dnsb.nic.bbc", "dnsc.nic.bbc", "dnsd.nic.bbc"}, n, n, n, "whois.nic.bbc", e, w{"https://rdap.nominet.uk/bbc/"}, f},
242 {"bbt", r, x, 0x42, "BB&T Corporation", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.bbt", e, w{"https://tld-rdap.verisign.com/bbt/v1/"}, f},
245 {"bbt", r, x, 0x42, "BB&T Corporation", "http://www.nic.bbt/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.bbt", e, w{"https://tld-rdap.verisign.com/bbt/v1/"}, f},
243246 {"bbva", r, x, 0x42, "BANCO BILBAO VIZCAYA ARGENTARIA, S.A.", "http://nic.bbva/", w{"dns1.nic.bbva", "dns2.nic.bbva", "dns3.nic.bbva", "dns4.nic.bbva", "dnsa.nic.bbva", "dnsb.nic.bbva", "dnsc.nic.bbva", "dnsd.nic.bbva"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.bbva", e, w{"https://rdap.nominet.uk/bbva/"}, t},
244247 {"bcg", r, x, 0x42, "The Boston Consulting Group, Inc.", "https://www.bcg.com/topic/nic", w{"a0.nic.bcg", "a2.nic.bcg", "b0.nic.bcg", "c0.nic.bcg"}, n, n, n, "whois.nic.bcg", e, w{"https://rdap.afilias-srs.net/rdap/bcg/"}, f},
245 {"bcn", r, x, 0x40, "Municipi de Barcelona", "http://nic.bcn/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, w{"mul-Latn"}, "whois.nic.bcn", e, w{"https://rdap.nic.bcn/"}, t},
246 {"bd", r, z[1904:1911], 0xa8, e, "http://www.bttb.net.bd/", w{"bd-ns.anycast.pch.net", "dns.bd", "jamuna.btcl.net.bd", "surma.btcl.net.bd"}, n, n, n, e, "http://whois.btcl.net.bd/", n, t},
248 {"bcn", r, x, 0x40, "Municipi de Barcelona", "https://www.icann.org/en/registry-agreements/details/bcn", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, w{"mul-Latn"}, "whois.nic.bcn", e, w{"https://rdap.nic.bcn/"}, t},
249 {"bd", r, z[1904:1911], 0xa8, e, "http://www.bttb.net.bd/", w{"bd-ns.anycast.pch.net", "dns.bd", "surma.btcl.net.bd"}, n, n, n, e, "http://whois.btcl.net.bd/", n, t},
247250 {"be", r, x, 0xa0, e, e, w{"a.nsset.be", "b.nsset.be", "c.nsset.be", "d.nsset.be", "y.nsset.be", "z.nsset.be"}, n, n, w{"mul-Latn"}, "whois.dns.be", e, n, t},
248 {"beats", r, x, 0x42, "Beats Electronics, LLC", "https://www.beatsbydre.com/in/company/tld", w{"a0.nic.beats", "a2.nic.beats", "b0.nic.beats", "c0.nic.beats"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/beats/"}, f},
251 {"beats", r, x, 0x42, "Beats Electronics, LLC", "https://www.icann.org/en/registry-agreements/details/beats", w{"a0.nic.beats", "a2.nic.beats", "b0.nic.beats", "c0.nic.beats"}, n, n, n, "whois.nic.beats", e, w{"https://rdap.afilias-srs.net/rdap/beats/"}, f},
249252 {"beauty", r, x, 0x40, "XYZ.COM LLC", "https://nic.beauty/", w{"a.nic.beauty", "b.nic.beauty", "c.nic.beauty", "d.nic.beauty"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.beauty", e, w{"https://rdap.centralnic.com/beauty/"}, t},
250253 {"beer", r, x, 0x40, "Registry Services, LLC", "http://nic.beer/", w{"a.nic.beer", "b.nic.beer", "c.nic.beer", "d.nic.beer"}, n, n, w{"de", "es", "fr", "zh"}, "whois.nic.beer", e, w{"https://rdap.nic.beer/"}, t},
251 {"beknown", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
254 {"beknown", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
252255 {"bentley", r, x, 0x42, "Bentley Motors Limited", "https://www.nic.bentley/", w{"dns1.nic.bentley", "dns2.nic.bentley", "dns3.nic.bentley", "dns4.nic.bentley", "dnsa.nic.bentley", "dnsb.nic.bentley", "dnsc.nic.bentley", "dnsd.nic.bentley"}, n, n, w{"az", "be", "bg", "el", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "uk", "zh"}, "whois.nic.bentley", e, w{"https://rdap.nominet.uk/bentley/"}, t},
253256 {"berlin", r, x, 0xc4, "dotBERLIN GmbH & Co. KG", e, w{"a.dns.nic.berlin", "m.dns.nic.berlin", "n.dns.nic.berlin"}, n, w{"Berlin", "DE-BE"}, w{"mul-Cyrl", "mul-Latn"}, "whois.nic.berlin", e, w{"https://rdap.nic.berlin/v1/"}, t},
254257 {"best", r, x, 0x40, "BestTLD Pty Ltd", "https://nic.best/", w{"a.nic.best", "b.nic.best", "c.nic.best", "d.nic.best"}, n, n, w{"ar", "da", "de", "es", "fr", "ja", "ko", "nl", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.best", e, w{"https://rdap.centralnic.com/best/"}, t},
255258 {"bestbuy", r, x, 0x42, "BBY Solutions, Inc.", "http://nic.bestbuy/", w{"a0.nic.bestbuy", "a2.nic.bestbuy", "b0.nic.bestbuy", "c0.nic.bestbuy"}, n, n, n, "whois.nic.bestbuy", e, w{"https://rdap.afilias-srs.net/rdap/bestbuy/"}, f},
256 {"bet", r, x, 0x40, "Identity Digital Limited", "https://get.bet/", w{"a0.nic.bet", "a2.nic.bet", "b0.nic.bet", "c0.nic.bet"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.bet", e, w{"https://rdap.afilias.net/rdap/bet/"}, t},
259 {"bet", r, x, 0x40, "Identity Digital Limited", "https://identity.digital/", w{"a0.nic.bet", "a2.nic.bet", "b0.nic.bet", "c0.nic.bet"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.bet", e, w{"https://rdap.afilias.net/rdap/bet/"}, t},
257260 {"bf", r, z[1911:1912], 0xa0, e, e, w{"a.registre.bf", "censvrns0001.ird.fr", "ns-bf.nic.fr", "pch.ns.registre.bf"}, n, n, n, e, e, n, t},
258261 {"bg", r, z[1912:1948], 0xa0, e, "https://www.register.bg/user/", w{"a.nic.bg", "b.nic.bg", "c.nic.bg", "d.nic.bg", "e.nic.bg", "p.nic.bg"}, n, n, w{"bg-BG", "ru-BG"}, "whois.register.bg", e, n, t},
259262 {"bh", r, z[1948:1959], 0xa0, e, e, w{"a.nic.bh", "b.nic.bh", "c.nic.bh", "d.nic.bh"}, n, n, n, e, e, n, f},
260 {"bharti", r, x, 0x42, "Bharti Enterprises (Holding) Private Limited", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, w{"https://tld-rdap.verisign.com/bharti/v1/"}, f},
263 {"bharti", r, x, 0x42, "Bharti Enterprises (Holding) Private Limited", "https://www.icann.org/en/registry-agreements/details/bharti", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, w{"https://tld-rdap.verisign.com/bharti/v1/"}, f},
261264 {"bi", r, z[1959:1969], 0xa0, e, e, w{"anyns.nic.bi", "bi.cctld.authdns.ripe.net", "ns-bi.afrinic.net", "ns.nic.bi", "ns1.nic.bi"}, n, n, n, "whois1.nic.bi", e, n, f},
262265 {"bible", r, x, 0x40, "American Bible Society", "https://get.bible/", w{"a.nic.bible", "b.nic.bible", "c.nic.bible", "ns1.dns.nic.bible", "ns2.dns.nic.bible", "ns3.dns.nic.bible"}, n, n, w{"da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.bible", e, w{"https://rdap.nic.bible/"}, t},
263 {"bid", r, x, 0x40, "dot Bid Limited", "https://www.famousfourmedia.com/", w{"a.nic.bid", "b.nic.bid", "c.nic.bid", "ns1.dns.nic.bid", "ns2.dns.nic.bid", "ns3.dns.nic.bid"}, n, n, w{"da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.bid", e, w{"https://rdap.nic.bid/"}, t},
266 {"bid", r, x, 0x40, "dot Bid Limited", "http://nic.bid/", w{"a.nic.bid", "b.nic.bid", "c.nic.bid", "ns1.dns.nic.bid", "ns2.dns.nic.bid", "ns3.dns.nic.bid"}, n, n, w{"da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.bid", e, w{"https://rdap.nic.bid/"}, t},
264267 {"bike", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.bike", "v0n1.nic.bike", "v0n2.nic.bike", "v0n3.nic.bike", "v2n0.nic.bike", "v2n1.nic.bike"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.bike", e, w{"https://rdap.donuts.co/rdap/"}, t},
265268 {"bing", r, x, 0x42, "Microsoft Corporation", "https://nic.bing/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, e, e, w{"https://tld-rdap.verisign.com/bing/v1/"}, t},
266269 {"bingo", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.bingo", "v0n1.nic.bingo", "v0n2.nic.bingo", "v0n3.nic.bingo", "v2n0.nic.bingo", "v2n1.nic.bingo"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.bingo", e, w{"https://rdap.donuts.co/rdap/"}, t},
267 {"bio", r, x, 0x40, "Identity Digital Limited", "https://domains.bio/", w{"a0.nic.bio", "a2.nic.bio", "b0.nic.bio", "c0.nic.bio"}, n, n, w{"de"}, "whois.nic.bio", e, w{"https://rdap.donuts.co/rdap/"}, t},
268 {"biz", r, z[1969:1971], 0x40, "Registry Services, LLC", e, w{"a.gtld.biz", "b.gtld.biz", "c.gtld.biz", "w.gtld.biz", "x.gtld.biz", "y.gtld.biz"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "sv", "zh"}, "whois.nic.biz", e, w{"https://rdap.nic.biz/"}, t},
270 {"bio", r, x, 0x40, "Identity Digital Limited", "https://identity.digital/", w{"a0.nic.bio", "a2.nic.bio", "b0.nic.bio", "c0.nic.bio"}, n, n, w{"de"}, "whois.nic.bio", e, w{"https://rdap.donuts.co/rdap/"}, t},
271 {"biz", r, z[1969:1971], 0x40, "Registry Services, LLC", e, w{"a.gtld.biz", "b.gtld.biz", "c.gtld.biz", "w.gtld.biz", "x.gtld.biz", "y.gtld.biz"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "sv", "zh"}, "whois.biz", e, w{"https://rdap.nic.biz/"}, t},
269272 {"bj", r, z[1971:1978], 0xa0, e, e, w{"ns-bj.afrinic.net", "ns-bj.nic.fr", "ns1.nic.bj", "ns2.nic.bj", "pch.nic.bj"}, n, n, n, "whois.nic.bj", e, n, f},
270 {"black", r, x, 0x40, "Identity Digital Limited", "https://get.black/", w{"a0.nic.black", "a2.nic.black", "b0.nic.black", "c0.nic.black"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.black", e, w{"https://rdap.donuts.co/rdap/"}, t},
273 {"black", r, x, 0x40, "Identity Digital Limited", "https://identity.digital/", w{"a0.nic.black", "a2.nic.black", "b0.nic.black", "c0.nic.black"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.black", e, w{"https://rdap.donuts.co/rdap/"}, t},
271274 {"blackfriday", r, x, 0x40, "Registry Services, LLC", "https://uniregistry.link/extensions/blackfriday/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, w{"de", "es", "fr", "it", "ja", "mul-Cyrl", "pt", "zh"}, "whois.uniregistry.net", e, w{"https://whois.uniregistry.net/rdap/"}, t},
272 {"blanco", r, x, 0x840, e, "https://newgtlds.icann.org/", n, n, n, w{"mul-Hang", "mul-Hani", "mul-Hano", "mul-Latn", "ru"}, "whois.nic.blanco", e, n, t},
273 {"blockbuster", r, x, 0x42, "Dish DBS Corporation", "http://www.dishtlds.com/blockbuster/", w{"a0.nic.blockbuster", "a2.nic.blockbuster", "b0.nic.blockbuster", "c0.nic.blockbuster"}, n, n, n, "whois.nic.blockbuster", e, w{"https://rdap.afilias-srs.net/rdap/blockbuster/"}, f},
275 {"blanco", r, x, 0x840, e, e, n, n, n, w{"mul-Hang", "mul-Hani", "mul-Hano", "mul-Latn", "ru"}, "whois.nic.blanco", e, n, t},
276 {"blockbuster", r, x, 0x42, "Dish DBS Corporation", "https://www.dishtlds.com/blockbuster/", w{"a0.nic.blockbuster", "a2.nic.blockbuster", "b0.nic.blockbuster", "c0.nic.blockbuster"}, n, n, n, "whois.nic.blockbuster", e, w{"https://rdap.afilias-srs.net/rdap/blockbuster/"}, f},
274277 {"blog", r, z[1978:2004], 0x40, "Knock Knock WHOIS There, LLC", "https://my.blog/", w{"a.nic.blog", "b.nic.blog", "c.nic.blog", "d.nic.blog"}, n, n, w{"zh"}, "whois.nic.blog", e, w{"https://rdap.centralnic.com/blog/"}, t},
275 {"bloomberg", r, x, 0x42, "Bloomberg IP Holdings LLC", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, w{"https://tld-rdap.verisign.com/bloomberg/v1/"}, f},
276 {"bloomingdales", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
277 {"blue", r, x, 0x40, "Identity Digital Limited", "https://dotblue.blue/", w{"a0.nic.blue", "a2.nic.blue", "b0.nic.blue", "b2.nic.blue", "c0.nic.blue"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.blue", e, w{"https://rdap.donuts.co/rdap/"}, t},
278 {"bloomberg", r, x, 0x42, "Bloomberg IP Holdings LLC", "https://www.icann.org/en/registry-agreements/details/bloomberg", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, w{"https://tld-rdap.verisign.com/bloomberg/v1/"}, f},
279 {"bloomingdales", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
280 {"blue", r, x, 0x40, "Identity Digital Limited", "https://identity.digital/", w{"a0.nic.blue", "a2.nic.blue", "b0.nic.blue", "b2.nic.blue", "c0.nic.blue"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.blue", e, w{"https://rdap.donuts.co/rdap/"}, t},
278281 {"bm", r, z[2004:2009], 0xa0, e, "https://www.bermudanic.bm/", w{"a0.bm.afilias-nst.info", "a2.bm.afilias-nst.info", "b0.bm.afilias-nst.org", "b2.bm.afilias-nst.org", "c0.bm.afilias-nst.info", "d0.bm.afilias-nst.org"}, n, n, n, e, "https://www.bermudanic.bm/whois.htm", n, f},
279282 {"bms", r, x, 0x42, "Bristol-Myers Squibb Company", "http://nic.bms/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.bms", e, w{"https://tld-rdap.verisign.com/bms/v1/"}, f},
280283 {"bmw", r, x, 0x42, "Bayerische Motoren Werke Aktiengesellschaft", "https://nic.bmw/", w{"a.nic.bmw", "b.nic.bmw", "c.nic.bmw", "d.nic.bmw"}, n, n, w{"de"}, "whois.nic.bmw", e, w{"https://rdap.centralnic.com/bmw/"}, t},
281 {"bn", r, z[2009:2014], 0xa0, e, "http://www.brunet.bn/products_webrelated_domain_main.htm", w{"bn-ns.anycast.pch.net", "ns1.bnnic.bn", "ns2.bnnic.bn", "ns4.apnic.net"}, n, n, n, "whois.bnnic.bn", e, n, f},
282 {"bnl", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.bnl", e, n, f},
284 {"bn", r, z[2009:2014], 0xa0, e, "https://www.iana.org/domains/root/db/bn.html", w{"bn-ns.anycast.pch.net", "ns1.bnnic.bn", "ns2.bnnic.bn", "ns4.apnic.net"}, n, n, n, "whois.bnnic.bn", e, n, f},
285 {"bnl", r, x, 0x842, e, e, n, n, n, n, "whois.nic.bnl", e, n, f},
283286 {"bnpparibas", r, x, 0x42, "BNP Paribas", "https://nic.bnpparibas/en/", w{"a0.nic.bnpparibas", "a2.nic.bnpparibas", "b0.nic.bnpparibas", "c0.nic.bnpparibas"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fr", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/bnpparibas/"}, t},
284287 {"bo", r, z[2014:2023], 0xa0, e, e, w{"anycast.ns.nic.bo", "ns.dns.br", "ns.nic.bo", "ns2.nic.fr"}, n, n, w{"es"}, "whois.nic.bo", e, n, t},
285288 {"boats", r, x, 0x40, "XYZ.COM LLC", "https://nic.boats/", w{"a.nic.boats", "b.nic.boats", "c.nic.boats", "d.nic.boats"}, n, n, n, "whois.nic.boats", e, w{"https://rdap.centralnic.com/boats/"}, f},
286 {"boehringer", r, x, 0x42, "Boehringer Ingelheim International GmbH", "https://newgtlds.icann.org/", w{"a0.nic.boehringer", "a2.nic.boehringer", "b0.nic.boehringer", "c0.nic.boehringer"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/boehringer/"}, f},
287 {"bofa", r, x, 0x42, "Bank of America Corporation", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.bofa", e, w{"https://tld-rdap.verisign.com/bofa/v1/"}, f},
288 {"bom", r, x, 0x42, "Núcleo de Informação e Coordenação do Ponto BR - NIC.br", "https://gtlds.nic.br/", w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, w{"pt"}, "whois.gtlds.nic.br", e, w{"https://rdap.gtlds.nic.br/"}, t},
289 {"boehringer", r, x, 0x42, "Boehringer Ingelheim International GmbH", "https://www.icann.org/en/registry-agreements/details/boehringer", w{"a0.nic.boehringer", "a2.nic.boehringer", "b0.nic.boehringer", "c0.nic.boehringer"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/boehringer/"}, f},
290 {"bofa", r, x, 0x42, "Bank of America Corporation", "https://www.icann.org/en/registry-agreements/details/bofa", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.bofa", e, w{"https://tld-rdap.verisign.com/bofa/v1/"}, f},
291 {"bom", r, x, 0x42, "Núcleo de Informação e Coordenação do Ponto BR - NIC.br", "https://www.icann.org/en/registry-agreements/details/bom", w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, w{"pt"}, "whois.gtlds.nic.br", e, w{"https://rdap.gtlds.nic.br/"}, t},
289292 {"bond", r, x, 0x42, "ShortDot SA", "https://shortdot.bond/bond/", w{"a.nic.bond", "b.nic.bond", "c.nic.bond", "d.nic.bond"}, n, n, w{"cs", "da", "de", "es", "fr", "he", "is", "it", "ja", "ko", "lb", "lo", "mul-Grek", "mul-Latn", "pt", "ro", "ru", "tr", "uk", "zh"}, "whois.nic.bond", e, w{"https://rdap.centralnic.com/bond/"}, t},
290293 {"boo", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
291294 {"book", r, x, 0x40, "Amazon Registry Services, Inc.", "https://nic.book/", w{"dns1.nic.book", "dns2.nic.book", "dns3.nic.book", "dns4.nic.book", "dnsa.nic.book", "dnsb.nic.book", "dnsc.nic.book", "dnsd.nic.book"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.book", e, w{"https://rdap.nominet.uk/book/"}, t},
292295 {"booking", r, x, 0x48, "Booking.com B.V.", "https://nic.booking/", w{"a.nic.booking", "b.nic.booking", "c.nic.booking", "ns1.dns.nic.booking", "ns2.dns.nic.booking", "ns3.dns.nic.booking"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.booking", e, w{"https://rdap.nic.booking/"}, t},
293 {"boots", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.boots", e, n, f},
296 {"boots", r, x, 0x842, e, e, n, n, n, n, "whois.nic.boots", e, n, f},
294297 {"bosch", r, x, 0x42, "Robert Bosch GMBH", "https://nic.bosch/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.bosch", e, w{"https://tld-rdap.verisign.com/bosch/v1/"}, f},
295 {"bostik", r, x, 0x42, "Bostik SA", "https://newgtlds.icann.org/", w{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, w{"mul-Latn"}, "whois.nic.bostik", e, w{"https://rdap.nic.bostik/"}, t},
298 {"bostik", r, x, 0x42, "Bostik SA", "https://www.icann.org/en/registry-agreements/details/bostik", w{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, w{"mul-Latn"}, "whois.nic.bostik", e, w{"https://rdap.nic.bostik/"}, t},
296299 {"boston", r, x, 0xc4, "Registry Services, LLC", "http://nic.boston/", w{"a.nic.boston", "b.nic.boston", "c.nic.boston", "d.nic.boston"}, n, w{"Boston"}, n, "whois.nic.boston", e, w{"https://rdap.nic.boston/"}, f},
297300 {"bot", r, x, 0x40, "Amazon Registry Services, Inc.", "https://www.amazonregistry.com/bot", w{"dns1.nic.bot", "dns2.nic.bot", "dns3.nic.bot", "dns4.nic.bot", "dnsa.nic.bot", "dnsb.nic.bot", "dnsc.nic.bot", "dnsd.nic.bot"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.bot", e, w{"https://rdap.nominet.uk/bot/"}, t},
298301 {"boutique", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.boutique", "v0n1.nic.boutique", "v0n2.nic.boutique", "v0n3.nic.boutique", "v2n0.nic.boutique", "v2n1.nic.boutique"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.boutique", e, w{"https://rdap.donuts.co/rdap/"}, t},
299302 {"box", r, x, 0x40, "Intercap Registry Inc.", "https://whois.nic.box/", w{"a.nic.box", "b.nic.box", "c.nic.box", "d.nic.box"}, n, n, w{"zh", "zh-Hans", "zh-Hant"}, "whois.nic.box", e, w{"https://rdap.centralnic.com/box/"}, t},
300 {"br", r, z[2023:2129], 0xa0, e, "https://nic.br/", w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, w{"pt-BR"}, "whois.registro.br", e, w{"https://rdap.registro.br/"}, t},
303 {"br", r, z[2023:2129], 0xa0, e, "https://nic.br/", w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, w{"pt-BR"}, "whois.nic.br", e, w{"https://rdap.registro.br/"}, t},
301304 {"bradesco", r, x, 0x42, "Banco Bradesco S.A.", "https://nic.bradesco/", w{"a0.nic.bradesco", "a2.nic.bradesco", "b0.nic.bradesco", "c0.nic.bradesco"}, n, n, n, "whois.nic.bradesco", e, w{"https://rdap.nominet.uk/bradesco/"}, f},
302305 {"bridgestone", r, x, 0x42, "Bridgestone Corporation", "https://nic.bridgestone/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ja"}, "whois.nic.bridgestone", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
303306 {"broadway", r, x, 0x40, "Celebrate Broadway, Inc.", "https://discover.broadway/", w{"dns1.nic.broadway", "dns2.nic.broadway", "dns3.nic.broadway", "dns4.nic.broadway", "dnsa.nic.broadway", "dnsb.nic.broadway", "dnsc.nic.broadway", "dnsd.nic.broadway"}, n, n, n, "whois.nic.broadway", e, w{"https://rdap.nominet.uk/broadway/"}, f},
304 {"broker", r, x, 0x40, "Dog Beach, LLC", "https://bostonivy.co/", w{"v0n0.nic.broker", "v0n1.nic.broker", "v0n2.nic.broker", "v0n3.nic.broker", "v2n0.nic.broker", "v2n1.nic.broker"}, n, n, n, "whois.nic.broker", e, w{"https://rdap.donuts.co/rdap/"}, f},
307 {"broker", r, x, 0x40, "Dog Beach, LLC", "https://identity.digital/", w{"v0n0.nic.broker", "v0n1.nic.broker", "v0n2.nic.broker", "v0n3.nic.broker", "v2n0.nic.broker", "v2n1.nic.broker"}, n, n, n, "whois.nic.broker", e, w{"https://rdap.donuts.co/rdap/"}, f},
305308 {"brother", r, x, 0x42, "Brother Industries, Ltd.", "https://nic.brother/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ja"}, "whois.nic.brother", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
306309 {"brussels", r, x, 0xc4, "DNS.be vzw", "https://www.dnsbelgium.be/", w{"a.nsset.brussels", "b.nsset.brussels", "c.nsset.brussels", "d.nsset.brussels", "y.nsset.brussels", "z.nsset.brussels"}, n, w{"Brussels", "BE-BRU"}, w{"mul-Latn"}, "whois.nic.brussels", e, w{"https://rdap.nic.brussels/"}, t},
307310 {"bs", r, z[2129:2135], 0xa0, e, e, w{"anyns.dns.bs", "anyns.pch.net", "ns36.cdns.net"}, n, n, n, e, "http://www.nic.bs/cgi-bin/search.pl", n, t},
308311 {"bt", r, z[2135:2140], 0xa0, e, e, w{"auth00.ns.uu.net", "auth61.ns.uu.net", "ns.itu.ch", "ns1.druknet.bt", "ns2.druknet.bt", "ns3.druknet.bt", "phloem.uoregon.edu"}, n, n, n, e, "http://www.nic.bt/", n, f},
309 {"budapest", r, x, 0x8c4, "Minds + Machines Group Limited", "http://nic.budapest/", n, n, w{"Budapest", "HU-BU"}, w{"hu"}, "whois.nic.budapest", e, w{"https://rdap.nominet.uk/budapest/"}, t},
310 {"bugatti", r, x, 0x842, "Bugatti International SA", "https://newgtlds.icann.org/", n, n, n, w{"be", "bg", "bs", "da", "de", "es", "hu", "is", "ko", "lt", "lv", "mk", "pl", "ru", "sr", "sr-ME", "sv", "uk", "zh-Hans", "zh-Hant"}, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/bugatti/"}, t},
311 {"buick", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
312 {"budapest", r, x, 0x8c4, "Minds + Machines Group Limited", "https://www.icann.org/en/registry-agreements/details/budapest", n, n, w{"Budapest", "HU-BU"}, w{"hu"}, "whois.nic.budapest", e, w{"https://rdap.nominet.uk/budapest/"}, t},
313 {"bugatti", r, x, 0x842, "Bugatti International SA", e, n, n, n, w{"be", "bg", "bs", "da", "de", "es", "hu", "is", "ko", "lt", "lv", "mk", "pl", "ru", "sr", "sr-ME", "sv", "uk", "zh-Hans", "zh-Hant"}, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/bugatti/"}, t},
314 {"buick", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
312315 {"build", r, x, 0x40, "Plan Bee LLC", "https://about.build/", w{"a.nic.build", "b.nic.build", "c.nic.build", "d.nic.build"}, n, n, n, "whois.nic.build", e, w{"https://rdap.centralnic.com/build/"}, f},
313316 {"builders", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.builders", "v0n1.nic.builders", "v0n2.nic.builders", "v0n3.nic.builders", "v2n0.nic.builders", "v2n1.nic.builders"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.builders", e, w{"https://rdap.donuts.co/rdap/"}, t},
314317 {"business", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.business", "v0n1.nic.business", "v0n2.nic.business", "v0n3.nic.business", "v2n0.nic.business", "v2n1.nic.business"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.business", e, w{"https://rdap.donuts.co/rdap/"}, t},
316319 {"buzz", r, x, 0x40, "DOTSTRATEGY CO.", e, w{"a.nic.buzz", "b.nic.buzz", "c.nic.buzz", "ns1.dns.nic.buzz", "ns2.dns.nic.buzz", "ns3.dns.nic.buzz"}, n, n, w{"es"}, "whois.nic.buzz", e, w{"https://rdap.nic.buzz/"}, t},
317320 {"bv", r, x, 0xa8, e, e, w{"nac.no", "nn.uninett.no", "server.nordu.net", "x.nic.no", "y.nic.no", "z.nic.no"}, n, n, n, "whois.norid.no", e, n, f},
318321 {"bw", r, z[2140:2144], 0xa0, e, e, w{"dns1.nic.net.bw", "master.btc.net.bw", "ns-bw.afrinic.net", "pch.nic.net.bw"}, n, n, n, "whois.nic.net.bw", e, n, f},
319 {"bway", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
322 {"bway", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
320323 {"by", r, z[2144:2149], 0xa0, e, "https://domain.by/", w{"dns1.tld.becloudby.com", "dns2.tld.becloudby.com", "dns3.tld.becloudby.com", "dns4.tld.becloudby.com", "dns5.tld.becloudby.com"}, n, n, n, "whois.cctld.by", e, n, f},
321324 {"bz", r, z[2149:2156], 0xe0, e, "https://www.belizenic.bz/", w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, n, "whois.afilias-grs.info", e, n, f},
322325 {"bzh", r, x, 0x4c0, "Association www.bzh", "https://www.pik.bzh/", w{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, w{"FR-E"}, w{"fr"}, "whois.nic.bzh", e, w{"https://rdap.nic.bzh/"}, t},
323326 {"ca", r, z[2156:2172], 0xa0, e, e, w{"any.ca-servers.ca", "c.ca-servers.ca", "j.ca-servers.ca", "x.ca-servers.ca"}, n, n, w{"fr"}, "whois.cira.ca", e, w{"https://rdap.ca.fury.ca/rdap/"}, t},
324327 {"cab", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.cab", "v0n1.nic.cab", "v0n2.nic.cab", "v0n3.nic.cab", "v2n0.nic.cab", "v2n1.nic.cab"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.cab", e, w{"https://rdap.donuts.co/rdap/"}, t},
325 {"cadillac", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
328 {"cadillac", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
326329 {"cafe", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.cafe", "v0n1.nic.cafe", "v0n2.nic.cafe", "v0n3.nic.cafe", "v2n0.nic.cafe", "v2n1.nic.cafe"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.cafe", e, w{"https://rdap.donuts.co/rdap/"}, t},
327330 {"cal", r, x, 0x42, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
328331 {"call", r, x, 0x40, "Amazon Registry Services, Inc.", "https://nic.call/", w{"dns1.nic.call", "dns2.nic.call", "dns3.nic.call", "dns4.nic.call", "dnsa.nic.call", "dnsb.nic.call", "dnsc.nic.call", "dnsd.nic.call"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.call", e, w{"https://rdap.nominet.uk/call/"}, t},
330333 {"cam", r, x, 0x40, "Cam Connecting SARL", "https://nic.cam/", w{"a.nic.cam", "b.nic.cam", "c.nic.cam", "d.nic.cam"}, n, n, w{"ar", "az", "bg", "bs", "ca", "cs", "da", "de", "el", "es", "et", "fi", "fr", "he", "hr", "hu", "is", "it", "ja", "ka", "ko", "lb", "lt", "lv", "mk", "mul-Armn", "mul-Latn", "mul-Tavt", "mul-Thai", "nl", "no", "pl", "pt", "ro", "ro-MD", "ru", "sk", "sl", "sq", "sr", "sv", "tr", "uk"}, "whois.nic.cam", e, w{"https://rdap.centralnic.com/cam/"}, t},
331334 {"camera", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.camera", "v0n1.nic.camera", "v0n2.nic.camera", "v0n3.nic.camera", "v2n0.nic.camera", "v2n1.nic.camera"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.camera", e, w{"https://rdap.donuts.co/rdap/"}, t},
332335 {"camp", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.camp", "v0n1.nic.camp", "v0n2.nic.camp", "v0n3.nic.camp", "v2n0.nic.camp", "v2n1.nic.camp"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.camp", e, w{"https://rdap.donuts.co/rdap/"}, t},
333 {"canalplus", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
334 {"cancerresearch", r, x, 0x840, "Australian Cancer Research Foundation", "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.cancerresearch", e, w{"https://rdap.nic.cancerresearch/"}, f},
336 {"canalplus", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
337 {"cancerresearch", r, x, 0x840, "Australian Cancer Research Foundation", e, n, n, n, n, "whois.nic.cancerresearch", e, w{"https://rdap.nic.cancerresearch/"}, f},
335338 {"canon", r, x, 0x42, "Canon Inc.", "https://nic.canon/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"es", "fr", "ja", "ko", "pl", "pt"}, "whois.nic.canon", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
336339 {"capetown", r, x, 0xc4, "ZA Central Registry NPC trading as ZA Central Registry", e, w{"coza1.dnsnode.net", "nsp.netnod.se"}, n, w{"Cape Town"}, n, "whois.nic.capetown", e, w{"https://rdap.nic.capetown/rdap/"}, t},
337340 {"capital", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.capital", "v0n1.nic.capital", "v0n2.nic.capital", "v0n3.nic.capital", "v2n0.nic.capital", "v2n1.nic.capital"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.capital", e, w{"https://rdap.donuts.co/rdap/"}, t},
338 {"capitalone", r, x, 0x42, "Capital One Financial Corporation", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.capitalone", e, w{"https://tld-rdap.verisign.com/capitalone/v1/"}, f},
341 {"capitalone", r, x, 0x42, "Capital One Financial Corporation", "https://www.icann.org/en/registry-agreements/details/capitalone", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.capitalone", e, w{"https://tld-rdap.verisign.com/capitalone/v1/"}, f},
339342 {"car", r, x, 0x40, "XYZ.COM LLC", "https://nic.car/", w{"a.nic.car", "b.nic.car", "c.nic.car", "d.nic.car"}, n, n, w{"de", "es", "fr", "it", "ja", "mul-Cyrl", "pt", "zh"}, "whois.nic.car", e, w{"https://rdap.centralnic.com/car/"}, t},
340343 {"caravan", r, x, 0x42, "Caravan International, Inc.", "http://nic.caravan/", w{"a.nic.caravan", "b.nic.caravan", "c.nic.caravan", "ns1.dns.nic.caravan", "ns2.dns.nic.caravan", "ns3.dns.nic.caravan"}, n, n, w{"zh"}, "whois.nic.caravan", e, w{"https://rdap.nic.caravan/"}, t},
341344 {"cards", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.cards", "v0n1.nic.cards", "v0n2.nic.cards", "v0n3.nic.cards", "v2n0.nic.cards", "v2n1.nic.cards"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.cards", e, w{"https://rdap.donuts.co/rdap/"}, t},
342345 {"care", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.care", "v0n1.nic.care", "v0n2.nic.care", "v0n3.nic.care", "v2n0.nic.care", "v2n1.nic.care"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.care", e, w{"https://rdap.donuts.co/rdap/"}, t},
343346 {"career", r, x, 0x40, "dotCareer LLC", e, w{"dns1.nic.career", "dns2.nic.career", "dns3.nic.career", "dns4.nic.career", "dnsa.nic.career", "dnsb.nic.career", "dnsc.nic.career", "dnsd.nic.career"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.career", e, w{"https://rdap.nominet.uk/career/"}, t},
344347 {"careers", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.careers", "v0n1.nic.careers", "v0n2.nic.careers", "v0n3.nic.careers", "v2n0.nic.careers", "v2n1.nic.careers"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.careers", e, w{"https://rdap.donuts.co/rdap/"}, t},
345 {"carinsurance", r, x, 0x2040, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
348 {"carinsurance", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
346349 {"cars", r, x, 0x40, "XYZ.COM LLC", "https://nic.cars/", w{"a.nic.cars", "b.nic.cars", "c.nic.cars", "d.nic.cars"}, n, n, w{"de", "es", "fr", "it", "ja", "mul-Cyrl", "pt", "zh"}, "whois.nic.cars", e, w{"https://rdap.centralnic.com/cars/"}, t},
347 {"cartier", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.cartier", e, n, t},
350 {"cartier", r, x, 0x842, e, e, n, n, n, n, "whois.nic.cartier", e, n, t},
348351 {"casa", r, x, 0x40, "Registry Services, LLC", "http://nic.casa/", w{"a.nic.casa", "b.nic.casa", "c.nic.casa", "d.nic.casa"}, n, n, w{"es", "it", "pt"}, "whois.nic.casa", e, w{"https://rdap.nic.casa/"}, t},
349352 {"case", r, x, 0x42, "Digity, LLC", "http://nic.case/", w{"a.nic.case", "b.nic.case", "c.nic.case", "d.nic.case"}, n, n, n, "whois.nic.case", e, w{"https://rdap.centralnic.com/case/"}, f},
350 {"caseih", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.caseih", e, n, f},
353 {"caseih", r, x, 0x842, e, e, n, n, n, n, "whois.nic.caseih", e, n, f},
351354 {"cash", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.cash", "v0n1.nic.cash", "v0n2.nic.cash", "v0n3.nic.cash", "v2n0.nic.cash", "v2n1.nic.cash"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.cash", e, w{"https://rdap.donuts.co/rdap/"}, t},
352 {"cashbackbonus", r, x, 0x48, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
355 {"cashbackbonus", r, x, 0x4048, e, e, n, n, n, n, e, e, n, f},
353356 {"casino", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.casino", "v0n1.nic.casino", "v0n2.nic.casino", "v0n3.nic.casino", "v2n0.nic.casino", "v2n1.nic.casino"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.casino", e, w{"https://rdap.donuts.co/rdap/"}, t},
354357 {"cat", r, x, 0x1440, "Fundació puntCAT", "https://domini.cat/", w{"anyc1.irondns.net", "cat.pch.net", "ns.nic.cat", "ns1.nic.es", "nsc.nic.de", "switch.nic.cat"}, n, w{"ES-CT"}, w{"ca"}, "whois.nic.cat", e, w{"https://rdap.nic.cat/"}, t},
355 {"catalonia", r, x, 0x2040, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
358 {"catalonia", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
356359 {"catering", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.catering", "v0n1.nic.catering", "v0n2.nic.catering", "v0n3.nic.catering", "v2n0.nic.catering", "v2n1.nic.catering"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.catering", e, w{"https://rdap.donuts.co/rdap/"}, t},
357360 {"catholic", r, x, 0x40, "Pontificium Consilium de Comunicationibus Socialibus (PCCS) (Pontifical Council for Social Communication)", "http://nic.catholic/", w{"a.nic.catholic", "b.nic.catholic", "c.nic.catholic", "d.nic.catholic"}, n, n, n, "whois.nic.catholic", e, w{"https://rdap.nic.catholic/"}, f},
358361 {"cba", r, x, 0x42, "COMMONWEALTH BANK OF AUSTRALIA", "http://nic.cba/", w{"a.nic.cba", "b.nic.cba", "c.nic.cba", "d.nic.cba"}, n, n, n, "whois.nic.cba", e, w{"https://rdap.nic.cba/"}, f},
361364 {"cbs", r, x, 0x42, "CBS Domains Inc.", "https://nic.cbs/", w{"a0.nic.cbs", "a2.nic.cbs", "b0.nic.cbs", "c0.nic.cbs"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/cbs/"}, f},
362365 {"cc", r, z[2172:2176], 0xe0, e, e, w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "ccwhois.verisign-grs.com", e, w{"https://tld-rdap.verisign.com/cc/v1/"}, t},
363366 {"cd", r, z[2176:2182], 0xe0, e, "https://www.nic.cd/nic.cd/", w{"ns-root-21.scpt-network.net", "ns-root-22.scpt-network.net", "ns-root-23.scpt-network.net"}, n, n, n, "whois.cd", e, n, f},
364 {"ceb", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.afilias-srs.net", e, n, f},
367 {"ceb", r, x, 0x842, e, e, n, n, n, n, "whois.afilias-srs.net", e, n, f},
365368 {"center", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.center", "v0n1.nic.center", "v0n2.nic.center", "v0n3.nic.center", "v2n0.nic.center", "v2n1.nic.center"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.center", e, w{"https://rdap.donuts.co/rdap/"}, t},
366369 {"ceo", r, x, 0x40, "CEOTLD Pty Ltd", e, w{"a.nic.ceo", "b.nic.ceo", "c.nic.ceo", "d.nic.ceo"}, n, n, w{"ar", "da", "de", "es", "fr", "ja", "ko", "mul-Latn", "nl", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.ceo", e, w{"https://rdap.centralnic.com/ceo/"}, t},
367370 {"cern", r, x, 0x42, "European Organization for Nuclear Research (\"CERN\")", "https://nic.cern/", w{"a0.nic.cern", "a2.nic.cern", "b0.nic.cern", "c0.nic.cern"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/cern/"}, f},
368371 {"cf", r, x, 0xa0, e, e, w{"a.ns.cf", "b.ns.cf", "c.ns.cf", "d.ns.cf"}, n, n, n, "whois.dot.cf", e, n, t},
369 {"cfa", r, x, 0x42, "CFA Institute", "https://www.cfainstitute.org/utility/Pages/nic.aspx", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.cfa", e, w{"https://tld-rdap.verisign.com/cfa/v1/"}, f},
370 {"cfd", r, x, 0x40, "ShortDot SA", "https://bostonivy.co/", w{"a.nic.cfd", "b.nic.cfd", "c.nic.cfd", "d.nic.cfd"}, n, n, n, "whois.nic.cfd", e, w{"https://rdap.centralnic.com/cfd/"}, f},
372 {"cfa", r, x, 0x42, "CFA Institute", "https://www.icann.org/en/registry-agreements/details/cfa", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.cfa", e, w{"https://tld-rdap.verisign.com/cfa/v1/"}, f},
373 {"cfd", r, x, 0x40, "ShortDot SA", "https://shortdot.bond/cfd/", w{"a.nic.cfd", "b.nic.cfd", "c.nic.cfd", "d.nic.cfd"}, n, n, n, "whois.nic.cfd", e, w{"https://rdap.centralnic.com/cfd/"}, f},
371374 {"cg", r, x, 0xa0, e, e, w{"dns-fr.dnsafrica.net", "dns-za.dnsafrica.net", "sunic.sunet.se"}, n, n, n, e, "http://www.nic.cg/cgi-bin/whois.pl", n, f},
372375 {"ch", r, x, 0xa0, e, e, w{"a.nic.ch", "b.nic.ch", "d.nic.ch", "e.nic.ch", "f.nic.ch"}, n, n, n, "whois.nic.ch", e, w{"https://rdap.nic.ch/"}, t},
373376 {"chanel", r, x, 0x42, "Chanel International B.V.", "http://nic.chanel/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.chanel", e, w{"https://tld-rdap.verisign.com/chanel/v1/"}, f},
374 {"changiairport", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
377 {"changiairport", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
375378 {"channel", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
376379 {"charity", r, x, 0x40, "Public Interest Registry", "https://thenew.org/org-people/work-with-us/contact/", w{"v0n0.nic.charity", "v0n1.nic.charity", "v0n2.nic.charity", "v0n3.nic.charity", "v2n0.nic.charity", "v2n1.nic.charity"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.charity", e, w{"https://rdap.publicinterestregistry.org/rdap/"}, t},
377 {"chartis", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
380 {"chartis", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
378381 {"chase", r, x, 0x42, "JPMorgan Chase Bank, National Association", "https://www.nic.chase/", w{"ns1.dns.nic.chase", "ns2.dns.nic.chase", "ns3.dns.nic.chase", "ns4.dns.nic.chase", "ns5.dns.nic.chase", "ns6.dns.nic.chase"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.chase", e, w{"https://rdap.nic.chase/"}, t},
379382 {"chat", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.chat", "v0n1.nic.chat", "v0n2.nic.chat", "v0n3.nic.chat", "v2n0.nic.chat", "v2n1.nic.chat"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.chat", e, w{"https://rdap.donuts.co/rdap/"}, t},
380383 {"cheap", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.cheap", "v0n1.nic.cheap", "v0n2.nic.cheap", "v0n3.nic.cheap", "v2n0.nic.cheap", "v2n1.nic.cheap"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.cheap", e, w{"https://rdap.donuts.co/rdap/"}, t},
381 {"chesapeake", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
382 {"chevrolet", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
383 {"chevy", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
384 {"chesapeake", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
385 {"chevrolet", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
386 {"chevy", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
384387 {"chintai", r, x, 0x42, "CHINTAI Corporation", "http://nic.chintai/", w{"a.nic.chintai", "b.nic.chintai", "c.nic.chintai", "ns1.dns.nic.chintai", "ns2.dns.nic.chintai", "ns3.dns.nic.chintai"}, n, n, w{"ja"}, "whois.nic.chintai", e, w{"https://rdap.nic.chintai/"}, t},
385 {"chk", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
386 {"chloe", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.chloe", e, n, f},
388 {"chk", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
389 {"chloe", r, x, 0x842, e, e, n, n, n, n, "whois.nic.chloe", e, n, f},
387390 {"christmas", r, x, 0x40, "XYZ.COM LLC", "https://nic.christmas/", w{"a.nic.christmas", "b.nic.christmas", "c.nic.christmas", "d.nic.christmas"}, n, n, w{"de", "es", "fr", "it", "ja", "mul-Cyrl", "pt", "zh"}, "whois.nic.christmas", e, w{"https://rdap.centralnic.com/christmas/"}, t},
388391 {"chrome", r, x, 0x42, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
389 {"chrysler", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.afilias-srs.net", e, n, f},
392 {"chrysler", r, x, 0x842, e, e, n, n, n, n, "whois.afilias-srs.net", e, n, f},
390393 {"church", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.church", "v0n1.nic.church", "v0n2.nic.church", "v0n3.nic.church", "v2n0.nic.church", "v2n1.nic.church"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.church", e, w{"https://rdap.donuts.co/rdap/"}, t},
391394 {"ci", r, z[2182:2199], 0xa0, e, e, w{"any.nic.ci", "ci.hosting.nic.fr", "ns-ci.afrinic.net", "ns.nic.ci", "phloem.uoregon.edu"}, n, n, n, "whois.nic.ci", e, n, f},
392 {"cimb", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
393 {"cipriani", r, x, 0x42, "Hotel Cipriani Srl", "https://newgtlds.icann.org/", w{"a0.nic.cipriani", "a2.nic.cipriani", "b0.nic.cipriani", "c0.nic.cipriani"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/cipriani/"}, f},
395 {"cimb", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
396 {"cipriani", r, x, 0x42, "Hotel Cipriani Srl", "https://www.icann.org/en/registry-agreements/details/cipriani", w{"a0.nic.cipriani", "a2.nic.cipriani", "b0.nic.cipriani", "c0.nic.cipriani"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/cipriani/"}, f},
394397 {"circle", r, x, 0x40, "Amazon Registry Services, Inc.", "https://nic.circle/", w{"dns1.nic.circle", "dns2.nic.circle", "dns3.nic.circle", "dns4.nic.circle", "dnsa.nic.circle", "dnsb.nic.circle", "dnsc.nic.circle", "dnsd.nic.circle"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.circle", e, w{"https://rdap.nominet.uk/circle/"}, t},
395 {"cisco", r, x, 0x42, "Cisco Technology, Inc.", "https://newgtlds.icann.org/", w{"a.nic.cisco", "b.nic.cisco", "c.nic.cisco", "ns1.dns.nic.cisco", "ns2.dns.nic.cisco", "ns3.dns.nic.cisco"}, n, n, n, "whois.nic.cisco", e, w{"https://rdap.nic.cisco/"}, f},
398 {"cisco", r, x, 0x42, "Cisco Technology, Inc.", "https://www.nic.cisco/", w{"a.nic.cisco", "b.nic.cisco", "c.nic.cisco", "ns1.dns.nic.cisco", "ns2.dns.nic.cisco", "ns3.dns.nic.cisco"}, n, n, n, "whois.nic.cisco", e, w{"https://rdap.nic.cisco/"}, f},
396399 {"citadel", r, x, 0x42, "Citadel Domain LLC", "http://www.nic.citadel/", w{"ns1.dns.nic.citadel", "ns2.dns.nic.citadel", "ns3.dns.nic.citadel", "ns4.dns.nic.citadel", "ns5.dns.nic.citadel", "ns6.dns.nic.citadel"}, n, n, n, "whois.nic.citadel", e, w{"https://rdap.nic.citadel/"}, f},
397400 {"citi", r, x, 0x42, "Citigroup Inc.", "https://www.citi.com/", w{"a.nic.citi", "b.nic.citi", "c.nic.citi", "ns1.dns.nic.citi", "ns2.dns.nic.citi", "ns3.dns.nic.citi"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.citi", e, w{"https://rdap.nic.citi/"}, t},
398 {"citic", r, x, 0x42, "CITIC Group Corporation", "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.nic.citic", e, w{"https://rdap.zdnsgtld.com/citic/"}, t},
401 {"citic", r, x, 0x42, "CITIC Group Corporation", "http://www.nic.citic/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.nic.citic", e, w{"https://rdap.zdnsgtld.com/citic/"}, t},
399402 {"city", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.city", "v0n1.nic.city", "v0n2.nic.city", "v0n3.nic.city", "v2n0.nic.city", "v2n1.nic.city"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.city", e, w{"https://rdap.donuts.co/rdap/"}, t},
400 {"cityeats", r, x, 0x48, "Lifestyle Domain Holdings, Inc.", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.cityeats", e, w{"https://tld-rdap.verisign.com/cityeats/v1/"}, f},
401 {"ck", r, z[2199:2207], 0xa8, "Telecom Cook Islands", "https://www.vodafone.co.ck/domain-admin-policy", w{"circa.mcs.vuw.ac.nz", "downstage.mcs.vuw.ac.nz", "parau.oyster.net.ck", "poiparau.oyster.net.ck"}, n, n, n, "whois.ck-nic.org.ck", e, n, f},
403 {"cityeats", r, x, 0x48, "Lifestyle Domain Holdings, Inc.", "https://www.icann.org/en/registry-agreements/details/cityeats", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.cityeats", e, w{"https://tld-rdap.verisign.com/cityeats/v1/"}, f},
404 {"ck", r, z[2199:2207], 0xa8, "Telecom Cook Islands", "https://www.vodafone.co.ck/domain-admin-policy", w{"circa.mcs.vuw.ac.nz", "parau.oyster.net.ck", "poiparau.oyster.net.ck"}, n, n, n, "whois.ck-nic.org.ck", e, n, f},
402405 {"cl", r, x, 0xa0, e, e, w{"a.nic.cl", "b.nic.cl", "c.nic.cl", "cl-ns.anycast.pch.net", "cl1-tld.d-zone.ca", "cl1.dnsnode.net", "cl2-tld.d-zone.ca"}, n, n, w{"mul-Latn"}, "whois.nic.cl", e, n, t},
403406 {"claims", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.claims", "v0n1.nic.claims", "v0n2.nic.claims", "v0n3.nic.claims", "v2n0.nic.claims", "v2n1.nic.claims"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.claims", e, w{"https://rdap.donuts.co/rdap/"}, t},
404407 {"cleaning", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.cleaning", "v0n1.nic.cleaning", "v0n2.nic.cleaning", "v0n3.nic.cleaning", "v2n0.nic.cleaning", "v2n1.nic.cleaning"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.cleaning", e, w{"https://rdap.donuts.co/rdap/"}, t},
405408 {"click", r, x, 0x40, "Internet Naming Company LLC", "https://uniregistry.link/extensions/click/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, w{"de", "es", "fr", "it", "ja", "mul-Cyrl", "pt", "zh"}, "whois.uniregistry.net", e, w{"https://whois.uniregistry.net/rdap/"}, t},
406409 {"clinic", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.clinic", "v0n1.nic.clinic", "v0n2.nic.clinic", "v0n3.nic.clinic", "v2n0.nic.clinic", "v2n1.nic.clinic"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.clinic", e, w{"https://rdap.donuts.co/rdap/"}, t},
407 {"clinique", r, x, 0x42, "The Estée Lauder Companies Inc.", "https://newgtlds.icann.org/", w{"a0.nic.clinique", "a2.nic.clinique", "b0.nic.clinique", "c0.nic.clinique"}, n, n, n, "whois.nic.clinique", e, w{"https://rdap.afilias-srs.net/rdap/clinique/"}, f},
410 {"clinique", r, x, 0x42, "The Estée Lauder Companies Inc.", "https://www.icann.org/en/registry-agreements/details/clinique", w{"a0.nic.clinique", "a2.nic.clinique", "b0.nic.clinique", "c0.nic.clinique"}, n, n, n, "whois.nic.clinique", e, w{"https://rdap.afilias-srs.net/rdap/clinique/"}, f},
408411 {"clothing", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.clothing", "v0n1.nic.clothing", "v0n2.nic.clothing", "v0n3.nic.clothing", "v2n0.nic.clothing", "v2n1.nic.clothing"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.clothing", e, w{"https://rdap.donuts.co/rdap/"}, t},
409412 {"cloud", r, x, 0x40, "Aruba PEC S.p.A.", "https://www.get.cloud/home.aspx", w{"a.nic.cloud", "b.nic.cloud", "c.nic.cloud", "d.nic.cloud"}, n, n, n, "whois.nic.cloud", e, w{"https://rdap.nic.cloud/"}, f},
410413 {"club", r, x, 0x40, "Registry Services, LLC", e, w{"a.nic.club", "b.nic.club", "c.nic.club", "ns1.dns.nic.club", "ns2.dns.nic.club", "ns3.dns.nic.club"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "it", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.club", e, w{"https://rdap.nic.club/"}, t},
411 {"clubmed", r, x, 0x42, "Club Méditerranée S.A.", "http://ns.clubmed.com/ipm/nic_clubmed/index.html", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"ja", "ko", "mul-Deva", "mul-Hang", "mul-Hani", "mul-Hano"}, "whois.nic.clubmed", e, w{"https://tld-rdap.verisign.com/clubmed/v1/"}, t},
414 {"clubmed", r, x, 0x42, "Club Méditerranée S.A.", "https://ns.clubmed.com/ipm/nic_clubmed/index.html", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"ja", "ko", "mul-Deva", "mul-Hang", "mul-Hani", "mul-Hano"}, "whois.nic.clubmed", e, w{"https://tld-rdap.verisign.com/clubmed/v1/"}, t},
412415 {"cm", r, z[2207:2211], 0xa0, e, "https://antic.cm/", w{"auth02.ns.uu.net", "kim.camnet.cm", "lom.camnet.cm", "ns.itu.ch", "sanaga.camnet.cm"}, n, n, n, "whois.netcom.cm", e, n, f},
413 {"cn", r, z[2211:2253], 0xa0, e, "http://cnnic.cn/", w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn", "ns.cernet.net"}, n, n, w{"zh", "zh-Hans"}, "whois.cnnic.cn", e, n, t},
416 {"cn", r, z[2211:2253], 0xa0, e, "https://www.cnnic.net.cn/", w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn", "ns.cernet.net"}, n, n, w{"zh", "zh-Hans"}, "whois.cnnic.net.cn", e, n, t},
414417 {"co", r, z[2253:2260], 0xe0, e, "https://www.go.co/", w{"ns1.cctld.co", "ns2.cctld.co", "ns3.cctld.co", "ns4.cctld.co", "ns5.cctld.co", "ns6.cctld.co"}, n, n, w{"da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "mul-Latn", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.co", e, n, t},
415418 {"coach", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.coach", "v0n1.nic.coach", "v0n2.nic.coach", "v0n3.nic.coach", "v2n0.nic.coach", "v2n1.nic.coach"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.coach", e, w{"https://rdap.donuts.co/rdap/"}, t},
416419 {"codes", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.codes", "v0n1.nic.codes", "v0n2.nic.codes", "v0n3.nic.codes", "v2n0.nic.codes", "v2n1.nic.codes"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.codes", e, w{"https://rdap.donuts.co/rdap/"}, t},
417420 {"coffee", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.coffee", "v0n1.nic.coffee", "v0n2.nic.coffee", "v0n3.nic.coffee", "v2n0.nic.coffee", "v2n1.nic.coffee"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.coffee", e, w{"https://rdap.donuts.co/rdap/"}, t},
418421 {"college", r, x, 0x40, "XYZ.COM LLC", "https://nic.college/", w{"a.nic.college", "b.nic.college", "c.nic.college", "d.nic.college"}, n, n, w{"ar", "he", "ja", "ko", "lo", "mul-Grek", "mul-Latn", "ru", "th", "zh"}, "whois.nic.college", e, w{"https://rdap.centralnic.com/college/"}, t},
419 {"cologne", r, x, 0xc4, "dotKoeln GmbH", e, w{"dns.ryce-rsp.com", "ns1.dns.business", "ns1.ryce-rsp.com"}, n, w{"Cologne", "Koeln"}, w{"de", "mul-Latn"}, "whois.ryce-rsp.com", e, w{"https://rdap.ryce-rsp.com/rdap/"}, t},
422 {"cologne", r, x, 0xc4, "dotKoeln GmbH", e, w{"dns.ryce-rsp.com", "ns1.dns.business", "ns1.ryce-rsp.com"}, n, w{"Cologne", "Koeln"}, w{"de", "mul-Latn"}, "whois.nic.cologne", e, w{"https://rdap.ryce-rsp.com/rdap/"}, t},
420423 {"com", r, z[2260:2292], 0x40, "VeriSign, Inc.", "https://yourdot.com/", w{"a.gtld-servers.net", "b.gtld-servers.net", "c.gtld-servers.net", "d.gtld-servers.net", "e.gtld-servers.net", "f.gtld-servers.net", "g.gtld-servers.net", "h.gtld-servers.net", "i.gtld-servers.net", "j.gtld-servers.net", "k.gtld-servers.net", "l.gtld-servers.net", "m.gtld-servers.net"}, n, n, w{"az", "be", "bg", "el", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro-MD", "ru", "uk", "zh"}, "whois.verisign-grs.com", e, w{"https://rdap.verisign.com/com/v1/"}, t},
421424 {"comcast", r, x, 0x42, "Comcast IP Holdings I, LLC", "https://nic.comcast/", w{"dns1.nic.comcast", "dns2.nic.comcast", "dns3.nic.comcast", "dns4.nic.comcast", "dnsa.nic.comcast", "dnsb.nic.comcast", "dnsc.nic.comcast", "dnsd.nic.comcast"}, n, n, n, "whois.nic.comcast", e, w{"https://rdap.nominet.uk/comcast/"}, f},
422425 {"commbank", r, x, 0x42, "COMMONWEALTH BANK OF AUSTRALIA", "http://nic.commbank/", w{"a.nic.commbank", "b.nic.commbank", "c.nic.commbank", "d.nic.commbank"}, n, n, n, "whois.nic.commbank", e, w{"https://rdap.nic.commbank/"}, f},
424427 {"company", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.company", "v0n1.nic.company", "v0n2.nic.company", "v0n3.nic.company", "v2n0.nic.company", "v2n1.nic.company"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.company", e, w{"https://rdap.donuts.co/rdap/"}, t},
425428 {"compare", r, x, 0x40, "Registry Services, LLC", "https://www.gocompare.com/", w{"a.nic.compare", "b.nic.compare", "c.nic.compare", "d.nic.compare"}, n, n, n, "whois.nic.compare", e, w{"https://rdap.nic.compare/"}, f},
426429 {"computer", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.computer", "v0n1.nic.computer", "v0n2.nic.computer", "v0n3.nic.computer", "v2n0.nic.computer", "v2n1.nic.computer"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.computer", e, w{"https://rdap.donuts.co/rdap/"}, t},
427 {"comsec", r, x, 0x42, "VeriSign, Inc.", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "el", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "uk", "zh"}, "whois.nic.comsec", e, w{"https://tld-rdap.verisign.com/comsec/v1/"}, t},
430 {"comsec", r, x, 0x42, "VeriSign, Inc.", "https://www.icann.org/en/registry-agreements/details/comsec", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "el", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "uk", "zh"}, "whois.nic.comsec", e, w{"https://tld-rdap.verisign.com/comsec/v1/"}, t},
428431 {"condos", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.condos", "v0n1.nic.condos", "v0n2.nic.condos", "v0n3.nic.condos", "v2n0.nic.condos", "v2n1.nic.condos"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.condos", e, w{"https://rdap.donuts.co/rdap/"}, t},
429 {"connectors", r, x, 0x2040, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
432 {"connectors", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
430433 {"construction", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.construction", "v0n1.nic.construction", "v0n2.nic.construction", "v0n3.nic.construction", "v2n0.nic.construction", "v2n1.nic.construction"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.construction", e, w{"https://rdap.donuts.co/rdap/"}, t},
431434 {"consulting", r, x, 0x40, "Dog Beach, LLC", e, w{"v0n0.nic.consulting", "v0n1.nic.consulting", "v0n2.nic.consulting", "v0n3.nic.consulting", "v2n0.nic.consulting", "v2n1.nic.consulting"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.consulting", e, w{"https://rdap.donuts.co/rdap/"}, t},
432435 {"contact", r, x, 0x40, "Dog Beach, LLC", "https://identity.digital/", w{"v0n0.nic.contact", "v0n1.nic.contact", "v0n2.nic.contact", "v0n3.nic.contact", "v2n0.nic.contact", "v2n1.nic.contact"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Cyrl", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.contact", e, w{"https://rdap.donuts.co/rdap/"}, t},
433 {"contractors", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.contractors", "v0n1.nic.contractors", "v0n2.nic.contractors", "v0n3.nic.contractors", "v2n0.nic.contractors", "v2n1.nic.contractors"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.contractors", e, w{"https://rdap.donuts.co/rdap/"}, t},
436 {"contractors", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.contractors", "v0n1.nic.contractors", "v0n2.nic.contractors", "v0n3.nic.contractors", "v2n0.nic.contractors", "v2n1.nic.contractors"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.technology", e, w{"https://rdap.donuts.co/rdap/"}, t},
434437 {"cooking", r, x, 0x40, "Registry Services, LLC", "http://nic.cooking/", w{"a.nic.cooking", "b.nic.cooking", "c.nic.cooking", "d.nic.cooking"}, n, n, w{"de", "es", "fr"}, "whois.nic.cooking", e, w{"https://rdap.nic.cooking/"}, t},
435 {"cookingchannel", r, x, 0x42, "Lifestyle Domain Holdings, Inc.", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.cookingchannel", e, w{"https://tld-rdap.verisign.com/cookingchannel/v1/"}, f},
438 {"cookingchannel", r, x, 0x42, "Lifestyle Domain Holdings, Inc.", "https://www.icann.org/en/registry-agreements/details/cookingchannel", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.cookingchannel", e, w{"https://tld-rdap.verisign.com/cookingchannel/v1/"}, f},
436439 {"cool", r, z[2292:2293], 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.cool", "v0n1.nic.cool", "v0n2.nic.cool", "v0n3.nic.cool", "v2n0.nic.cool", "v2n1.nic.cool"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.cool", e, w{"https://rdap.donuts.co/rdap/"}, t},
437440 {"coop", r, x, 0x1040, "DotCooperation LLC", "https://identity.coop/", w{"a.nic.coop", "b.nic.coop", "c.nic.coop", "d.nic.coop"}, n, n, n, "whois.nic.coop", e, w{"https://rdap.centralnic.com/coop/"}, f},
438 {"corp", r, x, 0x2140, e, "https://features.icann.org/addressing-new-gtld-program-applications-corp-home-and-mail", n, n, n, n, e, e, n, t},
439 {"corsica", r, x, 0x4c0, "Collectivité de Corse", "http://nic.corsica/", w{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, w{"FR-H"}, w{"mul-Latn"}, "whois.nic.corsica", e, w{"https://rdap.nic.corsica/"}, t},
440 {"country", r, x, 0x40, "Internet Naming Company LLC", "https://uniregistry.link/extensions/country/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, w{"de", "es", "fr", "it", "mul-Cyrl", "pt"}, "whois.uniregistry.net", e, w{"https://whois.uniregistry.net/rdap/"}, t},
441 {"corp", r, x, 0x4140, e, "https://features.icann.org/addressing-new-gtld-program-applications-corp-home-and-mail", n, n, n, n, e, e, n, t},
442 {"corsica", r, x, 0x4c0, "Collectivité de Corse", "https://www.icann.org/en/registry-agreements/details/corsica", w{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, w{"FR-H"}, w{"mul-Latn"}, "whois.nic.corsica", e, w{"https://rdap.nic.corsica/"}, t},
443 {"country", r, x, 0x40, "Internet Naming Company LLC", "https://uniregistry.link/extensions/country/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, w{"de", "es", "fr", "it", "mul-Cyrl", "pt"}, "whois.nic.country", e, w{"https://whois.uniregistry.net/rdap/"}, t},
441444 {"coupon", r, x, 0x40, "Amazon Registry Services, Inc.", "https://nic.coupon/", w{"a.nic.coupon", "b.nic.coupon", "c.nic.coupon", "ns1.dns.nic.coupon", "ns2.dns.nic.coupon", "ns3.dns.nic.coupon"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.coupon", e, w{"https://rdap.nic.coupon/"}, t},
442445 {"coupons", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.coupons", "v0n1.nic.coupons", "v0n2.nic.coupons", "v0n3.nic.coupons", "v2n0.nic.coupons", "v2n1.nic.coupons"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.coupons", e, w{"https://rdap.donuts.co/rdap/"}, t},
443446 {"courses", r, x, 0x40, "Registry Services, LLC", "https://www.get.courses/", w{"a.nic.courses", "b.nic.courses", "c.nic.courses", "d.nic.courses"}, n, n, n, "whois.nic.courses", e, w{"https://rdap.nic.courses/"}, f},
446449 {"credit", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.credit", "v0n1.nic.credit", "v0n2.nic.credit", "v0n3.nic.credit", "v2n0.nic.credit", "v2n1.nic.credit"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.credit", e, w{"https://rdap.donuts.co/rdap/"}, t},
447450 {"creditcard", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.creditcard", "v0n1.nic.creditcard", "v0n2.nic.creditcard", "v0n3.nic.creditcard", "v2n0.nic.creditcard", "v2n1.nic.creditcard"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.creditcard", e, w{"https://rdap.donuts.co/rdap/"}, t},
448451 {"creditunion", r, x, 0x40, "DotCooperation LLC", "https://identity.coop/creditunion/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns5.uniregistry.net", "ns6.uniregistry.info"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/creditunion/"}, t},
449 {"cricket", r, x, 0x40, "dot Cricket Limited", "https://www.famousfourmedia.com/", w{"a.nic.cricket", "b.nic.cricket", "c.nic.cricket", "ns1.dns.nic.cricket", "ns2.dns.nic.cricket", "ns3.dns.nic.cricket"}, n, n, w{"da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.cricket", e, w{"https://rdap.nic.cricket/"}, t},
452 {"cricket", r, x, 0x40, "dot Cricket Limited", "http://nic.cricket/", w{"a.nic.cricket", "b.nic.cricket", "c.nic.cricket", "ns1.dns.nic.cricket", "ns2.dns.nic.cricket", "ns3.dns.nic.cricket"}, n, n, w{"da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.cricket", e, w{"https://rdap.nic.cricket/"}, t},
450453 {"crown", r, x, 0x42, "Crown Equipment Corporation", "http://nic.crown/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, w{"https://tld-rdap.verisign.com/crown/v1/"}, f},
451454 {"crs", r, x, 0x42, "Federated Co-operatives Limited", "http://nic.crs/", w{"a0.nic.crs", "a2.nic.crs", "b0.nic.crs", "c0.nic.crs"}, n, n, n, "whois.nic.crs", e, w{"https://tld-rdap.verisign.com/crs/v1/"}, f},
452455 {"cruise", r, x, 0x40, "Viking River Cruises (Bermuda) Ltd.", "http://nic.cruise/", w{"a0.nic.cruise", "a2.nic.cruise", "b0.nic.cruise", "c0.nic.cruise"}, n, n, n, "whois.nic.cruise", e, w{"https://rdap.afilias-srs.net/rdap/cruise/"}, f},
453456 {"cruises", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.cruises", "v0n1.nic.cruises", "v0n2.nic.cruises", "v0n3.nic.cruises", "v2n0.nic.cruises", "v2n1.nic.cruises"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.cruises", e, w{"https://rdap.donuts.co/rdap/"}, t},
454 {"csc", r, x, 0x842, "Alliance-One Services, Inc.", "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.csc", e, w{"https://tld-rdap.verisign.com/csc/v1/"}, f},
457 {"csc", r, x, 0x842, "Alliance-One Services, Inc.", e, n, n, n, n, "whois.nic.csc", e, w{"https://tld-rdap.verisign.com/csc/v1/"}, f},
455458 {"cu", r, z[2301:2312], 0xa0, e, e, w{"cu.cctld.authdns.ripe.net", "ns.ceniai.net.cu", "ns.dns.br", "ns2.ceniai.net.cu", "ns2.gip.net", "rip.psg.com"}, n, n, n, e, "http://www.nic.cu/", n, f},
456459 {"cuisinella", r, x, 0x42, "SCHMIDT GROUPE S.A.S.", "http://nic.cuisinella/", w{"a.nic.cuisinella", "b.nic.cuisinella", "c.nic.cuisinella", "d.nic.cuisinella"}, n, n, n, "whois.nic.cuisinella", e, w{"https://rdap.nic.cuisinella/"}, f},
457460 {"cv", r, z[2312:2320], 0xa0, e, e, w{"anyc.dnsnode.net", "c.dns.pt", "cv01.dns.pt", "ns-ext.isc.org", "ns.dns.cv"}, n, n, n, e, "http://www.dns.cv/", n, f},
464467 {"dabur", r, x, 0x42, "Dabur India Limited", "http://nic.dabur/", w{"a0.nic.dabur", "a2.nic.dabur", "b0.nic.dabur", "c0.nic.dabur"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/dabur/"}, f},
465468 {"dad", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
466469 {"dance", r, x, 0x40, "Dog Beach, LLC", e, w{"v0n0.nic.dance", "v0n1.nic.dance", "v0n2.nic.dance", "v0n3.nic.dance", "v2n0.nic.dance", "v2n1.nic.dance"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.dance", e, w{"https://rdap.donuts.co/rdap/"}, t},
467 {"data", r, x, 0x42, "Dish DBS Corporation", "http://www.dishtlds.com/data/", w{"a0.nic.data", "a2.nic.data", "b0.nic.data", "c0.nic.data"}, n, n, n, "whois.nic.data", e, w{"https://rdap.afilias-srs.net/rdap/data/"}, f},
468 {"date", r, x, 0x40, "dot Date Limited", "https://www.famousfourmedia.com/", w{"a.nic.date", "b.nic.date", "c.nic.date", "ns1.dns.nic.date", "ns2.dns.nic.date", "ns3.dns.nic.date"}, n, n, w{"da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.date", e, w{"https://rdap.nic.date/"}, t},
470 {"data", r, x, 0x42, "Dish DBS Corporation", "https://www.dishtlds.com/data/", w{"a0.nic.data", "a2.nic.data", "b0.nic.data", "c0.nic.data"}, n, n, n, "whois.nic.data", e, w{"https://rdap.afilias-srs.net/rdap/data/"}, f},
471 {"date", r, x, 0x40, "dot Date Limited", "http://nic.date/", w{"a.nic.date", "b.nic.date", "c.nic.date", "ns1.dns.nic.date", "ns2.dns.nic.date", "ns3.dns.nic.date"}, n, n, w{"da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.date", e, w{"https://rdap.nic.date/"}, t},
469472 {"dating", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.dating", "v0n1.nic.dating", "v0n2.nic.dating", "v0n3.nic.dating", "v2n0.nic.dating", "v2n1.nic.dating"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.dating", e, w{"https://rdap.donuts.co/rdap/"}, t},
470473 {"datsun", r, x, 0x42, "NISSAN MOTOR CO., LTD.", "https://www.nissan-global.com/EN/NIC/DATSUN/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"es", "fr", "ja", "ko", "pl", "pt", "zh", "zh-Hans", "zh-Hant"}, "whois.nic.gmo", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
471474 {"day", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
478481 {"degree", r, x, 0x40, "Dog Beach, LLC", "https://identity.digital/", w{"v0n0.nic.degree", "v0n1.nic.degree", "v0n2.nic.degree", "v0n3.nic.degree", "v2n0.nic.degree", "v2n1.nic.degree"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.degree", e, w{"https://rdap.donuts.co/rdap/"}, t},
479482 {"delivery", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.delivery", "v0n1.nic.delivery", "v0n2.nic.delivery", "v0n3.nic.delivery", "v2n0.nic.delivery", "v2n1.nic.delivery"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.delivery", e, w{"https://rdap.donuts.co/rdap/"}, t},
480483 {"dell", r, x, 0x42, "Dell Inc.", "https://nic.dell/", w{"a.nic.dell", "b.nic.dell", "c.nic.dell", "ns1.dns.nic.dell", "ns2.dns.nic.dell", "ns3.dns.nic.dell"}, n, n, w{"es"}, "whois.nic.dell", e, w{"https://rdap.nic.dell/"}, t},
481 {"delmonte", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
484 {"delmonte", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
482485 {"deloitte", r, x, 0x42, "Deloitte Touche Tohmatsu", "https://www.nic.deloitte/", w{"a.nic.deloitte", "b.nic.deloitte", "c.nic.deloitte", "d.nic.deloitte"}, n, n, w{"ar", "de", "es", "fr", "ja", "nl", "pt", "ru", "zh"}, "whois.nic.deloitte", e, w{"https://rdap.centralnic.com/deloitte/"}, t},
483 {"delta", r, x, 0x42, "Delta Air Lines, Inc.", "https://newgtlds.icann.org/", w{"a0.nic.delta", "a2.nic.delta", "b0.nic.delta", "c0.nic.delta"}, n, n, n, "whois.nic.delta", e, w{"https://rdap.afilias-srs.net/rdap/delta/"}, f},
486 {"delta", r, x, 0x42, "Delta Air Lines, Inc.", "http://www.nic.delta/", w{"a0.nic.delta", "a2.nic.delta", "b0.nic.delta", "c0.nic.delta"}, n, n, n, "whois.nic.delta", e, w{"https://rdap.afilias-srs.net/rdap/delta/"}, f},
484487 {"democrat", r, x, 0x40, "Dog Beach, LLC", e, w{"v0n0.nic.democrat", "v0n1.nic.democrat", "v0n2.nic.democrat", "v0n3.nic.democrat", "v2n0.nic.democrat", "v2n1.nic.democrat"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.democrat", e, w{"https://rdap.donuts.co/rdap/"}, t},
485488 {"dental", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.dental", "v0n1.nic.dental", "v0n2.nic.dental", "v0n3.nic.dental", "v2n0.nic.dental", "v2n1.nic.dental"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.dental", e, w{"https://rdap.donuts.co/rdap/"}, t},
486489 {"dentist", r, x, 0x40, "Dog Beach, LLC", "https://identity.digital/", w{"v0n0.nic.dentist", "v0n1.nic.dentist", "v0n2.nic.dentist", "v0n3.nic.dentist", "v2n0.nic.dentist", "v2n1.nic.dentist"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.dentist", e, w{"https://rdap.donuts.co/rdap/"}, t},
487490 {"desi", r, x, 0x40, "Desi Networks LLC", e, w{"a.nic.desi", "b.nic.desi", "c.nic.desi", "d.nic.desi"}, n, n, n, "whois.nic.desi", e, w{"https://rdap.centralnic.com/desi/"}, t},
488491 {"design", r, x, 0x40, "Registry Services, LLC", "https://your.design/", w{"a.nic.design", "b.nic.design", "c.nic.design", "d.nic.design"}, n, n, w{"ar", "he", "ja", "ko", "lo", "mul-Cyrl", "mul-Grek", "mul-Latn", "th", "zh"}, "whois.nic.design", e, w{"https://rdap.nic.design/"}, t},
489 {"deutschepost", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
492 {"deutschepost", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
490493 {"dev", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"ja", "mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
491494 {"dhl", r, x, 0x42, "Deutsche Post AG", "https://www.nic.dhl/", w{"a.nic.dhl", "b.nic.dhl", "c.nic.dhl", "d.nic.dhl"}, n, n, w{"mul-Latn"}, e, e, w{"https://rdap.centralnic.com/dhl/"}, t},
492495 {"diamonds", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.diamonds", "v0n1.nic.diamonds", "v0n2.nic.diamonds", "v0n3.nic.diamonds", "v2n0.nic.diamonds", "v2n1.nic.diamonds"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.diamonds", e, w{"https://rdap.donuts.co/rdap/"}, t},
493496 {"diet", r, x, 0x40, "XYZ.COM LLC", "https://nic.diet/", w{"a.nic.diet", "b.nic.diet", "c.nic.diet", "d.nic.diet"}, n, n, w{"de", "es", "fr", "it", "ja", "mul-Cyrl", "pt", "zh"}, "whois.nic.diet", e, w{"https://rdap.centralnic.com/diet/"}, t},
494 {"digikey", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
497 {"digikey", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
495498 {"digital", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.digital", "v0n1.nic.digital", "v0n2.nic.digital", "v0n3.nic.digital", "v2n0.nic.digital", "v2n1.nic.digital"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.digital", e, w{"https://rdap.donuts.co/rdap/"}, t},
496499 {"direct", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.direct", "v0n1.nic.direct", "v0n2.nic.direct", "v0n3.nic.direct", "v2n0.nic.direct", "v2n1.nic.direct"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.direct", e, w{"https://rdap.donuts.co/rdap/"}, t},
497500 {"directory", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.directory", "v0n1.nic.directory", "v0n2.nic.directory", "v0n3.nic.directory", "v2n0.nic.directory", "v2n1.nic.directory"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.directory", e, w{"https://rdap.donuts.co/rdap/"}, t},
498501 {"discount", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.discount", "v0n1.nic.discount", "v0n2.nic.discount", "v0n3.nic.discount", "v2n0.nic.discount", "v2n1.nic.discount"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.discount", e, w{"https://rdap.donuts.co/rdap/"}, t},
499502 {"discover", r, x, 0x42, "Discover Financial Services", "https://www.nic.discover//", w{"a.nic.discover", "b.nic.discover", "c.nic.discover", "ns1.dns.nic.discover", "ns2.dns.nic.discover", "ns3.dns.nic.discover"}, n, n, n, "whois.nic.discover", e, w{"https://rdap.nic.discover/"}, f},
500 {"dish", r, x, 0x42, "Dish DBS Corporation", "http://www.dishtlds.com/dish/", w{"a0.nic.dish", "a2.nic.dish", "b0.nic.dish", "c0.nic.dish"}, n, n, n, "whois.nic.dish", e, w{"https://rdap.afilias-srs.net/rdap/dish/"}, f},
501 {"diy", r, x, 0x42, "Lifestyle Domain Holdings, Inc.", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.diy", e, w{"https://tld-rdap.verisign.com/diy/v1/"}, f},
503 {"dish", r, x, 0x42, "Dish DBS Corporation", "https://www.dishtlds.com/dish/", w{"a0.nic.dish", "a2.nic.dish", "b0.nic.dish", "c0.nic.dish"}, n, n, n, "whois.nic.dish", e, w{"https://rdap.afilias-srs.net/rdap/dish/"}, f},
504 {"diy", r, x, 0x42, "Lifestyle Domain Holdings, Inc.", "https://www.icann.org/en/registry-agreements/details/diy", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.diy", e, w{"https://tld-rdap.verisign.com/diy/v1/"}, f},
502505 {"dj", r, x, 0xe0, e, e, w{"bow1.intnet.dj", "bow5.intnet.dj", "vps443605.ovh.net"}, n, n, n, e, "http://www.nic.dj/whois.php", n, f},
503506 {"dk", r, z[2344:2346], 0xa0, e, "https://www.dk-hostmaster.dk/da", w{"a.nic.dk", "b.nic.dk", "c.nic.dk", "d.nic.dk", "l.nic.dk", "p.nic.dk", "s.nic.dk"}, n, n, n, "whois.dk-hostmaster.dk", e, n, t},
504 {"dm", r, z[2346:2352], 0xa0, e, e, w{"ns.blacknightsolutions.com", "ns1.uniregistry.net", "ns2.blacknightsolutions.com", "ns2.nic.dm", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns34.cdns.net", "ns4.uniregistry.info"}, n, n, n, "whois.dmdomains.dm", e, n, t},
505 {"dnb", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
507 {"dm", r, z[2346:2352], 0xa0, e, e, w{"ns.blacknightsolutions.com", "ns1.uniregistry.net", "ns2.blacknightsolutions.com", "ns2.nic.dm", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns34.cdns.net", "ns4.uniregistry.info"}, n, n, n, "whois.nic.dm", e, n, t},
508 {"dnb", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
506509 {"dnp", r, x, 0x42, "Dai Nippon Printing Co., Ltd.", "https://nic.dnp/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"es", "fr", "ja", "ko", "pl", "pt"}, "whois.nic.dnp", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
507510 {"do", r, z[2352:2363], 0xa0, e, "https://www.nic.do/", w{"a.lactld.org", "ns.nic.do", "ns1.nic.do", "ns2.nic.do", "ns4.nic.do", "ns5.nic.do", "phloem.uoregon.edu"}, n, n, n, "whois.nic.do", e, n, f},
508 {"docomo", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
511 {"docomo", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
509512 {"docs", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
510513 {"doctor", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.doctor", "v0n1.nic.doctor", "v0n2.nic.doctor", "v0n3.nic.doctor", "v2n0.nic.doctor", "v2n1.nic.doctor"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.doctor", e, w{"https://rdap.donuts.co/rdap/"}, t},
511 {"dodge", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.afilias-srs.net", e, n, f},
514 {"dodge", r, x, 0x842, e, e, n, n, n, n, "whois.afilias-srs.net", e, n, f},
512515 {"dog", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.dog", "v0n1.nic.dog", "v0n2.nic.dog", "v0n3.nic.dog", "v2n0.nic.dog", "v2n1.nic.dog"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.dog", e, w{"https://rdap.donuts.co/rdap/"}, t},
513 {"doha", r, x, 0x8c4, e, "https://newgtlds.icann.org/", n, n, w{"Doha", "QA-DA"}, n, "whois.nic.doha", e, n, f},
516 {"doha", r, x, 0x8c4, e, e, n, n, w{"Doha", "QA-DA"}, n, "whois.nic.doha", e, n, f},
514517 {"domains", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.domains", "v0n1.nic.domains", "v0n2.nic.domains", "v0n3.nic.domains", "v2n0.nic.domains", "v2n1.nic.domains"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.domains", e, w{"https://rdap.donuts.co/rdap/"}, t},
515 {"doosan", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.xn--cg4bki", e, n, f},
516 {"dot", r, x, 0x40, "Dish DBS Corporation", "http://www.dishtlds.com/dot/", w{"a0.nic.dot", "a2.nic.dot", "b0.nic.dot", "c0.nic.dot"}, n, n, n, "whois.nic.dot", e, w{"https://rdap.afilias-srs.net/rdap/dot/"}, f},
517 {"dotafrica", r, x, 0x2040, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
518 {"download", r, x, 0x40, "dot Support Limited", "https://www.famousfourmedia.com/", w{"a.nic.download", "b.nic.download", "c.nic.download", "ns1.dns.nic.download", "ns2.dns.nic.download", "ns3.dns.nic.download"}, n, n, w{"da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.download", e, w{"https://rdap.nic.download/"}, t},
518 {"doosan", r, x, 0x842, e, e, n, n, n, n, "whois.nic.xn--cg4bki", e, n, f},
519 {"dot", r, x, 0x40, "Dish DBS Corporation", "https://www.dishtlds.com/dot/", w{"a0.nic.dot", "a2.nic.dot", "b0.nic.dot", "c0.nic.dot"}, n, n, n, "whois.nic.dot", e, w{"https://rdap.afilias-srs.net/rdap/dot/"}, f},
520 {"dotafrica", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
521 {"download", r, x, 0x40, "dot Support Limited", "http://nic.download/", w{"a.nic.download", "b.nic.download", "c.nic.download", "ns1.dns.nic.download", "ns2.dns.nic.download", "ns3.dns.nic.download"}, n, n, w{"da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.download", e, w{"https://rdap.nic.download/"}, t},
519522 {"drive", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
520 {"dstv", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
521 {"dtv", r, x, 0x42, "Dish DBS Corporation", "http://dishtlds.com/dtv/", w{"a0.nic.dtv", "a2.nic.dtv", "b0.nic.dtv", "c0.nic.dtv"}, n, n, n, "whois.nic.dtv", e, w{"https://rdap.afilias-srs.net/rdap/dtv/"}, f},
523 {"dstv", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
524 {"dtv", r, x, 0x42, "Dish DBS Corporation", "https://dishtlds.com/dtv/", w{"a0.nic.dtv", "a2.nic.dtv", "b0.nic.dtv", "c0.nic.dtv"}, n, n, n, "whois.nic.dtv", e, w{"https://rdap.afilias-srs.net/rdap/dtv/"}, f},
522525 {"dubai", r, x, 0xc4, "Dubai Smart Government Department", "http://nic.dubai/", w{"gtld.alpha.aridns.net.au", "gtld.beta.aridns.net.au", "gtld.delta.aridns.net.au", "gtld.gamma.aridns.net.au"}, n, w{"AE-DU", "Dubai"}, w{"ar"}, "whois.nic.dubai", e, w{"https://rdap.nic.dubai/"}, t},
523 {"duck", r, x, 0x842, "Johnson Shareholdings, Inc.", "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.duck", e, w{"https://tld-rdap.verisign.com/duck/v1/"}, f},
526 {"duck", r, x, 0x842, "Johnson Shareholdings, Inc.", e, n, n, n, n, "whois.nic.duck", e, w{"https://tld-rdap.verisign.com/duck/v1/"}, f},
524527 {"dunlop", r, x, 0x42, "The Goodyear Tire & Rubber Company", "https://nic.dunlop/", w{"a0.nic.dunlop", "a2.nic.dunlop", "b0.nic.dunlop", "c0.nic.dunlop"}, n, n, n, "whois.nic.dunlop", e, w{"https://rdap.afilias-srs.net/rdap/dunlop/"}, f},
525 {"duns", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.duns", e, n, f},
528 {"duns", r, x, 0x842, e, e, n, n, n, n, "whois.nic.duns", e, n, f},
526529 {"dupont", r, x, 0x42, "DuPont Specialty Products USA, LLC", "https://www.dupont.com/nic.html", w{"ns1.dns.nic.dupont", "ns2.dns.nic.dupont", "ns3.dns.nic.dupont", "ns4.dns.nic.dupont", "ns5.dns.nic.dupont", "ns6.dns.nic.dupont"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.dupont", e, w{"https://rdap.nic.dupont/"}, t},
527530 {"durban", r, x, 0xc4, "ZA Central Registry NPC trading as ZA Central Registry", e, w{"coza1.dnsnode.net", "nsp.netnod.se"}, n, w{"Durban"}, n, "whois.nic.durban", e, w{"https://rdap.nic.durban/rdap/"}, t},
528531 {"dvag", r, x, 0x42, "Deutsche Vermögensberatung Aktiengesellschaft DVAG", "https://nic.dvag/", w{"a.nic.dvag", "b.nic.dvag", "c.nic.dvag", "d.nic.dvag"}, n, n, w{"de"}, "whois.nic.dvag", e, w{"https://rdap.centralnic.com/dvag/"}, t},
529 {"dvr", r, x, 0x42, "DISH Technologies L.L.C.", "https://newgtlds.icann.org/", w{"a0.nic.dvr", "a2.nic.dvr", "b0.nic.dvr", "c0.nic.dvr"}, n, n, n, "whois.nic.dvr", e, w{"https://rdap.afilias-srs.net/rdap/dvr/"}, f},
530 {"dwg", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
532 {"dvr", r, x, 0x42, "DISH Technologies L.L.C.", "https://www.icann.org/en/registry-agreements/details/dvr", w{"a0.nic.dvr", "a2.nic.dvr", "b0.nic.dvr", "c0.nic.dvr"}, n, n, n, "whois.nic.dvr", e, w{"https://rdap.afilias-srs.net/rdap/dvr/"}, f},
533 {"dwg", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
531534 {"dz", r, z[2363:2371], 0xa0, e, e, w{"ns-dz.afrinic.net", "ns1.nic.dz", "ns2.nic.dz", "ns3.nic.fr", "ns4.nic.dz", "ns5.nic.dz"}, n, n, n, "whois.nic.dz", e, n, f},
532535 {"earth", r, x, 0x40, "Interlink Systems Innovation Institute K.K.", "https://domain.earth/", w{"a.nic.earth", "b.nic.earth", "c.nic.earth", "ns1.dns.nic.earth", "ns2.dns.nic.earth", "ns3.dns.nic.earth"}, n, n, w{"ja", "ko", "zh"}, "whois.nic.earth", e, w{"https://rdap.nic.earth/"}, t},
533536 {"eat", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
534537 {"ec", r, z[2371:2382], 0xa0, e, e, w{"a.lactld.org", "n2.nic.ec", "n3.dns.ec"}, n, n, n, "whois.nic.ec", e, n, f},
535538 {"eco", r, x, 0x40, "Big Room Inc.", "https://bigroom.eco/", w{"a.ns.nic.eco", "b.ns.nic.eco"}, n, n, n, "whois.nic.eco", e, w{"https://rdap.eco.fury.ca/rdap/"}, f},
536 {"ecom", r, x, 0x40, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
539 {"ecom", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
537540 {"edeka", r, x, 0x42, "EDEKA Verband kaufmännischer Genossenschaften e.V.", "https://www.nic.edeka/", w{"a0.nic.edeka", "a2.nic.edeka", "b0.nic.edeka", "c0.nic.edeka"}, n, n, w{"be", "bg", "bs", "da", "de", "es", "hu", "is", "ko", "lt", "lv", "mk", "pl", "ru", "sr", "sr-ME", "sv", "uk", "zh-Hans", "zh-Hant"}, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/edeka/"}, t},
538541 {"edu", r, x, 0x1040, e, e, w{"a.edu-servers.net", "b.edu-servers.net", "c.edu-servers.net", "d.edu-servers.net", "e.edu-servers.net", "f.edu-servers.net", "g.edu-servers.net", "h.edu-servers.net", "i.edu-servers.net", "j.edu-servers.net", "k.edu-servers.net", "l.edu-servers.net", "m.edu-servers.net"}, n, n, n, "whois.educause.edu", e, n, f},
539542 {"education", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.education", "v0n1.nic.education", "v0n2.nic.education", "v0n3.nic.education", "v2n0.nic.education", "v2n1.nic.education"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.education", e, w{"https://rdap.donuts.co/rdap/"}, t},
541544 {"eg", r, z[2396:2408], 0xa0, e, e, w{"frcu.eun.eg", "ns5.univie.ac.at", "rip.psg.com"}, n, n, n, e, "http://lookup.egregistry.eg/english.aspx", n, f},
542545 {"email", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.email", "v0n1.nic.email", "v0n2.nic.email", "v0n3.nic.email", "v2n0.nic.email", "v2n1.nic.email"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.email", e, w{"https://rdap.donuts.co/rdap/"}, t},
543546 {"emerck", r, x, 0x42, "Merck KGaA", "http://www.nic.emerck/darmstadt/germany/", w{"a0.nic.emerck", "a2.nic.emerck", "b0.nic.emerck", "c0.nic.emerck"}, n, n, w{"da", "de", "es", "hu", "is", "lt", "lv", "pl", "ru", "sv"}, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/emerck/"}, t},
544 {"emerson", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
547 {"emerson", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
545548 {"energy", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.energy", "v0n1.nic.energy", "v0n2.nic.energy", "v0n3.nic.energy", "v2n0.nic.energy", "v2n1.nic.energy"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.energy", e, w{"https://rdap.donuts.co/rdap/"}, t},
546549 {"engineer", r, x, 0x40, "Dog Beach, LLC", e, w{"v0n0.nic.engineer", "v0n1.nic.engineer", "v0n2.nic.engineer", "v0n3.nic.engineer", "v2n0.nic.engineer", "v2n1.nic.engineer"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.engineer", e, w{"https://rdap.donuts.co/rdap/"}, t},
547550 {"engineering", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.engineering", "v0n1.nic.engineering", "v0n2.nic.engineering", "v0n3.nic.engineering", "v2n0.nic.engineering", "v2n1.nic.engineering"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.engineering", e, w{"https://rdap.donuts.co/rdap/"}, t},
548551 {"enterprises", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.enterprises", "v0n1.nic.enterprises", "v0n2.nic.enterprises", "v0n3.nic.enterprises", "v2n0.nic.enterprises", "v2n1.nic.enterprises"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.enterprises", e, w{"https://rdap.donuts.co/rdap/"}, t},
549 {"epost", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, w{"mul-Latn"}, e, e, n, t},
552 {"epost", r, x, 0x842, e, e, n, n, n, w{"mul-Latn"}, e, e, n, t},
550553 {"epson", r, x, 0x42, "Seiko Epson Corporation", "https://nic.epson/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ja"}, "whois.nic.epson", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
551554 {"equipment", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.equipment", "v0n1.nic.equipment", "v0n2.nic.equipment", "v0n3.nic.equipment", "v2n0.nic.equipment", "v2n1.nic.equipment"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.equipment", e, w{"https://rdap.donuts.co/rdap/"}, t},
552555 {"er", r, z[2408:2415], 0xa8, e, e, w{"er.cctld.authdns.ripe.net", "sawanew.noc.net.er", "zaranew.noc.net.er"}, n, n, n, e, e, n, f},
553556 {"ericsson", r, x, 0x42, "Telefonaktiebolaget L M Ericsson", "https://nic.ericsson/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.ericsson", e, w{"https://tld-rdap.verisign.com/ericsson/v1/"}, f},
554 {"erni", r, x, 0x42, "ERNI Group Holding AG", "https://newgtlds.icann.org/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, w{"mul-Latn"}, "whois.nic.erni", e, w{"https://rdap.nic.erni/"}, t},
557 {"erni", r, x, 0x42, "ERNI Group Holding AG", "https://www.nic.erni/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, w{"mul-Latn"}, "whois.nic.erni", e, w{"https://rdap.nic.erni/"}, t},
555558 {"es", r, z[2415:2420], 0xa0, e, e, w{"a.nic.es", "c.nic.es", "g.nic.es", "h.nic.es"}, n, n, n, "whois.nic.es", e, n, t},
556559 {"esq", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
557560 {"estate", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.estate", "v0n1.nic.estate", "v0n2.nic.estate", "v0n3.nic.estate", "v2n0.nic.estate", "v2n1.nic.estate"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.estate", e, w{"https://rdap.donuts.co/rdap/"}, t},
558 {"esurance", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.afilias-srs.net", e, n, f},
559 {"et", r, z[2420:2428], 0xa0, e, "http://www.ethionet.et/?q=ipservicedomainname", w{"a.nic.et", "b.nic.et"}, n, n, n, e, e, n, f},
561 {"esurance", r, x, 0x842, e, e, n, n, n, n, "whois.afilias-srs.net", e, n, f},
562 {"et", r, z[2420:2428], 0xa0, e, "https://www.iana.org/domains/root/db/et.html", w{"a.nic.et", "b.nic.et"}, n, n, n, e, e, n, f},
560563 {"etisalat", r, x, 0x42, "Emirates Telecommunications Corporation (trading as Etisalat)", "https://nic.etisalat/", w{"a.nic.etisalat", "b.nic.etisalat", "c.nic.etisalat", "d.nic.etisalat"}, n, n, n, "whois.centralnic.com", e, w{"https://rdap.centralnic.com/etisalat/"}, f},
561564 {"eu", r, z[2428:2431], 0xa0, e, e, w{"be.dns.eu", "si.dns.eu", "w.dns.eu", "x.dns.eu", "y.dns.eu"}, n, n, w{"mul-Cyrl", "mul-Grek", "mul-Latn"}, "whois.eu", e, n, t},
562565 {"eurovision", r, x, 0x42, "European Broadcasting Union (EBU)", "https://www.ebu.ch/home", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, w{"mul-Latn"}, "whois.nic.eurovision", e, w{"https://rdap.nic.eurovision/"}, t},
563566 {"eus", r, x, 0x440, "Puntueus Fundazioa", e, w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, w{"mul-Latn"}, "whois.nic.eus", e, w{"https://rdap.nic.eus/"}, t},
564567 {"events", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.events", "v0n1.nic.events", "v0n2.nic.events", "v0n3.nic.events", "v2n0.nic.events", "v2n1.nic.events"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.events", e, w{"https://rdap.donuts.co/rdap/"}, t},
565 {"everbank", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.everbank", e, n, f},
568 {"everbank", r, x, 0x842, e, e, n, n, n, n, "whois.nic.everbank", e, n, f},
566569 {"exchange", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.exchange", "v0n1.nic.exchange", "v0n2.nic.exchange", "v0n3.nic.exchange", "v2n0.nic.exchange", "v2n1.nic.exchange"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.exchange", e, w{"https://rdap.donuts.co/rdap/"}, t},
567570 {"expert", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.expert", "v0n1.nic.expert", "v0n2.nic.expert", "v0n3.nic.expert", "v2n0.nic.expert", "v2n1.nic.expert"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.expert", e, w{"https://rdap.donuts.co/rdap/"}, t},
568571 {"exposed", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.exposed", "v0n1.nic.exposed", "v0n2.nic.exposed", "v0n3.nic.exposed", "v2n0.nic.exposed", "v2n1.nic.exposed"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.exposed", e, w{"https://rdap.donuts.co/rdap/"}, t},
569572 {"express", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.express", "v0n1.nic.express", "v0n2.nic.express", "v0n3.nic.express", "v2n0.nic.express", "v2n1.nic.express"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.express", e, w{"https://rdap.donuts.co/rdap/"}, t},
570 {"extraspace", r, x, 0x42, "Extra Space Storage LLC", "http://nic.extraspace/", w{"a0.nic.extraspace", "a2.nic.extraspace", "b0.nic.extraspace", "c0.nic.extraspace"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/extraspace/"}, f},
573 {"extraspace", r, x, 0x42, "Extra Space Storage LLC", "https://www.icann.org/en/registry-agreements/details/extraspace", w{"a0.nic.extraspace", "a2.nic.extraspace", "b0.nic.extraspace", "c0.nic.extraspace"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/extraspace/"}, f},
571574 {"fage", r, x, 0x42, "Fage International S.A.", "https://nic.fage/", w{"a0.nic.fage", "a2.nic.fage", "b0.nic.fage", "c0.nic.fage"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/fage/"}, f},
572575 {"fail", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.fail", "v0n1.nic.fail", "v0n2.nic.fail", "v0n3.nic.fail", "v2n0.nic.fail", "v2n1.nic.fail"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.fail", e, w{"https://rdap.donuts.co/rdap/"}, t},
573576 {"fairwinds", r, x, 0x42, "FairWinds Partners, LLC", "https://nic.fairwinds/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.fairwinds", e, w{"https://tld-rdap.verisign.com/fairwinds/v1/"}, t},
574 {"faith", r, x, 0x40, "dot Faith Limited", "https://www.famousfourmedia.com/", w{"a.nic.faith", "b.nic.faith", "c.nic.faith", "ns1.dns.nic.faith", "ns2.dns.nic.faith", "ns3.dns.nic.faith"}, n, n, w{"da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.faith", e, w{"https://rdap.nic.faith/"}, t},
577 {"faith", r, x, 0x40, "dot Faith Limited", "http://nic.faith/", w{"a.nic.faith", "b.nic.faith", "c.nic.faith", "ns1.dns.nic.faith", "ns2.dns.nic.faith", "ns3.dns.nic.faith"}, n, n, w{"da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.faith", e, w{"https://rdap.nic.faith/"}, t},
575578 {"family", r, x, 0x40, "Dog Beach, LLC", "https://identity.digital/", w{"v0n0.nic.family", "v0n1.nic.family", "v0n2.nic.family", "v0n3.nic.family", "v2n0.nic.family", "v2n1.nic.family"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.family", e, w{"https://rdap.donuts.co/rdap/"}, t},
576579 {"fan", r, x, 0x40, "Dog Beach, LLC", "https://identity.digital/", w{"v0n0.nic.fan", "v0n1.nic.fan", "v0n2.nic.fan", "v0n3.nic.fan", "v2n0.nic.fan", "v2n1.nic.fan"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.fan", e, w{"https://rdap.donuts.co/rdap/"}, t},
577580 {"fans", r, x, 0x40, "ZDNS International Limited", "http://nic.fans/", w{"a.nic.fans", "b.nic.fans", "c.nic.fans", "d.nic.fans"}, n, n, w{"ar", "mul-Latn", "zh"}, "whois.nic.fans", e, w{"https://rdap.centralnic.com/fans/"}, t},
578581 {"farm", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.farm", "v0n1.nic.farm", "v0n2.nic.farm", "v0n3.nic.farm", "v2n0.nic.farm", "v2n1.nic.farm"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.farm", e, w{"https://rdap.donuts.co/rdap/"}, t},
579 {"farmers", r, x, 0x42, "Farmers Insurance Exchange", "http://www.nic.farmers/", w{"a.nic.farmers", "b.nic.farmers", "c.nic.farmers", "ns1.dns.nic.farmers", "ns2.dns.nic.farmers", "ns3.dns.nic.farmers"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.farmers", e, w{"https://rdap.nic.farmers/"}, t},
582 {"farmers", r, x, 0x42, "Farmers Insurance Exchange", "https://www.nic.farmers/", w{"a.nic.farmers", "b.nic.farmers", "c.nic.farmers", "ns1.dns.nic.farmers", "ns2.dns.nic.farmers", "ns3.dns.nic.farmers"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.farmers", e, w{"https://rdap.nic.farmers/"}, t},
580583 {"fashion", r, x, 0x40, "Registry Services, LLC", "http://nic.fashion/", w{"a.nic.fashion", "b.nic.fashion", "c.nic.fashion", "d.nic.fashion"}, n, n, w{"de", "es", "fr", "zh"}, "whois.nic.fashion", e, w{"https://rdap.nic.fashion/"}, t},
581584 {"fast", r, x, 0x42, "Amazon Registry Services, Inc.", "https://nic.fast/", w{"dns1.nic.fast", "dns2.nic.fast", "dns3.nic.fast", "dns4.nic.fast", "dnsa.nic.fast", "dnsb.nic.fast", "dnsc.nic.fast", "dnsd.nic.fast"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.fast", e, w{"https://rdap.nominet.uk/fast/"}, t},
582 {"fedex", r, x, 0x42, "Federal Express Corporation", "https://newgtlds.icann.org/", w{"a0.nic.fedex", "a2.nic.fedex", "b0.nic.fedex", "c0.nic.fedex"}, n, n, n, "whois.nic.fedex", e, w{"https://rdap.afilias-srs.net/rdap/fedex/"}, f},
585 {"fedex", r, x, 0x42, "Federal Express Corporation", "https://www.fedex.com/en-us/shipping.html", w{"a0.nic.fedex", "a2.nic.fedex", "b0.nic.fedex", "c0.nic.fedex"}, n, n, n, "whois.nic.fedex", e, w{"https://rdap.afilias-srs.net/rdap/fedex/"}, f},
583586 {"feedback", r, x, 0x40, "Top Level Spectrum, Inc.", "http://www.nic.feedback/", w{"a.nic.feedback", "b.nic.feedback", "c.nic.feedback", "d.nic.feedback"}, n, n, w{"ar", "mul-Latn"}, "whois.nic.feedback", e, w{"https://rdap.centralnic.com/feedback/"}, t},
584 {"ferrari", r, x, 0x42, "Fiat Chrysler Automobiles N.V.", "https://newgtlds.icann.org/", w{"a0.nic.ferrari", "a2.nic.ferrari", "b0.nic.ferrari", "c0.nic.ferrari"}, n, n, n, "whois.nic.ferrari", e, w{"https://rdap.afilias-srs.net/rdap/ferrari/"}, f},
587 {"ferrari", r, x, 0x42, "Fiat Chrysler Automobiles N.V.", "https://www.icann.org/en/registry-agreements/details/ferrari", w{"a0.nic.ferrari", "a2.nic.ferrari", "b0.nic.ferrari", "c0.nic.ferrari"}, n, n, n, "whois.nic.ferrari", e, w{"https://rdap.afilias-srs.net/rdap/ferrari/"}, f},
585588 {"ferrero", r, x, 0x42, "Ferrero Trading Lux S.A.", "https://nic.ferrero/", w{"a.nic.ferrero", "b.nic.ferrero", "c.nic.ferrero", "ns1.dns.nic.ferrero", "ns2.dns.nic.ferrero", "ns3.dns.nic.ferrero"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "it", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.ferrero", e, w{"https://rdap.nic.ferrero/"}, t},
586589 {"fi", r, x, 0xa0, e, e, w{"a.fi", "b.fi", "c.fi", "d.fi", "e.fi", "f.fi", "g.fi", "h.fi", "i.fi", "j.fi"}, n, n, n, "whois.fi", e, w{"https://rdap.fi/rdap/rdap/"}, t},
587590 {"fiat", r, x, 0x42, "Fiat Chrysler Automobiles N.V.", "http://nic.fiat/", w{"a0.nic.fiat", "a2.nic.fiat", "b0.nic.fiat", "c0.nic.fiat"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/fiat/"}, f},
588591 {"fidelity", r, x, 0x42, "Fidelity Brokerage Services LLC", "https://www.fidelity.com/why-fidelity/nic", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.fidelity", e, w{"https://tld-rdap.verisign.com/fidelity/v1/"}, f},
589592 {"fido", r, x, 0x42, "Rogers Communications Canada Inc.", "https://www.fido.ca/nic", w{"a0.nic.fido", "a2.nic.fido", "b0.nic.fido", "c0.nic.fido"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/fido/"}, f},
590593 {"film", r, x, 0x40, "Motion Picture Domain Registry Pty Ltd", "http://nic.film/", w{"a.nic.film", "b.nic.film", "c.nic.film", "d.nic.film"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "he", "hi", "hu", "is", "it", "ja", "ko", "lt", "lv", "nl", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.film", e, w{"https://rdap.nic.film/"}, t},
591 {"final", r, x, 0x40, "Núcleo de Informação e Coordenação do Ponto BR - NIC.br", "https://gtlds.nic.br/", w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, w{"pt"}, "whois.gtlds.nic.br", e, w{"https://rdap.gtlds.nic.br/"}, t},
594 {"final", r, x, 0x40, "Núcleo de Informação e Coordenação do Ponto BR - NIC.br", "https://www.icann.org/en/registry-agreements/details/final", w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, w{"pt"}, "whois.gtlds.nic.br", e, w{"https://rdap.gtlds.nic.br/"}, t},
592595 {"finance", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.finance", "v0n1.nic.finance", "v0n2.nic.finance", "v0n3.nic.finance", "v2n0.nic.finance", "v2n1.nic.finance"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.finance", e, w{"https://rdap.donuts.co/rdap/"}, t},
593596 {"financial", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.financial", "v0n1.nic.financial", "v0n2.nic.financial", "v0n3.nic.financial", "v2n0.nic.financial", "v2n1.nic.financial"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.financial", e, w{"https://rdap.donuts.co/rdap/"}, t},
594 {"financialaid", r, x, 0x40, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
595 {"finish", r, x, 0x40, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
597 {"financialaid", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
598 {"finish", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
596599 {"fire", r, x, 0x42, "Amazon Registry Services, Inc.", "https://nic.fire/", w{"dns1.nic.fire", "dns2.nic.fire", "dns3.nic.fire", "dns4.nic.fire", "dnsa.nic.fire", "dnsb.nic.fire", "dnsc.nic.fire", "dnsd.nic.fire"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.fire", e, w{"https://rdap.nominet.uk/fire/"}, t},
597600 {"firestone", r, x, 0x42, "Bridgestone Licensing Services, Inc", "https://nic.firestone/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ja"}, "whois.nic.firestone", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
598601 {"firmdale", r, x, 0x42, "Firmdale Holdings Limited", "http://nic.firmdale/", w{"ns1.nic.firmdale", "ns2.nic.firmdale"}, n, n, n, "whois.nic.firmdale", e, w{"https://rdap.nic.firmdale/"}, f},
607610 {"flir", r, x, 0x42, "FLIR Systems, Inc.", "http://nic.flir/", w{"a.nic.flir", "b.nic.flir", "c.nic.flir", "ns1.dns.nic.flir", "ns2.dns.nic.flir", "ns3.dns.nic.flir"}, n, n, n, "whois.nic.flir", e, w{"https://rdap.nic.flir/"}, f},
608611 {"florist", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.florist", "v0n1.nic.florist", "v0n2.nic.florist", "v0n3.nic.florist", "v2n0.nic.florist", "v2n1.nic.florist"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.florist", e, w{"https://rdap.donuts.co/rdap/"}, t},
609612 {"flowers", r, x, 0x40, "XYZ.COM LLC", "https://nic.flowers/", w{"a.nic.flowers", "b.nic.flowers", "c.nic.flowers", "d.nic.flowers"}, n, n, w{"de", "es", "fr", "it", "ja", "mul-Cyrl", "pt", "zh"}, "whois.nic.flowers", e, w{"https://rdap.centralnic.com/flowers/"}, t},
610 {"fls", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
611 {"flsmidth", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.ksregistry.net", e, n, f},
613 {"fls", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
614 {"flsmidth", r, x, 0x842, e, e, n, n, n, n, "whois.ksregistry.net", e, n, f},
612615 {"fly", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
613616 {"fm", r, z[2448:2454], 0xe0, e, "https://dot.fm/", w{"a.nic.fm", "b.nic.fm", "c.nic.fm", "d.nic.fm", "e.nic.fm", "f.nic.fm"}, n, n, n, "whois.nic.fm", e, w{"https://rdap.centralnic.com/fm/"}, t},
614617 {"fo", r, z[2454:2476], 0xa0, e, e, w{"a.nic.fo", "b.nic.fo", "c.nic.fo", "d.nic.fo"}, n, n, n, "whois.nic.fo", e, w{"https://rdap.centralnic.com/fo/"}, f},
615 {"foo", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
616 {"food", r, x, 0x42, "Lifestyle Domain Holdings, Inc.", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.food", e, w{"https://tld-rdap.verisign.com/food/v1/"}, f},
617 {"foodnetwork", r, x, 0x42, "Lifestyle Domain Holdings, Inc.", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.foodnetwork", e, w{"https://tld-rdap.verisign.com/foodnetwork/v1/"}, f},
618 {"foo", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.foo", e, w{"https://www.registry.google/rdap/"}, t},
619 {"food", r, x, 0x42, "Lifestyle Domain Holdings, Inc.", "https://www.icann.org/en/registry-agreements/details/food", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.food", e, w{"https://tld-rdap.verisign.com/food/v1/"}, f},
620 {"foodnetwork", r, x, 0x42, "Lifestyle Domain Holdings, Inc.", "https://www.icann.org/en/registry-agreements/details/foodnetwork", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.foodnetwork", e, w{"https://tld-rdap.verisign.com/foodnetwork/v1/"}, f},
618621 {"football", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.football", "v0n1.nic.football", "v0n2.nic.football", "v0n3.nic.football", "v2n0.nic.football", "v2n1.nic.football"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.football", e, w{"https://rdap.donuts.co/rdap/"}, t},
619622 {"ford", r, x, 0x42, "Ford Motor Company", "https://nic.ford/", w{"a.nic.ford", "b.nic.ford", "c.nic.ford", "ns1.dns.nic.ford", "ns2.dns.nic.ford", "ns3.dns.nic.ford"}, n, n, w{"da", "fr", "pl", "ru", "sv", "zh"}, "whois.nic.ford", e, w{"https://rdap.nic.ford/"}, t},
620 {"forex", r, x, 0x40, "Dog Beach, LLC", "https://bostonivy.co/", w{"v0n0.nic.forex", "v0n1.nic.forex", "v0n2.nic.forex", "v0n3.nic.forex", "v2n0.nic.forex", "v2n1.nic.forex"}, n, n, n, "whois.nic.forex", e, w{"https://rdap.donuts.co/rdap/"}, f},
623 {"forex", r, x, 0x40, "Dog Beach, LLC", "http://nic.forex/", w{"v0n0.nic.forex", "v0n1.nic.forex", "v0n2.nic.forex", "v0n3.nic.forex", "v2n0.nic.forex", "v2n1.nic.forex"}, n, n, n, "whois.nic.forex", e, w{"https://rdap.donuts.co/rdap/"}, f},
621624 {"forsale", r, x, 0x40, "Dog Beach, LLC", "https://identity.digital/", w{"v0n0.nic.forsale", "v0n1.nic.forsale", "v0n2.nic.forsale", "v0n3.nic.forsale", "v2n0.nic.forsale", "v2n1.nic.forsale"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.forsale", e, w{"https://rdap.donuts.co/rdap/"}, t},
622 {"forum", r, x, 0x40, "Fegistry, LLC", "http://nic.forum/", w{"a.nic.forum", "b.nic.forum", "c.nic.forum", "d.nic.forum"}, n, n, w{"ar"}, "whois.nic.forum", e, w{"https://rdap.centralnic.com/forum/"}, t},
625 {"forum", r, x, 0x40, "Fegistry, LLC", "https://www.icann.org/en/registry-agreements/details/forum", w{"a.nic.forum", "b.nic.forum", "c.nic.forum", "d.nic.forum"}, n, n, w{"ar"}, "whois.nic.forum", e, w{"https://rdap.centralnic.com/forum/"}, t},
623626 {"foundation", r, x, 0x40, "Public Interest Registry", e, w{"v0n0.nic.foundation", "v0n1.nic.foundation", "v0n2.nic.foundation", "v0n3.nic.foundation", "v2n0.nic.foundation", "v2n1.nic.foundation"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.foundation", e, w{"https://rdap.publicinterestregistry.org/rdap/"}, t},
624627 {"fox", r, x, 0x42, "FOX Registry, LLC", "https://www.nic.fox/", w{"a.nic.fox", "b.nic.fox", "c.nic.fox", "ns1.dns.nic.fox", "ns2.dns.nic.fox", "ns3.dns.nic.fox"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.fox", e, w{"https://rdap.nic.fox/"}, t},
625628 {"fr", r, z[2476:2494], 0xa0, e, e, w{"d.nic.fr", "e.ext.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, n, "whois.nic.fr", e, w{"https://rdap.nic.fr/"}, t},
627630 {"fresenius", r, x, 0x42, "Fresenius Immobilien-Verwaltungs-GmbH", "https://nic.fresenius/", w{"a.nic.fresenius", "b.nic.fresenius", "c.nic.fresenius", "d.nic.fresenius"}, n, n, w{"de"}, "whois.nic.fresenius", e, w{"https://rdap.centralnic.com/fresenius/"}, t},
628631 {"frl", r, x, 0x440, "FRLregistry B.V.", "https://nic.frl/", w{"a.nic.frl", "b.nic.frl", "c.nic.frl", "d.nic.frl"}, n, w{"NL-FY"}, w{"mul-Latn"}, "whois.nic.frl", e, w{"https://rdap.centralnic.com/frl/"}, t},
629632 {"frogans", r, x, 0x42, "OP3FT", "https://nic.frogans/en/main.html", w{"a0.nic.frogans", "a2.nic.frogans", "b0.nic.frogans", "c0.nic.frogans"}, n, n, w{"mul-Latn"}, "whois.nic.frogans", e, w{"https://rdap.afilias-srs.net/rdap/frogans/"}, t},
630 {"frontdoor", r, x, 0x42, "Lifestyle Domain Holdings, Inc.", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.frontdoor", e, w{"https://tld-rdap.verisign.com/frontdoor/v1/"}, f},
633 {"frontdoor", r, x, 0x42, "Lifestyle Domain Holdings, Inc.", "https://www.icann.org/en/registry-agreements/details/frontdoor", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.frontdoor", e, w{"https://tld-rdap.verisign.com/frontdoor/v1/"}, f},
631634 {"frontier", r, x, 0x42, "Frontier Communications Corporation", "http://nic.frontier/", w{"a.nic.frontier", "b.nic.frontier", "c.nic.frontier", "ns1.dns.nic.frontier", "ns2.dns.nic.frontier", "ns3.dns.nic.frontier"}, n, n, n, "whois.nic.frontier", e, w{"https://rdap.nic.frontier/"}, f},
632635 {"ftr", r, x, 0x42, "Frontier Communications Corporation", "http://nic.ftr/", w{"a.nic.ftr", "b.nic.ftr", "c.nic.ftr", "ns1.dns.nic.ftr", "ns2.dns.nic.ftr", "ns3.dns.nic.ftr"}, n, n, n, "whois.nic.ftr", e, w{"https://rdap.nic.ftr/"}, f},
633636 {"fujitsu", r, x, 0x42, "Fujitsu Limited", "https://nic.fujitsu/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ja"}, "whois.nic.gmo", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
634 {"fujixerox", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.fujixerox", e, n, t},
637 {"fujixerox", r, x, 0x842, e, e, n, n, n, n, "whois.nic.fujixerox", e, n, t},
635638 {"fun", r, x, 0x40, "Radix FZC", "https://radix.website/dot-fun", w{"a.nic.fun", "b.nic.fun", "e.nic.fun", "f.nic.fun"}, n, n, w{"ar", "he", "ja", "ko", "lo", "mul-Cyrl", "mul-Grek", "mul-Latn", "th", "zh"}, "whois.nic.fun", e, w{"https://rdap.centralnic.com/fun/"}, t},
636639 {"fund", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.fund", "v0n1.nic.fund", "v0n2.nic.fund", "v0n3.nic.fund", "v2n0.nic.fund", "v2n1.nic.fund"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.fund", e, w{"https://rdap.donuts.co/rdap/"}, t},
637640 {"furniture", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.furniture", "v0n1.nic.furniture", "v0n2.nic.furniture", "v0n3.nic.furniture", "v2n0.nic.furniture", "v2n1.nic.furniture"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.furniture", e, w{"https://rdap.donuts.co/rdap/"}, t},
640643 {"ga", r, z[2494:2507], 0xa0, e, e, w{"a.ns.ga", "b.ns.ga", "c.ns.ga", "d.ns.ga"}, n, n, n, "whois.dot.ga", e, n, t},
641644 {"gal", r, x, 0x4c0, "Asociación puntoGAL", e, w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, w{"ES-GA"}, w{"mul-Latn"}, "whois.nic.gal", e, w{"https://rdap.nic.gal/"}, t},
642645 {"gallery", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.gallery", "v0n1.nic.gallery", "v0n2.nic.gallery", "v0n3.nic.gallery", "v2n0.nic.gallery", "v2n1.nic.gallery"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.gallery", e, w{"https://rdap.donuts.co/rdap/"}, t},
643 {"gallo", r, x, 0x42, "Gallo Vineyards, Inc.", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.gallo", e, w{"https://tld-rdap.verisign.com/gallo/v1/"}, f},
646 {"gallo", r, x, 0x42, "Gallo Vineyards, Inc.", "https://www.icann.org/en/registry-agreements/details/gallo", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.gallo", e, w{"https://tld-rdap.verisign.com/gallo/v1/"}, f},
644647 {"gallup", r, x, 0x42, "Gallup, Inc.", "http://nic.gallup/home.aspx", w{"a0.nic.gallup", "a2.nic.gallup", "b0.nic.gallup", "c0.nic.gallup"}, n, n, n, "whois.nic.gallup", e, w{"https://rdap.afilias-srs.net/rdap/gallup/"}, f},
645648 {"game", r, x, 0x40, "XYZ.COM LLC", "https://nic.game/", w{"a.nic.game", "b.nic.game", "c.nic.game", "d.nic.game"}, n, n, w{"de", "es", "fr", "it", "ja", "mul-Cyrl", "pt", "zh"}, "whois.nic.game", e, w{"https://rdap.centralnic.com/game/"}, t},
646649 {"games", r, x, 0x40, "Dog Beach, LLC", "https://identity.digital/", w{"v0n0.nic.games", "v0n1.nic.games", "v0n2.nic.games", "v0n3.nic.games", "v2n0.nic.games", "v2n1.nic.games"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.games", e, w{"https://rdap.donuts.co/rdap/"}, t},
647650 {"gap", r, x, 0x42, "The Gap, Inc.", "https://www.nic.gap/", w{"a.nic.gap", "b.nic.gap", "c.nic.gap", "ns1.dns.nic.gap", "ns2.dns.nic.gap", "ns3.dns.nic.gap"}, n, n, w{"es"}, "whois.nic.gap", e, w{"https://rdap.nic.gap/"}, t},
648651 {"garden", r, x, 0x40, "Registry Services, LLC", "http://nic.garden/", w{"a.nic.garden", "b.nic.garden", "c.nic.garden", "d.nic.garden"}, n, n, w{"de", "es", "fr"}, "whois.nic.garden", e, w{"https://rdap.nic.garden/"}, t},
649 {"garnier", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
650 {"gay", r, x, 0x40, "Top Level Design, LLC", "https://newgtlds.icann.org/", w{"a.nic.gay", "b.nic.gay", "c.nic.gay", "d.nic.gay"}, n, n, w{"ar", "he", "ja", "ko", "lo", "mul-Cyrl", "mul-Grek", "mul-Latn", "th", "zh"}, "whois.nic.gay", e, w{"https://rdap.nic.gay/"}, t},
652 {"garnier", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
653 {"gay", r, x, 0x40, "Top Level Design, LLC", "https://www.icann.org/en/registry-agreements/details/gay", w{"a.nic.gay", "b.nic.gay", "c.nic.gay", "d.nic.gay"}, n, n, w{"ar", "he", "ja", "ko", "lo", "mul-Cyrl", "mul-Grek", "mul-Latn", "th", "zh"}, "whois.nic.gay", e, w{"https://rdap.nic.gay/"}, t},
651654 {"gb", r, z[2507:2508], 0xa8, e, e, w{"ns.uu.net", "ns0.ja.net", "ns4.ja.net"}, n, n, n, e, e, n, f},
652655 {"gbiz", r, x, 0x42, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
653 {"gcc", r, x, 0x40, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
656 {"gcc", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
654657 {"gd", r, z[2508:2515], 0xa0, e, e, w{"a.nic.gd", "b.nic.gd", "c.nic.gd", "d.nic.gd"}, n, n, n, "whois.nic.gd", e, w{"https://rdap.centralnic.com/gd/"}, f},
655658 {"gdn", r, x, 0x42, "Joint Stock Company \"Navigation-information systems\"", "http://nic.gdn/", w{"ns1.nic.gdn", "ns3.nic.gdn", "ns4.nic.gdn"}, n, n, n, "whois.nic.gdn", e, w{"https://rdap.nic.gdn/"}, f},
656659 {"ge", r, z[2515:2523], 0xa0, e, "https://nic.ge/", w{"ge.hostmaster.ua", "ns.nic.ge", "ns.uu.net", "ns2.nic.fr", "ns2.nic.ge"}, n, n, n, "whois.nic.ge", e, n, f},
657660 {"gea", r, x, 0x42, "GEA Group Aktiengesellschaft", "https://nic.gea/", w{"a.dns.nic.gea", "m.dns.nic.gea", "n.dns.nic.gea"}, n, n, w{"be", "bg", "bs", "da", "de", "es", "hu", "is", "ko", "lt", "lv", "mk", "pl", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.gea", e, w{"https://rdap.nic.gea/"}, t},
658 {"gecompany", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
659 {"ged", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
661 {"gecompany", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
662 {"ged", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
660663 {"gent", r, x, 0xc4, "Easyhost BV", e, w{"a.nic.gent", "b.nic.gent", "c.nic.gent", "d.nic.gent"}, n, w{"Gent", "Ghent"}, n, "whois.nic.gent", e, w{"https://rdap.centralnic.com/gent/"}, t},
661 {"genting", r, x, 0x42, "Resorts World Inc Pte. Ltd.", "http://nic.genting/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.genting", e, w{"https://tld-rdap.verisign.com/genting/v1/"}, t},
662 {"george", r, x, 0x42, "Wal-Mart Stores, Inc.", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.george", e, w{"https://tld-rdap.verisign.com/george/v1/"}, f},
664 {"genting", r, x, 0x42, "Resorts World Inc Pte. Ltd.", "https://www.icann.org/en/registry-agreements/details/genting", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.genting", e, w{"https://tld-rdap.verisign.com/genting/v1/"}, t},
665 {"george", r, x, 0x42, "Wal-Mart Stores, Inc.", "https://www.icann.org/en/registry-agreements/details/george", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.george", e, w{"https://tld-rdap.verisign.com/george/v1/"}, f},
663666 {"gf", r, x, 0xa0, e, "https://www.dom-enic.com/", w{"ns1-fr.mediaserv.net", "ns1-gp.mediaserv.net", "ns1-mq.mediaserv.net"}, n, n, n, "whois.mediaserv.net", e, n, f},
664667 {"gg", r, z[2523:2534], 0xa0, e, e, w{"c.ci-servers.org", "dns1.nominetdns.uk", "dns2.nominetdns.uk", "dns3.nominetdns.uk", "dns4.nominetdns.uk", "e.ci-servers.net"}, n, n, n, "whois.gg", e, n, f},
665668 {"ggee", r, x, 0x42, "GMO Internet, Inc.", "https://nic.ggee/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"es", "fr", "ja", "ko", "pl", "pt"}, "whois.nic.ggee", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
666669 {"gh", r, z[2534:2540], 0xa8, e, e, w{"ns.dns.br", "ns1.nic.gh", "ns2.nic.gh"}, n, n, n, e, "http://www.nic.gh/customer/search_c.htm", n, f},
667670 {"gi", r, z[2540:2546], 0xa0, e, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, n, "whois2.afilias-grs.net", e, n, f},
668 {"gift", r, x, 0x40, "DotGift, LLC", "https://uniregistry.link/extensions/gift/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, w{"de", "es", "fr", "it", "ja", "mul-Cyrl", "pt", "zh"}, "whois.uniregistry.net", e, w{"https://whois.uniregistry.net/rdap/"}, t},
671 {"gift", r, x, 0x40, "DotGift, LLC", "https://uniregistry.link/extensions/gift/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, w{"de", "es", "fr", "it", "ja", "mul-Cyrl", "pt", "zh"}, "whois.nic.gift", e, w{"https://whois.uniregistry.net/rdap/"}, t},
669672 {"gifts", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.gifts", "v0n1.nic.gifts", "v0n2.nic.gifts", "v0n3.nic.gifts", "v2n0.nic.gifts", "v2n1.nic.gifts"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.gifts", e, w{"https://rdap.donuts.co/rdap/"}, t},
670673 {"gives", r, x, 0x40, "Public Interest Registry", "https://thenew.org/org-people/work-with-us/contact/", w{"v0n0.nic.gives", "v0n1.nic.gives", "v0n2.nic.gives", "v0n3.nic.gives", "v2n0.nic.gives", "v2n1.nic.gives"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.gives", e, w{"https://rdap.publicinterestregistry.org/rdap/"}, t},
671674 {"giving", r, x, 0x40, "Public Interest Registry", "https://thenew.org/org-people/work-with-us/contact/", w{"a0.nic.giving", "a2.nic.giving", "b0.nic.giving", "b2.nic.giving", "c0.nic.giving", "d0.nic.giving"}, n, n, n, "whois.nic.giving", e, w{"https://rdap.publicinterestregistry.org/rdap/"}, f},
672675 {"gl", r, z[2546:2552], 0xa0, e, e, w{"a.nuuk.nic.gl", "d.nic.gl", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, "whois.nic.gl", e, n, t},
673 {"glade", r, x, 0x842, "Johnson Shareholdings, Inc.", "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.glade", e, w{"https://tld-rdap.verisign.com/glade/v1/"}, f},
676 {"glade", r, x, 0x842, "Johnson Shareholdings, Inc.", e, n, n, n, n, "whois.nic.glade", e, w{"https://tld-rdap.verisign.com/glade/v1/"}, f},
674677 {"glass", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.glass", "v0n1.nic.glass", "v0n2.nic.glass", "v0n3.nic.glass", "v2n0.nic.glass", "v2n1.nic.glass"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.glass", e, w{"https://rdap.donuts.co/rdap/"}, t},
675678 {"gle", r, x, 0x42, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
676679 {"global", r, x, 0x40, "Dot Global Domain Registry Limited", e, w{"a0.nic.global", "a2.nic.global", "b0.nic.global", "c0.nic.global"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hr", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "tr", "uk", "zh-CN", "zh-TW"}, "whois.nic.global", e, w{"https://rdap.donuts.co/rdap/"}, t},
677 {"globalx", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
680 {"globalx", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
678681 {"globo", r, x, 0x42, "Globo Comunicação e Participações S.A", "https://nic.globo/", w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, w{"pt"}, "whois.gtlds.nic.br", e, w{"https://rdap.gtlds.nic.br/"}, t},
679682 {"gm", r, x, 0xa0, e, e, w{"ns-gm.afrinic.net", "ns1.nic.gm", "ns2.nic.gm"}, n, n, n, e, "http://www.nic.gm/htmlpages/whois.htm", n, f},
680683 {"gmail", r, x, 0x42, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
681684 {"gmbh", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.gmbh", "v0n1.nic.gmbh", "v0n2.nic.gmbh", "v0n3.nic.gmbh", "v2n0.nic.gmbh", "v2n1.nic.gmbh"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.gmbh", e, w{"https://rdap.donuts.co/rdap/"}, t},
682 {"gmc", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
685 {"gmc", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
683686 {"gmo", r, x, 0x42, "GMO Internet, Inc.", "https://nic.gmo/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"es", "fr", "ja", "ko", "pl", "pt"}, "whois.nic.gmo", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
684 {"gmx", r, x, 0x42, "1&1 Mail & Media GmbH", "https://newgtlds.icann.org/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, w{"de"}, "whois.nic.gmx", e, w{"https://rdap.nic.gmx/"}, t},
687 {"gmx", r, x, 0x42, "1&1 Mail & Media GmbH", "https://www.icann.org/en/registry-agreements/details/gmx", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, w{"de"}, "whois.nic.gmx", e, w{"https://rdap.nic.gmx/"}, t},
685688 {"gn", r, z[2552:2558], 0xa8, e, e, w{"fork.sth.dnsnode.net", "ns-gn.afrinic.net", "rip.psg.com"}, n, n, n, e, e, n, f},
686689 {"godaddy", r, x, 0x42, "Go Daddy East, LLC", "https://www.godaddy.com/help/about-godaddy-domains-24085", w{"a.nic.godaddy", "b.nic.godaddy", "c.nic.godaddy", "x.nic.godaddy", "y.nic.godaddy", "z.nic.godaddy"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.godaddy", e, w{"https://rdap.nic.godaddy/"}, t},
687690 {"gold", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.gold", "v0n1.nic.gold", "v0n2.nic.gold", "v0n3.nic.gold", "v2n0.nic.gold", "v2n1.nic.gold"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.gold", e, w{"https://rdap.donuts.co/rdap/"}, t},
688691 {"goldpoint", r, x, 0x42, "YODOBASHI CAMERA CO.,LTD.", "https://nic.goldpoint/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ja"}, "whois.nic.goldpoint", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
689692 {"golf", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.golf", "v0n1.nic.golf", "v0n2.nic.golf", "v0n3.nic.golf", "v2n0.nic.golf", "v2n1.nic.golf"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.golf", e, w{"https://rdap.donuts.co/rdap/"}, t},
690693 {"goo", r, x, 0x42, "NTT Resonant Inc.", "https://nic.goo/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ja"}, "whois.nic.gmo", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
691 {"goodhands", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.afilias-srs.net", e, n, f},
694 {"goodhands", r, x, 0x842, e, e, n, n, n, n, "whois.afilias-srs.net", e, n, f},
692695 {"goodyear", r, x, 0x42, "The Goodyear Tire & Rubber Company", "https://nic.goodyear/", w{"a0.nic.goodyear", "a2.nic.goodyear", "b0.nic.goodyear", "c0.nic.goodyear"}, n, n, n, "whois.nic.goodyear", e, w{"https://rdap.afilias-srs.net/rdap/goodyear/"}, f},
693696 {"goog", r, x, 0x42, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
694697 {"google", r, x, 0x42, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"ja", "mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
695698 {"gop", r, x, 0x40, "Republican State Leadership Committee, Inc.", "https://www.join.gop/", w{"dns1.nic.gop", "dns2.nic.gop", "dns3.nic.gop", "dns4.nic.gop", "dnsa.nic.gop", "dnsb.nic.gop", "dnsc.nic.gop", "dnsd.nic.gop"}, n, n, w{"es"}, "whois.nic.gop", e, w{"https://rdap.nominet.uk/gop/"}, t},
696699 {"got", r, x, 0x42, "Amazon Registry Services, Inc.", "https://nic.got/", w{"dns1.nic.got", "dns2.nic.got", "dns3.nic.got", "dns4.nic.got", "dnsa.nic.got", "dnsb.nic.got", "dnsc.nic.got", "dnsd.nic.got"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.got", e, w{"https://rdap.nominet.uk/got/"}, t},
697 {"gotv", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
698 {"gov", r, x, 0x1040, e, e, w{"a.gov-servers.net", "b.gov-servers.net", "c.gov-servers.net", "d.gov-servers.net"}, n, n, n, "whois.dotgov.gov", e, n, f},
700 {"gotv", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
701 {"gov", r, x, 0x1040, e, e, w{"a.gov-servers.net", "b.gov-servers.net", "c.gov-servers.net", "d.gov-servers.net"}, n, n, n, "whois.nic.gov", e, n, f},
699702 {"gp", r, z[2558:2569], 0xa0, e, "https://www.nic.gp/", w{"a.lactld.org", "gp.cctld.authdns.ripe.net", "ns-gp.nic.fr", "ns1.nic.gp", "ns2.nic.gp"}, n, n, n, "whois.nic.gp", e, n, f},
700703 {"gq", r, x, 0xa0, e, e, w{"a.ns.gq", "b.ns.gq", "c.ns.gq", "d.ns.gq"}, n, n, n, "whois.dominio.gq", e, n, t},
701704 {"gr", r, z[2569:2574], 0xa0, e, e, w{"estia.ics.forth.gr", "gr-at.ics.forth.gr", "gr-c.ics.forth.gr", "gr-d.ics.forth.gr", "gr-m.ics.forth.gr", "grdns.ics.forth.gr"}, n, n, n, e, "https://grweb.ics.forth.gr/", n, t},
702705 {"grainger", r, x, 0x42, "Grainger Registry Services, LLC", "http://nic.grainger/", w{"a.nic.grainger", "b.nic.grainger", "c.nic.grainger", "ns1.dns.nic.grainger", "ns2.dns.nic.grainger", "ns3.dns.nic.grainger"}, n, n, w{"es"}, "whois.nic.grainger", e, w{"https://rdap.nic.grainger/"}, t},
703706 {"graphics", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.graphics", "v0n1.nic.graphics", "v0n2.nic.graphics", "v0n3.nic.graphics", "v2n0.nic.graphics", "v2n1.nic.graphics"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.graphics", e, w{"https://rdap.donuts.co/rdap/"}, t},
704707 {"gratis", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.gratis", "v0n1.nic.gratis", "v0n2.nic.gratis", "v0n3.nic.gratis", "v2n0.nic.gratis", "v2n1.nic.gratis"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.gratis", e, w{"https://rdap.donuts.co/rdap/"}, t},
705 {"gree", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
706 {"green", r, x, 0x40, "Identity Digital Limited", "https://get.green/", w{"a0.nic.green", "a2.nic.green", "b0.nic.green", "c0.nic.green"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.green", e, w{"https://rdap.donuts.co/rdap/"}, t},
708 {"gree", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
709 {"green", r, x, 0x40, "Identity Digital Limited", "http://nic.green/", w{"a0.nic.green", "a2.nic.green", "b0.nic.green", "c0.nic.green"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.green", e, w{"https://rdap.donuts.co/rdap/"}, t},
707710 {"gripe", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.gripe", "v0n1.nic.gripe", "v0n2.nic.gripe", "v0n3.nic.gripe", "v2n0.nic.gripe", "v2n1.nic.gripe"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.gripe", e, w{"https://rdap.donuts.co/rdap/"}, t},
708 {"grocery", r, x, 0x40, "Wal-Mart Stores, Inc.", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, w{"https://tld-rdap.verisign.com/grocery/v1/"}, f},
711 {"grocery", r, x, 0x40, "Wal-Mart Stores, Inc.", "https://www.icann.org/en/registry-agreements/details/grocery", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, w{"https://tld-rdap.verisign.com/grocery/v1/"}, f},
709712 {"group", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.group", "v0n1.nic.group", "v0n2.nic.group", "v0n3.nic.group", "v2n0.nic.group", "v2n1.nic.group"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.group", e, w{"https://rdap.donuts.co/rdap/"}, t},
710713 {"gs", r, x, 0xa0, e, e, w{"ns.anycast.nic.gs", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, "whois.nic.gs", e, n, f},
711714 {"gt", r, z[2574:2581], 0xa0, e, e, w{"a.lactld.org", "gt.anycastdns.cz", "ns-cz.gt", "ns.dns.br", "pch.gt", "ssdns-tld.nic.cl"}, n, n, n, e, "http://www.gt/", n, f},
712 {"gu", r, z[2581:2588], 0xa0, e, "http://gadao.gov.gu/", w{"gold.uog.edu", "green.uog.edu", "gu.cctld.authdns.ripe.net", "phloem.uoregon.edu"}, n, n, n, e, "http://gadao.gov.gu/domainsearch.htm", n, f},
713 {"guardian", r, x, 0x42, "The Guardian Life Insurance Company of America", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, w{"https://tld-rdap.verisign.com/guardian/v1/"}, f},
714 {"guardianlife", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
715 {"guardianmedia", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
715 {"gu", r, z[2581:2588], 0xa0, e, "https://www.iana.org/domains/root/db/gu.html", w{"gold.uog.edu", "green.uog.edu", "gu.cctld.authdns.ripe.net", "phloem.uoregon.edu"}, n, n, n, e, "http://gadao.gov.gu/domainsearch.htm", n, f},
716 {"guardian", r, x, 0x42, "The Guardian Life Insurance Company of America", "https://www.icann.org/en/registry-agreements/details/guardian", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, w{"https://tld-rdap.verisign.com/guardian/v1/"}, f},
717 {"guardianlife", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
718 {"guardianmedia", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
716719 {"gucci", r, x, 0x42, "Guccio Gucci S.p.a.", "http://nic.gucci/", w{"dns1.nic.gucci", "dns2.nic.gucci", "dns3.nic.gucci", "dns4.nic.gucci", "dnsa.nic.gucci", "dnsb.nic.gucci", "dnsc.nic.gucci", "dnsd.nic.gucci"}, n, n, w{"ar", "da", "de", "es", "fi", "hu", "is", "it", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.gucci", e, w{"https://rdap.nominet.uk/gucci/"}, t},
717720 {"guge", r, x, 0x42, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
718721 {"guide", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.guide", "v0n1.nic.guide", "v0n2.nic.guide", "v0n3.nic.guide", "v2n0.nic.guide", "v2n1.nic.guide"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.guide", e, w{"https://rdap.donuts.co/rdap/"}, t},
721724 {"gw", r, x, 0xa0, e, e, w{"gw01.dns.pt", "gw03.dns.pt", "h.dns.pt"}, n, n, n, e, "http://nic.gw/en/whois/", n, f},
722725 {"gy", r, z[2588:2592], 0xa0, e, e, w{"a.lactld.org", "gy-ns.anycast.pch.net"}, n, n, n, "whois.registry.gy", e, n, f},
723726 {"hair", r, x, 0x40, "XYZ.COM LLC", "https://nic.hair/", w{"a.nic.hair", "b.nic.hair", "c.nic.hair", "d.nic.hair"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.hair", e, w{"https://rdap.centralnic.com/hair/"}, t},
724 {"halal", r, x, 0x40, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
725 {"hamburg", r, x, 0xc4, "Hamburg Top-Level-Domain GmbH", e, w{"a.dns.nic.hamburg", "m.dns.nic.hamburg", "n.dns.nic.hamburg"}, n, w{"Hamburg", "DE-HH"}, w{"mul-Latn"}, "whois.nic.hamburg", e, w{"https://rdap.nic.hamburg/v1/"}, t},
727 {"halal", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
728 {"hamburg", r, x, 0xc4, "Hamburg Top-Level-Domain GmbH", e, w{"a.dns.nic.hamburg", "m.dns.nic.hamburg", "n.dns.nic.hamburg"}, n, w{"Hamburg", "DE-HH"}, w{"mul-Cyrl", "mul-Latn"}, "whois.nic.hamburg", e, w{"https://rdap.nic.hamburg/v1/"}, t},
726729 {"hangout", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
727730 {"haus", r, x, 0x40, "Dog Beach, LLC", e, w{"v0n0.nic.haus", "v0n1.nic.haus", "v0n2.nic.haus", "v0n3.nic.haus", "v2n0.nic.haus", "v2n1.nic.haus"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.haus", e, w{"https://rdap.donuts.co/rdap/"}, t},
728731 {"hbo", r, x, 0x42, "HBO Registry Services, Inc.", "http://nic.hbo/", w{"a.nic.hbo", "b.nic.hbo", "c.nic.hbo", "ns1.dns.nic.hbo", "ns2.dns.nic.hbo", "ns3.dns.nic.hbo"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.hbo", e, w{"https://rdap.nic.hbo/"}, t},
729732 {"hdfc", r, x, 0x42, "HOUSING DEVELOPMENT FINANCE CORPORATION LIMITED", "http://nic.hdfc/", w{"a0.nic.hdfc", "a2.nic.hdfc", "b0.nic.hdfc", "c0.nic.hdfc"}, n, n, n, "whois.nic.hdfc", e, w{"https://rdap.afilias-srs.net/rdap/hdfc/"}, f},
730 {"hdfcbank", r, x, 0x42, "HDFC Bank Limited", "https://newgtlds.icann.org/", w{"a0.nic.hdfcbank", "a2.nic.hdfcbank", "b0.nic.hdfcbank", "c0.nic.hdfcbank"}, n, n, n, "whois.nic.hdfcbank", e, w{"https://rdap.afilias-srs.net/rdap/hdfcbank/"}, f},
731 {"health", r, x, 0x40, "DotHealth, LLC", "https://newgtlds.icann.org/", w{"a.nic.health", "b.nic.health", "c.nic.health", "ns1.dns.nic.health", "ns2.dns.nic.health", "ns3.dns.nic.health"}, n, n, w{"es"}, "whois.nic.health", e, w{"https://rdap.nic.health/"}, t},
733 {"hdfcbank", r, x, 0x42, "HDFC Bank Limited", "https://www.icann.org/en/registry-agreements/details/hdfcbank", w{"a0.nic.hdfcbank", "a2.nic.hdfcbank", "b0.nic.hdfcbank", "c0.nic.hdfcbank"}, n, n, n, "whois.nic.hdfcbank", e, w{"https://rdap.afilias-srs.net/rdap/hdfcbank/"}, f},
734 {"health", r, x, 0x40, "DotHealth, LLC", "https://www.icann.org/en/registry-agreements/details/health", w{"a.nic.health", "b.nic.health", "c.nic.health", "ns1.dns.nic.health", "ns2.dns.nic.health", "ns3.dns.nic.health"}, n, n, w{"es"}, "whois.nic.health", e, w{"https://rdap.nic.health/"}, t},
732735 {"healthcare", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.healthcare", "v0n1.nic.healthcare", "v0n2.nic.healthcare", "v0n3.nic.healthcare", "v2n0.nic.healthcare", "v2n1.nic.healthcare"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.healthcare", e, w{"https://rdap.donuts.co/rdap/"}, t},
733 {"heart", r, x, 0x2040, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
734 {"heinz", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
736 {"heart", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
737 {"heinz", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
735738 {"help", r, x, 0x40, "Innovation service Limited", "https://uniregistry.link/extensions/help/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, w{"de", "es", "fr", "it", "ja", "mul-Cyrl", "pt", "zh"}, "whois.nic.help", e, w{"https://whois.uniregistry.net/rdap/"}, t},
736739 {"helsinki", r, x, 0x40, "City of Helsinki", "https://www.hel.fi/Helsinki/en/administration/information/information/nic.helsinki/", w{"a0.nic.helsinki", "a2.nic.helsinki", "b0.nic.helsinki", "c0.nic.helsinki"}, n, n, w{"fi", "sv"}, "whois.nic.helsinki", e, w{"https://rdap.afilias-srs.net/rdap/helsinki/"}, t},
737740 {"here", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
738741 {"hermes", r, x, 0x42, "HERMES INTERNATIONAL", "http://www.nic.hermes/index.php", w{"a0.nic.hermes", "a2.nic.hermes", "b0.nic.hermes", "c0.nic.hermes"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/hermes/"}, f},
739 {"hgtv", r, x, 0x42, "Lifestyle Domain Holdings, Inc.", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.hgtv", e, w{"https://tld-rdap.verisign.com/hgtv/v1/"}, f},
740 {"hilton", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
742 {"hgtv", r, x, 0x42, "Lifestyle Domain Holdings, Inc.", "https://www.icann.org/en/registry-agreements/details/hgtv", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.hgtv", e, w{"https://tld-rdap.verisign.com/hgtv/v1/"}, f},
743 {"hilton", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
741744 {"hiphop", r, x, 0x40, "Dot Hip Hop, LLC", "https://get.hiphop/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, w{"de", "es", "fr", "it", "ja", "mul-Cyrl", "pt", "zh"}, "whois.nic.hiphop", e, w{"https://whois.uniregistry.net/rdap/"}, t},
742745 {"hisamitsu", r, x, 0x42, "Hisamitsu Pharmaceutical Co.,Inc.", "https://nic.hisamitsu/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ja"}, "whois.nic.gmo", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
743746 {"hitachi", r, x, 0x42, "Hitachi, Ltd.", "https://nic.hitachi/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"es", "fr", "ja", "ko", "pl", "pt"}, "whois.nic.gmo", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
744747 {"hiv", r, x, 0x40, "Internet Naming Company LLC", "https://uniregistry.link/extensions/hiv/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, w{"de", "es", "fr", "it", "mul-Cyrl", "pt", "zh"}, "whois.uniregistry.net", e, w{"https://whois.uniregistry.net/rdap/"}, t},
745 {"hk", r, z[2592:2601], 0xa0, e, e, w{"c.hkirc.net.hk", "d.hkirc.net.hk", "t.hkirc.net.hk", "u.hkirc.net.hk", "v.hkirc.net.hk", "x.hkirc.net.hk", "y.hkirc.net.hk", "z.hkirc.net.hk"}, n, n, n, "whois.hkirc.hk", e, n, t},
746 {"hkt", r, x, 0x42, "PCCW-HKT DataCom Services Limited", "https://newgtlds.icann.org/", w{"a0.nic.hkt", "a2.nic.hkt", "b0.nic.hkt", "c0.nic.hkt"}, n, n, w{"zh-CN", "zh-TW"}, "whois.nic.hkt", e, w{"https://rdap.afilias-srs.net/rdap/hkt/"}, t},
748 {"hk", r, z[2592:2601], 0xa0, e, e, w{"c.hkirc.net.hk", "d.hkirc.net.hk", "t.hkirc.net.hk", "u.hkirc.net.hk", "v.hkirc.net.hk", "x.hkirc.net.hk", "y.hkirc.net.hk", "z.hkirc.net.hk"}, n, n, n, "whois.hkdnr.net.hk", e, n, t},
749 {"hkt", r, x, 0x42, "PCCW-HKT DataCom Services Limited", "https://www.icann.org/en/registry-agreements/details/hkt", w{"a0.nic.hkt", "a2.nic.hkt", "b0.nic.hkt", "c0.nic.hkt"}, n, n, w{"zh-CN", "zh-TW"}, "whois.nic.hkt", e, w{"https://rdap.afilias-srs.net/rdap/hkt/"}, t},
747750 {"hm", r, x, 0xa0, e, "http://www.registry.hm/", w{"ns1.registry.hm", "ns2.registry.hm", "ns3.registry.hm"}, n, n, n, "whois.registry.hm", e, n, f},
748 {"hn", r, z[2601:2607], 0xa0, e, e, w{"a.lactld.org", "ns1.anycastdns.cz", "ns2.anycastdns.cz", "pch-anycast.rds.org.hn"}, n, n, n, "whois.nic.hn", e, n, f},
751 {"hn", r, z[2601:2607], 0xa0, e, e, w{"a.lactld.org", "ns1.anycastdns.cz", "ns2.anycastdns.cz", "pch-anycast.rds.org.hn"}, n, n, n, "whois2.afilias-grs.net", e, n, f},
749752 {"hockey", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.hockey", "v0n1.nic.hockey", "v0n2.nic.hockey", "v0n3.nic.hockey", "v2n0.nic.hockey", "v2n1.nic.hockey"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.hockey", e, w{"https://rdap.donuts.co/rdap/"}, t},
750753 {"holdings", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.holdings", "v0n1.nic.holdings", "v0n2.nic.holdings", "v0n3.nic.holdings", "v2n0.nic.holdings", "v2n1.nic.holdings"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.holdings", e, w{"https://rdap.donuts.co/rdap/"}, t},
751754 {"holiday", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.holiday", "v0n1.nic.holiday", "v0n2.nic.holiday", "v0n3.nic.holiday", "v2n0.nic.holiday", "v2n1.nic.holiday"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.holiday", e, w{"https://rdap.donuts.co/rdap/"}, t},
752 {"home", r, x, 0x2140, e, "https://features.icann.org/addressing-new-gtld-program-applications-corp-home-and-mail", n, n, n, n, e, e, n, t},
753 {"homedepot", r, x, 0x42, "Home Depot Product Authority, LLC", "https://www.homedepot.com/c/TLD_homedepot", w{"a0.nic.homedepot", "a2.nic.homedepot", "b0.nic.homedepot", "c0.nic.homedepot"}, n, n, n, "whois.nic.homedepot", e, w{"https://rdap.afilias-srs.net/rdap/homedepot/"}, f},
755 {"home", r, x, 0x4140, e, "https://features.icann.org/addressing-new-gtld-program-applications-corp-home-and-mail", n, n, n, n, e, e, n, t},
756 {"homedepot", r, x, 0x42, "Home Depot Product Authority, LLC", "https://www.icann.org/en/registry-agreements/details/homedepot", w{"a0.nic.homedepot", "a2.nic.homedepot", "b0.nic.homedepot", "c0.nic.homedepot"}, n, n, n, "whois.nic.homedepot", e, w{"https://rdap.afilias-srs.net/rdap/homedepot/"}, f},
754757 {"homegoods", r, x, 0x42, "The TJX Companies, Inc.", "http://nic.homegoods/", w{"a.nic.homegoods", "b.nic.homegoods", "c.nic.homegoods", "ns1.dns.nic.homegoods", "ns2.dns.nic.homegoods", "ns3.dns.nic.homegoods"}, n, n, n, "whois.nic.homegoods", e, w{"https://rdap.nic.homegoods/"}, f},
755758 {"homes", r, x, 0x40, "XYZ.COM LLC", "https://nic.homes/", w{"a.nic.homes", "b.nic.homes", "c.nic.homes", "d.nic.homes"}, n, n, n, "whois.nic.homes", e, w{"https://rdap.centralnic.com/homes/"}, f},
756759 {"homesense", r, x, 0x42, "The TJX Companies, Inc.", "http://nic.homesense/", w{"a.nic.homesense", "b.nic.homesense", "c.nic.homesense", "ns1.dns.nic.homesense", "ns2.dns.nic.homesense", "ns3.dns.nic.homesense"}, n, n, n, "whois.nic.homesense", e, w{"https://rdap.nic.homesense/"}, f},
757760 {"honda", r, x, 0x42, "Honda Motor Co., Ltd.", "https://nic.honda/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ja"}, "whois.nic.honda", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
758 {"honeywell", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.honeywell", e, n, f},
761 {"honeywell", r, x, 0x842, e, e, n, n, n, n, "whois.nic.honeywell", e, n, f},
759762 {"horse", r, x, 0x40, "Registry Services, LLC", "http://nic.horse/", w{"a.nic.horse", "b.nic.horse", "c.nic.horse", "d.nic.horse"}, n, n, w{"de", "es", "fr"}, "whois.nic.horse", e, w{"https://rdap.nic.horse/"}, t},
760763 {"hospital", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.hospital", "v0n1.nic.hospital", "v0n2.nic.hospital", "v0n3.nic.hospital", "v2n0.nic.hospital", "v2n1.nic.hospital"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.hospital", e, w{"https://rdap.donuts.co/rdap/"}, t},
761764 {"host", r, x, 0x40, "Radix FZC", e, w{"a.nic.host", "b.nic.host", "e.nic.host", "f.nic.host"}, n, n, w{"ar", "he", "ja", "ko", "lo", "mul-Cyrl", "mul-Grek", "mul-Latn", "th", "zh"}, "whois.nic.host", e, w{"https://rdap.centralnic.com/host/"}, t},
762765 {"hosting", r, x, 0x40, "XYZ.COM LLC", "https://nic.hosting/", w{"a.nic.hosting", "b.nic.hosting", "c.nic.hosting", "d.nic.hosting"}, n, n, w{"de", "es", "fr", "it", "ja", "mul-Cyrl", "pt", "zh"}, "whois.nic.hosting", e, w{"https://rdap.centralnic.com/hosting/"}, t},
763766 {"hot", r, x, 0x40, "Amazon Registry Services, Inc.", "https://nic.hot/", w{"dns1.nic.hot", "dns2.nic.hot", "dns3.nic.hot", "dns4.nic.hot", "dnsa.nic.hot", "dnsb.nic.hot", "dnsc.nic.hot", "dnsd.nic.hot"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.hot", e, w{"https://rdap.nominet.uk/hot/"}, t},
764 {"hoteis", r, x, 0x40, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
765 {"hotel", r, x, 0x40, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
767 {"hoteis", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
768 {"hotel", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
766769 {"hoteles", r, x, 0x40, "Travel Reservations SRL", "http://nic.hoteles/", w{"a.nic.hoteles", "b.nic.hoteles", "c.nic.hoteles", "ns1.dns.nic.hoteles", "ns2.dns.nic.hoteles", "ns3.dns.nic.hoteles"}, n, n, w{"es"}, "whois.nic.hoteles", e, w{"https://rdap.nic.hoteles/"}, t},
767 {"hotels", r, x, 0x40, "Booking.com B.V.", "https://newgtlds.icann.org/", w{"a.nic.hotels", "b.nic.hotels", "c.nic.hotels", "ns1.dns.nic.hotels", "ns2.dns.nic.hotels", "ns3.dns.nic.hotels"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.hotels", e, w{"https://rdap.nic.hotels/"}, t},
770 {"hotels", r, x, 0x40, "Booking.com B.V.", "https://www.icann.org/en/registry-agreements/details/hotels", w{"a.nic.hotels", "b.nic.hotels", "c.nic.hotels", "ns1.dns.nic.hotels", "ns2.dns.nic.hotels", "ns3.dns.nic.hotels"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.hotels", e, w{"https://rdap.nic.hotels/"}, t},
768771 {"hotmail", r, x, 0x42, "Microsoft Corporation", "https://nic.hotmail/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, e, e, w{"https://tld-rdap.verisign.com/hotmail/v1/"}, t},
769772 {"house", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.house", "v0n1.nic.house", "v0n2.nic.house", "v0n3.nic.house", "v2n0.nic.house", "v2n1.nic.house"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.house", e, w{"https://rdap.donuts.co/rdap/"}, t},
770773 {"how", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"ja", "mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
771774 {"hr", r, z[2607:2611], 0xa0, e, e, w{"hr-ns-1.carnet.hr", "n.dns.hr", "pch.carnet.hr"}, n, n, n, "whois.dns.hr", e, n, f},
772775 {"hsbc", r, x, 0x42, "HSBC Global Services (UK) Limited", "https://nic.hsbc/", w{"a.nic.hsbc", "b.nic.hsbc", "c.nic.hsbc", "ns1.dns.nic.hsbc", "ns2.dns.nic.hsbc", "ns3.dns.nic.hsbc"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.hsbc", e, w{"https://rdap.nic.hsbc/"}, t},
773776 {"ht", r, z[2611:2628], 0xa0, e, e, w{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, n, "whois.nic.ht", e, n, f},
774 {"htc", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
777 {"htc", r, x, 0x842, e, e, n, n, n, n, e, e, n, f},
775778 {"hu", r, z[2628:2662], 0xa0, e, e, w{"a.hu", "b.hu", "c.hu", "d.hu", "e.hu", "ns-com.nic.hu", "ns2.nic.fr"}, n, n, n, "whois.nic.hu", e, n, t},
776 {"hughes", r, x, 0x42, "Hughes Satellite Systems Corporation", "https://newgtlds.icann.org/", w{"a0.nic.hughes", "a2.nic.hughes", "b0.nic.hughes", "c0.nic.hughes"}, n, n, n, "whois.nic.hughes", e, w{"https://rdap.afilias-srs.net/rdap/hughes/"}, f},
777 {"hyatt", r, x, 0x42, "Hyatt GTLD, L.L.C.", "https://www.hyatt.com/info/nic", w{"a.nic.hyatt", "b.nic.hyatt", "c.nic.hyatt", "ns1.dns.nic.hyatt", "ns2.dns.nic.hyatt", "ns3.dns.nic.hyatt"}, n, n, w{"es"}, "whois.nic.hyatt", e, w{"https://rdap.nic.hyatt/"}, t},
779 {"hughes", r, x, 0x42, "Hughes Satellite Systems Corporation", "https://www.icann.org/en/registry-agreements/details/hughes", w{"a0.nic.hughes", "a2.nic.hughes", "b0.nic.hughes", "c0.nic.hughes"}, n, n, n, "whois.nic.hughes", e, w{"https://rdap.afilias-srs.net/rdap/hughes/"}, f},
780 {"hyatt", r, x, 0x42, "Hyatt GTLD, L.L.C.", "https://www.icann.org/en/registry-agreements/details/hyatt", w{"a.nic.hyatt", "b.nic.hyatt", "c.nic.hyatt", "ns1.dns.nic.hyatt", "ns2.dns.nic.hyatt", "ns3.dns.nic.hyatt"}, n, n, w{"es"}, "whois.nic.hyatt", e, w{"https://rdap.nic.hyatt/"}, t},
778781 {"hyundai", r, x, 0x42, "Hyundai Motor Company", "https://nic.hyundai/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ko"}, "whois.nic.hyundai", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
779782 {"ibm", r, x, 0x42, "International Business Machines Corporation", "https://www.nic.ibm/", w{"a.nic.ibm", "b.nic.ibm", "c.nic.ibm", "d.nic.ibm"}, n, n, n, "whois.nic.ibm", e, w{"https://rdap.nic.ibm/"}, f},
780783 {"icbc", r, x, 0x42, "Industrial and Commercial Bank of China Limited", "http://nic.icbc/", w{"a0.nic.icbc", "a2.nic.icbc", "b0.nic.icbc", "c0.nic.icbc"}, n, n, n, "whois.nic.icbc", e, w{"https://rdap.afilias-srs.net/rdap/icbc/"}, f},
781 {"ice", r, x, 0x42, "IntercontinentalExchange, Inc.", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.ice", e, w{"https://tld-rdap.verisign.com/ice/v1/"}, f},
784 {"ice", r, x, 0x42, "IntercontinentalExchange, Inc.", "https://www.icann.org/en/registry-agreements/details/ice", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.ice", e, w{"https://tld-rdap.verisign.com/ice/v1/"}, f},
782785 {"icu", r, x, 0x42, "ShortDot SA", "https://shortdot.bond/icu/", w{"a.nic.icu", "b.nic.icu", "c.nic.icu", "d.nic.icu"}, n, n, w{"ar", "cs", "da", "de", "es", "fr", "he", "is", "it", "ja", "ko", "lb", "lo", "mul-Grek", "mul-Latn", "nl", "pl", "pt", "ro", "ru", "sv", "tr", "uk", "zh"}, "whois.nic.icu", e, w{"https://rdap.centralnic.com/icu/"}, t},
783786 {"id", r, z[2662:2674], 0xa0, e, "https://pandi.id/", w{"b.dns.id", "c.dns.id", "d.dns.id", "e.dns.id", "ns4.apnic.net"}, n, n, n, "whois.id", e, w{"https://rdap.pandi.id/rdap/"}, t},
784 {"idn", r, x, 0x40, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
785 {"ie", r, z[2674:2679], 0xa0, e, "https://www.weare.ie/", w{"b.ns.ie", "c.ns.ie", "d.ns.ie", "g.ns.ie", "h.ns.ie", "i.ns.ie"}, n, n, n, "whois.weare.ie", e, n, t},
787 {"idn", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
788 {"ie", r, z[2674:2679], 0xa0, e, "https://www.weare.ie/", w{"b.ns.ie", "c.ns.ie", "d.ns.ie", "e.ns.ie", "g.ns.ie", "h.ns.ie", "i.ns.ie"}, n, n, n, "whois.domainregistry.ie", e, n, t},
786789 {"ieee", r, x, 0x42, "IEEE Global LLC", "http://nic.ieee/", w{"dns1.nic.ieee", "dns2.nic.ieee", "dns3.nic.ieee", "dns4.nic.ieee", "dnsa.nic.ieee", "dnsb.nic.ieee", "dnsc.nic.ieee", "dnsd.nic.ieee"}, n, n, w{"es"}, "whois.nic.ieee", e, w{"https://rdap.nominet.uk/ieee/"}, t},
787 {"ifm", r, x, 0x42, "ifm electronic gmbh", "https://newgtlds.icann.org/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, w{"de", "zh"}, "whois.nic.ifm", e, w{"https://rdap.nic.ifm/"}, t},
788 {"iinet", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.aridnrs.net.au", e, n, f},
790 {"ifm", r, x, 0x42, "ifm electronic gmbh", "https://www.icann.org/en/registry-agreements/details/ifm", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, w{"de", "zh"}, "whois.nic.ifm", e, w{"https://rdap.nic.ifm/"}, t},
791 {"iinet", r, x, 0x842, e, e, n, n, n, n, "whois.aridnrs.net.au", e, n, f},
789792 {"ikano", r, x, 0x42, "Ikano S.A.", "https://group.ikano/nic-ikano/", w{"a.dns.nic.ikano", "m.dns.nic.ikano", "n.dns.nic.ikano"}, n, n, w{"mul-Cyrl", "mul-Latn", "mul-Thai"}, "whois.nic.ikano", e, w{"https://rdap.nic.ikano/v1/"}, t},
790793 {"il", r, z[2679:2687], 0xa8, e, "https://www.isoc.org.il/domain-name-registry", w{"ilns.ilan.net.il", "lookup.iucc.ac.il", "ns1.ns.il", "ns3.ns.il", "ns4.ns.il", "nsa.ns.il", "nsb.ns.il", "nse.ns.il"}, n, n, w{"he"}, "whois.isoc.org.il", e, n, t},
791794 {"im", r, z[2687:2693], 0xa0, e, e, w{"barney.advsys.co.uk", "hoppy.iom.com", "ns4.ja.net", "pebbles.iom.com"}, n, n, n, "whois.nic.im", e, n, f},
792 {"imamat", r, x, 0x42, "Fondation Aga Khan (Aga Khan Foundation)", "https://newgtlds.icann.org/", w{"a0.nic.imamat", "a2.nic.imamat", "b0.nic.imamat", "c0.nic.imamat"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/imamat/"}, f},
795 {"imamat", r, x, 0x42, "Fondation Aga Khan (Aga Khan Foundation)", "https://www.icann.org/en/registry-agreements/details/imamat", w{"a0.nic.imamat", "a2.nic.imamat", "b0.nic.imamat", "c0.nic.imamat"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/imamat/"}, f},
793796 {"imdb", r, x, 0x42, "Amazon Registry Services, Inc.", "https://nic.imdb/", w{"dns1.nic.imdb", "dns2.nic.imdb", "dns3.nic.imdb", "dns4.nic.imdb", "dnsa.nic.imdb", "dnsb.nic.imdb", "dnsc.nic.imdb", "dnsd.nic.imdb"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.imdb", e, w{"https://rdap.nominet.uk/imdb/"}, t},
794797 {"immo", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.immo", "v0n1.nic.immo", "v0n2.nic.immo", "v0n3.nic.immo", "v2n0.nic.immo", "v2n1.nic.immo"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.immo", e, w{"https://rdap.donuts.co/rdap/"}, t},
795798 {"immobilien", r, x, 0x40, "Dog Beach, LLC", e, w{"v0n0.nic.immobilien", "v0n1.nic.immobilien", "v0n2.nic.immobilien", "v0n3.nic.immobilien", "v2n0.nic.immobilien", "v2n1.nic.immobilien"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.immobilien", e, w{"https://rdap.donuts.co/rdap/"}, t},
796799 {"in", r, z[2693:2735], 0xa0, e, "https://www.registry.in/", w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, n, "whois.registry.in", e, w{"https://rdap.registry.in/"}, f},
797 {"inc", r, x, 0x40, "Intercap Registry Inc.", "https://newgtlds.icann.org/", w{"a.nic.inc", "b.nic.inc", "c.nic.inc", "d.nic.inc"}, n, n, w{"de", "es", "fr", "it", "ja", "mul-Cyrl", "pt", "zh"}, "whois.nic.inc", e, w{"https://rdap.centralnic.com/inc/"}, t},
798 {"indians", r, x, 0x40, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
800 {"inc", r, x, 0x40, "Intercap Registry Inc.", "https://www.icann.org/en/registry-agreements/details/inc", w{"a.nic.inc", "b.nic.inc", "c.nic.inc", "d.nic.inc"}, n, n, w{"de", "es", "fr", "it", "ja", "mul-Cyrl", "pt", "zh"}, "whois.nic.inc", e, w{"https://rdap.centralnic.com/inc/"}, t},
801 {"indians", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
799802 {"industries", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.industries", "v0n1.nic.industries", "v0n2.nic.industries", "v0n3.nic.industries", "v2n0.nic.industries", "v2n1.nic.industries"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.industries", e, w{"https://rdap.donuts.co/rdap/"}, t},
800803 {"infiniti", r, x, 0x42, "NISSAN MOTOR CO., LTD.", "https://www.nissan-global.com/EN/NIC/INFINITI/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"es", "fr", "ja", "ko", "pl", "pt", "zh", "zh-Hans", "zh-Hant"}, "whois.nic.gmo", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
801 {"info", r, z[2735:2736], 0x40, "Identity Digital Limited", "https://info.info/", w{"a0.info.afilias-nst.info", "a2.info.afilias-nst.info", "b0.info.afilias-nst.org", "b2.info.afilias-nst.org", "c0.info.afilias-nst.info", "d0.info.afilias-nst.org"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.info", e, w{"https://rdap.donuts.co/rdap/"}, t},
802 {"infosys", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
803 {"infy", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
804 {"info", r, z[2735:2736], 0x40, "Identity Digital Limited", "https://identity.digital/", w{"a0.info.afilias-nst.info", "a2.info.afilias-nst.info", "b0.info.afilias-nst.org", "b2.info.afilias-nst.org", "c0.info.afilias-nst.info", "d0.info.afilias-nst.org"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.info", e, w{"https://rdap.donuts.co/rdap/"}, t},
805 {"infosys", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
806 {"infy", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
804807 {"ing", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
805808 {"ink", r, x, 0x40, "Top Level Design, LLC", e, w{"a.nic.ink", "b.nic.ink", "c.nic.ink", "d.nic.ink"}, n, n, w{"ar", "he", "ja", "ko", "lo", "mul-Cyrl", "mul-Grek", "mul-Latn", "th", "zh"}, "whois.nic.ink", e, w{"https://rdap.nic.ink/"}, t},
806809 {"institute", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.institute", "v0n1.nic.institute", "v0n2.nic.institute", "v0n3.nic.institute", "v2n0.nic.institute", "v2n1.nic.institute"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.institute", e, w{"https://rdap.donuts.co/rdap/"}, t},
807810 {"insurance", r, x, 0x40, "fTLD Registry Services LLC", "https://www.register.insurance/", w{"d.nic.insurance", "e.nic.insurance", "f.nic.insurance", "w.nic.insurance", "x.nic.insurance", "y.nic.insurance"}, n, n, n, "whois.nic.insurance", e, w{"https://rdap.nic.insurance/"}, f},
808811 {"insure", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.insure", "v0n1.nic.insure", "v0n2.nic.insure", "v0n3.nic.insure", "v2n0.nic.insure", "v2n1.nic.insure"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.insure", e, w{"https://rdap.donuts.co/rdap/"}, t},
809812 {"int", r, z[2736:2737], 0x1040, e, e, w{"ns.uu.net", "ns0.ja.net", "sec2.authdns.ripe.net", "x.iana-servers.net", "y.iana-servers.net", "z.iana-servers.net"}, n, n, n, "whois.iana.org", e, n, f},
810 {"intel", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.intel", e, n, f},
813 {"intel", r, x, 0x842, e, e, n, n, n, n, "whois.nic.intel", e, n, f},
811814 {"international", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.international", "v0n1.nic.international", "v0n2.nic.international", "v0n3.nic.international", "v2n0.nic.international", "v2n1.nic.international"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.international", e, w{"https://rdap.donuts.co/rdap/"}, t},
812815 {"intuit", r, x, 0x42, "Intuit Administrative Services, Inc.", "http://www.nic.intuit/", w{"ns1.dns.nic.intuit", "ns2.dns.nic.intuit", "ns3.dns.nic.intuit", "ns4.dns.nic.intuit", "ns5.dns.nic.intuit", "ns6.dns.nic.intuit"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.intuit", e, w{"https://rdap.nic.intuit/"}, t},
813816 {"investments", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.investments", "v0n1.nic.investments", "v0n2.nic.investments", "v0n3.nic.investments", "v2n0.nic.investments", "v2n1.nic.investments"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.investments", e, w{"https://rdap.donuts.co/rdap/"}, t},
815818 {"ipiranga", r, x, 0x42, "Ipiranga Produtos de Petroleo S.A.", "http://www.nic.ipiranga/", w{"ns1.dns.nic.ipiranga", "ns2.dns.nic.ipiranga", "ns3.dns.nic.ipiranga", "ns4.dns.nic.ipiranga", "ns5.dns.nic.ipiranga", "ns6.dns.nic.ipiranga"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.ipiranga", e, w{"https://rdap.nic.ipiranga/"}, t},
816819 {"iq", r, z[2739:2749], 0xa0, e, e, w{"iq.cctld.authdns.ripe.net", "ns.cocca.fr", "ns1.cmc.iq", "nsp-anycast.cmc.iq"}, n, n, n, "whois.cmc.iq", e, n, f},
817820 {"ir", r, z[2749:2756], 0xa0, e, e, w{"a.nic.ir", "b.nic.ir", "ir.cctld.authdns.ripe.net", "ns5.univie.ac.at"}, n, n, w{"fa"}, "whois.nic.ir", e, n, t},
818 {"ira", r, x, 0x40, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
821 {"ira", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
819822 {"irish", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.irish", "v0n1.nic.irish", "v0n2.nic.irish", "v0n3.nic.irish", "v2n0.nic.irish", "v2n1.nic.irish"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.irish", e, w{"https://rdap.donuts.co/rdap/"}, t},
820823 {"is", r, x, 0xa0, e, e, w{"bes.isnic.is", "durinn.rhnet.is", "ht-tldsecondary01.isnic.is", "sab.isnic.is", "set.isnic.is", "sunic.sunet.se", "tg-tldsecondary01.isnic.is"}, n, n, n, "whois.isnic.is", e, w{"https://rdap.isnic.is/rdap/"}, t},
821 {"iselect", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.iselect", e, n, f},
822 {"islam", r, x, 0x40, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
823 {"ismaili", r, x, 0x42, "Fondation Aga Khan (Aga Khan Foundation)", "https://newgtlds.icann.org/", w{"a0.nic.ismaili", "a2.nic.ismaili", "b0.nic.ismaili", "c0.nic.ismaili"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/ismaili/"}, f},
824 {"ist", r, x, 0xc4, "Istanbul Metropolitan Municipality", "http://nic.ist/", w{"a0.nic.ist", "a2.nic.ist", "b0.nic.ist", "c0.nic.ist"}, n, w{"Istanbul", "TR-34"}, w{"tr"}, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/ist/"}, t},
824 {"iselect", r, x, 0x842, e, e, n, n, n, n, "whois.nic.iselect", e, n, f},
825 {"islam", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
826 {"ismaili", r, x, 0x42, "Fondation Aga Khan (Aga Khan Foundation)", "https://www.icann.org/en/registry-agreements/details/ismaili", w{"a0.nic.ismaili", "a2.nic.ismaili", "b0.nic.ismaili", "c0.nic.ismaili"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/ismaili/"}, f},
827 {"ist", r, x, 0xc4, "Istanbul Metropolitan Municipality", "https://www.icann.org/en/registry-agreements/details/ist", w{"a0.nic.ist", "a2.nic.ist", "b0.nic.ist", "c0.nic.ist"}, n, w{"Istanbul", "TR-34"}, w{"tr"}, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/ist/"}, t},
825828 {"istanbul", r, x, 0xc4, "Istanbul Metropolitan Municipality", "https://nic.istanbul/", w{"a0.nic.istanbul", "a2.nic.istanbul", "b0.nic.istanbul", "c0.nic.istanbul"}, n, w{"Istanbul", "TR-34"}, w{"tr"}, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/istanbul/"}, t},
826829 {"it", r, z[2756:3117], 0xa0, e, "https://www.nic.it/it", w{"a.dns.it", "dns.nic.it", "m.dns.it", "nameserver.cnr.it", "r.dns.it", "s.dns.it"}, n, n, n, "whois.nic.it", e, n, t},
827830 {"itau", r, x, 0x42, "Itau Unibanco Holding S.A.", "http://www.nic.itau/", w{"ns1.dns.nic.itau", "ns2.dns.nic.itau", "ns3.dns.nic.itau", "ns4.dns.nic.itau", "ns5.dns.nic.itau", "ns6.dns.nic.itau"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.itau", e, w{"https://rdap.nic.itau/"}, t},
828831 {"itv", r, x, 0x42, "ITV Services Limited", "http://nic.itv/", w{"a0.nic.itv", "a2.nic.itv", "b0.nic.itv", "c0.nic.itv"}, n, n, w{"be", "bg", "bs", "da", "de", "es", "hu", "is", "ko", "lt", "lv", "mk", "pl", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/itv/"}, t},
829 {"iveco", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.iveco", e, w{"https://rdap.afilias-srs.net/rdap/iveco/"}, f},
830 {"iwc", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.iwc", e, n, f},
832 {"iveco", r, x, 0x842, e, e, n, n, n, n, "whois.nic.iveco", e, w{"https://rdap.afilias-srs.net/rdap/iveco/"}, f},
833 {"iwc", r, x, 0x842, e, e, n, n, n, n, "whois.nic.iwc", e, n, f},
831834 {"jaguar", r, x, 0x42, "Jaguar Land Rover Ltd", "http://nic.jaguar/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.jaguar", e, w{"https://tld-rdap.verisign.com/jaguar/v1/"}, f},
832 {"java", r, x, 0x42, "Oracle Corporation", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.java", e, w{"https://tld-rdap.verisign.com/java/v1/"}, f},
835 {"java", r, x, 0x42, "Oracle Corporation", "https://www.icann.org/en/registry-agreements/details/java", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.java", e, w{"https://tld-rdap.verisign.com/java/v1/"}, f},
833836 {"jcb", r, x, 0x42, "JCB Co., Ltd.", "https://nic.jcb/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"es", "fr", "ja", "ko", "pl", "pt", "zh", "zh-Hans", "zh-Hant"}, "whois.nic.gmo", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
834 {"jcp", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.afilias-srs.net", e, n, f},
837 {"jcp", r, x, 0x842, e, e, n, n, n, n, "whois.afilias-srs.net", e, n, f},
835838 {"je", r, z[3117:3123], 0xa0, e, e, w{"c.ci-servers.org", "dns1.nominetdns.uk", "dns2.nominetdns.uk", "dns3.nominetdns.uk", "dns4.nominetdns.uk", "e.ci-servers.net"}, n, n, n, "whois.je", e, n, f},
836 {"jeep", r, x, 0x42, "FCA US LLC.", "https://newgtlds.icann.org/", w{"a0.nic.jeep", "a2.nic.jeep", "b0.nic.jeep", "c0.nic.jeep"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/jeep/"}, f},
839 {"jeep", r, x, 0x42, "FCA US LLC.", "https://www.icann.org/en/registry-agreements/details/jeep", w{"a0.nic.jeep", "a2.nic.jeep", "b0.nic.jeep", "c0.nic.jeep"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/jeep/"}, f},
837840 {"jetzt", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.jetzt", "v0n1.nic.jetzt", "v0n2.nic.jetzt", "v0n3.nic.jetzt", "v2n0.nic.jetzt", "v2n1.nic.jetzt"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.jetzt", e, w{"https://rdap.donuts.co/rdap/"}, t},
838841 {"jewelry", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.jewelry", "v0n1.nic.jewelry", "v0n2.nic.jewelry", "v0n3.nic.jewelry", "v2n0.nic.jewelry", "v2n1.nic.jewelry"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.jewelry", e, w{"https://rdap.donuts.co/rdap/"}, t},
839842 {"jio", r, x, 0x42, "Reliance Industries Limited", "http://nic.jio/", w{"a0.nic.jio", "a2.nic.jio", "b0.nic.jio", "c0.nic.jio"}, n, n, n, "whois.nic.jio", e, w{"https://rdap.afilias-srs.net/rdap/jio/"}, f},
840 {"jlc", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.jlc", e, n, f},
841 {"jll", r, x, 0x42, "Jones Lang LaSalle Incorporated", "https://newgtlds.icann.org/", w{"a0.nic.jll", "a2.nic.jll", "b0.nic.jll", "c0.nic.jll"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/jll/"}, f},
843 {"jlc", r, x, 0x842, e, e, n, n, n, n, "whois.nic.jlc", e, n, f},
844 {"jll", r, x, 0x42, "Jones Lang LaSalle Incorporated", "https://www.icann.org/en/registry-agreements/details/jll", w{"a0.nic.jll", "a2.nic.jll", "b0.nic.jll", "c0.nic.jll"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/jll/"}, f},
842845 {"jm", r, z[3123:3129], 0xa8, e, e, w{"jm.cctld.authdns.ripe.net", "ns.jm", "ns.utechjamaica.edu.jm", "ns3-jm.fsl.org.jm", "phloem.uoregon.edu"}, n, n, n, e, e, n, f},
843846 {"jmp", r, x, 0x42, "Matrix IP LLC", "https://nic.jmp/", w{"a.nic.jmp", "b.nic.jmp", "c.nic.jmp", "ns1.dns.nic.jmp", "ns2.dns.nic.jmp", "ns3.dns.nic.jmp"}, n, n, w{"es"}, "whois.nic.jmp", e, w{"https://rdap.nic.jmp/"}, t},
844847 {"jnj", r, x, 0x42, "Johnson & Johnson Services, Inc.", "http://www.nic.jnj/", w{"a.nic.jnj", "b.nic.jnj", "c.nic.jnj", "ns1.dns.nic.jnj", "ns2.dns.nic.jnj", "ns3.dns.nic.jnj"}, n, n, w{"es"}, "whois.nic.jnj", e, w{"https://rdap.nic.jnj/"}, t},
849852 {"joy", r, x, 0x40, "Amazon Registry Services, Inc.", "https://nic.joy/", w{"dns1.nic.joy", "dns2.nic.joy", "dns3.nic.joy", "dns4.nic.joy", "dnsa.nic.joy", "dnsb.nic.joy", "dnsc.nic.joy", "dnsd.nic.joy"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.joy", e, w{"https://rdap.nominet.uk/joy/"}, t},
850853 {"jp", r, z[3137:3240], 0xa0, e, e, w{"a.dns.jp", "b.dns.jp", "c.dns.jp", "d.dns.jp", "e.dns.jp", "f.dns.jp", "g.dns.jp", "h.dns.jp"}, n, n, w{"ja-JP"}, "whois.jprs.jp", e, w{"https://rdap.gtld.jprs.jp/rdap/"}, t},
851854 {"jpmorgan", r, x, 0x42, "JPMorgan Chase Bank, National Association", "https://www.nic.jpmorgan/", w{"ns1.dns.nic.jpmorgan", "ns2.dns.nic.jpmorgan", "ns3.dns.nic.jpmorgan", "ns4.dns.nic.jpmorgan", "ns5.dns.nic.jpmorgan", "ns6.dns.nic.jpmorgan"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.jpmorgan", e, w{"https://rdap.nic.jpmorgan/"}, t},
852 {"jpmorganchase", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
855 {"jpmorganchase", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
853856 {"jprs", r, x, 0x42, "Japan Registry Services Co., Ltd.", "https://nic.jprs/", w{"tld1.nic.jprs", "tld2.nic.jprs", "tld3.nic.jprs", "tld4.nic.jprs", "tld5.nic.jprs"}, n, n, w{"ja"}, e, e, w{"https://rdap.nic.jprs/rdap/"}, t},
854857 {"juegos", r, x, 0x40, "Internet Naming Company LLC", "https://uniregistry.link/extensions/juegos/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, w{"de", "es", "fr", "it", "ja", "mul-Cyrl", "pt", "zh"}, "whois.uniregistry.net", e, w{"https://whois.uniregistry.net/rdap/"}, t},
855858 {"juniper", r, x, 0x42, "JUNIPER NETWORKS, INC.", "http://nic.juniper/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.juniper", e, w{"https://tld-rdap.verisign.com/juniper/v1/"}, f},
856 {"justforu", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
859 {"justforu", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
857860 {"kaufen", r, x, 0x40, "Dog Beach, LLC", e, w{"v0n0.nic.kaufen", "v0n1.nic.kaufen", "v0n2.nic.kaufen", "v0n3.nic.kaufen", "v2n0.nic.kaufen", "v2n1.nic.kaufen"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.kaufen", e, w{"https://rdap.donuts.co/rdap/"}, t},
858861 {"kddi", r, x, 0x42, "KDDI CORPORATION", "https://nic.kddi/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"es", "fr", "ja", "ko", "pl", "pt"}, "whois.nic.kddi", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
859862 {"ke", r, z[3240:3249], 0xa8, e, "https://kenic.or.ke/", w{"kenic.anycastdns.cz", "mzizi.kenic.or.ke", "ns-ke.afrinic.net", "ns.anycast.kenic.or.ke", "ns2ke.dns.business"}, n, n, n, "whois.kenic.or.ke", e, n, f},
860 {"kerastase", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
861 {"kerryhotels", r, x, 0x42, "Kerry Trading Co. Limited", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.kerryhotels", e, w{"https://tld-rdap.verisign.com/kerryhotels/v1/"}, f},
862 {"kerrylogisitics", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
863 {"kerastase", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
864 {"kerryhotels", r, x, 0x42, "Kerry Trading Co. Limited", "https://www.icann.org/en/registry-agreements/details/kerryhotels", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.kerryhotels", e, w{"https://tld-rdap.verisign.com/kerryhotels/v1/"}, f},
865 {"kerrylogisitics", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
863866 {"kerrylogistics", r, x, 0, "Kerry Trading Co. Limited", e, w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.kerrylogistics", e, w{"https://tld-rdap.verisign.com/kerrylogistics/v1/"}, t},
864 {"kerryproperties", r, x, 0x42, "Kerry Trading Co. Limited", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.kerryproperties", e, w{"https://tld-rdap.verisign.com/kerryproperties/v1/"}, f},
865 {"ketchup", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
867 {"kerryproperties", r, x, 0x42, "Kerry Trading Co. Limited", "https://www.icann.org/en/registry-agreements/details/kerryproperties", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.kerryproperties", e, w{"https://tld-rdap.verisign.com/kerryproperties/v1/"}, f},
868 {"ketchup", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
866869 {"kfh", r, x, 0x42, "Kuwait Finance House", "https://nic.kfh/", w{"a.nic.kfh", "b.nic.kfh", "c.nic.kfh", "d.nic.kfh"}, n, n, n, "whois.nic.kfh", e, w{"https://rdap.centralnic.com/kfh/"}, f},
867 {"kg", r, z[3249:3255], 0xa0, e, e, w{"kg.cctld.authdns.ripe.net", "ns.kg", "ns2.kg"}, n, n, n, "whois.kg", e, n, f},
868 {"kh", r, z[3255:3262], 0xa0, e, e, w{"dns1.online.com.kh", "ns.camnet.com.kh", "ns1.dns.net.kh", "ns4.apnic.net"}, n, n, n, e, e, n, f},
870 {"kg", r, z[3249:3255], 0xa0, e, e, w{"kg.cctld.authdns.ripe.net", "ns.kg", "ns2.kg"}, n, n, n, "whois.domain.kg", e, n, f},
871 {"kh", r, z[3255:3262], 0xa0, e, e, w{"dns1.online.com.kh", "ns4.apnic.net"}, n, n, n, e, e, n, f},
869872 {"ki", r, z[3262:3274], 0xa0, e, e, w{"ns.cocca.fr", "pch.nic.ki"}, n, n, n, "whois.nic.ki", e, n, f},
870873 {"kia", r, x, 0x42, "KIA MOTORS CORPORATION", "https://nic.kia/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ko"}, "whois.nic.kia", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
871 {"kid", r, x, 0x40, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
872 {"kids", r, x, 0x40, "DotKids Foundation Limited", "https://nic.kids/", w{"a0.nic.kids", "a2.nic.kids", "b0.nic.kids", "c0.nic.kids"}, n, n, n, "whois.afilias-srs.net", e, n, f},
873 {"kiehls", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
874 {"kim", r, x, 0x40, "Identity Digital Limited", "https://get.kim/", w{"a0.nic.kim", "a2.nic.kim", "b0.nic.kim", "c0.nic.kim"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.kim", e, w{"https://rdap.donuts.co/rdap/"}, t},
874 {"kid", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
875 {"kids", r, x, 0x40, "DotKids Foundation Limited", "https://nic.kids/", w{"a0.nic.kids", "a2.nic.kids", "b0.nic.kids", "c0.nic.kids"}, n, n, n, "whois.nic.kids", e, n, f},
876 {"kiehls", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
877 {"kim", r, x, 0x40, "Identity Digital Limited", "http://nic.kim/", w{"a0.nic.kim", "a2.nic.kim", "b0.nic.kim", "c0.nic.kim"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.kim", e, w{"https://rdap.donuts.co/rdap/"}, t},
875878 {"kinder", r, x, 0x42, "Ferrero Trading Lux S.A.", "https://nic.kinder/", w{"a.nic.kinder", "b.nic.kinder", "c.nic.kinder", "ns1.dns.nic.kinder", "ns2.dns.nic.kinder", "ns3.dns.nic.kinder"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "it", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.kinder", e, w{"https://rdap.nic.kinder/"}, t},
876879 {"kindle", r, x, 0x42, "Amazon Registry Services, Inc.", "https://nic.kindle/", w{"dns1.nic.kindle", "dns2.nic.kindle", "dns3.nic.kindle", "dns4.nic.kindle", "dnsa.nic.kindle", "dnsb.nic.kindle", "dnsc.nic.kindle", "dnsd.nic.kindle"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.kindle", e, w{"https://rdap.nominet.uk/kindle/"}, t},
877880 {"kitchen", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.kitchen", "v0n1.nic.kitchen", "v0n2.nic.kitchen", "v0n3.nic.kitchen", "v2n0.nic.kitchen", "v2n1.nic.kitchen"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.kitchen", e, w{"https://rdap.donuts.co/rdap/"}, t},
878881 {"kiwi", r, x, 0x40, "DOT KIWI LIMITED", e, w{"a.ns.nic.kiwi", "b.ns.nic.kiwi"}, n, n, w{"mul-Latn"}, "whois.nic.kiwi", e, w{"https://rdap.kiwi.fury.ca/rdap/"}, t},
879882 {"km", r, z[3274:3288], 0xa0, e, e, w{"dns1.nic.km", "dns2.nic.km", "ns-km.afrinic.net"}, n, n, n, e, e, n, f},
880883 {"kn", r, z[3288:3294], 0xa0, e, "https://www.nic.kn/", w{"ns1.anycastdns.cz", "ns2.anycastdns.cz", "pch.nic.kn"}, n, n, n, "whois.nic.kn", e, n, f},
881 {"koeln", r, x, 0xc4, "dotKoeln GmbH", e, w{"dns.ryce-rsp.com", "ns1.dns.business", "ns1.ryce-rsp.com"}, n, w{"Cologne", "Koeln"}, w{"de", "mul-Latn"}, "whois.ryce-rsp.com", e, w{"https://rdap.ryce-rsp.com/rdap/"}, t},
884 {"koeln", r, x, 0xc4, "dotKoeln GmbH", e, w{"dns.ryce-rsp.com", "ns1.dns.business", "ns1.ryce-rsp.com"}, n, w{"Cologne", "Koeln"}, w{"de", "mul-Latn"}, "whois.nic.koeln", e, w{"https://rdap.ryce-rsp.com/rdap/"}, t},
882885 {"komatsu", r, x, 0x42, "Komatsu Ltd.", "https://nic.komatsu/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ja"}, "whois.nic.komatsu", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
883 {"konami", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
884 {"kone", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
886 {"konami", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
887 {"kone", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
885888 {"kosher", r, x, 0x40, "Kosher Marketing Assets LLC", "https://nic.kosher/", w{"a0.nic.kosher", "a2.nic.kosher", "b0.nic.kosher", "c0.nic.kosher"}, n, n, n, "whois.nic.kosher", e, w{"https://rdap.afilias-srs.net/rdap/kosher/"}, f},
886889 {"kp", r, z[3294:3298], 0xa0, e, e, w{"ns1.kptc.kp", "ns2.kptc.kp"}, n, n, n, e, e, n, f},
887890 {"kpmg", r, x, 0x42, "KPMG International Cooperative (KPMG International Genossenschaft)", "https://www.nic.kpmg/index.html", w{"a.nic.kpmg", "b.nic.kpmg", "c.nic.kpmg", "ns1.dns.nic.kpmg", "ns2.dns.nic.kpmg", "ns3.dns.nic.kpmg"}, n, n, w{"de", "es", "ja", "ko", "zh"}, "whois.nic.kpmg", e, w{"https://rdap.nic.kpmg/"}, t},
888891 {"kpn", r, x, 0x42, "Koninklijke KPN N.V.", "https://nic.kpn/", w{"a.nic.kpn", "b.nic.kpn", "c.nic.kpn", "d.nic.kpn"}, n, n, n, e, e, w{"https://rdap.centralnic.com/kpn/"}, f},
889 {"kr", r, z[3298:3327], 0xa0, e, e, w{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, w{"ko-KR"}, "whois.kr", e, n, t},
892 {"kr", r, z[3298:3327], 0xa0, e, e, w{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, w{"ko-KR"}, "whois.krnic.net", e, n, t},
890893 {"krd", r, x, 0x440, "KRG Department of Information Technology", "http://nic.krd/", w{"a.nic.krd", "b.nic.krd", "c.nic.krd", "d.nic.krd"}, n, n, n, "whois.nic.krd", e, w{"https://rdap.nic.krd/"}, f},
891 {"kred", r, x, 0x50, "KredTLD Pty Ltd", "https://newgtlds.icann.org/", w{"a.nic.kred", "b.nic.kred", "c.nic.kred", "d.nic.kred"}, n, n, w{"ar", "da", "de", "es", "fr", "ja", "ko", "nl", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.kred", e, w{"https://rdap.centralnic.com/kred/"}, t},
892 {"kuokgroup", r, x, 0x42, "Kerry Trading Co. Limited", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.kuokgroup", e, w{"https://tld-rdap.verisign.com/kuokgroup/v1/"}, f},
894 {"kred", r, x, 0x50, "KredTLD Pty Ltd", "https://www.nic.kred/", w{"a.nic.kred", "b.nic.kred", "c.nic.kred", "d.nic.kred"}, n, n, w{"ar", "da", "de", "es", "fr", "ja", "ko", "nl", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.kred", e, w{"https://rdap.centralnic.com/kred/"}, t},
895 {"kuokgroup", r, x, 0x42, "Kerry Trading Co. Limited", "https://www.icann.org/en/registry-agreements/details/kuokgroup", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.kuokgroup", e, w{"https://tld-rdap.verisign.com/kuokgroup/v1/"}, f},
893896 {"kw", r, z[3327:3332], 0xa0, e, e, w{"a.nic.kw", "b.nic.kw", "c.nic.kw", "d.nic.kw", "pch.nic.kw"}, n, n, n, e, "http://www.kw/", n, f},
894897 {"ky", r, z[3332:3337], 0xa0, e, "https://uniregistry.ky/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, "whois.kyregistry.ky", e, w{"https://whois.kyregistry.ky/rdap/"}, f},
895 {"kyknet", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
898 {"kyknet", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
896899 {"kyoto", r, x, 0xc4, "Academic Institution: Kyoto Jyoho Gakuen", "https://nic.kyoto/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, w{"Kyoto", "JP-26"}, w{"ja"}, "whois.nic.kyoto", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
897900 {"kz", r, z[3337:3343], 0xa0, e, e, w{"ns.nic.kz", "ns1.nic.kz"}, n, n, n, "whois.nic.kz", e, n, f},
898901 {"la", r, x, 0xa4, e, e, w{"ns1.nic.la", "ns2.nic.la", "ns3.nic.la", "ns4.nic.la"}, n, w{"Los Angeles"}, w{"ja", "lo", "mul-Grek", "mul-Latn", "mul-Tavt", "th", "zh"}, "whois.nic.la", e, n, t},
899 {"lacaixa", r, x, 0x42, "Fundación Bancaria Caixa d’Estalvis i Pensions de Barcelona, “la Caixa”", "http://nic.lacaixa/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, w{"mul-Latn"}, "whois.nic.lacaixa", e, w{"https://rdap.nic.lacaixa/"}, t},
900 {"ladbrokes", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.ladbrokes", e, n, t},
902 {"lacaixa", r, x, 0x42, "Fundación Bancaria Caixa d’Estalvis i Pensions de Barcelona, “la Caixa”", "http://www.nic.lacaixa/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, w{"mul-Latn"}, "whois.nic.lacaixa", e, w{"https://rdap.nic.lacaixa/"}, t},
903 {"ladbrokes", r, x, 0x842, e, e, n, n, n, n, "whois.nic.ladbrokes", e, n, t},
901904 {"lamborghini", r, x, 0x42, "Automobili Lamborghini S.p.A.", "http://nic.lamborghini/", w{"a0.nic.lamborghini", "a2.nic.lamborghini", "b0.nic.lamborghini", "c0.nic.lamborghini"}, n, n, w{"be", "bg", "bs", "da", "de", "es", "hu", "is", "ko", "lt", "lv", "mk", "pl", "ru", "sr", "sr-ME", "sv", "uk", "zh-Hans", "zh-Hant"}, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/lamborghini/"}, t},
902 {"lamer", r, x, 0x42, "The Estée Lauder Companies Inc.", "https://newgtlds.icann.org/", w{"a0.nic.lamer", "a2.nic.lamer", "b0.nic.lamer", "c0.nic.lamer"}, n, n, n, "whois.nic.lamer", e, w{"https://rdap.afilias-srs.net/rdap/lamer/"}, f},
905 {"lamer", r, x, 0x42, "The Estée Lauder Companies Inc.", "https://www.icann.org/en/registry-agreements/details/lamer", w{"a0.nic.lamer", "a2.nic.lamer", "b0.nic.lamer", "c0.nic.lamer"}, n, n, n, "whois.nic.lamer", e, w{"https://rdap.afilias-srs.net/rdap/lamer/"}, f},
903906 {"lancaster", r, x, 0x42, "LANCASTER", "https://nic.lancaster/", w{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, w{"mul-Latn"}, "whois.nic.lancaster", e, w{"https://rdap.nic.lancaster/"}, t},
904907 {"lancia", r, x, 0x42, "Fiat Chrysler Automobiles N.V.", "http://nic.lancia/", w{"a0.nic.lancia", "a2.nic.lancia", "b0.nic.lancia", "c0.nic.lancia"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/lancia/"}, f},
905 {"lancome", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.lancome", e, n, f},
908 {"lancome", r, x, 0x842, e, e, n, n, n, n, "whois.nic.lancome", e, n, f},
906909 {"land", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.land", "v0n1.nic.land", "v0n2.nic.land", "v0n3.nic.land", "v2n0.nic.land", "v2n1.nic.land"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.land", e, w{"https://rdap.donuts.co/rdap/"}, t},
907910 {"landrover", r, x, 0x42, "Jaguar Land Rover Ltd", "http://nic.landrover/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.landrover", e, w{"https://tld-rdap.verisign.com/landrover/v1/"}, f},
908911 {"lanxess", r, x, 0x42, "LANXESS Corporation", "https://nic.lanxess/", w{"a.nic.lanxess", "b.nic.lanxess", "c.nic.lanxess", "ns1.dns.nic.lanxess", "ns2.dns.nic.lanxess", "ns3.dns.nic.lanxess"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.lanxess", e, w{"https://rdap.nic.lanxess/"}, t},
909912 {"lasalle", r, x, 0x42, "Jones Lang LaSalle Incorporated", "https://www.lasalle.com/tld", w{"a0.nic.lasalle", "a2.nic.lasalle", "b0.nic.lasalle", "c0.nic.lasalle"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/lasalle/"}, f},
910913 {"lat", r, x, 0x40, "XYZ.COM LLC", "https://nic.lat/", w{"a.nic.lat", "b.nic.lat", "c.nic.lat", "d.nic.lat"}, n, n, w{"es"}, "whois.nic.lat", e, w{"https://rdap.centralnic.com/lat/"}, t},
911 {"latino", r, x, 0x40, "Dish DBS Corporation", "http://www.dishtlds.com/latino/", w{"a0.nic.latino", "a2.nic.latino", "b0.nic.latino", "c0.nic.latino"}, n, n, n, "whois.nic.latino", e, w{"https://rdap.afilias-srs.net/rdap/latino/"}, f},
912 {"latrobe", r, x, 0x42, "La Trobe University", "https://newgtlds.icann.org/", w{"a.nic.latrobe", "b.nic.latrobe", "c.nic.latrobe", "d.nic.latrobe"}, n, n, n, "whois.nic.latrobe", e, w{"https://rdap.nic.latrobe/"}, f},
914 {"latino", r, x, 0x40, "Dish DBS Corporation", "https://www.dishtlds.com/latino/", w{"a0.nic.latino", "a2.nic.latino", "b0.nic.latino", "c0.nic.latino"}, n, n, n, "whois.nic.latino", e, w{"https://rdap.afilias-srs.net/rdap/latino/"}, f},
915 {"latrobe", r, x, 0x42, "La Trobe University", "https://www.icann.org/en/registry-agreements/details/latrobe", w{"a.nic.latrobe", "b.nic.latrobe", "c.nic.latrobe", "d.nic.latrobe"}, n, n, n, "whois.nic.latrobe", e, w{"https://rdap.nic.latrobe/"}, f},
913916 {"law", r, x, 0x40, "Registry Services, LLC", "https://nic.law/", w{"a.nic.law", "b.nic.law", "c.nic.law", "d.nic.law"}, n, n, w{"de", "es", "fr", "zh"}, "whois.nic.law", e, w{"https://rdap.nic.law/"}, t},
914917 {"lawyer", r, x, 0x40, "Dog Beach, LLC", e, w{"v0n0.nic.lawyer", "v0n1.nic.lawyer", "v0n2.nic.lawyer", "v0n3.nic.lawyer", "v2n0.nic.lawyer", "v2n1.nic.lawyer"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.lawyer", e, w{"https://rdap.donuts.co/rdap/"}, t},
915918 {"lb", r, z[3343:3348], 0xa8, e, e, w{"fork.sth.dnsnode.net", "nn.uninett.no", "ns-jp.lbdr.org.lb", "ns3.seacomnet.com", "ns4.seacomnet.com", "rip.psg.com", "zeina.aub.edu.lb"}, n, n, n, "whois.lbdr.org.lb", e, n, f},
916919 {"lc", r, z[3348:3357], 0xa0, e, "https://www.nic.lc/", w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, n, "whois.afilias-grs.info", e, n, f},
917 {"lds", r, x, 0x42, "IRI Domain Management, LLC", "https://newgtlds.icann.org/", w{"a0.nic.lds", "a2.nic.lds", "b0.nic.lds", "c0.nic.lds"}, n, n, n, "whois.nic.lds", e, w{"https://rdap.afilias-srs.net/rdap/lds/"}, f},
920 {"lds", r, x, 0x42, "IRI Domain Management, LLC", "https://www.icann.org/en/registry-agreements/details/lds", w{"a0.nic.lds", "a2.nic.lds", "b0.nic.lds", "c0.nic.lds"}, n, n, n, "whois.nic.lds", e, w{"https://rdap.afilias-srs.net/rdap/lds/"}, f},
918921 {"lease", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.lease", "v0n1.nic.lease", "v0n2.nic.lease", "v0n3.nic.lease", "v2n0.nic.lease", "v2n1.nic.lease"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.lease", e, w{"https://rdap.donuts.co/rdap/"}, t},
919922 {"leclerc", r, x, 0x42, "A.C.D. LEC Association des Centres Distributeurs Edouard Leclerc", "https://www.nic.leclerc/fr", w{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, w{"mul-Latn"}, "whois.nic.leclerc", e, w{"https://rdap.nic.leclerc/"}, t},
920923 {"lefrak", r, x, 0x42, "LeFrak Organization, Inc.", "http://nic.lefrak/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.lefrak", e, w{"https://tld-rdap.verisign.com/lefrak/v1/"}, f},
921924 {"legal", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.legal", "v0n1.nic.legal", "v0n2.nic.legal", "v0n3.nic.legal", "v2n0.nic.legal", "v2n1.nic.legal"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.legal", e, w{"https://rdap.donuts.co/rdap/"}, t},
922925 {"lego", r, x, 0x42, "LEGO Juris A/S", "https://nic.lego/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"mul-Arab", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Latn", "ru"}, "whois.nic.lego", e, w{"https://tld-rdap.verisign.com/lego/v1/"}, t},
923926 {"lexus", r, x, 0x42, "TOYOTA MOTOR CORPORATION", "http://www.nic.lexus/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ja"}, "whois.nic.lexus", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
924 {"lgbt", r, x, 0x40, "Identity Digital Limited", "https://get.lgbt/", w{"a0.nic.lgbt", "a2.nic.lgbt", "b0.nic.lgbt", "c0.nic.lgbt"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.lgbt", e, w{"https://rdap.donuts.co/rdap/"}, t},
925 {"li", r, x, 0xa0, e, e, w{"a.nic.li", "b.nic.li", "d.nic.li", "e.nic.li", "f.nic.li"}, n, n, n, "whois.nic.li", e, w{"https://rdap.nic.li/"}, t},
926 {"liaison", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.liaison", e, n, f},
927 {"lgbt", r, x, 0x40, "Identity Digital Limited", "http://nic.lgbt/", w{"a0.nic.lgbt", "a2.nic.lgbt", "b0.nic.lgbt", "c0.nic.lgbt"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.lgbt", e, w{"https://rdap.donuts.co/rdap/"}, t},
928 {"li", r, x, 0xa0, e, e, w{"a.nic.li", "b.nic.li", "d.nic.li", "e.nic.li", "f.nic.li"}, n, n, n, "whois.nic.ch", e, w{"https://rdap.nic.li/"}, t},
929 {"liaison", r, x, 0x842, e, e, n, n, n, n, "whois.nic.liaison", e, n, f},
927930 {"lidl", r, x, 0x42, "Schwarz Domains und Services GmbH & Co. KG", "https://nic.lidl/", w{"a.nic.lidl", "b.nic.lidl", "c.nic.lidl", "d.nic.lidl"}, n, n, w{"mul-Cyrl", "mul-Grek", "mul-Latn"}, "whois.nic.lidl", e, w{"https://rdap.centralnic.com/lidl/"}, t},
928931 {"life", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.life", "v0n1.nic.life", "v0n2.nic.life", "v0n3.nic.life", "v2n0.nic.life", "v2n1.nic.life"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.life", e, w{"https://rdap.donuts.co/rdap/"}, t},
929932 {"lifeinsurance", r, x, 0x40, "American Council of Life Insurers", "http://nic.lifeinsurance/", w{"a.nic.lifeinsurance", "b.nic.lifeinsurance", "c.nic.lifeinsurance", "ns1.dns.nic.lifeinsurance", "ns2.dns.nic.lifeinsurance", "ns3.dns.nic.lifeinsurance"}, n, n, w{"es"}, "whois.nic.lifeinsurance", e, w{"https://rdap.nic.lifeinsurance/"}, t},
930 {"lifestyle", r, x, 0x40, "Lifestyle Domain Holdings, Inc.", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.lifestyle", e, w{"https://tld-rdap.verisign.com/lifestyle/v1/"}, f},
933 {"lifestyle", r, x, 0x40, "Lifestyle Domain Holdings, Inc.", "https://www.icann.org/en/registry-agreements/details/lifestyle", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.lifestyle", e, w{"https://tld-rdap.verisign.com/lifestyle/v1/"}, f},
931934 {"lighting", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.lighting", "v0n1.nic.lighting", "v0n2.nic.lighting", "v0n3.nic.lighting", "v2n0.nic.lighting", "v2n1.nic.lighting"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.lighting", e, w{"https://rdap.donuts.co/rdap/"}, t},
932935 {"like", r, x, 0x42, "Amazon Registry Services, Inc.", "https://nic.like/", w{"dns1.nic.like", "dns2.nic.like", "dns3.nic.like", "dns4.nic.like", "dnsa.nic.like", "dnsb.nic.like", "dnsc.nic.like", "dnsd.nic.like"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.like", e, w{"https://rdap.nominet.uk/like/"}, t},
933 {"lilly", r, x, 0x42, "Eli Lilly and Company", "https://newgtlds.icann.org/", w{"a.nic.lilly", "b.nic.lilly", "c.nic.lilly", "ns1.dns.nic.lilly", "ns2.dns.nic.lilly", "ns3.dns.nic.lilly"}, n, n, w{"es"}, "whois.nic.lilly", e, w{"https://rdap.nic.lilly/"}, t},
936 {"lilly", r, x, 0x42, "Eli Lilly and Company", "https://www.lilly.com/lilly-global-top-level-domain", w{"a.nic.lilly", "b.nic.lilly", "c.nic.lilly", "ns1.dns.nic.lilly", "ns2.dns.nic.lilly", "ns3.dns.nic.lilly"}, n, n, w{"es"}, "whois.nic.lilly", e, w{"https://rdap.nic.lilly/"}, t},
934937 {"limited", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.limited", "v0n1.nic.limited", "v0n2.nic.limited", "v0n3.nic.limited", "v2n0.nic.limited", "v2n1.nic.limited"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.limited", e, w{"https://rdap.donuts.co/rdap/"}, t},
935938 {"limo", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.limo", "v0n1.nic.limo", "v0n2.nic.limo", "v0n3.nic.limo", "v2n0.nic.limo", "v2n1.nic.limo"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.limo", e, w{"https://rdap.donuts.co/rdap/"}, t},
936939 {"lincoln", r, x, 0x42, "Ford Motor Company", "https://nic.lincoln/", w{"a.nic.lincoln", "b.nic.lincoln", "c.nic.lincoln", "ns1.dns.nic.lincoln", "ns2.dns.nic.lincoln", "ns3.dns.nic.lincoln"}, n, n, w{"da", "fr", "pl", "ru", "sv", "zh"}, "whois.nic.lincoln", e, w{"https://rdap.nic.lincoln/"}, t},
937 {"linde", r, x, 0x42, "Linde Aktiengesellschaft", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.linde", e, w{"https://tld-rdap.verisign.com/linde/v1/"}, t},
938 {"link", r, x, 0x40, "Nova Registry Ltd", "https://nova.link/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, w{"de", "es", "fr", "it", "ja", "mul-Cyrl", "pt", "zh"}, "whois.uniregistry.net", e, w{"https://whois.uniregistry.net/rdap/"}, t},
940 {"linde", r, x, 0x42, "Linde Aktiengesellschaft", "https://www.icann.org/en/registry-agreements/details/linde", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.linde", e, w{"https://tld-rdap.verisign.com/linde/v1/"}, t},
941 {"link", r, x, 0x40, "Nova Registry Ltd", "https://nova.link/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, w{"de", "es", "fr", "it", "ja", "mul-Cyrl", "pt", "zh"}, "whois.nic.link", e, w{"https://whois.uniregistry.net/rdap/"}, t},
939942 {"lipsy", r, x, 0x42, "Lipsy Ltd", "http://nic.lipsy/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.lipsy", e, w{"https://tld-rdap.verisign.com/lipsy/v1/"}, f},
940943 {"live", r, x, 0x40, "Dog Beach, LLC", "https://identity.digital/", w{"v0n0.nic.live", "v0n1.nic.live", "v0n2.nic.live", "v0n3.nic.live", "v2n0.nic.live", "v2n1.nic.live"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.live", e, w{"https://rdap.donuts.co/rdap/"}, t},
941 {"livestrong", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
942 {"living", r, x, 0x40, "Lifestyle Domain Holdings, Inc.", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, w{"https://tld-rdap.verisign.com/living/v1/"}, f},
943 {"lixil", r, x, 0x842, "LIXIL Group Corporation", "https://newgtlds.icann.org/", n, n, n, w{"ja"}, "whois.nic.lixil", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
944 {"livestrong", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
945 {"living", r, x, 0x40, "Lifestyle Domain Holdings, Inc.", "https://www.icann.org/en/registry-agreements/details/living", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, w{"https://tld-rdap.verisign.com/living/v1/"}, f},
946 {"lixil", r, x, 0x842, "LIXIL Group Corporation", e, n, n, n, w{"ja"}, "whois.nic.lixil", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
944947 {"lk", r, z[3357:3371], 0xa0, e, e, w{"c.nic.lk", "d.nic.lk", "l.nic.lk", "m.nic.lk", "ns1.ac.lk", "p.nic.lk", "pendragon.cs.purdue.edu", "t.nic.lk"}, n, n, n, "whois.nic.lk", e, n, f},
945948 {"llc", r, x, 0x40, "Identity Digital Limited", "https://identity.digital/", w{"a0.nic.llc", "a2.nic.llc", "b0.nic.llc", "c0.nic.llc"}, n, n, n, "whois.nic.llc", e, w{"https://rdap.donuts.co/rdap/"}, f},
946 {"llp", r, x, 0x40, "Intercap Registry Inc.", "https://uniregistry.link/extensions/llp/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, w{"es", "ja"}, "whois.uniregistry.net", e, n, t},
947 {"loan", r, x, 0x40, "dot Loan Limited", "https://www.famousfourmedia.com/", w{"a.nic.loan", "b.nic.loan", "c.nic.loan", "ns1.dns.nic.loan", "ns2.dns.nic.loan", "ns3.dns.nic.loan"}, n, n, w{"da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.loan", e, w{"https://rdap.nic.loan/"}, t},
949 {"llp", r, x, 0x40, "Intercap Registry Inc.", "https://uniregistry.link/extensions/llp/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, w{"es", "ja"}, "whois.nic.llp", e, n, t},
950 {"loan", r, x, 0x40, "dot Loan Limited", "http://nic.loan/", w{"a.nic.loan", "b.nic.loan", "c.nic.loan", "ns1.dns.nic.loan", "ns2.dns.nic.loan", "ns3.dns.nic.loan"}, n, n, w{"da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.loan", e, w{"https://rdap.nic.loan/"}, t},
948951 {"loans", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.loans", "v0n1.nic.loans", "v0n2.nic.loans", "v0n3.nic.loans", "v2n0.nic.loans", "v2n1.nic.loans"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.loans", e, w{"https://rdap.donuts.co/rdap/"}, t},
949 {"locker", r, x, 0x42, "Dish DBS Corporation", "https://newgtlds.icann.org/", w{"a0.nic.locker", "a2.nic.locker", "b0.nic.locker", "c0.nic.locker"}, n, n, n, "whois.nic.locker", e, w{"https://rdap.afilias-srs.net/rdap/locker/"}, f},
952 {"locker", r, x, 0x42, "Dish DBS Corporation", "https://dishtlds.com/locker/", w{"a0.nic.locker", "a2.nic.locker", "b0.nic.locker", "c0.nic.locker"}, n, n, n, "whois.nic.locker", e, w{"https://rdap.afilias-srs.net/rdap/locker/"}, f},
950953 {"locus", r, x, 0x42, "Locus Analytics LLC", "http://nic.locus/", w{"dns1.nic.locus", "dns2.nic.locus", "dns3.nic.locus", "dns4.nic.locus", "dnsa.nic.locus", "dnsb.nic.locus", "dnsc.nic.locus", "dnsd.nic.locus"}, n, n, n, "whois.nic.locus", e, w{"https://rdap.nominet.uk/locus/"}, f},
951954 {"loft", r, x, 0x42, "Annco, Inc.", "http://www.nic.loft/", w{"ns1.dns.nic.loft", "ns2.dns.nic.loft", "ns3.dns.nic.loft", "ns4.dns.nic.loft", "ns5.dns.nic.loft", "ns6.dns.nic.loft"}, n, n, n, "whois.nic.loft", e, w{"https://rdap.nic.loft/"}, f},
952955 {"lol", r, x, 0x40, "XYZ.COM LLC", "https://nic.lol/", w{"a.nic.lol", "b.nic.lol", "c.nic.lol", "d.nic.lol"}, n, n, w{"de", "es", "fr", "it", "ja", "mul-Cyrl", "pt", "zh"}, "whois.nic.lol", e, w{"https://rdap.centralnic.com/lol/"}, t},
953956 {"london", r, x, 0xc4, "Dot London Domains Limited", "http://nic.london/", w{"a.nic.london", "b.nic.london", "c.nic.london", "d.nic.london"}, n, w{"London", "GB-LND", "GB-BDG", "GB-BNE", "GB-BEX", "GB-BEN", "GB-BRY", "GB-CMD", "GB-CRY", "GB-EAL", "GB-ENF", "GB-GRE", "GB-HCK", "GB-HMF", "GB-HRY", "GB-HRW", "GB-HAV", "GB-HIL", "GB-HNS", "GB-ISL", "GB-KEC", "GB-KTT", "GB-LBH", "GB-LEW", "GB-MRT", "GB-NWM", "GB-RDB", "GB-RIC", "GB-SWK", "GB-STN", "GB-TWH", "GB-WFT", "GB-WND", "GB-WSM"}, w{"de", "es", "fr", "it"}, "whois.nic.london", e, w{"https://rdap.centralnic.com/london/"}, t},
954 {"loreal", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
957 {"loreal", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
955958 {"lotte", r, x, 0x42, "Lotte Holdings Co., Ltd.", "https://nic.lotte/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"es", "fr", "ja", "ko", "pl", "pt"}, "whois.nic.lotte", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
956 {"lotto", r, x, 0x40, "Identity Digital Limited", "https://nic.lotto/", w{"a0.nic.lotto", "a2.nic.lotto", "b0.nic.lotto", "c0.nic.lotto"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.lotto", e, w{"https://rdap.donuts.co/rdap/"}, t},
959 {"lotto", r, x, 0x40, "Identity Digital Limited", "http://nic.lotto/", w{"a0.nic.lotto", "a2.nic.lotto", "b0.nic.lotto", "c0.nic.lotto"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.lotto", e, w{"https://rdap.donuts.co/rdap/"}, t},
957960 {"love", r, x, 0x40, "Merchant Law Group LLP", "https://get.love/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, w{"ar", "he", "ja", "ko", "lo", "mul-Cyrl", "mul-Grek", "mul-Latn", "th", "zh"}, "whois.nic.love", e, w{"https://rdap.centralnic.com/love/"}, t},
958961 {"lpl", r, x, 0x42, "LPL Holdings, Inc.", "https://www.nic.lpl/", w{"a.nic.lpl", "b.nic.lpl", "c.nic.lpl", "d.nic.lpl"}, n, n, w{"es"}, "whois.nic.lpl", e, w{"https://rdap.centralnic.com/lpl/"}, t},
959962 {"lplfinancial", r, x, 0x42, "LPL Holdings, Inc.", "https://www.nic.lplfinancial/", w{"a.nic.lplfinancial", "b.nic.lplfinancial", "c.nic.lplfinancial", "d.nic.lplfinancial"}, n, n, w{"es"}, "whois.nic.lplfinancial", e, w{"https://rdap.centralnic.com/lplfinancial/"}, t},
961964 {"ls", r, z[3377:3383], 0xa0, e, "https://www.nic.ls/", w{"ls-ns.anycast.pch.net", "ns-ls.afrinic.net", "ns1.nic.ls", "ns2.nic.ls"}, n, n, n, "whois.nic.ls", e, n, f},
962965 {"lt", r, z[3383:3384], 0xa0, e, e, w{"a.tld.lt", "b.tld.lt", "c.tld.lt", "d.tld.lt", "e.tld.lt", "f.tld.lt"}, n, n, n, "whois.domreg.lt", e, n, t},
963966 {"ltd", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.ltd", "v0n1.nic.ltd", "v0n2.nic.ltd", "v0n3.nic.ltd", "v2n0.nic.ltd", "v2n1.nic.ltd"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.ltd", e, w{"https://rdap.donuts.co/rdap/"}, t},
964 {"ltda", r, x, 0x40, "InterNetX, Corp", "https://nic.ltda/", w{"a0.nic.ltda", "a2.nic.ltda", "b0.nic.ltda", "c0.nic.ltda"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/ltda/"}, f},
967 {"ltda", r, x, 0x40, "InterNetX, Corp", "http://nic.ltda/", w{"a0.nic.ltda", "a2.nic.ltda", "b0.nic.ltda", "c0.nic.ltda"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/ltda/"}, f},
965968 {"lu", r, x, 0xa0, e, e, w{"g.dns.lu", "i.dns.lu", "j.dns.lu", "k.dns.lu", "ns1.dns.lu", "p.dns.lu"}, n, n, n, "whois.dns.lu", e, n, t},
966 {"lundbeck", r, x, 0x42, "H. Lundbeck A/S", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.lundbeck", e, w{"https://tld-rdap.verisign.com/lundbeck/v1/"}, f},
967 {"lupin", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
968 {"luxe", r, x, 0x40, "Registry Services, LLC", "http://nix.luxe/", w{"a.nic.luxe", "b.nic.luxe", "c.nic.luxe", "d.nic.luxe"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "he", "it", "no", "ru", "sv", "zh"}, "whois.nic.luxe", e, w{"https://rdap.nic.luxe/"}, t},
969 {"lundbeck", r, x, 0x42, "H. Lundbeck A/S", "https://www.lundbeck.com/global/nic", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.lundbeck", e, w{"https://tld-rdap.verisign.com/lundbeck/v1/"}, f},
970 {"lupin", r, x, 0x842, e, e, n, n, n, n, e, e, n, f},
971 {"luxe", r, x, 0x40, "Registry Services, LLC", "https://nic.luxe/", w{"a.nic.luxe", "b.nic.luxe", "c.nic.luxe", "d.nic.luxe"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "he", "it", "no", "ru", "sv", "zh"}, "whois.nic.luxe", e, w{"https://rdap.nic.luxe/"}, t},
969972 {"luxury", r, x, 0x40, "Luxury Partners, LLC", "https://nic.luxury/", w{"a.nic.luxury", "b.nic.luxury", "c.nic.luxury", "d.nic.luxury"}, n, n, n, "whois.nic.luxury", e, w{"https://rdap.centralnic.com/luxury/"}, f},
970973 {"lv", r, z[3384:3393], 0xa0, e, e, w{"a.nic.lv", "b.nic.lv", "d.nic.lv", "n.nic.lv", "nu.nic.lv", "sunic.sunet.se"}, n, n, n, "whois.nic.lv", e, n, t},
971974 {"ly", r, z[3393:3402], 0xa0, e, "https://nic.ly/", w{"dns.lttnet.net", "dns1.lttnet.net", "ns-ly.afrinic.net", "pch.ltt.ly", "phloem.uoregon.edu"}, n, n, n, "whois.nic.ly", e, n, f},
972975 {"ma", r, z[3402:3408], 0xa0, e, e, w{"a.tld.ma", "b.tld.ma", "c.tld.ma", "d.tld.ma", "dns.inria.fr", "e.tld.ma", "f.tld.ma", "ns-ma.nic.fr"}, n, n, n, "whois.registre.ma", e, n, f},
973 {"macys", r, x, 0x42, "Macys, Inc.", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.macys", e, w{"https://tld-rdap.verisign.com/macys/v1/"}, f},
976 {"macys", r, x, 0x42, "Macys, Inc.", "https://www.icann.org/en/registry-agreements/details/macys", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.macys", e, w{"https://tld-rdap.verisign.com/macys/v1/"}, f},
974977 {"madrid", r, x, 0xc4, "Comunidad de Madrid", "https://dominio.madrid/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, w{"Madrid", "ES-MD"}, w{"mul-Latn"}, "whois.nic.madrid", e, w{"https://rdap.nic.madrid/"}, t},
975978 {"maif", r, x, 0x42, "Mutuelle Assurance Instituteur France (MAIF)", "http://nic.maif/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"mul-Latn"}, e, e, w{"https://tld-rdap.verisign.com/maif/v1/"}, t},
976 {"mail", r, x, 0x2140, e, "https://features.icann.org/addressing-new-gtld-program-applications-corp-home-and-mail", n, n, n, n, e, e, n, t},
979 {"mail", r, x, 0x4140, e, "https://features.icann.org/addressing-new-gtld-program-applications-corp-home-and-mail", n, n, n, n, e, e, n, t},
977980 {"maison", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.maison", "v0n1.nic.maison", "v0n2.nic.maison", "v0n3.nic.maison", "v2n0.nic.maison", "v2n1.nic.maison"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.maison", e, w{"https://rdap.donuts.co/rdap/"}, t},
978981 {"makeup", r, x, 0x42, "XYZ.COM LLC", "https://nic.makeup/", w{"a.nic.makeup", "b.nic.makeup", "c.nic.makeup", "d.nic.makeup"}, n, n, w{"ja", "ko", "mul-Grek", "mul-Latn", "ru", "zh"}, "whois.nic.makeup", e, w{"https://rdap.centralnic.com/makeup/"}, t},
979982 {"man", r, x, 0x42, "MAN SE", "https://nic.man/en/index.jsp", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, w{"ar", "ca", "cs", "da", "de", "el", "es", "fi", "fr", "he", "hr", "hu", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "tr", "uk", "zh"}, "whois.nic.man", e, w{"https://rdap.nic.man/"}, t},
980983 {"management", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.management", "v0n1.nic.management", "v0n2.nic.management", "v0n3.nic.management", "v2n0.nic.management", "v2n1.nic.management"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.management", e, w{"https://rdap.donuts.co/rdap/"}, t},
981984 {"mango", r, x, 0x42, "PUNTO FA S.L.", "https://shop.mango.com/preHome.faces", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, w{"mul-Latn"}, "whois.nic.mango", e, w{"https://rdap.nic.mango/"}, t},
982 {"map", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
985 {"map", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.map", e, w{"https://www.registry.google/rdap/"}, t},
983986 {"market", r, x, 0x40, "Dog Beach, LLC", e, w{"v0n0.nic.market", "v0n1.nic.market", "v0n2.nic.market", "v0n3.nic.market", "v2n0.nic.market", "v2n1.nic.market"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.market", e, w{"https://rdap.donuts.co/rdap/"}, t},
984987 {"marketing", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.marketing", "v0n1.nic.marketing", "v0n2.nic.marketing", "v0n3.nic.marketing", "v2n0.nic.marketing", "v2n1.nic.marketing"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.marketing", e, w{"https://rdap.donuts.co/rdap/"}, t},
985 {"markets", r, x, 0x40, "Dog Beach, LLC", "https://bostonivy.co/", w{"v0n0.nic.markets", "v0n1.nic.markets", "v0n2.nic.markets", "v0n3.nic.markets", "v2n0.nic.markets", "v2n1.nic.markets"}, n, n, n, "whois.nic.markets", e, w{"https://rdap.donuts.co/rdap/"}, f},
988 {"markets", r, x, 0x40, "Dog Beach, LLC", "http://nic.markets/", w{"v0n0.nic.markets", "v0n1.nic.markets", "v0n2.nic.markets", "v0n3.nic.markets", "v2n0.nic.markets", "v2n1.nic.markets"}, n, n, n, "whois.nic.markets", e, w{"https://rdap.donuts.co/rdap/"}, f},
986989 {"marriott", r, x, 0x42, "Marriott Worldwide Corporation", "https://www.marriott.com/marriott/gtld.mi", w{"a0.nic.marriott", "a2.nic.marriott", "b0.nic.marriott", "c0.nic.marriott"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/marriott/"}, f},
987990 {"marshalls", r, x, 0x42, "The TJX Companies, Inc.", "http://nic.marshalls/", w{"a.nic.marshalls", "b.nic.marshalls", "c.nic.marshalls", "ns1.dns.nic.marshalls", "ns2.dns.nic.marshalls", "ns3.dns.nic.marshalls"}, n, n, n, "whois.nic.marshalls", e, w{"https://rdap.nic.marshalls/"}, f},
988 {"maserati", r, x, 0x42, "Fiat Chrysler Automobiles N.V.", "https://newgtlds.icann.org/", w{"a0.nic.maserati", "a2.nic.maserati", "b0.nic.maserati", "c0.nic.maserati"}, n, n, n, "whois.nic.maserati", e, w{"https://rdap.afilias-srs.net/rdap/maserati/"}, f},
989 {"matrix", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
990 {"mattel", r, x, 0x42, "Mattel Sites, Inc.", "https://newgtlds.icann.org/", w{"a.nic.mattel", "b.nic.mattel", "c.nic.mattel", "ns1.dns.nic.mattel", "ns2.dns.nic.mattel", "ns3.dns.nic.mattel"}, n, n, w{"es"}, "whois.nic.mattel", e, w{"https://rdap.nic.mattel/"}, t},
991 {"maybelline", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
991 {"maserati", r, x, 0x42, "Fiat Chrysler Automobiles N.V.", "https://www.icann.org/en/registry-agreements/details/maserati", w{"a0.nic.maserati", "a2.nic.maserati", "b0.nic.maserati", "c0.nic.maserati"}, n, n, n, "whois.nic.maserati", e, w{"https://rdap.afilias-srs.net/rdap/maserati/"}, f},
992 {"matrix", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
993 {"mattel", r, x, 0x42, "Mattel Sites, Inc.", "https://www.icann.org/en/registry-agreements/details/mattel", w{"a.nic.mattel", "b.nic.mattel", "c.nic.mattel", "ns1.dns.nic.mattel", "ns2.dns.nic.mattel", "ns3.dns.nic.mattel"}, n, n, w{"es"}, "whois.nic.mattel", e, w{"https://rdap.nic.mattel/"}, t},
994 {"maybelline", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
992995 {"mba", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.mba", "v0n1.nic.mba", "v0n2.nic.mba", "v0n3.nic.mba", "v2n0.nic.mba", "v2n1.nic.mba"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.mba", e, w{"https://rdap.donuts.co/rdap/"}, t},
993996 {"mc", r, z[3408:3410], 0xa0, e, "https://www.nic.mc/", w{"mc.cctld.authdns.ripe.net", "ns1.nic.mc", "ns2.nic.mc"}, n, n, n, e, e, n, f},
994 {"mcd", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
995 {"mcdonalds", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
997 {"mcd", r, x, 0x842, e, e, n, n, n, n, e, e, n, f},
998 {"mcdonalds", r, x, 0x842, e, e, n, n, n, n, e, e, n, f},
996999 {"mckinsey", r, x, 0x42, "McKinsey Holdings, Inc.", "https://www.mckinsey.com/nic", w{"a0.nic.mckinsey", "a2.nic.mckinsey", "b0.nic.mckinsey", "c0.nic.mckinsey"}, n, n, n, "whois.nic.mckinsey", e, w{"https://rdap.afilias-srs.net/rdap/mckinsey/"}, f},
9971000 {"md", r, x, 0xa0, e, e, w{"nsa.tld.md", "nsb.tld.md", "nsc.dns.md", "nsf.dns.md", "nsr.dns.md"}, n, n, n, "whois.nic.md", e, n, f},
9981001 {"me", r, z[3410:3418], 0xe0, e, "https://domain.me/", w{"a0.nic.me", "a2.nic.me", "b0.nic.me", "b2.nic.me", "c0.nic.me"}, n, n, n, "whois.nic.me", e, n, f},
9991002 {"med", r, x, 0x40, "Medistry LLC", "http://www.nic.med/", w{"dns1.nic.med", "dns2.nic.med", "dns3.nic.med", "dns4.nic.med", "dnsa.nic.med", "dnsb.nic.med", "dnsc.nic.med", "dnsd.nic.med"}, n, n, n, "whois.nic.med", e, w{"https://rdap.nominet.uk/med/"}, f},
10001003 {"media", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.media", "v0n1.nic.media", "v0n2.nic.media", "v0n3.nic.media", "v2n0.nic.media", "v2n1.nic.media"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.media", e, w{"https://rdap.donuts.co/rdap/"}, t},
1001 {"medical", r, x, 0x40, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1002 {"meet", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
1004 {"medical", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
1005 {"meet", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.meet", e, w{"https://www.registry.google/rdap/"}, t},
10031006 {"melbourne", r, x, 0xc4, "The Crown in right of the State of Victoria, represented by its Department of State Development, Business and Innovation", "https://www.live.melbourne/", w{"a.nic.melbourne", "b.nic.melbourne", "c.nic.melbourne", "d.nic.melbourne"}, n, w{"Melbourne"}, n, "whois.nic.melbourne", e, w{"https://rdap.nic.melbourne/"}, f},
10041007 {"meme", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
10051008 {"memorial", r, x, 0x40, "Dog Beach, LLC", "https://identity.digital/", w{"v0n0.nic.memorial", "v0n1.nic.memorial", "v0n2.nic.memorial", "v0n3.nic.memorial", "v2n0.nic.memorial", "v2n1.nic.memorial"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.memorial", e, w{"https://rdap.donuts.co/rdap/"}, t},
1006 {"men", r, x, 0x40, "Exclusive Registry Limited", "https://www.famousfourmedia.com/", w{"a.nic.men", "b.nic.men", "c.nic.men", "d.nic.men"}, n, n, n, "whois.nic.men", e, w{"https://rdap.nic.men/"}, t},
1009 {"men", r, x, 0x40, "Exclusive Registry Limited", "http://nic.men/", w{"a.nic.men", "b.nic.men", "c.nic.men", "d.nic.men"}, n, n, n, "whois.nic.men", e, w{"https://rdap.nic.men/"}, t},
10071010 {"menu", r, x, 0x40, "Dot Menu Registry, LLC", e, w{"a.nic.menu", "b.nic.menu", "c.nic.menu", "d.nic.menu"}, n, n, n, "whois.nic.menu", e, w{"https://rdap.nic.menu/"}, f},
1008 {"meo", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1009 {"merck", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1010 {"merckmsd", r, x, 0x42, "MSD Registry Holdings, Inc.", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, w{"https://tld-rdap.verisign.com/merckmsd/v1/"}, f},
1011 {"metlife", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.metlife", e, n, f},
1011 {"meo", r, x, 0x842, e, e, n, n, n, n, e, e, n, f},
1012 {"merck", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
1013 {"merckmsd", r, x, 0x42, "MSD Registry Holdings, Inc.", "https://www.icann.org/en/registry-agreements/details/merckmsd", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, w{"https://tld-rdap.verisign.com/merckmsd/v1/"}, f},
1014 {"metlife", r, x, 0x842, e, e, n, n, n, n, "whois.nic.metlife", e, n, f},
10121015 {"mf", r, x, 0x8a0, e, "https://en.wikipedia.org/wiki/.mf", n, n, n, n, e, e, n, f},
10131016 {"mg", r, z[3418:3429], 0xa0, e, e, w{"censvrns0001.ird.fr", "ns-mg.malagasy.com", "ns.dts.mg", "ns.nic.mg", "pch.nic.mg"}, n, n, n, "whois.nic.mg", e, n, f},
10141017 {"mh", r, x, 0xa8, e, e, w{"ns.amarshallinc.com", "ns.ntamar.net"}, n, n, n, e, e, n, f},
10151018 {"miami", r, x, 0xc4, "Registry Services, LLC", "http://nic.miami/", w{"a.nic.miami", "b.nic.miami", "c.nic.miami", "d.nic.miami"}, n, w{"Miami"}, w{"es", "fr"}, "whois.nic.miami", e, w{"https://rdap.nic.miami/"}, t},
10161019 {"microsoft", r, x, 0x42, "Microsoft Corporation", "https://nic.microsoft/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, e, e, w{"https://tld-rdap.verisign.com/microsoft/v1/"}, t},
1017 {"mih", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1018 {"mii", r, x, 0x2040, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1020 {"mih", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
1021 {"mii", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
10191022 {"mil", r, x, 0x1040, e, e, w{"con1.nipr.mil", "con2.nipr.mil", "eur1.nipr.mil", "eur2.nipr.mil", "pac1.nipr.mil", "pac2.nipr.mil"}, n, n, n, "is-1.nic.mil", e, n, f},
10201023 {"mini", r, x, 0x42, "Bayerische Motoren Werke Aktiengesellschaft", "https://nic.mini/", w{"a.nic.mini", "b.nic.mini", "c.nic.mini", "d.nic.mini"}, n, n, w{"de"}, "whois.nic.mini", e, w{"https://rdap.centralnic.com/mini/"}, t},
10211024 {"mint", r, x, 0x42, "Intuit Administrative Services, Inc.", "http://www.nic.mint/", w{"ns1.dns.nic.mint", "ns2.dns.nic.mint", "ns3.dns.nic.mint", "ns4.dns.nic.mint", "ns5.dns.nic.mint", "ns6.dns.nic.mint"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.mint", e, w{"https://rdap.nic.mint/"}, t},
10221025 {"mit", r, x, 0x42, "Massachusetts Institute of Technology", "https://nic.mit/", w{"a0.nic.mit", "a2.nic.mit", "b0.nic.mit", "c0.nic.mit"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/mit/"}, f},
1023 {"mitek", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1026 {"mitek", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
10241027 {"mitsubishi", r, x, 0x42, "Mitsubishi Corporation", "https://nic.mitsubishi/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ja"}, "whois.nic.gmo", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
10251028 {"mk", r, z[3429:3437], 0xa0, e, e, w{"d.ext.nic.cz", "dns-mk.univie.ac.at", "ns2.arnes.si", "tld1.marnet.mk"}, n, n, n, "whois.marnet.mk", e, n, f},
10261029 {"ml", r, z[3437:3443], 0xa0, e, e, w{"a.ns.ml", "b.ns.ml", "c.ns.ml", "d.ns.ml"}, n, n, n, "whois.dot.ml", e, n, t},
10271030 {"mlb", r, x, 0x42, "MLB Advanced Media DH, LLC", "https://www.mlb.com/official-information/mlb-nic", w{"a.nic.mlb", "b.nic.mlb", "c.nic.mlb", "ns1.dns.nic.mlb", "ns2.dns.nic.mlb", "ns3.dns.nic.mlb"}, n, n, w{"es"}, "whois.nic.mlb", e, w{"https://rdap.nic.mlb/"}, t},
1028 {"mls", r, x, 0x40, "The Canadian Real Estate Association", "https://newgtlds.icann.org/", w{"a.ns.nic.mls", "b.ns.nic.mls"}, n, n, w{"fr"}, "whois.nic.mls", e, w{"https://rdap.mls.fury.ca/rdap/"}, t},
1031 {"mls", r, x, 0x40, "The Canadian Real Estate Association", "https://www.icann.org/en/registry-agreements/details/mls", w{"a.ns.nic.mls", "b.ns.nic.mls"}, n, n, w{"fr"}, "whois.nic.mls", e, w{"https://rdap.mls.fury.ca/rdap/"}, t},
10291032 {"mm", r, z[3443:3451], 0xa8, e, e, w{"a.nic.net.mm", "b.nic.net.mm", "c.nic.net.mm", "d.nic.net.mm"}, n, n, n, "whois.registry.gov.mm", e, n, f},
10301033 {"mma", r, x, 0x42, "MMA IARD", "http://nic.mma/", w{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, w{"mul-Latn"}, "whois.nic.mma", e, w{"https://rdap.nic.mma/"}, t},
1031 {"mn", r, z[3451:3454], 0xa0, e, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org", "ns1.magic.mn", "ns2.magic.mn", "ns3.magic.mn", "ns4.magic.mn"}, n, n, n, "whois.nic.mn", e, n, f},
1032 {"mnet", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1034 {"mn", r, z[3451:3454], 0xa0, e, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org", "ns1.magic.mn", "ns2.magic.mn", "ns3.magic.mn", "ns4.magic.mn"}, n, n, n, "whois.afilias-grs.info", e, n, f},
1035 {"mnet", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
10331036 {"mo", r, z[3454:3460], 0xa0, e, e, w{"a.monic.mo", "b.monic.mo", "c.monic.mo", "d.monic.mo", "e.monic.mo", "ns17.cdns.net", "ns2.cuhk.edu.hk"}, n, n, n, "whois.monic.mo", e, n, f},
1034 {"mobi", r, x, 0x1040, "Identity Digital Limited", "https://dotmobi.mobi/", w{"a0.mobi.afilias-nst.info", "a2.mobi.afilias-nst.info", "b0.mobi.afilias-nst.org", "b2.mobi.afilias-nst.org", "c0.mobi.afilias-nst.info", "d0.mobi.afilias-nst.org"}, n, n, w{"zh-CN"}, "whois.nic.mobi", e, w{"https://rdap.donuts.co/rdap/"}, t},
1035 {"mobile", r, x, 0x40, "Dish DBS Corporation", "http://www.dishtlds.com/mobile/", w{"a0.nic.mobile", "a2.nic.mobile", "b0.nic.mobile", "c0.nic.mobile"}, n, n, n, "whois.nic.mobile", e, w{"https://rdap.afilias-srs.net/rdap/mobile/"}, f},
1036 {"mobily", r, x, 0x840, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.mobily", e, n, f},
1037 {"mobi", r, x, 0x1040, "Identity Digital Limited", "http://nic.mobi/", w{"a0.mobi.afilias-nst.info", "a2.mobi.afilias-nst.info", "b0.mobi.afilias-nst.org", "b2.mobi.afilias-nst.org", "c0.mobi.afilias-nst.info", "d0.mobi.afilias-nst.org"}, n, n, w{"zh-CN"}, "whois.nic.mobi", e, w{"https://rdap.donuts.co/rdap/"}, t},
1038 {"mobile", r, x, 0x40, "Dish DBS Corporation", "https://www.dishtlds.com/mobile/", w{"a0.nic.mobile", "a2.nic.mobile", "b0.nic.mobile", "c0.nic.mobile"}, n, n, n, "whois.nic.mobile", e, w{"https://rdap.afilias-srs.net/rdap/mobile/"}, f},
1039 {"mobily", r, x, 0x840, e, e, n, n, n, n, "whois.nic.mobily", e, n, f},
10371040 {"moda", r, x, 0x40, "Dog Beach, LLC", e, w{"v0n0.nic.moda", "v0n1.nic.moda", "v0n2.nic.moda", "v0n3.nic.moda", "v2n0.nic.moda", "v2n1.nic.moda"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.moda", e, w{"https://rdap.donuts.co/rdap/"}, t},
10381041 {"moe", r, x, 0x40, "Interlink Systems Innovation Institute K.K.", e, w{"a.nic.moe", "b.nic.moe", "c.nic.moe", "ns1.dns.nic.moe", "ns2.dns.nic.moe", "ns3.dns.nic.moe"}, n, n, w{"ja"}, "whois.nic.moe", e, w{"https://rdap.nic.moe/"}, t},
1039 {"moi", r, x, 0x42, "Amazon Registry Services, Inc.", "http://bienvenue.moi/", w{"dns1.nic.moi", "dns2.nic.moi", "dns3.nic.moi", "dns4.nic.moi", "dnsa.nic.moi", "dnsb.nic.moi", "dnsc.nic.moi", "dnsd.nic.moi"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.moi", e, w{"https://rdap.nominet.uk/moi/"}, t},
1042 {"moi", r, x, 0x42, "Amazon Registry Services, Inc.", "https://bienvenue.moi/", w{"dns1.nic.moi", "dns2.nic.moi", "dns3.nic.moi", "dns4.nic.moi", "dnsa.nic.moi", "dnsb.nic.moi", "dnsc.nic.moi", "dnsd.nic.moi"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.moi", e, w{"https://rdap.nominet.uk/moi/"}, t},
10401043 {"mom", r, x, 0x40, "XYZ.COM LLC", "https://nic.mom/", w{"a.nic.mom", "b.nic.mom", "c.nic.mom", "d.nic.mom"}, n, n, w{"de", "es", "fr", "it", "ja", "mul-Cyrl", "pt", "zh"}, "whois.nic.mom", e, w{"https://rdap.centralnic.com/mom/"}, t},
10411044 {"monash", r, x, 0x42, "Monash University", "http://nic.monash/", w{"a.nic.monash", "b.nic.monash", "c.nic.monash", "d.nic.monash"}, n, n, n, "whois.nic.monash", e, w{"https://rdap.nic.monash/"}, f},
10421045 {"money", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.money", "v0n1.nic.money", "v0n2.nic.money", "v0n3.nic.money", "v2n0.nic.money", "v2n1.nic.money"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.money", e, w{"https://rdap.donuts.co/rdap/"}, t},
10431046 {"monster", r, x, 0x42, "XYZ.COM LLC", "https://nic.monster/", w{"a.nic.monster", "b.nic.monster", "c.nic.monster", "d.nic.monster"}, n, n, w{"ar", "he", "ja", "ko", "lo", "mul-Grek", "mul-Latn", "ru", "th", "zh"}, "whois.nic.monster", e, w{"https://rdap.centralnic.com/monster/"}, t},
1044 {"montblanc", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1045 {"mopar", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.afilias-srs.net", e, n, f},
1046 {"mormon", r, x, 0x42, "IRI Domain Management, LLC", "https://newgtlds.icann.org/", w{"a0.nic.mormon", "a2.nic.mormon", "b0.nic.mormon", "c0.nic.mormon"}, n, n, n, "whois.nic.mormon", e, w{"https://rdap.afilias-srs.net/rdap/mormon/"}, f},
1047 {"montblanc", r, x, 0x842, e, e, n, n, n, n, e, e, n, f},
1048 {"mopar", r, x, 0x842, e, e, n, n, n, n, "whois.afilias-srs.net", e, n, f},
1049 {"mormon", r, x, 0x42, "IRI Domain Management, LLC", "https://www.icann.org/en/registry-agreements/details/mormon", w{"a0.nic.mormon", "a2.nic.mormon", "b0.nic.mormon", "c0.nic.mormon"}, n, n, n, "whois.nic.mormon", e, w{"https://rdap.afilias-srs.net/rdap/mormon/"}, f},
10471050 {"mortgage", r, x, 0x40, "Dog Beach, LLC", e, w{"v0n0.nic.mortgage", "v0n1.nic.mortgage", "v0n2.nic.mortgage", "v0n3.nic.mortgage", "v2n0.nic.mortgage", "v2n1.nic.mortgage"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.mortgage", e, w{"https://rdap.donuts.co/rdap/"}, t},
1048 {"moscow", r, x, 0xc4, "Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)", "https://newgtlds.icann.org/", w{"a.dns.flexireg.ru", "b.dns.flexireg.net", "c.dns.flexireg.org", "d.dns.flexireg.domains"}, n, w{"Moscow", "RU-MOW"}, n, "whois.nic.moscow", e, w{"https://flexireg.net/moscow/rdap/"}, f},
1049 {"moto", r, x, 0x42, "Motorola Trademark Holdings, LLC", "https://newgtlds.icann.org/", w{"ns1.dns.nic.moto", "ns2.dns.nic.moto", "ns3.dns.nic.moto", "ns4.dns.nic.moto", "ns5.dns.nic.moto", "ns6.dns.nic.moto"}, n, n, w{"da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.moto", e, w{"https://rdap.nic.moto/"}, t},
1051 {"moscow", r, x, 0xc4, "Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)", "http://www.nic.moscow/", w{"a.dns.flexireg.ru", "b.dns.flexireg.net", "c.dns.flexireg.org", "d.dns.flexireg.domains"}, n, w{"Moscow", "RU-MOW"}, n, "whois.nic.moscow", e, w{"https://flexireg.net/moscow/rdap/"}, f},
1052 {"moto", r, x, 0x42, "Motorola Trademark Holdings, LLC", "http://www.nic.moto/", w{"ns1.dns.nic.moto", "ns2.dns.nic.moto", "ns3.dns.nic.moto", "ns4.dns.nic.moto", "ns5.dns.nic.moto", "ns6.dns.nic.moto"}, n, n, w{"da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.moto", e, w{"https://rdap.nic.moto/"}, t},
10501053 {"motorcycles", r, x, 0x40, "XYZ.COM LLC", "https://nic.motorcycles/", w{"a.nic.motorcycles", "b.nic.motorcycles", "c.nic.motorcycles", "d.nic.motorcycles"}, n, n, n, "whois.nic.motorcycles", e, w{"https://rdap.centralnic.com/motorcycles/"}, f},
10511054 {"mov", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
10521055 {"movie", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.movie", "v0n1.nic.movie", "v0n2.nic.movie", "v0n3.nic.movie", "v2n0.nic.movie", "v2n1.nic.movie"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.movie", e, w{"https://rdap.donuts.co/rdap/"}, t},
1053 {"movistar", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois-fe.movistar.tango.knipp.de", e, n, f},
1054 {"mozaic", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1055 {"mp", r, z[3460:3464], 0xa0, e, "http://get.mp/", w{"ns1.nic.mp", "ns2.nic.mp", "ns3.nic.mp", "ns4.nic.mp"}, n, n, n, "whois.nic.mp", e, n, f},
1056 {"movistar", r, x, 0x842, e, e, n, n, n, n, "whois-fe.movistar.tango.knipp.de", e, n, f},
1057 {"mozaic", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
1058 {"mp", r, z[3460:3464], 0xa0, e, "https://get.mp/", w{"ns1.nic.mp", "ns2.nic.mp", "ns3.nic.mp", "ns4.nic.mp"}, n, n, n, "whois.nic.mp", e, n, f},
10561059 {"mq", r, x, 0xa0, e, "https://www.dom-enic.com/", w{"ns1-fr.mediaserv.net", "ns1-gp.mediaserv.net", "ns1-mq.mediaserv.net"}, n, n, n, "whois.mediaserv.net", e, n, f},
10571060 {"mr", r, z[3464:3468], 0xa0, e, e, w{"ns-mr.afrinic.net", "ns-mr.nic.fr", "ns1.nic.mr", "ns2.nic.mr", "ns3.nic.mr"}, n, n, n, "whois.nic.mr", e, n, f},
1058 {"mrmuscle", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1059 {"mrporter", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1061 {"mrmuscle", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
1062 {"mrporter", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
10601063 {"ms", r, z[3468:3472], 0xe0, e, e, w{"a.lactld.org", "ms-ns.anycast.pch.net", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, "whois.nic.ms", e, n, f},
10611064 {"msd", r, x, 0x42, "MSD Registry Holdings, Inc.", "https://www.nic.msd/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, w{"https://tld-rdap.verisign.com/msd/v1/"}, f},
10621065 {"mt", r, z[3472:3477], 0xa0, e, e, w{"a.ns.mt", "b.ns.mt", "f.ns.mt", "p.ns.mt"}, n, n, n, e, "https://www.nic.org.mt/dotmt/", n, f},
1063 {"mtn", r, x, 0x42, "MTN Dubai Limited", "https://newgtlds.icann.org/", w{"dns1.nic.mtn", "dns2.nic.mtn", "dns3.nic.mtn", "dns4.nic.mtn", "dnsa.nic.mtn", "dnsb.nic.mtn", "dnsc.nic.mtn", "dnsd.nic.mtn"}, n, n, n, "whois.nic.mtn", e, w{"https://rdap.nominet.uk/mtn/"}, f},
1064 {"mtpc", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.mtpc", e, n, f},
1065 {"mtr", r, x, 0x42, "MTR Corporation Limited", "https://newgtlds.icann.org/", w{"ns1.nic.mtr", "ns2.nic.mtr", "ns3.nic.mtr", "ns4.nic.mtr"}, n, n, n, "whois.nic.mtr", e, w{"https://whois.nic.mtr/rdap/"}, f},
1066 {"mtn", r, x, 0x42, "MTN Dubai Limited", "http://www.nic.mtn/", w{"dns1.nic.mtn", "dns2.nic.mtn", "dns3.nic.mtn", "dns4.nic.mtn", "dnsa.nic.mtn", "dnsb.nic.mtn", "dnsc.nic.mtn", "dnsd.nic.mtn"}, n, n, n, "whois.nic.mtn", e, w{"https://rdap.nominet.uk/mtn/"}, f},
1067 {"mtpc", r, x, 0x842, e, e, n, n, n, n, "whois.nic.mtpc", e, n, f},
1068 {"mtr", r, x, 0x42, "MTR Corporation Limited", "https://www.icann.org/en/registry-agreements/details/mtr", w{"ns1.nic.mtr", "ns2.nic.mtr", "ns3.nic.mtr", "ns4.nic.mtr"}, n, n, n, "whois.nic.mtr", e, w{"https://whois.nic.mtr/rdap/"}, f},
10661069 {"mu", r, z[3477:3486], 0xa0, e, e, w{"anycast1.irondns.net", "fork.sth.dnsnode.net", "udns1.tld.mu", "udns2.tld.mu"}, n, n, n, "whois.nic.mu", e, n, f},
1067 {"multichoice", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1068 {"museum", r, x, 0x1040, "Museum Domain Management Association (MuseDoma)", "https://welcome.museum/", w{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, w{"mul-Latn"}, "whois.nic.museum", e, w{"https://rdap.nic.museum/"}, t},
1070 {"multichoice", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
1071 {"museum", r, x, 0x1040, "Museum Domain Management Association (MuseDoma)", "https://welcome.museum/", w{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, w{"mul-Latn"}, "whois.museum", e, w{"https://rdap.nic.museum/"}, t},
10691072 {"music", r, x, 0x40, "DotMusic Limited", "https://nic.music/", w{"a.nic.music", "b.nic.music", "c.nic.music", "d.nic.music"}, n, n, n, "whois.nic.music", e, n, f},
10701073 {"mutual", r, x, 0x42, "Northwestern Mutual MU TLD Registry, LLC", "https://www.nic.mutual/", w{"a.nic.mutual", "b.nic.mutual", "c.nic.mutual", "ns1.dns.nic.mutual", "ns2.dns.nic.mutual", "ns3.dns.nic.mutual"}, n, n, w{"es"}, "whois.nic.mutual", e, w{"https://rdap.nic.mutual/"}, t},
1071 {"mutualfunds", r, x, 0x40, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1072 {"mutuelle", r, x, 0x840, e, "https://newgtlds.icann.org/", n, n, n, n, "whois-mutuelle.nic.fr", e, n, f},
1074 {"mutualfunds", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
1075 {"mutuelle", r, x, 0x840, e, e, n, n, n, n, "whois-mutuelle.nic.fr", e, n, f},
10731076 {"mv", r, z[3486:3500], 0xa0, e, e, w{"mv-ns.anycast.pch.net", "ns.dhivehinet.net.mv", "ns2.dhivehinet.net.mv"}, n, n, n, e, e, n, f},
10741077 {"mw", r, z[3500:3510], 0xa0, e, "http://nic.mw/", w{"chambo.sdnp.org.mw", "d.ext.nic.cz", "domwe.sdn.mw", "mw.cctld.authdns.ripe.net", "ns4.apnic.net", "pch1.nic.mw", "rip.psg.com"}, n, n, n, "whois.nic.mw", e, n, f},
10751078 {"mx", r, z[3510:3515], 0xa0, e, e, w{"c.mx-ns.mx", "e.mx-ns.mx", "i.mx-ns.mx", "m.mx-ns.mx", "o.mx-ns.mx", "x.mx-ns.mx"}, n, n, n, "whois.mx", e, n, f},
10761079 {"my", r, z[3515:3523], 0xa0, e, "https://mynic.my/", w{"a.mynic.centralnic-dns.com", "a.nic.my", "a1.nic.my", "b.mynic.centralnic-dns.com", "c.mynic.centralnic-dns.com", "d.mynic.centralnic-dns.com"}, n, n, w{"ms-MY"}, "whois.mynic.my", e, n, t},
10771080 {"mz", r, z[3523:3530], 0xa8, e, "https://www.domains.co.mz/", w{"anyns.uem.mz", "dzowo.uem.mz", "ns-mz.afrinic.net", "oceano.uem.mz", "phloem.uoregon.edu", "zebra.uem.mz"}, n, n, n, "whois.nic.mz", e, n, f},
1078 {"mzansimagic", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1081 {"mzansimagic", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
10791082 {"na", r, z[3530:3548], 0xa0, e, e, w{"anyc2.irondns.net", "etld-1.anycast.net", "na-ns.anycast.pch.net", "na.anycastdns.cz"}, n, n, n, "whois.na-nic.com.na", e, n, f},
1080 {"nab", r, x, 0x42, "National Australia Bank Limited", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.nab", e, w{"https://tld-rdap.verisign.com/nab/v1/"}, f},
1081 {"nadex", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.nadex", e, n, f},
1083 {"nab", r, x, 0x42, "National Australia Bank Limited", "https://www.nab.com.au/nic", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.nab", e, w{"https://tld-rdap.verisign.com/nab/v1/"}, f},
1084 {"nadex", r, x, 0x842, e, e, n, n, n, n, "whois.nic.nadex", e, n, f},
10821085 {"nagoya", r, x, 0xc4, "GMO Registry, Inc.", e, w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, w{"Nagoya-shi"}, w{"ja"}, "whois.nic.nagoya", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
10831086 {"name", r, z[3548:3551], 0x40, "VeriSign, Inc.", e, w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.name", e, w{"https://tld-rdap.verisign.com/name/v1/"}, t},
1084 {"naspers", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1085 {"nationwide", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.nationwide", e, w{"https://tld-rdap.verisign.com/nationwide/v1/"}, f},
1086 {"natura", r, x, 0x42, "NATURA COSMÉTICOS S.A.", "https://newgtlds.icann.org/", w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, w{"pt"}, "whois.gtlds.nic.br", e, w{"https://rdap.gtlds.nic.br/"}, t},
1087 {"naspers", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
1088 {"nationwide", r, x, 0x842, e, e, n, n, n, n, "whois.nic.nationwide", e, w{"https://tld-rdap.verisign.com/nationwide/v1/"}, f},
1089 {"natura", r, x, 0x42, "NATURA COSMÉTICOS S.A.", "https://nic.natura/", w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, w{"pt"}, "whois.gtlds.nic.br", e, w{"https://rdap.gtlds.nic.br/"}, t},
10871090 {"navy", r, x, 0x40, "Dog Beach, LLC", e, w{"v0n0.nic.navy", "v0n1.nic.navy", "v0n2.nic.navy", "v0n3.nic.navy", "v2n0.nic.navy", "v2n1.nic.navy"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.navy", e, w{"https://rdap.donuts.co/rdap/"}, t},
1088 {"nba", r, x, 0x42, "NBA REGISTRY, LLC", "https://newgtlds.icann.org/", w{"a.nic.nba", "b.nic.nba", "c.nic.nba", "ns1.dns.nic.nba", "ns2.dns.nic.nba", "ns3.dns.nic.nba"}, n, n, w{"es"}, "whois.nic.nba", e, w{"https://rdap.nic.nba/"}, t},
1091 {"nba", r, x, 0x42, "NBA REGISTRY, LLC", "http://www.nic.nba/", w{"a.nic.nba", "b.nic.nba", "c.nic.nba", "ns1.dns.nic.nba", "ns2.dns.nic.nba", "ns3.dns.nic.nba"}, n, n, w{"es"}, "whois.nic.nba", e, w{"https://rdap.nic.nba/"}, t},
10891092 {"nc", r, z[3551:3554], 0xa0, e, e, w{"any-ns1.nc", "nc.cctld.authdns.ripe.net", "ns1.nc", "ns2.nc"}, n, n, n, "whois.nc", e, n, f},
10901093 {"ne", r, z[3554:3559], 0xa0, e, e, w{"bow.rain.fr", "ne.cctld.authdns.ripe.net", "ns-ne.afrinic.net", "ns.intnet.ne"}, n, n, n, e, e, n, f},
10911094 {"nec", r, x, 0x42, "NEC Corporation", "https://nic.nec/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ja"}, "whois.nic.nec", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
10921095 {"net", r, z[3559:3569], 0x40, "VeriSign, Inc.", "https://www.verisign.com/en_US/domain-names/net-domain-names/index.xhtml", w{"a.gtld-servers.net", "b.gtld-servers.net", "c.gtld-servers.net", "d.gtld-servers.net", "e.gtld-servers.net", "f.gtld-servers.net", "g.gtld-servers.net", "h.gtld-servers.net", "i.gtld-servers.net", "j.gtld-servers.net", "k.gtld-servers.net", "l.gtld-servers.net", "m.gtld-servers.net"}, n, n, w{"az", "be", "bg", "el", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro-MD", "ru", "uk", "zh"}, "whois.verisign-grs.com", e, w{"https://rdap.verisign.com/net/v1/"}, t},
1093 {"netaporter", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1096 {"netaporter", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
10941097 {"netbank", r, x, 0x42, "COMMONWEALTH BANK OF AUSTRALIA", "http://nic.netbank/", w{"a.nic.netbank", "b.nic.netbank", "c.nic.netbank", "d.nic.netbank"}, n, n, n, "whois.nic.netbank", e, w{"https://rdap.nic.netbank/"}, f},
1095 {"netflix", r, x, 0x42, "Netflix, Inc.", "https://newgtlds.icann.org/", w{"ns1.dns.nic.netflix", "ns2.dns.nic.netflix", "ns3.dns.nic.netflix", "ns4.dns.nic.netflix", "ns5.dns.nic.netflix", "ns6.dns.nic.netflix"}, n, n, n, "whois.nic.netflix", e, w{"https://rdap.nic.netflix/"}, f},
1098 {"netflix", r, x, 0x42, "Netflix, Inc.", "https://about.netflix.com/en/nic", w{"ns1.dns.nic.netflix", "ns2.dns.nic.netflix", "ns3.dns.nic.netflix", "ns4.dns.nic.netflix", "ns5.dns.nic.netflix", "ns6.dns.nic.netflix"}, n, n, n, "whois.nic.netflix", e, w{"https://rdap.nic.netflix/"}, f},
10961099 {"network", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.network", "v0n1.nic.network", "v0n2.nic.network", "v0n3.nic.network", "v2n0.nic.network", "v2n1.nic.network"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.network", e, w{"https://rdap.donuts.co/rdap/"}, t},
1097 {"neustar", r, x, 0x42, "NeuStar, Inc.", "https://newgtlds.icann.org/", w{"a.nic.neustar", "b.nic.neustar", "c.nic.neustar", "ns4.dns.nic.neustar", "ns5.dns.nic.neustar", "ns6.dns.nic.neustar"}, n, n, w{"es"}, "whois.nic.neustar", e, w{"https://rdap.nic.neustar/"}, t},
1100 {"neustar", r, x, 0x42, "NeuStar, Inc.", "http://nic.neustar/", w{"a.nic.neustar", "b.nic.neustar", "c.nic.neustar", "ns4.dns.nic.neustar", "ns5.dns.nic.neustar", "ns6.dns.nic.neustar"}, n, n, w{"es"}, "whois.nic.neustar", e, w{"https://rdap.nic.neustar/"}, t},
10981101 {"new", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
1099 {"newholland", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.newholland", e, n, f},
1100 {"news", r, x, 0x40, "Dog Beach, LLC", "https://newgtlds.icann.org/", w{"v0n0.nic.news", "v0n1.nic.news", "v0n2.nic.news", "v0n3.nic.news", "v2n0.nic.news", "v2n1.nic.news"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.news", e, w{"https://rdap.donuts.co/rdap/"}, t},
1101 {"next", r, x, 0x42, "Next plc", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.next", e, w{"https://tld-rdap.verisign.com/next/v1/"}, f},
1102 {"nextdirect", r, x, 0x42, "Next plc", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.nextdirect", e, w{"https://tld-rdap.verisign.com/nextdirect/v1/"}, f},
1102 {"newholland", r, x, 0x842, e, e, n, n, n, n, "whois.nic.newholland", e, n, f},
1103 {"news", r, x, 0x40, "Dog Beach, LLC", "https://identity.digital/", w{"v0n0.nic.news", "v0n1.nic.news", "v0n2.nic.news", "v0n3.nic.news", "v2n0.nic.news", "v2n1.nic.news"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.news", e, w{"https://rdap.donuts.co/rdap/"}, t},
1104 {"next", r, x, 0x42, "Next plc", "http://nic.next/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.next", e, w{"https://tld-rdap.verisign.com/next/v1/"}, f},
1105 {"nextdirect", r, x, 0x42, "Next plc", "http://nic.nextdirect/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.nextdirect", e, w{"https://tld-rdap.verisign.com/nextdirect/v1/"}, f},
11031106 {"nexus", r, x, 0x42, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
11041107 {"nf", r, z[3569:3581], 0xa0, e, e, w{"ns.anycast.nic.nf", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, "whois.nic.nf", e, n, f},
1105 {"nfl", r, x, 0x42, "NFL Reg Ops LLC", "https://newgtlds.icann.org/", w{"ns1.dns.nic.nfl", "ns2.dns.nic.nfl", "ns3.dns.nic.nfl", "ns4.dns.nic.nfl", "ns5.dns.nic.nfl", "ns6.dns.nic.nfl"}, n, n, w{"es"}, "whois.nic.nfl", e, w{"https://rdap.nic.nfl/"}, t},
1108 {"nfl", r, x, 0x42, "NFL Reg Ops LLC", "http://www.nic.nfl/", w{"ns1.dns.nic.nfl", "ns2.dns.nic.nfl", "ns3.dns.nic.nfl", "ns4.dns.nic.nfl", "ns5.dns.nic.nfl", "ns6.dns.nic.nfl"}, n, n, w{"es"}, "whois.nic.nfl", e, w{"https://rdap.nic.nfl/"}, t},
11061109 {"ng", r, z[3581:3591], 0xa0, e, "https://web4africa.ng/ng-domains/", w{"ns1.nic.net.ng", "ns2.nic.net.ng", "ns5.nic.net.ng", "nsa.nic.net.ng"}, n, n, n, "whois.nic.net.ng", e, n, f},
11071110 {"ngo", r, x, 0x40, "Public Interest Registry", "https://pir.org/products/ngo-ong-domain/", w{"a0.nic.ngo", "a2.nic.ngo", "b0.nic.ngo", "b2.nic.ngo", "c0.nic.ngo", "d0.nic.ngo"}, n, n, w{"be", "bg", "bs", "da", "de", "es", "hu", "is", "ko", "lt", "lv", "mk", "pl", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.ngo", e, w{"https://rdap.publicinterestregistry.org/rdap/"}, t},
1108 {"nhk", r, x, 0x42, "Japan Broadcasting Corporation (NHK)", "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"es", "fr", "ja", "ko", "pl", "pt", "und"}, "whois.nic.nhk", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
1111 {"nhk", r, x, 0x42, "Japan Broadcasting Corporation (NHK)", "https://nic.nhk/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"es", "fr", "ja", "ko", "pl", "pt", "und"}, "whois.nic.nhk", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
11091112 {"ni", r, z[3591:3606], 0xa8, e, "https://www.nic.ni/", w{"dns-ext.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns2.ni", "ns3.ni"}, n, n, n, e, "http://www.nic.ni/", n, f},
1110 {"nico", r, x, 0x42, "DWANGO Co., Ltd.", "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ja"}, "whois.nic.nico", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
1111 {"nike", r, x, 0x42, "NIKE, Inc.", "https://newgtlds.icann.org/", w{"a.nic.nike", "b.nic.nike", "c.nic.nike", "ns1.dns.nic.nike", "ns2.dns.nic.nike", "ns3.dns.nic.nike"}, n, n, w{"es"}, "whois.nic.nike", e, w{"https://rdap.nic.nike/"}, t},
1112 {"nikon", r, x, 0x42, "NIKON CORPORATION", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.nikon", e, w{"https://tld-rdap.verisign.com/nikon/v1/"}, f},
1113 {"nico", r, x, 0x42, "DWANGO Co., Ltd.", "https://nic.nico/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ja"}, "whois.nic.nico", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
1114 {"nike", r, x, 0x42, "NIKE, Inc.", "https://www.nike.com/", w{"a.nic.nike", "b.nic.nike", "c.nic.nike", "ns1.dns.nic.nike", "ns2.dns.nic.nike", "ns3.dns.nic.nike"}, n, n, w{"es"}, "whois.nic.nike", e, w{"https://rdap.nic.nike/"}, t},
1115 {"nikon", r, x, 0x42, "NIKON CORPORATION", "https://www.nic.nikon/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.nikon", e, w{"https://tld-rdap.verisign.com/nikon/v1/"}, f},
11131116 {"ninja", r, x, 0x40, "Dog Beach, LLC", e, w{"v0n0.nic.ninja", "v0n1.nic.ninja", "v0n2.nic.ninja", "v0n3.nic.ninja", "v2n0.nic.ninja", "v2n1.nic.ninja"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.ninja", e, w{"https://rdap.donuts.co/rdap/"}, t},
11141117 {"nissan", r, x, 0x42, "NISSAN MOTOR CO., LTD.", "https://www.nissan-global.com/EN/NIC/NISSAN/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"es", "fr", "ja", "ko", "pl", "pt", "zh", "zh-Hans", "zh-Hant"}, "whois.nic.gmo", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
1115 {"nissay", r, x, 0x42, "Nippon Life Insurance Company", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"ja", "mul-Hang", "mul-Hani", "mul-Hano"}, "whois.nic.nissay", e, w{"https://tld-rdap.verisign.com/nissay/v1/"}, t},
1118 {"nissay", r, x, 0x42, "Nippon Life Insurance Company", "https://www.nissay.co.jp/sorry/gtld/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"ja", "mul-Hang", "mul-Hani", "mul-Hano"}, "whois.nic.nissay", e, w{"https://tld-rdap.verisign.com/nissay/v1/"}, t},
11161119 {"nl", r, z[3606:3612], 0xa0, e, e, w{"ns1.dns.nl", "ns2.dns.nl", "ns3.dns.nl", "ns4.dns.nl"}, n, n, n, "whois.domain-registry.nl", e, n, f},
11171120 {"no", r, z[3612:3622], 0xa0, e, e, w{"i.nic.no", "njet.norid.no", "not.norid.no", "x.nic.no", "y.nic.no", "z.nic.no"}, n, n, n, "whois.norid.no", e, w{"https://rdap.norid.no/"}, t},
1118 {"nokia", r, x, 0x42, "Nokia Corporation", "https://newgtlds.icann.org/", w{"a0.nic.nokia", "a2.nic.nokia", "b0.nic.nokia", "c0.nic.nokia"}, n, n, w{"be", "bg", "bs", "da", "de", "es", "hu", "is", "ko", "lt", "lv", "mk", "pl", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/nokia/"}, t},
1119 {"northlandinsurance", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1120 {"northwesternmutual", r, x, 0x42, "Northwestern Mutual Registry, LLC", "https://newgtlds.icann.org/", w{"a.nic.northwesternmutual", "b.nic.northwesternmutual", "c.nic.northwesternmutual", "ns1.dns.nic.northwesternmutual", "ns2.dns.nic.northwesternmutual", "ns3.dns.nic.northwesternmutual"}, n, n, w{"es"}, "whois.nic.northwesternmutual", e, w{"https://rdap.nic.northwesternmutual/"}, t},
1121 {"norton", r, x, 0x42, "NortonLifeLock Inc.", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.norton", e, w{"https://tld-rdap.verisign.com/norton/v1/"}, t},
1122 {"now", r, x, 0x40, "Amazon Registry Services, Inc.", "https://newgtlds.icann.org/", w{"dns1.nic.now", "dns2.nic.now", "dns3.nic.now", "dns4.nic.now", "dnsa.nic.now", "dnsb.nic.now", "dnsc.nic.now", "dnsd.nic.now"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.now", e, w{"https://rdap.nominet.uk/now/"}, t},
1123 {"nowruz", r, x, 0x42, "Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.", "https://newgtlds.icann.org/", w{"a.ns.nic.nowruz", "b.ns.nic.nowruz", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, w{"Iran"}, n, "whois.nic.nowruz", e, w{"https://api.rdap.agitsys.net/"}, f},
1124 {"nowtv", r, x, 0x42, "Starbucks (HK) Limited", "https://newgtlds.icann.org/", w{"a0.nic.nowtv", "a2.nic.nowtv", "b0.nic.nowtv", "c0.nic.nowtv"}, n, n, w{"zh-CN", "zh-TW"}, "whois.nic.nowtv", e, w{"https://rdap.afilias-srs.net/rdap/nowtv/"}, t},
1121 {"nokia", r, x, 0x42, "Nokia Corporation", "http://nic.nokia/", w{"a0.nic.nokia", "a2.nic.nokia", "b0.nic.nokia", "c0.nic.nokia"}, n, n, w{"be", "bg", "bs", "da", "de", "es", "hu", "is", "ko", "lt", "lv", "mk", "pl", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/nokia/"}, t},
1122 {"northlandinsurance", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
1123 {"northwesternmutual", r, x, 0x42, "Northwestern Mutual Registry, LLC", "https://www.nic.northwesternmutual/", w{"a.nic.northwesternmutual", "b.nic.northwesternmutual", "c.nic.northwesternmutual", "ns1.dns.nic.northwesternmutual", "ns2.dns.nic.northwesternmutual", "ns3.dns.nic.northwesternmutual"}, n, n, w{"es"}, "whois.nic.northwesternmutual", e, w{"https://rdap.nic.northwesternmutual/"}, t},
1124 {"norton", r, x, 0x42, "NortonLifeLock Inc.", "https://www.icann.org/en/registry-agreements/details/norton", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.norton", e, w{"https://tld-rdap.verisign.com/norton/v1/"}, t},
1125 {"now", r, x, 0x40, "Amazon Registry Services, Inc.", "https://nic.now/", w{"dns1.nic.now", "dns2.nic.now", "dns3.nic.now", "dns4.nic.now", "dnsa.nic.now", "dnsb.nic.now", "dnsc.nic.now", "dnsd.nic.now"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.now", e, w{"https://rdap.nominet.uk/now/"}, t},
1126 {"nowruz", r, x, 0x42, "Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.", "http://nic.nowruz/", w{"a.ns.nic.nowruz", "b.ns.nic.nowruz", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, w{"Iran"}, n, "whois.nic.nowruz", e, w{"https://api.rdap.agitsys.net/"}, f},
1127 {"nowtv", r, x, 0x42, "Starbucks (HK) Limited", "https://www.icann.org/en/registry-agreements/details/nowtv", w{"a0.nic.nowtv", "a2.nic.nowtv", "b0.nic.nowtv", "c0.nic.nowtv"}, n, n, w{"zh-CN", "zh-TW"}, "whois.nic.nowtv", e, w{"https://rdap.afilias-srs.net/rdap/nowtv/"}, t},
11251128 {"np", r, z[3622:3768], 0xa8, e, e, w{"np-ns.npix.net.np", "np.cctld.authdns.ripe.net", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, n, e, "http://register.mos.com.np/np-whois-lookup", n, f},
11261129 {"nr", r, z[3768:3775], 0xa0, e, e, w{"ns0.cenpac.net.nr", "ns1.cenpac.net.nr", "ns2.cenpac.net.nr", "phloem.uoregon.edu"}, n, n, n, e, "http://www.cenpac.net.nr/dns/whois.html", n, f},
1127 {"nra", r, x, 0x42, "NRA Holdings Company, INC.", "https://newgtlds.icann.org/", w{"a0.nic.nra", "a2.nic.nra", "b0.nic.nra", "c0.nic.nra"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/nra/"}, f},
1128 {"nrw", r, x, 0x440, "Minds + Machines GmbH", "https://newgtlds.icann.org/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, w{"DE-NW"}, w{"de"}, "whois.nic.nrw", e, w{"https://rdap.nic.nrw/"}, t},
1129 {"ntt", r, x, 0x42, "NIPPON TELEGRAPH AND TELEPHONE CORPORATION", "https://newgtlds.icann.org/", w{"tld1.nic.ntt", "tld2.nic.ntt", "tld3.nic.ntt", "tld5.nic.ntt"}, n, n, w{"ja", "ja-JP"}, e, e, w{"https://rdap.nic.ntt/rdap/"}, t},
1130 {"nra", r, x, 0x42, "NRA Holdings Company, INC.", "https://www.icann.org/en/registry-agreements/details/nra", w{"a0.nic.nra", "a2.nic.nra", "b0.nic.nra", "c0.nic.nra"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/nra/"}, f},
1131 {"nrw", r, x, 0x440, "Minds + Machines GmbH", "https://nic.nrw/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, w{"DE-NW"}, w{"de"}, "whois.nic.nrw", e, w{"https://rdap.nic.nrw/"}, t},
1132 {"ntt", r, x, 0x42, "NIPPON TELEGRAPH AND TELEPHONE CORPORATION", "https://www.icann.org/en/registry-agreements/details/ntt", w{"tld1.nic.ntt", "tld2.nic.ntt", "tld3.nic.ntt", "tld5.nic.ntt"}, n, n, w{"ja", "ja-JP"}, e, e, w{"https://rdap.nic.ntt/rdap/"}, t},
11301133 {"nu", r, z[3775:3780], 0xe0, e, "https://www.nic.nu/", w{"a.ns.nu", "c.ns.nu", "d.ns.nu", "m.ns.nu", "y.ns.nu", "z.ns.nu"}, n, n, w{"und-Latn"}, "whois.iis.nu", e, n, t},
11311134 {"nyc", r, x, 0xc4, "The City of New York by and through the New York City Department of Information Technology & Telecommunications", e, w{"a.nic.nyc", "b.nic.nyc", "c.nic.nyc", "ns1.dns.nic.nyc", "ns2.dns.nic.nyc", "ns3.dns.nic.nyc"}, n, w{"New York City"}, w{"es"}, "whois.nic.nyc", e, w{"https://rdap.nic.nyc/"}, t},
1132 {"nz", r, z[3780:3795], 0xa0, e, e, w{"ns1.dns.net.nz", "ns2.dns.net.nz", "ns3.dns.net.nz", "ns4.dns.net.nz", "ns5.dns.net.nz", "ns6.dns.net.nz", "ns7.dns.net.nz"}, n, n, w{"mul-Latn"}, "whois.irs.net.nz", e, n, t},
1133 {"obi", r, x, 0x42, "OBI Group Holding SE & Co. KGaA", "https://newgtlds.icann.org/", w{"a0.nic.obi", "a2.nic.obi", "b0.nic.obi", "c0.nic.obi"}, n, n, n, "whois.nic.obi", e, w{"https://tld-rdap.verisign.com/obi/v1/"}, f},
1134 {"observer", r, x, 0x42, "Dog Beach, LLC", "https://newgtlds.icann.org/", w{"v0n0.nic.observer", "v0n1.nic.observer", "v0n2.nic.observer", "v0n3.nic.observer", "v2n0.nic.observer", "v2n1.nic.observer"}, n, n, n, "whois.nic.observer", e, w{"https://rdap.donuts.co/rdap/"}, f},
1135 {"off", r, x, 0x842, "Johnson Shareholdings, Inc.", "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.off", e, w{"https://tld-rdap.verisign.com/off/v1/"}, f},
1135 {"nz", r, z[3780:3795], 0xa0, e, e, w{"ns1.dns.net.nz", "ns2.dns.net.nz", "ns3.dns.net.nz", "ns4.dns.net.nz", "ns5.dns.net.nz", "ns6.dns.net.nz", "ns7.dns.net.nz"}, n, n, w{"mul-Latn"}, "whois.srs.net.nz", e, n, t},
1136 {"obi", r, x, 0x42, "OBI Group Holding SE & Co. KGaA", "http://nic.obi/", w{"a0.nic.obi", "a2.nic.obi", "b0.nic.obi", "c0.nic.obi"}, n, n, n, "whois.nic.obi", e, w{"https://tld-rdap.verisign.com/obi/v1/"}, f},
1137 {"observer", r, x, 0x42, "Dog Beach, LLC", "https://identity.digital/", w{"v0n0.nic.observer", "v0n1.nic.observer", "v0n2.nic.observer", "v0n3.nic.observer", "v2n0.nic.observer", "v2n1.nic.observer"}, n, n, n, "whois.nic.observer", e, w{"https://rdap.donuts.co/rdap/"}, f},
1138 {"off", r, x, 0x842, "Johnson Shareholdings, Inc.", e, n, n, n, n, "whois.nic.off", e, w{"https://tld-rdap.verisign.com/off/v1/"}, f},
11361139 {"office", r, x, 0x42, "Microsoft Corporation", "https://nic.office/", w{"a.nic.office", "b.nic.office", "c.nic.office", "ns1.dns.nic.office", "ns2.dns.nic.office", "ns3.dns.nic.office"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.office", e, w{"https://rdap.nic.office/"}, t},
11371140 {"okinawa", r, x, 0xc4, "BRregistry, Inc.", e, w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, w{"Okinawa", "JP-47"}, w{"ja"}, "whois.nic.okinawa", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
1138 {"olayan", r, x, 0x42, "Crescent Holding GmbH", "https://newgtlds.icann.org/", w{"a.nic.olayan", "b.nic.olayan", "c.nic.olayan", "d.nic.olayan"}, n, n, w{"ar"}, "whois.nic.olayan", e, w{"https://rdap.nic.olayan/"}, t},
1139 {"olayangroup", r, x, 0x42, "Crescent Holding GmbH", "https://newgtlds.icann.org/", w{"a.nic.olayangroup", "b.nic.olayangroup", "c.nic.olayangroup", "d.nic.olayangroup"}, n, n, w{"ar"}, "whois.nic.olayangroup", e, w{"https://rdap.nic.olayangroup/"}, t},
1140 {"oldnavy", r, x, 0x42, "The Gap, Inc.", "https://newgtlds.icann.org/", w{"a.nic.oldnavy", "b.nic.oldnavy", "c.nic.oldnavy", "ns1.dns.nic.oldnavy", "ns2.dns.nic.oldnavy", "ns3.dns.nic.oldnavy"}, n, n, w{"es"}, "whois.nic.oldnavy", e, w{"https://rdap.nic.oldnavy/"}, t},
1141 {"ollo", r, x, 0x42, "Dish DBS Corporation", "https://newgtlds.icann.org/", w{"a0.nic.ollo", "a2.nic.ollo", "b0.nic.ollo", "c0.nic.ollo"}, n, n, n, "whois.nic.ollo", e, w{"https://rdap.afilias-srs.net/rdap/ollo/"}, f},
1142 {"olympus", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1143 {"om", r, z[3795:3808], 0xa0, e, "http://www.registry.om/", w{"cctld.alpha.aridns.net.au", "cctld.beta.aridns.net.au", "cctld.delta.aridns.net.au", "cctld.gamma.aridns.net.au", "ns1.registry.om", "ns2.registry.om"}, n, n, n, "whois.registry.om", e, n, f},
1144 {"omega", r, x, 0x42, "The Swatch Group Ltd", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.omega", e, w{"https://tld-rdap.verisign.com/omega/v1/"}, t},
1145 {"one", r, x, 0x40, "One.com A/S", "https://newgtlds.icann.org/", w{"a.nic.one", "b.nic.one", "c.nic.one", "d.nic.one"}, n, n, n, "whois.nic.one", e, w{"https://rdap.nic.one/"}, f},
1141 {"olayan", r, x, 0x42, "Crescent Holding GmbH", "http://nic.olayan/", w{"a.nic.olayan", "b.nic.olayan", "c.nic.olayan", "d.nic.olayan"}, n, n, w{"ar"}, "whois.nic.olayan", e, w{"https://rdap.nic.olayan/"}, t},
1142 {"olayangroup", r, x, 0x42, "Crescent Holding GmbH", "http://nic.olayangroup/", w{"a.nic.olayangroup", "b.nic.olayangroup", "c.nic.olayangroup", "d.nic.olayangroup"}, n, n, w{"ar"}, "whois.nic.olayangroup", e, w{"https://rdap.nic.olayangroup/"}, t},
1143 {"oldnavy", r, x, 0x42, "The Gap, Inc.", "https://www.nic.gap/", w{"a.nic.oldnavy", "b.nic.oldnavy", "c.nic.oldnavy", "ns1.dns.nic.oldnavy", "ns2.dns.nic.oldnavy", "ns3.dns.nic.oldnavy"}, n, n, w{"es"}, "whois.nic.oldnavy", e, w{"https://rdap.nic.oldnavy/"}, t},
1144 {"ollo", r, x, 0x42, "Dish DBS Corporation", "https://dishtlds.com/ollo/", w{"a0.nic.ollo", "a2.nic.ollo", "b0.nic.ollo", "c0.nic.ollo"}, n, n, n, "whois.nic.ollo", e, w{"https://rdap.afilias-srs.net/rdap/ollo/"}, f},
1145 {"olympus", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
1146 {"om", r, z[3795:3808], 0xa0, e, "https://www.registry.om/", w{"cctld.alpha.aridns.net.au", "cctld.beta.aridns.net.au", "cctld.delta.aridns.net.au", "cctld.gamma.aridns.net.au", "ns1.registry.om", "ns2.registry.om"}, n, n, n, "whois.registry.om", e, n, f},
1147 {"omega", r, x, 0x42, "The Swatch Group Ltd", "https://nic.omega/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.omega", e, w{"https://tld-rdap.verisign.com/omega/v1/"}, t},
1148 {"one", r, x, 0x40, "One.com A/S", "https://get.one/", w{"a.nic.one", "b.nic.one", "c.nic.one", "d.nic.one"}, n, n, n, "whois.nic.one", e, w{"https://rdap.nic.one/"}, f},
11461149 {"ong", r, x, 0x40, "Public Interest Registry", "https://pir.org/products/ngo-ong-domain/", w{"a0.nic.ong", "a2.nic.ong", "b0.nic.ong", "b2.nic.ong", "c0.nic.ong", "d0.nic.ong"}, n, n, w{"be", "bg", "bs", "da", "de", "es", "hu", "is", "ko", "lt", "lv", "mk", "pl", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.ong", e, w{"https://rdap.publicinterestregistry.org/rdap/"}, t},
1147 {"onl", r, x, 0x40, "iRegistry GmbH", "https://nic.onl/", w{"a0.nic.onl", "a2.nic.onl", "b0.nic.onl", "c0.nic.onl"}, n, n, w{"be", "bg", "bs", "da", "de", "es", "hu", "is", "ko", "lt", "lv", "mk", "pl", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/onl/"}, t},
1148 {"online", r, x, 0x40, "Radix FZC", "https://newgtlds.icann.org/", w{"a.nic.online", "b.nic.online", "e.nic.online", "f.nic.online"}, n, n, w{"ar", "he", "ja", "ko", "lo", "mul-Cyrl", "mul-Grek", "mul-Latn", "th", "zh"}, "whois.nic.online", e, w{"https://rdap.centralnic.com/online/"}, t},
1149 {"onyourside", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.onyourside", e, w{"https://tld-rdap.verisign.com/onyourside/v1/"}, f},
1150 {"onl", r, x, 0x40, "iRegistry GmbH", "https://nic.onl/", w{"a0.nic.onl", "a2.nic.onl", "b0.nic.onl", "c0.nic.onl"}, n, n, w{"be", "bg", "bs", "da", "de", "es", "hu", "is", "ko", "lt", "lv", "mk", "pl", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.onl", e, w{"https://rdap.afilias-srs.net/rdap/onl/"}, t},
1151 {"online", r, x, 0x40, "Radix FZC", "https://radix.website/dot-online", w{"a.nic.online", "b.nic.online", "e.nic.online", "f.nic.online"}, n, n, w{"ar", "he", "ja", "ko", "lo", "mul-Cyrl", "mul-Grek", "mul-Latn", "th", "zh"}, "whois.nic.online", e, w{"https://rdap.centralnic.com/online/"}, t},
1152 {"onyourside", r, x, 0x842, e, e, n, n, n, n, "whois.nic.onyourside", e, w{"https://tld-rdap.verisign.com/onyourside/v1/"}, f},
11501153 {"ooo", r, x, 0x40, "INFIBEAM AVENUES LIMITED", e, w{"a.nic.ooo", "b.nic.ooo", "c.nic.ooo", "d.nic.ooo"}, n, n, w{"ar", "be", "es", "fr", "he", "hr", "ja", "ko", "lo", "mk", "mul-Cans", "mul-Cyrl", "mul-Grek", "mul-Latn", "mul-Mymr", "mul-Ogam", "mul-Phnx", "mul-Runr", "pl", "ru", "sr", "sv", "th", "uk", "zh"}, "whois.nic.ooo", e, w{"https://rdap.centralnic.com/ooo/"}, t},
1151 {"open", r, x, 0x42, "American Express Travel Related Services Company, Inc.", "https://newgtlds.icann.org/", w{"a.nic.open", "b.nic.open", "c.nic.open", "ns1.dns.nic.open", "ns2.dns.nic.open", "ns3.dns.nic.open"}, n, n, w{"es"}, "whois.nic.open", e, w{"https://rdap.nic.open/"}, t},
1152 {"oracle", r, x, 0x42, "Oracle Corporation", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.oracle", e, w{"https://tld-rdap.verisign.com/oracle/v1/"}, f},
1153 {"orange", r, x, 0x42, "Orange Brand Services Limited", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"mul-Arab", "mul-Latn"}, "whois.nic.orange", e, w{"https://tld-rdap.verisign.com/orange/v1/"}, t},
1154 {"open", r, x, 0x42, "American Express Travel Related Services Company, Inc.", "https://about.americanexpress.com/newsroom/#media-contacts", w{"a.nic.open", "b.nic.open", "c.nic.open", "ns1.dns.nic.open", "ns2.dns.nic.open", "ns3.dns.nic.open"}, n, n, w{"es"}, "whois.nic.open", e, w{"https://rdap.nic.open/"}, t},
1155 {"oracle", r, x, 0x42, "Oracle Corporation", "https://www.icann.org/en/registry-agreements/details/oracle", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.oracle", e, w{"https://tld-rdap.verisign.com/oracle/v1/"}, f},
1156 {"orange", r, x, 0x42, "Orange Brand Services Limited", "https://www.orange.com/en/nic/domains", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"mul-Arab", "mul-Latn"}, "whois.nic.orange", e, w{"https://tld-rdap.verisign.com/orange/v1/"}, t},
11541157 {"org", r, z[3808:3814], 0x40, "Public Interest Registry", "https://pir.org/products/org-domain/", w{"a0.org.afilias-nst.info", "a2.org.afilias-nst.info", "b0.org.afilias-nst.org", "b2.org.afilias-nst.org", "c0.org.afilias-nst.info", "d0.org.afilias-nst.org"}, n, n, w{"be", "bg", "bs", "cnr", "da", "de", "es", "fi", "hi", "hr", "hu", "is", "it", "ja", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sv", "uk", "zh-CN", "zh-TW"}, "whois.publicinterestregistry.org", e, w{"https://rdap.publicinterestregistry.org/rdap/"}, t},
1155 {"organic", r, x, 0x40, "Identity Digital Limited", "https://get.organic/", w{"a0.nic.organic", "a2.nic.organic", "b0.nic.organic", "c0.nic.organic"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.organic", e, w{"https://rdap.donuts.co/rdap/"}, t},
1156 {"orientexpress", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.afilias-srs.net", e, n, f},
1157 {"origin", r, x, 0, e, e, n, n, n, n, "whois.afilias-srs.net", e, n, t},
1158 {"origins", r, x, 0x42, "The Estée Lauder Companies Inc.", "https://newgtlds.icann.org/", w{"a0.nic.origins", "a2.nic.origins", "b0.nic.origins", "c0.nic.origins"}, n, n, n, "whois.nic.origins", e, w{"https://rdap.afilias-srs.net/rdap/origins/"}, f},
1159 {"osaka", r, x, 0xc4, "Osaka Registry Co., Ltd.", "https://newgtlds.icann.org/", w{"a.nic.osaka", "b.nic.osaka", "c.nic.osaka", "ns1.dns.nic.osaka", "ns2.dns.nic.osaka", "ns3.dns.nic.osaka"}, n, w{"Osaka", "JP-27"}, w{"ja"}, "whois.nic.osaka", e, w{"https://rdap.nic.osaka/"}, t},
1160 {"otsuka", r, x, 0x42, "Otsuka Holdings Co., Ltd.", "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"es", "fr", "ja", "ko", "pl", "pt", "zh", "zh-Hans", "zh-Hant"}, "whois.nic.otsuka", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
1161 {"ott", r, x, 0x48, "Dish DBS Corporation", "https://newgtlds.icann.org/", w{"a0.nic.ott", "a2.nic.ott", "b0.nic.ott", "c0.nic.ott"}, n, n, n, "whois.nic.ott", e, w{"https://rdap.afilias-srs.net/rdap/ott/"}, f},
1162 {"overheidnl", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1158 {"organic", r, x, 0x40, "Identity Digital Limited", "http://nic.organic/", w{"a0.nic.organic", "a2.nic.organic", "b0.nic.organic", "c0.nic.organic"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.organic", e, w{"https://rdap.donuts.co/rdap/"}, t},
1159 {"orientexpress", r, x, 0x842, e, e, n, n, n, n, "whois.afilias-srs.net", e, n, f},
1160 {"origin", r, x, 0x4000, e, e, n, n, n, n, "whois.afilias-srs.net", e, n, t},
1161 {"origins", r, x, 0x42, "The Estée Lauder Companies Inc.", "https://www.icann.org/en/registry-agreements/details/origins", w{"a0.nic.origins", "a2.nic.origins", "b0.nic.origins", "c0.nic.origins"}, n, n, n, "whois.nic.origins", e, w{"https://rdap.afilias-srs.net/rdap/origins/"}, f},
1162 {"osaka", r, x, 0xc4, "Osaka Registry Co., Ltd.", "https://domain.osaka/", w{"a.nic.osaka", "b.nic.osaka", "c.nic.osaka", "ns1.dns.nic.osaka", "ns2.dns.nic.osaka", "ns3.dns.nic.osaka"}, n, w{"Osaka", "JP-27"}, w{"ja"}, "whois.nic.osaka", e, w{"https://rdap.nic.osaka/"}, t},
1163 {"otsuka", r, x, 0x42, "Otsuka Holdings Co., Ltd.", "https://nic.otsuka/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"es", "fr", "ja", "ko", "pl", "pt", "zh", "zh-Hans", "zh-Hant"}, "whois.nic.otsuka", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
1164 {"ott", r, x, 0x48, "Dish DBS Corporation", "https://dishtlds.com/ott/", w{"a0.nic.ott", "a2.nic.ott", "b0.nic.ott", "c0.nic.ott"}, n, n, n, "whois.nic.ott", e, w{"https://rdap.afilias-srs.net/rdap/ott/"}, f},
1165 {"overheidnl", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
11631166 {"ovh", r, x, 0x40, "MédiaBC", e, w{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, w{"fr"}, "whois.nic.ovh", e, w{"https://rdap.nic.ovh/"}, t},
11641167 {"pa", r, z[3814:3825], 0xa0, e, "http://www.nic.pa/", w{"dns-ext.nic.cr", "ns.dns.br", "ns.nic.pa", "ns.pa", "ns2.pa", "ssdns-tld.nic.cl"}, n, n, n, e, "http://www.nic.pa/", n, f},
11651168 {"page", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"ja", "mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
1166 {"pamperedchef", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1167 {"panasonic", r, x, 0x42, "Panasonic Corporation", "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ja"}, "whois.nic.gmo", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
1168 {"panerai", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.panerai", e, n, f},
1169 {"pamperedchef", r, x, 0x842, e, e, n, n, n, n, e, e, n, f},
1170 {"panasonic", r, x, 0x42, "Panasonic Corporation", "https://nic.panasonic/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ja"}, "whois.nic.gmo", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
1171 {"panerai", r, x, 0x842, e, e, n, n, n, n, "whois.nic.panerai", e, n, f},
11691172 {"paris", r, x, 0xc4, "City of Paris", e, w{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr", "h.ext.nic.fr"}, n, w{"Paris", "FR-J"}, w{"fr"}, "whois.nic.paris", e, w{"https://rdap.nic.paris/"}, t},
1170 {"pars", r, x, 0x40, "Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.", "https://newgtlds.icann.org/", w{"a.ns.nic.pars", "b.ns.nic.pars", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, w{"Iran"}, n, "whois.nic.pars", e, w{"https://api.rdap.agitsys.net/"}, f},
1173 {"pars", r, x, 0x40, "Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.", "http://nic.pars/", w{"a.ns.nic.pars", "b.ns.nic.pars", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, w{"Iran"}, n, "whois.nic.pars", e, w{"https://api.rdap.agitsys.net/"}, f},
11711174 {"partners", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.partners", "v0n1.nic.partners", "v0n2.nic.partners", "v0n3.nic.partners", "v2n0.nic.partners", "v2n1.nic.partners"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.partners", e, w{"https://rdap.donuts.co/rdap/"}, t},
11721175 {"parts", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.parts", "v0n1.nic.parts", "v0n2.nic.parts", "v0n3.nic.parts", "v2n0.nic.parts", "v2n1.nic.parts"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.parts", e, w{"https://rdap.donuts.co/rdap/"}, t},
1173 {"party", r, x, 0x40, "Blue Sky Registry Limited", "https://www.famousfourmedia.com/", w{"a.nic.party", "b.nic.party", "c.nic.party", "ns1.dns.nic.party", "ns2.dns.nic.party", "ns3.dns.nic.party"}, n, n, w{"da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.party", e, w{"https://rdap.nic.party/"}, t},
1174 {"passagens", r, x, 0x42, "Travel Reservations SRL", "https://newgtlds.icann.org/", w{"a.nic.passagens", "b.nic.passagens", "c.nic.passagens", "ns1.dns.nic.passagens", "ns2.dns.nic.passagens", "ns3.dns.nic.passagens"}, n, n, w{"es"}, "whois.nic.passagens", e, w{"https://rdap.nic.passagens/"}, t},
1175 {"patagonia", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1176 {"patch", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1177 {"pay", r, x, 0x40, "Amazon Registry Services, Inc.", "https://newgtlds.icann.org/", w{"dns1.nic.pay", "dns2.nic.pay", "dns3.nic.pay", "dns4.nic.pay", "dnsa.nic.pay", "dnsb.nic.pay", "dnsc.nic.pay", "dnsd.nic.pay"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.pay", e, w{"https://rdap.nominet.uk/pay/"}, t},
1178 {"payu", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1179 {"pccw", r, x, 0x42, "PCCW Enterprises Limited", "https://newgtlds.icann.org/", w{"a0.nic.pccw", "a2.nic.pccw", "b0.nic.pccw", "c0.nic.pccw"}, n, n, w{"zh-CN", "zh-TW"}, "whois.nic.pccw", e, w{"https://rdap.afilias-srs.net/rdap/pccw/"}, t},
1176 {"party", r, x, 0x40, "Blue Sky Registry Limited", "http://nic.party/", w{"a.nic.party", "b.nic.party", "c.nic.party", "ns1.dns.nic.party", "ns2.dns.nic.party", "ns3.dns.nic.party"}, n, n, w{"da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.party", e, w{"https://rdap.nic.party/"}, t},
1177 {"passagens", r, x, 0x42, "Travel Reservations SRL", "https://www.icann.org/en/registry-agreements/details/passagens", w{"a.nic.passagens", "b.nic.passagens", "c.nic.passagens", "ns1.dns.nic.passagens", "ns2.dns.nic.passagens", "ns3.dns.nic.passagens"}, n, n, w{"es"}, "whois.nic.passagens", e, w{"https://rdap.nic.passagens/"}, t},
1178 {"patagonia", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
1179 {"patch", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
1180 {"pay", r, x, 0x40, "Amazon Registry Services, Inc.", "https://nic.pay/", w{"dns1.nic.pay", "dns2.nic.pay", "dns3.nic.pay", "dns4.nic.pay", "dnsa.nic.pay", "dnsb.nic.pay", "dnsc.nic.pay", "dnsd.nic.pay"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.pay", e, w{"https://rdap.nominet.uk/pay/"}, t},
1181 {"payu", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
1182 {"pccw", r, x, 0x42, "PCCW Enterprises Limited", "https://www.icann.org/en/registry-agreements/details/pccw", w{"a0.nic.pccw", "a2.nic.pccw", "b0.nic.pccw", "c0.nic.pccw"}, n, n, w{"zh-CN", "zh-TW"}, "whois.nic.pccw", e, w{"https://rdap.afilias-srs.net/rdap/pccw/"}, t},
11801183 {"pe", r, z[3825:3834], 0xa0, e, "https://punto.pe/", w{"a.lactld.org", "pch.rcp.pe", "pe1.dnsnode.net", "quipu.rcp.net.pe"}, n, n, n, "kero.yachay.pe", e, n, t},
1181 {"persiangulf", r, x, 0xc0, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1182 {"pet", r, x, 0x40, "Identity Digital Limited", "https://get.pet/", w{"a0.nic.pet", "a2.nic.pet", "b0.nic.pet", "c0.nic.pet"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.pet", e, w{"https://rdap.donuts.co/rdap/"}, t},
1183 {"pets", r, x, 0x40, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1184 {"persiangulf", r, x, 0x40c0, e, e, n, n, n, n, e, e, n, f},
1185 {"pet", r, x, 0x40, "Identity Digital Limited", "http://nic.pet/", w{"a0.nic.pet", "a2.nic.pet", "b0.nic.pet", "c0.nic.pet"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.pet", e, w{"https://rdap.donuts.co/rdap/"}, t},
1186 {"pets", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
11841187 {"pf", r, z[3834:3839], 0xa0, e, e, w{"ns1.mana.pf", "ns2.mana.pf"}, n, n, n, "whois.registry.pf", e, n, f},
1185 {"pfizer", r, x, 0x42, "Pfizer Inc.", "https://newgtlds.icann.org/", w{"a.nic.pfizer", "b.nic.pfizer", "c.nic.pfizer", "ns1.dns.nic.pfizer", "ns2.dns.nic.pfizer", "ns3.dns.nic.pfizer"}, n, n, w{"es"}, "whois.nic.pfizer", e, w{"https://rdap.nic.pfizer/"}, t},
1186 {"pg", r, z[3839:3845], 0xa0, e, e, w{"munnari.oz.au", "ns.uu.net", "ns1.tiare.net.pg", "ns1.unitech.ac.pg", "ns2.tiare.net.pg"}, n, n, n, e, e, n, f},
1188 {"pfizer", r, x, 0x42, "Pfizer Inc.", "https://www.nic.pfizer/", w{"a.nic.pfizer", "b.nic.pfizer", "c.nic.pfizer", "ns1.dns.nic.pfizer", "ns2.dns.nic.pfizer", "ns3.dns.nic.pfizer"}, n, n, w{"es"}, "whois.nic.pfizer", e, w{"https://rdap.nic.pfizer/"}, t},
1189 {"pg", r, z[3839:3845], 0xa0, e, e, w{"munnari.oz.au", "ns.uu.net", "ns1.unitech.ac.pg"}, n, n, n, e, e, n, f},
11871190 {"ph", r, z[3845:3854], 0xa0, e, e, w{"1.ns.ph", "ns2.cuhk.edu.hk", "ns4.apnic.net", "ph.communitydns.net"}, w{"45.79.222.138"}, n, n, e, "http://www.dot.ph/whois", n, f},
1188 {"pharmacy", r, x, 0x40, "National Association of Boards of Pharmacy", "https://newgtlds.icann.org/", w{"dns1.nic.pharmacy", "dns2.nic.pharmacy", "dns3.nic.pharmacy", "dns4.nic.pharmacy", "dnsa.nic.pharmacy", "dnsb.nic.pharmacy", "dnsc.nic.pharmacy", "dnsd.nic.pharmacy"}, n, n, w{"es"}, "whois.nic.pharmacy", e, w{"https://rdap.nominet.uk/pharmacy/"}, t},
1191 {"pharmacy", r, x, 0x40, "National Association of Boards of Pharmacy", "https://nic.pharmacy/", w{"dns1.nic.pharmacy", "dns2.nic.pharmacy", "dns3.nic.pharmacy", "dns4.nic.pharmacy", "dnsa.nic.pharmacy", "dnsb.nic.pharmacy", "dnsc.nic.pharmacy", "dnsd.nic.pharmacy"}, n, n, w{"es"}, "whois.nic.pharmacy", e, w{"https://rdap.nominet.uk/pharmacy/"}, t},
11891192 {"phd", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
1190 {"philips", r, x, 0x42, "Koninklijke Philips N.V.", "https://newgtlds.icann.org/", w{"a.nic.philips", "b.nic.philips", "c.nic.philips", "d.nic.philips"}, n, n, n, "whois.nic.philips", e, w{"https://rdap.nic.philips/"}, f},
1191 {"phone", r, x, 0x40, "Dish DBS Corporation", "https://newgtlds.icann.org/", w{"a0.nic.phone", "a2.nic.phone", "b0.nic.phone", "c0.nic.phone"}, n, n, n, "whois.nic.phone", e, w{"https://rdap.afilias-srs.net/rdap/phone/"}, f},
1192 {"photo", r, x, 0x40, "Registry Services, LLC", "https://nic.photo/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, w{"de", "es", "fr", "it", "ja", "mul-Cyrl", "pt", "zh"}, "whois.uniregistry.net", e, w{"https://whois.uniregistry.net/rdap/"}, t},
1193 {"philips", r, x, 0x42, "Koninklijke Philips N.V.", "http://nic.philips/", w{"a.nic.philips", "b.nic.philips", "c.nic.philips", "d.nic.philips"}, n, n, n, "whois.nic.philips", e, w{"https://rdap.nic.philips/"}, f},
1194 {"phone", r, x, 0x40, "Dish DBS Corporation", "https://www.dishtlds.com/phone/", w{"a0.nic.phone", "a2.nic.phone", "b0.nic.phone", "c0.nic.phone"}, n, n, n, "whois.nic.phone", e, w{"https://rdap.afilias-srs.net/rdap/phone/"}, f},
1195 {"photo", r, x, 0x40, "Registry Services, LLC", "https://nic.photo/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, w{"de", "es", "fr", "it", "ja", "mul-Cyrl", "pt", "zh"}, "whois.nic.photo", e, w{"https://whois.uniregistry.net/rdap/"}, t},
11931196 {"photography", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.photography", "v0n1.nic.photography", "v0n2.nic.photography", "v0n3.nic.photography", "v2n0.nic.photography", "v2n1.nic.photography"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.photography", e, w{"https://rdap.donuts.co/rdap/"}, t},
11941197 {"photos", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.photos", "v0n1.nic.photos", "v0n2.nic.photos", "v0n3.nic.photos", "v2n0.nic.photos", "v2n1.nic.photos"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.photos", e, w{"https://rdap.donuts.co/rdap/"}, t},
1195 {"physio", r, x, 0x40, "PhysBiz Pty Ltd", "https://newgtlds.icann.org/", w{"a.nic.physio", "b.nic.physio", "c.nic.physio", "d.nic.physio"}, n, n, n, "whois.nic.physio", e, w{"https://rdap.nic.physio/"}, f},
1196 {"piaget", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.piaget", e, n, f},
1198 {"physio", r, x, 0x40, "PhysBiz Pty Ltd", "http://nic.physio/", w{"a.nic.physio", "b.nic.physio", "c.nic.physio", "d.nic.physio"}, n, n, n, "whois.nic.physio", e, w{"https://rdap.nic.physio/"}, f},
1199 {"piaget", r, x, 0x842, e, e, n, n, n, n, "whois.nic.piaget", e, n, f},
11971200 {"pics", r, x, 0x40, "XYZ.COM LLC", "https://nic.pics/", w{"a.nic.pics", "b.nic.pics", "c.nic.pics", "d.nic.pics"}, n, n, w{"de", "es", "fr", "it", "ja", "mul-Cyrl", "pt", "zh"}, "whois.nic.pics", e, w{"https://rdap.centralnic.com/pics/"}, t},
1198 {"pictet", r, x, 0x42, "Pictet Europe S.A.", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, w{"https://tld-rdap.verisign.com/pictet/v1/"}, f},
1201 {"pictet", r, x, 0x42, "Pictet Europe S.A.", "https://www.icann.org/en/registry-agreements/details/pictet", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, w{"https://tld-rdap.verisign.com/pictet/v1/"}, f},
11991202 {"pictures", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.pictures", "v0n1.nic.pictures", "v0n2.nic.pictures", "v0n3.nic.pictures", "v2n0.nic.pictures", "v2n1.nic.pictures"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.pictures", e, w{"https://rdap.donuts.co/rdap/"}, t},
1200 {"pid", r, x, 0x40, "Top Level Spectrum, Inc.", "https://newgtlds.icann.org/", w{"a.nic.pid", "b.nic.pid", "c.nic.pid", "d.nic.pid"}, n, n, w{"ar"}, "whois.nic.pid", e, w{"https://rdap.centralnic.com/pid/"}, t},
1201 {"pin", r, x, 0x48, "Amazon Registry Services, Inc.", "https://newgtlds.icann.org/", w{"dns1.nic.pin", "dns2.nic.pin", "dns3.nic.pin", "dns4.nic.pin", "dnsa.nic.pin", "dnsb.nic.pin", "dnsc.nic.pin", "dnsd.nic.pin"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.pin", e, w{"https://rdap.nominet.uk/pin/"}, t},
1202 {"ping", r, x, 0x42, "Ping Registry Provider, Inc.", "https://newgtlds.icann.org/", w{"a.nic.ping", "b.nic.ping", "c.nic.ping", "ns1.dns.nic.ping", "ns2.dns.nic.ping", "ns3.dns.nic.ping"}, n, n, n, "whois.nic.ping", e, w{"https://rdap.nic.ping/"}, f},
1203 {"pink", r, x, 0x40, "Identity Digital Limited", "https://get.pink/", w{"a0.nic.pink", "a2.nic.pink", "b0.nic.pink", "b2.nic.pink", "c0.nic.pink"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.pink", e, w{"https://rdap.donuts.co/rdap/"}, t},
1204 {"pioneer", r, x, 0x42, "Pioneer Corporation", "https://newgtlds.icann.org/", w{"dns1.nic.pioneer", "dns2.nic.pioneer", "dns3.nic.pioneer", "dns4.nic.pioneer", "dnsa.nic.pioneer", "dnsb.nic.pioneer", "dnsc.nic.pioneer", "dnsd.nic.pioneer"}, n, n, w{"ja"}, "whois.nic.pioneer", e, w{"https://rdap.nominet.uk/pioneer/"}, t},
1205 {"piperlime", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1206 {"pitney", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1207 {"pizza", r, x, 0x40, "Binky Moon, LLC", "https://newgtlds.icann.org/", w{"v0n0.nic.pizza", "v0n1.nic.pizza", "v0n2.nic.pizza", "v0n3.nic.pizza", "v2n0.nic.pizza", "v2n1.nic.pizza"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.pizza", e, w{"https://rdap.donuts.co/rdap/"}, t},
1203 {"pid", r, x, 0x40, "Top Level Spectrum, Inc.", "http://www.nic.pid/", w{"a.nic.pid", "b.nic.pid", "c.nic.pid", "d.nic.pid"}, n, n, w{"ar"}, "whois.nic.pid", e, w{"https://rdap.centralnic.com/pid/"}, t},
1204 {"pin", r, x, 0x48, "Amazon Registry Services, Inc.", "https://nic.pin/", w{"dns1.nic.pin", "dns2.nic.pin", "dns3.nic.pin", "dns4.nic.pin", "dnsa.nic.pin", "dnsb.nic.pin", "dnsc.nic.pin", "dnsd.nic.pin"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.pin", e, w{"https://rdap.nominet.uk/pin/"}, t},
1205 {"ping", r, x, 0x42, "Ping Registry Provider, Inc.", "https://nic.ping/", w{"a.nic.ping", "b.nic.ping", "c.nic.ping", "ns1.dns.nic.ping", "ns2.dns.nic.ping", "ns3.dns.nic.ping"}, n, n, n, "whois.nic.ping", e, w{"https://rdap.nic.ping/"}, f},
1206 {"pink", r, x, 0x40, "Identity Digital Limited", "http://nic.pink/", w{"a0.nic.pink", "a2.nic.pink", "b0.nic.pink", "b2.nic.pink", "c0.nic.pink"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.pink", e, w{"https://rdap.donuts.co/rdap/"}, t},
1207 {"pioneer", r, x, 0x42, "Pioneer Corporation", "https://nic.pioneer/", w{"dns1.nic.pioneer", "dns2.nic.pioneer", "dns3.nic.pioneer", "dns4.nic.pioneer", "dnsa.nic.pioneer", "dnsb.nic.pioneer", "dnsc.nic.pioneer", "dnsd.nic.pioneer"}, n, n, w{"ja"}, "whois.nic.pioneer", e, w{"https://rdap.nominet.uk/pioneer/"}, t},
1208 {"piperlime", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
1209 {"pitney", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
1210 {"pizza", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.pizza", "v0n1.nic.pizza", "v0n2.nic.pizza", "v0n3.nic.pizza", "v2n0.nic.pizza", "v2n1.nic.pizza"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.pizza", e, w{"https://rdap.donuts.co/rdap/"}, t},
12081211 {"pk", r, z[3854:3869], 0xa0, e, e, w{"root-c1.pknic.pk", "root-c2.pknic.pk", "root-e.pknic.pk", "root-s.pknic.pk"}, n, n, n, "whois.pknic.net.pk", e, n, f},
12091212 {"pl", r, z[3869:4037], 0xa0, e, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, w{"be-PL", "bg-PL", "ca-PL", "cs-PL", "da-PL", "de-PL", "el-PL", "eo-PL", "es-PL", "et-PL", "fi-PL", "fr-PL", "ga-PL", "he-PL", "hr-PL", "hu-PL", "is-PL", "it-PL", "lb-PL", "lt-PL", "lv-PL", "mk-PL", "mt-PL", "nl-PL", "no-PL", "pl-PL", "pt-PL", "ro-PL", "ru-PL", "sk-PL", "sl-PL", "sq-PL", "sr-PL", "sv-PL", "tr-PL", "uk-PL"}, "whois.dns.pl", e, n, t},
12101213 {"place", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.place", "v0n1.nic.place", "v0n2.nic.place", "v0n3.nic.place", "v2n0.nic.place", "v2n1.nic.place"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.place", e, w{"https://rdap.donuts.co/rdap/"}, t},
12111214 {"play", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
1212 {"playstation", r, x, 0x42, "Sony Interactive Entertainment Inc.", "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ja"}, "whois.nic.playstation", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
1215 {"playstation", r, x, 0x42, "Sony Interactive Entertainment Inc.", "https://nic.playstation/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ja"}, "whois.nic.playstation", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
12131216 {"plumbing", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.plumbing", "v0n1.nic.plumbing", "v0n2.nic.plumbing", "v0n3.nic.plumbing", "v2n0.nic.plumbing", "v2n1.nic.plumbing"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.plumbing", e, w{"https://rdap.donuts.co/rdap/"}, t},
1214 {"plus", r, x, 0x40, "Binky Moon, LLC", "https://newgtlds.icann.org/", w{"v0n0.nic.plus", "v0n1.nic.plus", "v0n2.nic.plus", "v0n3.nic.plus", "v2n0.nic.plus", "v2n1.nic.plus"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.plus", e, w{"https://rdap.donuts.co/rdap/"}, t},
1217 {"plus", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.plus", "v0n1.nic.plus", "v0n2.nic.plus", "v0n3.nic.plus", "v2n0.nic.plus", "v2n1.nic.plus"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.plus", e, w{"https://rdap.donuts.co/rdap/"}, t},
12151218 {"pm", r, x, 0xa0, e, e, w{"d.nic.fr", "e.ext.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, n, "whois.nic.pm", e, w{"https://rdap.nic.pm/"}, t},
12161219 {"pn", r, z[4037:4056], 0xa0, e, "https://www.nic.pn/", w{"dns1.nominetdns.uk", "dns4.nominetdns.uk", "fork.sth.dnsnode.net", "ns0.pitcairn.net.pn", "ns1.pitcairn.net.pn"}, n, n, n, e, "http://www.pitcairn.pn/PnRegistry/", n, f},
1217 {"pnc", r, x, 0x42, "PNC Domain Co., LLC", "https://newgtlds.icann.org/", w{"a0.nic.pnc", "a2.nic.pnc", "b0.nic.pnc", "c0.nic.pnc"}, n, n, n, "whois.nic.pnc", e, w{"https://rdap.afilias-srs.net/rdap/pnc/"}, f},
1218 {"pohl", r, x, 0x42, "Deutsche Vermögensberatung Aktiengesellschaft DVAG", "https://newgtlds.icann.org/", w{"a.nic.pohl", "b.nic.pohl", "c.nic.pohl", "d.nic.pohl"}, n, n, w{"de"}, "whois.nic.pohl", e, w{"https://rdap.centralnic.com/pohl/"}, t},
1219 {"poker", r, x, 0x40, "Identity Digital Limited", "https://get.poker/", w{"a0.nic.poker", "a2.nic.poker", "b0.nic.poker", "c0.nic.poker"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.poker", e, w{"https://rdap.donuts.co/rdap/"}, t},
1220 {"politie", r, x, 0x42, "Politie Nederland", "https://newgtlds.icann.org/", w{"ns1.nic.politie", "ns2.nic.politie", "ns3.nic.politie", "ns4.nic.politie"}, n, n, n, "whois.nic.politie", e, w{"https://rdap.nic.politie/"}, f},
1221 {"polo", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1220 {"pnc", r, x, 0x42, "PNC Domain Co., LLC", "https://www.pnc.com/en/security-privacy/nic.html", w{"a0.nic.pnc", "a2.nic.pnc", "b0.nic.pnc", "c0.nic.pnc"}, n, n, n, "whois.nic.pnc", e, w{"https://rdap.afilias-srs.net/rdap/pnc/"}, f},
1221 {"pohl", r, x, 0x42, "Deutsche Vermögensberatung Aktiengesellschaft DVAG", "https://www.icann.org/en/registry-agreements/details/pohl", w{"a.nic.pohl", "b.nic.pohl", "c.nic.pohl", "d.nic.pohl"}, n, n, w{"de"}, "whois.nic.pohl", e, w{"https://rdap.centralnic.com/pohl/"}, t},
1222 {"poker", r, x, 0x40, "Identity Digital Limited", "http://nic.poker/", w{"a0.nic.poker", "a2.nic.poker", "b0.nic.poker", "c0.nic.poker"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.poker", e, w{"https://rdap.donuts.co/rdap/"}, t},
1223 {"politie", r, x, 0x42, "Politie Nederland", "https://nic.politie/", w{"ns1.nic.politie", "ns2.nic.politie", "ns3.nic.politie", "ns4.nic.politie"}, n, n, n, "whois.nic.politie", e, w{"https://rdap.nic.politie/"}, f},
1224 {"polo", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
12221225 {"porn", r, x, 0x41, "ICM Registry PN LLC", "https://nic.porn/", w{"a.nic.porn", "b.nic.porn", "c.nic.porn", "d.nic.porn"}, n, n, w{"ar", "be", "bg", "bs", "cnr", "da", "de", "es", "fr", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.porn", e, w{"https://rdap.nic.porn/"}, t},
12231226 {"post", r, x, 0x1040, "Universal Postal Union", "https://en.wikipedia.org/wiki/.post", w{"a0.post.afilias-nst.info", "a2.post.afilias-nst.info", "b0.post.afilias-nst.org", "b2.post.afilias-nst.org", "c0.post.afilias-nst.info", "d0.post.afilias-nst.org"}, n, n, n, "whois.dotpostregistry.net", e, w{"https://rdap.afilias-srs.net/rdap/post/"}, f},
1224 {"pr", r, z[4056:4108], 0xa0, e, "https://domains.pr/", w{"a.lactld.org", "a0.pr.afilias-nst.info", "a2.pr.afilias-nst.info", "b0.pr.afilias-nst.org", "b2.pr.afilias-nst.org", "c0.pr.afilias-nst.info", "d0.pr.afilias-nst.org", "pr-dns.denic.de"}, n, n, n, "whois.afilias-srs.net", e, n, t},
1225 {"pramerica", r, x, 0x42, "Prudential Financial, Inc.", "https://newgtlds.icann.org/", w{"a.nic.pramerica", "b.nic.pramerica", "c.nic.pramerica", "ns1.dns.nic.pramerica", "ns2.dns.nic.pramerica", "ns3.dns.nic.pramerica"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.pramerica", e, w{"https://rdap.nic.pramerica/"}, t},
1226 {"praxi", r, x, 0x42, "Praxi S.p.A.", "https://newgtlds.icann.org/", w{"a.nic.praxi", "b.nic.praxi", "c.nic.praxi", "ns1.dns.nic.praxi", "ns2.dns.nic.praxi", "ns3.dns.nic.praxi"}, n, n, n, "whois.nic.praxi", e, w{"https://rdap.nic.praxi/"}, f},
1227 {"pr", r, z[4056:4108], 0xa0, e, "https://domains.pr/", w{"a.lactld.org", "a0.pr.afilias-nst.info", "a2.pr.afilias-nst.info", "b0.pr.afilias-nst.org", "b2.pr.afilias-nst.org", "c0.pr.afilias-nst.info", "d0.pr.afilias-nst.org", "pr-dns.denic.de"}, n, n, n, "whois.nic.pr", e, n, t},
1228 {"pramerica", r, x, 0x42, "Prudential Financial, Inc.", "http://nic.pramerica/nicpramerica/nic%20pramerica%20static%20page%20.html", w{"a.nic.pramerica", "b.nic.pramerica", "c.nic.pramerica", "ns1.dns.nic.pramerica", "ns2.dns.nic.pramerica", "ns3.dns.nic.pramerica"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.pramerica", e, w{"https://rdap.nic.pramerica/"}, t},
1229 {"praxi", r, x, 0x42, "Praxi S.p.A.", "http://nic.praxi/", w{"a.nic.praxi", "b.nic.praxi", "c.nic.praxi", "ns1.dns.nic.praxi", "ns2.dns.nic.praxi", "ns3.dns.nic.praxi"}, n, n, n, "whois.nic.praxi", e, w{"https://rdap.nic.praxi/"}, f},
12271230 {"press", r, x, 0x40, "Radix FZC", e, w{"a.nic.press", "b.nic.press", "e.nic.press", "f.nic.press"}, n, n, w{"ar", "he", "ja", "ko", "lo", "mul-Cyrl", "mul-Grek", "mul-Latn", "th", "zh"}, "whois.nic.press", e, w{"https://rdap.centralnic.com/press/"}, t},
1228 {"prime", r, x, 0x42, "Amazon Registry Services, Inc.", "https://newgtlds.icann.org/", w{"dns1.nic.prime", "dns2.nic.prime", "dns3.nic.prime", "dns4.nic.prime", "dnsa.nic.prime", "dnsb.nic.prime", "dnsc.nic.prime", "dnsd.nic.prime"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.prime", e, w{"https://rdap.nominet.uk/prime/"}, t},
1229 {"pro", r, z[4108:4144], 0x40, "Identity Digital Limited", "https://registry.pro/", w{"a0.pro.afilias-nst.info", "a2.pro.afilias-nst.info", "b0.pro.afilias-nst.org", "b2.pro.afilias-nst.org", "c0.pro.afilias-nst.info", "d0.pro.afilias-nst.org"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.pro", e, w{"https://rdap.donuts.co/rdap/"}, t},
1231 {"prime", r, x, 0x42, "Amazon Registry Services, Inc.", "https://nic.prime/", w{"dns1.nic.prime", "dns2.nic.prime", "dns3.nic.prime", "dns4.nic.prime", "dnsa.nic.prime", "dnsb.nic.prime", "dnsc.nic.prime", "dnsd.nic.prime"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.prime", e, w{"https://rdap.nominet.uk/prime/"}, t},
1232 {"pro", r, z[4108:4144], 0x40, "Identity Digital Limited", "http://nic.pro/", w{"a0.pro.afilias-nst.info", "a2.pro.afilias-nst.info", "b0.pro.afilias-nst.org", "b2.pro.afilias-nst.org", "c0.pro.afilias-nst.info", "d0.pro.afilias-nst.org"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.pro", e, w{"https://rdap.donuts.co/rdap/"}, t},
12301233 {"prod", r, x, 0x42, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
12311234 {"productions", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.productions", "v0n1.nic.productions", "v0n2.nic.productions", "v0n3.nic.productions", "v2n0.nic.productions", "v2n1.nic.productions"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.productions", e, w{"https://rdap.donuts.co/rdap/"}, t},
12321235 {"prof", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
1233 {"progressive", r, x, 0x42, "Progressive Casualty Insurance Company", "https://newgtlds.icann.org/", w{"a0.nic.progressive", "a2.nic.progressive", "b0.nic.progressive", "c0.nic.progressive"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/progressive/"}, f},
1234 {"promo", r, x, 0x40, "Identity Digital Limited", "https://get.promo/", w{"a0.nic.promo", "a2.nic.promo", "b0.nic.promo", "c0.nic.promo"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.promo", e, w{"https://rdap.donuts.co/rdap/"}, t},
1236 {"progressive", r, x, 0x42, "Progressive Casualty Insurance Company", "https://www.progressive.com/support/gtld/", w{"a0.nic.progressive", "a2.nic.progressive", "b0.nic.progressive", "c0.nic.progressive"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/progressive/"}, f},
1237 {"promo", r, x, 0x40, "Identity Digital Limited", "http://nic.promo/", w{"a0.nic.promo", "a2.nic.promo", "b0.nic.promo", "c0.nic.promo"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.promo", e, w{"https://rdap.donuts.co/rdap/"}, t},
12351238 {"properties", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.properties", "v0n1.nic.properties", "v0n2.nic.properties", "v0n3.nic.properties", "v2n0.nic.properties", "v2n1.nic.properties"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.properties", e, w{"https://rdap.donuts.co/rdap/"}, t},
12361239 {"property", r, x, 0x40, "Internet Naming Company LLC", "https://nic.property/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, w{"de", "es", "fr", "it", "ja", "mul-Cyrl", "pt", "zh"}, "whois.uniregistry.net", e, w{"https://whois.uniregistry.net/rdap/"}, t},
1237 {"protection", r, x, 0x40, "XYZ.COM LLC", "https://newgtlds.icann.org/", w{"a.nic.protection", "b.nic.protection", "e.nic.protection", "f.nic.protection"}, n, n, w{"ar", "he", "ja", "ko", "lo", "mul-Grek", "mul-Latn", "ru", "th", "zh"}, "whois.nic.protection", e, w{"https://rdap.centralnic.com/protection/"}, t},
1238 {"pru", r, x, 0x42, "Prudential Financial, Inc.", "https://newgtlds.icann.org/", w{"a.nic.pru", "b.nic.pru", "c.nic.pru", "ns1.dns.nic.pru", "ns2.dns.nic.pru", "ns3.dns.nic.pru"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.pru", e, w{"https://rdap.nic.pru/"}, t},
1239 {"prudential", r, x, 0x42, "Prudential Financial, Inc.", "https://newgtlds.icann.org/", w{"a.nic.prudential", "b.nic.prudential", "c.nic.prudential", "ns1.dns.nic.prudential", "ns2.dns.nic.prudential", "ns3.dns.nic.prudential"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.prudential", e, w{"https://rdap.nic.prudential/"}, t},
1240 {"protection", r, x, 0x40, "XYZ.COM LLC", "https://nic.protection/", w{"a.nic.protection", "b.nic.protection", "e.nic.protection", "f.nic.protection"}, n, n, w{"ar", "he", "ja", "ko", "lo", "mul-Grek", "mul-Latn", "ru", "th", "zh"}, "whois.nic.protection", e, w{"https://rdap.centralnic.com/protection/"}, t},
1241 {"pru", r, x, 0x42, "Prudential Financial, Inc.", "http://nic.pru/nicpru/nic-%20pru.html", w{"a.nic.pru", "b.nic.pru", "c.nic.pru", "ns1.dns.nic.pru", "ns2.dns.nic.pru", "ns3.dns.nic.pru"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.pru", e, w{"https://rdap.nic.pru/"}, t},
1242 {"prudential", r, x, 0x42, "Prudential Financial, Inc.", "http://nic.prudential/nicprudential/nic-%20prudential%20static%20page.html", w{"a.nic.prudential", "b.nic.prudential", "c.nic.prudential", "ns1.dns.nic.prudential", "ns2.dns.nic.prudential", "ns3.dns.nic.prudential"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.prudential", e, w{"https://rdap.nic.prudential/"}, t},
12401243 {"ps", r, z[4144:4153], 0xa0, e, e, w{"dns1.gov.ps", "fork.sth.dnsnode.net", "ns1.pnina.ps", "ps-ns.anycast.pch.net", "ps.cctld.authdns.ripe.net", "rip.psg.com"}, n, n, n, "whois.pnina.ps", e, n, f},
12411244 {"pt", r, z[4153:4162], 0xa0, e, e, w{"a.dns.pt", "b.dns.pt", "c.dns.pt", "d.dns.pt", "e.dns.pt", "g.dns.pt", "h.dns.pt", "ns.dns.br", "ns2.nic.fr"}, n, n, n, "whois.dns.pt", e, n, t},
12421245 {"pub", r, x, 0x40, "Dog Beach, LLC", e, w{"v0n0.nic.pub", "v0n1.nic.pub", "v0n2.nic.pub", "v0n3.nic.pub", "v2n0.nic.pub", "v2n1.nic.pub"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.pub", e, w{"https://rdap.donuts.co/rdap/"}, t},
12431246 {"pw", r, z[4162:4173], 0xa0, e, e, w{"ns1.nic.pw", "ns2.nic.pw", "ns5.nic.pw", "ns6.nic.pw"}, n, n, w{"ar", "he", "ja", "ko", "lo", "mul-Cyrl", "mul-Grek", "mul-Latn", "th", "zh"}, "whois.nic.pw", e, w{"https://rdap.centralnic.com/pw/"}, t},
1244 {"pwc", r, x, 0x42, "PricewaterhouseCoopers LLP", "https://newgtlds.icann.org/", w{"a0.nic.pwc", "a2.nic.pwc", "b0.nic.pwc", "c0.nic.pwc"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/pwc/"}, f},
1247 {"pwc", r, x, 0x42, "PricewaterhouseCoopers LLP", "http://www.nic.pwc/", w{"a0.nic.pwc", "a2.nic.pwc", "b0.nic.pwc", "c0.nic.pwc"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/pwc/"}, f},
12451248 {"py", r, z[4173:4181], 0xa8, e, e, w{"b.dns.py", "c.dns.py", "l.dns.py", "p.dns.py", "u.dns.py"}, n, n, n, e, "http://www.nic.py/consulta-datos.php", n, f},
12461249 {"qa", r, z[4181:4189], 0xa0, e, e, w{"a.registry.qa", "b.registry.qa", "c.registry.qa", "d.registry.qa", "e.registry.qa", "f.registry.qa", "g.registry.qa", "h.registry.qa", "i.registry.qa"}, n, n, n, "whois.registry.qa", e, n, f},
12471250 {"qpon", r, x, 0x40, "dotCOOL, Inc.", e, w{"a.nic.qpon", "b.nic.qpon", "c.nic.qpon", "d.nic.qpon"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "it", "ja", "ko", "lt", "lv", "nl", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.qpon", e, w{"https://rdap.centralnic.com/qpon/"}, t},
1248 {"qtel", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1251 {"qtel", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
12491252 {"quebec", r, x, 0xc4, "PointQuébec Inc", e, w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, w{"Quebec", "CA-QC"}, w{"fr"}, "whois.nic.quebec", e, w{"https://rdap.nic.quebec/"}, t},
1250 {"quest", r, x, 0x42, "XYZ.COM LLC", "https://newgtlds.icann.org/", w{"a-cnic.nic.quest", "b-cnic.nic.quest", "c-cnic.nic.quest", "d-cnic.nic.quest"}, n, n, w{"ja", "ko", "mul-Grek", "mul-Latn", "ru", "zh"}, "whois.nic.quest", e, w{"https://rdap.centralnic.com/quest/"}, t},
1251 {"qvc", r, x, 0x842, "QVC, Inc.", "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.qvc", e, w{"https://rdap.nic.qvc/"}, f},
1252 {"racing", r, x, 0x40, "Premier Registry Limited", "https://www.famousfourmedia.com/", w{"a.nic.racing", "b.nic.racing", "c.nic.racing", "ns1.dns.nic.racing", "ns2.dns.nic.racing", "ns3.dns.nic.racing"}, n, n, w{"da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.racing", e, w{"https://rdap.nic.racing/"}, t},
1253 {"quest", r, x, 0x42, "XYZ.COM LLC", "https://nic.quest/", w{"a-cnic.nic.quest", "b-cnic.nic.quest", "c-cnic.nic.quest", "d-cnic.nic.quest"}, n, n, w{"ja", "ko", "mul-Grek", "mul-Latn", "ru", "zh"}, "whois.nic.quest", e, w{"https://rdap.centralnic.com/quest/"}, t},
1254 {"qvc", r, x, 0x842, "QVC, Inc.", e, n, n, n, n, "whois.nic.qvc", e, w{"https://rdap.nic.qvc/"}, f},
1255 {"racing", r, x, 0x40, "Premier Registry Limited", "http://nic.racing/", w{"a.nic.racing", "b.nic.racing", "c.nic.racing", "ns1.dns.nic.racing", "ns2.dns.nic.racing", "ns3.dns.nic.racing"}, n, n, w{"da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.racing", e, w{"https://rdap.nic.racing/"}, t},
12531256 {"radio", r, x, 0x40, "European Broadcasting Union (EBU)", "https://www.nic.radio/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, w{"el", "he", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Latn", "zh"}, "whois.nic.radio", e, w{"https://rdap.nic.radio/"}, t},
1254 {"raid", r, x, 0x842, "Johnson Shareholdings, Inc.", "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.raid", e, w{"https://tld-rdap.verisign.com/raid/v1/"}, f},
1255 {"ram", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1257 {"raid", r, x, 0x842, "Johnson Shareholdings, Inc.", e, n, n, n, n, "whois.nic.raid", e, w{"https://tld-rdap.verisign.com/raid/v1/"}, f},
1258 {"ram", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
12561259 {"re", r, z[4189:4192], 0xa0, e, e, w{"d.nic.fr", "e.ext.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, n, "whois.nic.re", e, w{"https://rdap.nic.re/"}, t},
1257 {"read", r, x, 0x42, "Amazon Registry Services, Inc.", "https://newgtlds.icann.org/", w{"dns1.nic.read", "dns2.nic.read", "dns3.nic.read", "dns4.nic.read", "dnsa.nic.read", "dnsb.nic.read", "dnsc.nic.read", "dnsd.nic.read"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.read", e, w{"https://rdap.nominet.uk/read/"}, t},
1258 {"realestate", r, x, 0x40, "dotRealEstate LLC", "https://newgtlds.icann.org/", w{"dns1.nic.realestate", "dns2.nic.realestate", "dns3.nic.realestate", "dns4.nic.realestate", "dnsa.nic.realestate", "dnsb.nic.realestate", "dnsc.nic.realestate", "dnsd.nic.realestate"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.realestate", e, w{"https://rdap.nominet.uk/realestate/"}, t},
1259 {"realtor", r, x, 0x40, "Real Estate Domains LLC", "https://www.claim.realtor/", w{"dns1.nic.realtor", "dns2.nic.realtor", "dns3.nic.realtor", "dns4.nic.realtor", "dnsa.nic.realtor", "dnsb.nic.realtor", "dnsc.nic.realtor", "dnsd.nic.realtor"}, n, n, n, e, e, w{"https://rdap.nominet.uk/realtor/"}, f},
1260 {"realty", r, x, 0x40, "Dog Beach, LLC", "https://newgtlds.icann.org/", w{"v0n0.nic.realty", "v0n1.nic.realty", "v0n2.nic.realty", "v0n3.nic.realty", "v2n0.nic.realty", "v2n1.nic.realty"}, n, n, w{"ar"}, "whois.nic.realty", e, w{"https://rdap.donuts.co/rdap/"}, t},
1260 {"read", r, x, 0x42, "Amazon Registry Services, Inc.", "https://nic.read/", w{"dns1.nic.read", "dns2.nic.read", "dns3.nic.read", "dns4.nic.read", "dnsa.nic.read", "dnsb.nic.read", "dnsc.nic.read", "dnsd.nic.read"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.read", e, w{"https://rdap.nominet.uk/read/"}, t},
1261 {"realestate", r, x, 0x40, "dotRealEstate LLC", "https://home.realestate/", w{"dns1.nic.realestate", "dns2.nic.realestate", "dns3.nic.realestate", "dns4.nic.realestate", "dnsa.nic.realestate", "dnsb.nic.realestate", "dnsc.nic.realestate", "dnsd.nic.realestate"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.realestate", e, w{"https://rdap.nominet.uk/realestate/"}, t},
1262 {"realtor", r, x, 0x40, "Real Estate Domains LLC", "http://nic.realtor/", w{"dns1.nic.realtor", "dns2.nic.realtor", "dns3.nic.realtor", "dns4.nic.realtor", "dnsa.nic.realtor", "dnsb.nic.realtor", "dnsc.nic.realtor", "dnsd.nic.realtor"}, n, n, n, e, e, w{"https://rdap.nominet.uk/realtor/"}, f},
1263 {"realty", r, x, 0x40, "Dog Beach, LLC", "https://identity.digital/", w{"v0n0.nic.realty", "v0n1.nic.realty", "v0n2.nic.realty", "v0n3.nic.realty", "v2n0.nic.realty", "v2n1.nic.realty"}, n, n, w{"ar"}, "whois.nic.realty", e, w{"https://rdap.donuts.co/rdap/"}, t},
12611264 {"recipes", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.recipes", "v0n1.nic.recipes", "v0n2.nic.recipes", "v0n3.nic.recipes", "v2n0.nic.recipes", "v2n1.nic.recipes"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.recipes", e, w{"https://rdap.donuts.co/rdap/"}, t},
1262 {"red", r, x, 0x40, "Identity Digital Limited", "https://get.red/", w{"a0.nic.red", "a2.nic.red", "b0.nic.red", "c0.nic.red"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.red", e, w{"https://rdap.donuts.co/rdap/"}, t},
1263 {"redken", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1264 {"redstone", r, x, 0x42, "Redstone Haute Couture Co., Ltd.", "https://newgtlds.icann.org/", w{"a0.nic.redstone", "a2.nic.redstone", "b0.nic.redstone", "c0.nic.redstone"}, n, n, n, "whois.nic.redstone", e, w{"https://rdap.afilias-srs.net/rdap/redstone/"}, f},
1265 {"redumbrella", r, x, 0x42, "Travelers TLD, LLC", "https://newgtlds.icann.org/", w{"a0.nic.redumbrella", "a2.nic.redumbrella", "b0.nic.redumbrella", "c0.nic.redumbrella"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/redumbrella/"}, f},
1266 {"rehab", r, x, 0x40, "Dog Beach, LLC", "https://newgtlds.icann.org/", w{"v0n0.nic.rehab", "v0n1.nic.rehab", "v0n2.nic.rehab", "v0n3.nic.rehab", "v2n0.nic.rehab", "v2n1.nic.rehab"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.rehab", e, w{"https://rdap.donuts.co/rdap/"}, t},
1267 {"reise", r, x, 0x40, "Binky Moon, LLC", "https://newgtlds.icann.org/", w{"v0n0.nic.reise", "v0n1.nic.reise", "v0n2.nic.reise", "v0n3.nic.reise", "v2n0.nic.reise", "v2n1.nic.reise"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.reise", e, w{"https://rdap.donuts.co/rdap/"}, t},
1265 {"red", r, x, 0x40, "Identity Digital Limited", "http://nic.red/", w{"a0.nic.red", "a2.nic.red", "b0.nic.red", "c0.nic.red"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.red", e, w{"https://rdap.donuts.co/rdap/"}, t},
1266 {"redken", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
1267 {"redstone", r, x, 0x42, "Redstone Haute Couture Co., Ltd.", "http://nic.redstone/", w{"a0.nic.redstone", "a2.nic.redstone", "b0.nic.redstone", "c0.nic.redstone"}, n, n, n, "whois.nic.redstone", e, w{"https://rdap.afilias-srs.net/rdap/redstone/"}, f},
1268 {"redumbrella", r, x, 0x42, "Travelers TLD, LLC", "https://nic.redumbrella/", w{"a0.nic.redumbrella", "a2.nic.redumbrella", "b0.nic.redumbrella", "c0.nic.redumbrella"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/redumbrella/"}, f},
1269 {"rehab", r, x, 0x40, "Dog Beach, LLC", "https://identity.digital/", w{"v0n0.nic.rehab", "v0n1.nic.rehab", "v0n2.nic.rehab", "v0n3.nic.rehab", "v2n0.nic.rehab", "v2n1.nic.rehab"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.rehab", e, w{"https://rdap.donuts.co/rdap/"}, t},
1270 {"reise", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.reise", "v0n1.nic.reise", "v0n2.nic.reise", "v0n3.nic.reise", "v2n0.nic.reise", "v2n1.nic.reise"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.reise", e, w{"https://rdap.donuts.co/rdap/"}, t},
12681271 {"reisen", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.reisen", "v0n1.nic.reisen", "v0n2.nic.reisen", "v0n3.nic.reisen", "v2n0.nic.reisen", "v2n1.nic.reisen"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.reisen", e, w{"https://rdap.donuts.co/rdap/"}, t},
1269 {"reit", r, x, 0x50, "National Association of Real Estate Investment Trusts, Inc.", "https://newgtlds.icann.org/", w{"a.nic.reit", "b.nic.reit", "c.nic.reit", "d.nic.reit"}, n, n, n, "whois.nic.reit", e, w{"https://rdap.centralnic.com/reit/"}, f},
1270 {"reliance", r, x, 0x42, "Reliance Industries Limited", "https://newgtlds.icann.org/", w{"a0.nic.reliance", "a2.nic.reliance", "b0.nic.reliance", "c0.nic.reliance"}, n, n, n, "whois.nic.reliance", e, w{"https://rdap.afilias-srs.net/rdap/reliance/"}, f},
1271 {"ren", r, x, 0x42, "ZDNS International Limited", "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.nic.ren", e, w{"https://rdap.zdnsgtld.com/ren/"}, t},
1272 {"rent", r, x, 0x40, "XYZ.COM LLC", "https://newgtlds.icann.org/", w{"a.nic.rent", "b.nic.rent", "c.nic.rent", "d.nic.rent"}, n, n, w{"ar", "he", "ja", "ko", "lo", "mul-Grek", "mul-Latn", "ru", "th", "zh"}, "whois.nic.rent", e, w{"https://rdap.centralnic.com/rent/"}, t},
1272 {"reit", r, x, 0x50, "National Association of Real Estate Investment Trusts, Inc.", "https://nic.reit/", w{"a.nic.reit", "b.nic.reit", "c.nic.reit", "d.nic.reit"}, n, n, n, "whois.nic.reit", e, w{"https://rdap.centralnic.com/reit/"}, f},
1273 {"reliance", r, x, 0x42, "Reliance Industries Limited", "http://nic.reliance/", w{"a0.nic.reliance", "a2.nic.reliance", "b0.nic.reliance", "c0.nic.reliance"}, n, n, n, "whois.nic.reliance", e, w{"https://rdap.afilias-srs.net/rdap/reliance/"}, f},
1274 {"ren", r, x, 0x42, "ZDNS International Limited", "http://nic.ren/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.nic.ren", e, w{"https://rdap.zdnsgtld.com/ren/"}, t},
1275 {"rent", r, x, 0x40, "XYZ.COM LLC", "https://nic.rent/", w{"a.nic.rent", "b.nic.rent", "c.nic.rent", "d.nic.rent"}, n, n, w{"ar", "he", "ja", "ko", "lo", "mul-Grek", "mul-Latn", "ru", "th", "zh"}, "whois.nic.rent", e, w{"https://rdap.centralnic.com/rent/"}, t},
12731276 {"rentals", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.rentals", "v0n1.nic.rentals", "v0n2.nic.rentals", "v0n3.nic.rentals", "v2n0.nic.rentals", "v2n1.nic.rentals"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.rentals", e, w{"https://rdap.donuts.co/rdap/"}, t},
12741277 {"repair", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.repair", "v0n1.nic.repair", "v0n2.nic.repair", "v0n3.nic.repair", "v2n0.nic.repair", "v2n1.nic.repair"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.repair", e, w{"https://rdap.donuts.co/rdap/"}, t},
12751278 {"report", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.report", "v0n1.nic.report", "v0n2.nic.report", "v0n3.nic.report", "v2n0.nic.report", "v2n1.nic.report"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.report", e, w{"https://rdap.donuts.co/rdap/"}, t},
12761279 {"republican", r, x, 0x40, "Dog Beach, LLC", e, w{"v0n0.nic.republican", "v0n1.nic.republican", "v0n2.nic.republican", "v0n3.nic.republican", "v2n0.nic.republican", "v2n1.nic.republican"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.republican", e, w{"https://rdap.donuts.co/rdap/"}, t},
12771280 {"rest", r, x, 0x40, "Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable", e, w{"a.nic.rest", "b.nic.rest", "c.nic.rest", "d.nic.rest"}, n, n, w{"mul-Latn"}, "whois.nic.rest", e, w{"https://rdap.centralnic.com/rest/"}, t},
12781281 {"restaurant", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.restaurant", "v0n1.nic.restaurant", "v0n2.nic.restaurant", "v0n3.nic.restaurant", "v2n0.nic.restaurant", "v2n1.nic.restaurant"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.restaurant", e, w{"https://rdap.donuts.co/rdap/"}, t},
1279 {"retirement", r, x, 0x40, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1280 {"review", r, x, 0x40, "dot Review Limited", "https://www.famousfourmedia.com/", w{"a.nic.review", "b.nic.review", "c.nic.review", "ns1.dns.nic.review", "ns2.dns.nic.review", "ns3.dns.nic.review"}, n, n, w{"da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.review", e, w{"https://rdap.nic.review/"}, t},
1282 {"retirement", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
1283 {"review", r, x, 0x40, "dot Review Limited", "http://nic.review/", w{"a.nic.review", "b.nic.review", "c.nic.review", "ns1.dns.nic.review", "ns2.dns.nic.review", "ns3.dns.nic.review"}, n, n, w{"da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.review", e, w{"https://rdap.nic.review/"}, t},
12811284 {"reviews", r, x, 0x40, "Dog Beach, LLC", e, w{"v0n0.nic.reviews", "v0n1.nic.reviews", "v0n2.nic.reviews", "v0n3.nic.reviews", "v2n0.nic.reviews", "v2n1.nic.reviews"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.reviews", e, w{"https://rdap.donuts.co/rdap/"}, t},
1282 {"rexroth", r, x, 0x42, "Robert Bosch GMBH", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.rexroth", e, w{"https://tld-rdap.verisign.com/rexroth/v1/"}, f},
1283 {"rich", r, x, 0x40, "iRegistry GmbH", "https://nic.rich/", w{"a0.nic.rich", "a2.nic.rich", "b0.nic.rich", "c0.nic.rich"}, n, n, w{"be", "bg", "bs", "da", "de", "es", "hu", "is", "ko", "lt", "lv", "mk", "pl", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/rich/"}, t},
1284 {"richardli", r, x, 0x42, "Pacific Century Asset Management (HK) Limited", "https://newgtlds.icann.org/", w{"a0.nic.richardli", "a2.nic.richardli", "b0.nic.richardli", "c0.nic.richardli"}, n, n, w{"zh-CN", "zh-TW"}, "whois.nic.richardli", e, w{"https://rdap.afilias-srs.net/rdap/richardli/"}, t},
1285 {"ricoh", r, x, 0x42, "Ricoh Company, Ltd.", "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ja"}, "whois.nic.ricoh", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
1286 {"rightathome", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.rightathome", e, n, f},
1287 {"ril", r, x, 0x42, "Reliance Industries Limited", "https://newgtlds.icann.org/", w{"a0.nic.ril", "a2.nic.ril", "b0.nic.ril", "c0.nic.ril"}, n, n, n, "whois.nic.ril", e, w{"https://rdap.afilias-srs.net/rdap/ril/"}, f},
1288 {"rio", r, x, 0xc4, "Empresa Municipal de Informática SA - IPLANRIO", "https://newgtlds.icann.org/", w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, w{"Rio de Janeiro", "BR-RJ"}, w{"pt"}, "whois.gtlds.nic.br", e, w{"https://rdap.gtlds.nic.br/"}, t},
1289 {"rip", r, x, 0x40, "Dog Beach, LLC", "https://newgtlds.icann.org/", w{"v0n0.nic.rip", "v0n1.nic.rip", "v0n2.nic.rip", "v0n3.nic.rip", "v2n0.nic.rip", "v2n1.nic.rip"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.rip", e, w{"https://rdap.donuts.co/rdap/"}, t},
1290 {"rmit", r, x, 0x842, "Royal Melbourne Institute of Technology", "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.rmit", e, w{"https://rdap.nic.rmit/"}, f},
1285 {"rexroth", r, x, 0x42, "Robert Bosch GMBH", "https://apps.boschrexroth.com/microsites/nic_rexroth/index.html", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.rexroth", e, w{"https://tld-rdap.verisign.com/rexroth/v1/"}, f},
1286 {"rich", r, x, 0x40, "iRegistry GmbH", "https://nic.rich/", w{"a0.nic.rich", "a2.nic.rich", "b0.nic.rich", "c0.nic.rich"}, n, n, w{"be", "bg", "bs", "da", "de", "es", "hu", "is", "ko", "lt", "lv", "mk", "pl", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.rich", e, w{"https://rdap.afilias-srs.net/rdap/rich/"}, t},
1287 {"richardli", r, x, 0x42, "Pacific Century Asset Management (HK) Limited", "https://www.icann.org/en/registry-agreements/details/richardli", w{"a0.nic.richardli", "a2.nic.richardli", "b0.nic.richardli", "c0.nic.richardli"}, n, n, w{"zh-CN", "zh-TW"}, "whois.nic.richardli", e, w{"https://rdap.afilias-srs.net/rdap/richardli/"}, t},
1288 {"ricoh", r, x, 0x42, "Ricoh Company, Ltd.", "https://nic.ricoh/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ja"}, "whois.nic.ricoh", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
1289 {"rightathome", r, x, 0x842, e, e, n, n, n, n, "whois.nic.rightathome", e, n, f},
1290 {"ril", r, x, 0x42, "Reliance Industries Limited", "http://nic.ril/", w{"a0.nic.ril", "a2.nic.ril", "b0.nic.ril", "c0.nic.ril"}, n, n, n, "whois.nic.ril", e, w{"https://rdap.afilias-srs.net/rdap/ril/"}, f},
1291 {"rio", r, x, 0xc4, "Empresa Municipal de Informática SA - IPLANRIO", "https://nic.rio/", w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, w{"Rio de Janeiro", "BR-RJ"}, w{"pt"}, "whois.gtlds.nic.br", e, w{"https://rdap.gtlds.nic.br/"}, t},
1292 {"rip", r, x, 0x40, "Dog Beach, LLC", "https://identity.digital/", w{"v0n0.nic.rip", "v0n1.nic.rip", "v0n2.nic.rip", "v0n3.nic.rip", "v2n0.nic.rip", "v2n1.nic.rip"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.rip", e, w{"https://rdap.donuts.co/rdap/"}, t},
1293 {"rmit", r, x, 0x842, "Royal Melbourne Institute of Technology", e, n, n, n, n, "whois.nic.rmit", e, w{"https://rdap.nic.rmit/"}, f},
12911294 {"ro", r, z[4192:4209], 0xa0, e, e, w{"dns-at.rotld.ro", "dns-c.rotld.ro", "dns-ro.denic.de", "primary.rotld.ro", "sec-dns-a.rotld.ro", "sec-dns-b.rotld.ro"}, n, n, n, "whois.rotld.ro", e, n, f},
1292 {"rocher", r, x, 0x42, "Ferrero Trading Lux S.A.", "https://newgtlds.icann.org/", w{"a.nic.rocher", "b.nic.rocher", "c.nic.rocher", "ns1.dns.nic.rocher", "ns2.dns.nic.rocher", "ns3.dns.nic.rocher"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "it", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.rocher", e, w{"https://rdap.nic.rocher/"}, t},
1295 {"rocher", r, x, 0x42, "Ferrero Trading Lux S.A.", "https://nic.rocher/", w{"a.nic.rocher", "b.nic.rocher", "c.nic.rocher", "ns1.dns.nic.rocher", "ns2.dns.nic.rocher", "ns3.dns.nic.rocher"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "it", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.rocher", e, w{"https://rdap.nic.rocher/"}, t},
12931296 {"rocks", r, x, 0x40, "Dog Beach, LLC", e, w{"v0n0.nic.rocks", "v0n1.nic.rocks", "v0n2.nic.rocks", "v0n3.nic.rocks", "v2n0.nic.rocks", "v2n1.nic.rocks"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.rocks", e, w{"https://rdap.donuts.co/rdap/"}, t},
1294 {"rockwool", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1297 {"rockwool", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
12951298 {"rodeo", r, x, 0x40, "Registry Services, LLC", "http://nic.rodeo/", w{"a.nic.rodeo", "b.nic.rodeo", "c.nic.rodeo", "d.nic.rodeo"}, n, n, w{"de", "es", "fr"}, "whois.nic.rodeo", e, w{"https://rdap.nic.rodeo/"}, t},
1296 {"rogers", r, x, 0x42, "Rogers Communications Canada Inc.", "https://newgtlds.icann.org/", w{"a0.nic.rogers", "a2.nic.rogers", "b0.nic.rogers", "c0.nic.rogers"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/rogers/"}, f},
1297 {"roma", r, x, 0x40, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1298 {"room", r, x, 0x40, "Amazon Registry Services, Inc.", "https://newgtlds.icann.org/", w{"dns1.nic.room", "dns2.nic.room", "dns3.nic.room", "dns4.nic.room", "dnsa.nic.room", "dnsb.nic.room", "dnsc.nic.room", "dnsd.nic.room"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.room", e, w{"https://rdap.nominet.uk/room/"}, t},
1299 {"root", r, x, 0x40, e, e, n, n, n, n, e, e, n, f},
1299 {"rogers", r, x, 0x42, "Rogers Communications Canada Inc.", "https://www.rogers.com/nic", w{"a0.nic.rogers", "a2.nic.rogers", "b0.nic.rogers", "c0.nic.rogers"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/rogers/"}, f},
1300 {"roma", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
1301 {"room", r, x, 0x40, "Amazon Registry Services, Inc.", "https://nic.room/", w{"dns1.nic.room", "dns2.nic.room", "dns3.nic.room", "dns4.nic.room", "dnsa.nic.room", "dnsb.nic.room", "dnsc.nic.room", "dnsd.nic.room"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.room", e, w{"https://rdap.nominet.uk/room/"}, t},
1302 {"root", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
13001303 {"rs", r, z[4209:4215], 0xa0, e, e, w{"a.nic.rs", "b.nic.rs", "f.nic.rs", "g.nic.rs", "h.nic.rs", "l.nic.rs"}, n, n, w{"cnr-Latn", "cs", "de", "hr", "hu", "rmn-Latn", "ro", "sk", "sl", "sq", "sr", "sr-Latn"}, "whois.rnids.rs", e, n, t},
13011304 {"rsvp", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
1302 {"ru", r, z[4215:4243], 0xa0, e, e, w{"a.dns.ripn.net", "b.dns.ripn.net", "d.dns.ripn.net", "e.dns.ripn.net", "f.dns.ripn.net"}, n, n, w{"ru-RU"}, "whois.tcinet.ru", e, n, t},
1303 {"rugby", r, x, 0x40, "World Rugby Strategic Developments Limited", "https://newgtlds.icann.org/", w{"a.nic.rugby", "b.nic.rugby", "c.nic.rugby", "d.nic.rugby"}, n, n, n, "whois.nic.rugby", e, w{"https://rdap.centralnic.com/rugby/"}, f},
1305 {"ru", r, z[4215:4243], 0xa0, e, e, w{"a.dns.ripn.net", "b.dns.ripn.net", "d.dns.ripn.net", "e.dns.ripn.net", "f.dns.ripn.net"}, n, n, w{"ru-RU"}, "whois.ripn.net", e, n, t},
1306 {"rugby", r, x, 0x40, "World Rugby Strategic Developments Limited", "http://nic.rugby/", w{"a.nic.rugby", "b.nic.rugby", "c.nic.rugby", "d.nic.rugby"}, n, n, n, "whois.nic.rugby", e, w{"https://rdap.centralnic.com/rugby/"}, f},
13041307 {"ruhr", r, x, 0x440, "dotSaarland GmbH", e, w{"a.nic.ruhr", "b.nic.ruhr", "c.nic.ruhr", "d.nic.ruhr"}, n, w{"DE-NW"}, w{"de"}, "whois.nic.ruhr", e, w{"https://rdap.centralnic.com/ruhr/"}, t},
1305 {"run", r, x, 0x40, "Binky Moon, LLC", "https://newgtlds.icann.org/", w{"v0n0.nic.run", "v0n1.nic.run", "v0n2.nic.run", "v0n3.nic.run", "v2n0.nic.run", "v2n1.nic.run"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.run", e, w{"https://rdap.donuts.co/rdap/"}, t},
1308 {"run", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.run", "v0n1.nic.run", "v0n2.nic.run", "v0n3.nic.run", "v2n0.nic.run", "v2n1.nic.run"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.run", e, w{"https://rdap.donuts.co/rdap/"}, t},
13061309 {"rw", r, z[4243:4253], 0xa0, e, "https://ricta.org.rw/", w{"fork.sth.dnsnode.net", "ns-rw.afrinic.net", "ns1.ricta.org.rw", "ns3.ricta.org.rw", "pch.ricta.org.rw"}, n, n, n, "whois.ricta.org.rw", e, n, f},
1307 {"rwe", r, x, 0x42, "RWE AG", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.rwe", e, w{"https://tld-rdap.verisign.com/rwe/v1/"}, t},
1308 {"ryukyu", r, x, 0x440, "BRregistry, Inc.", "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, w{"JP-46", "JP-47"}, w{"ja"}, "whois.nic.ryukyu", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
1310 {"rwe", r, x, 0x42, "RWE AG", "http://nic.rwe/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.rwe", e, w{"https://tld-rdap.verisign.com/rwe/v1/"}, t},
1311 {"ryukyu", r, x, 0x440, "BRregistry, Inc.", "https://www.brregistry.com/geotlds/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, w{"JP-46", "JP-47"}, w{"ja"}, "whois.nic.ryukyu", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
13091312 {"sa", r, z[4253:4261], 0xa0, e, e, w{"c1.dns.sa", "c2.dns.sa", "i1.dns.sa", "m1.dns.sa", "m2.dns.sa", "n1.dns.sa", "p1.dns.sa", "s1.dns.sa", "s2.dns.sa", "sh1.dns.sa"}, n, n, n, "whois.nic.net.sa", e, n, f},
13101313 {"saarland", r, x, 0x4c0, "dotSaarland GmbH", e, w{"a.nic.saarland", "b.nic.saarland", "c.nic.saarland", "d.nic.saarland"}, n, w{"DE-SL"}, w{"de"}, "whois.nic.saarland", e, w{"https://rdap.centralnic.com/saarland/"}, t},
1311 {"safe", r, x, 0x48, "Amazon Registry Services, Inc.", "https://newgtlds.icann.org/", w{"dns1.nic.safe", "dns2.nic.safe", "dns3.nic.safe", "dns4.nic.safe", "dnsa.nic.safe", "dnsb.nic.safe", "dnsc.nic.safe", "dnsd.nic.safe"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.safe", e, w{"https://rdap.nominet.uk/safe/"}, t},
1312 {"safety", r, x, 0x40, "Safety Registry Services, LLC.", "https://newgtlds.icann.org/", w{"a.nic.safety", "b.nic.safety", "c.nic.safety", "ns1.dns.nic.safety", "ns2.dns.nic.safety", "ns3.dns.nic.safety"}, n, n, w{"es"}, "whois.nic.safety", e, w{"https://rdap.nic.safety/"}, t},
1313 {"safeway", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1314 {"sakura", r, x, 0x42, "SAKURA Internet Inc.", "https://newgtlds.icann.org/", w{"tld1.nic.sakura", "tld2.nic.sakura", "tld3.nic.sakura", "tld5.nic.sakura"}, n, n, w{"ja"}, e, e, w{"https://rdap.nic.sakura/rdap/"}, t},
1315 {"sale", r, x, 0x40, "Dog Beach, LLC", "https://newgtlds.icann.org/", w{"v0n0.nic.sale", "v0n1.nic.sale", "v0n2.nic.sale", "v0n3.nic.sale", "v2n0.nic.sale", "v2n1.nic.sale"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.sale", e, w{"https://rdap.donuts.co/rdap/"}, t},
1316 {"salon", r, x, 0x40, "Binky Moon, LLC", "https://newgtlds.icann.org/", w{"v0n0.nic.salon", "v0n1.nic.salon", "v0n2.nic.salon", "v0n3.nic.salon", "v2n0.nic.salon", "v2n1.nic.salon"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.salon", e, w{"https://rdap.donuts.co/rdap/"}, t},
1317 {"samsclub", r, x, 0x42, "Wal-Mart Stores, Inc.", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.samsclub", e, w{"https://tld-rdap.verisign.com/samsclub/v1/"}, f},
1318 {"samsung", r, x, 0x42, "SAMSUNG SDS CO., LTD", "https://newgtlds.icann.org/", w{"ns1.samsung.centralnic-dns.com", "ns2.samsung.centralnic-dns.com", "ns3.samsung.centralnic-dns.com", "ns4.samsung.centralnic-dns.com"}, n, n, w{"ko"}, "whois.nic.samsung", e, w{"https://nic.samsung:8443/rdap/"}, t},
1319 {"sandvik", r, x, 0x42, "Sandvik AB", "https://newgtlds.icann.org/", w{"a.nic.sandvik", "b.nic.sandvik", "c.nic.sandvik", "d.nic.sandvik"}, n, n, w{"da", "fr", "pl", "ru", "sv", "zh"}, "whois.nic.sandvik", e, w{"https://rdap.nic.sandvik/"}, t},
1320 {"sandvikcoromant", r, x, 0x42, "Sandvik AB", "https://newgtlds.icann.org/", w{"a.nic.sandvikcoromant", "b.nic.sandvikcoromant", "c.nic.sandvikcoromant", "d.nic.sandvikcoromant"}, n, n, w{"da", "fr", "pl", "ru", "sv", "zh"}, "whois.nic.sandvikcoromant", e, w{"https://rdap.nic.sandvikcoromant/"}, t},
1321 {"sanofi", r, x, 0x42, "Sanofi", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.sanofi", e, w{"https://tld-rdap.verisign.com/sanofi/v1/"}, f},
1322 {"sap", r, x, 0x42, "SAP AG", "https://newgtlds.icann.org/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, w{"ar", "ca", "cs", "da", "de", "el", "es", "fi", "fr", "he", "hr", "hu", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "tr", "uk", "zh"}, "whois.nic.sap", e, w{"https://rdap.nic.sap/"}, t},
1323 {"sapo", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1324 {"sapphire", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1314 {"safe", r, x, 0x48, "Amazon Registry Services, Inc.", "https://nic.safe/", w{"dns1.nic.safe", "dns2.nic.safe", "dns3.nic.safe", "dns4.nic.safe", "dnsa.nic.safe", "dnsb.nic.safe", "dnsc.nic.safe", "dnsd.nic.safe"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.safe", e, w{"https://rdap.nominet.uk/safe/"}, t},
1315 {"safety", r, x, 0x40, "Safety Registry Services, LLC.", "http://nic.safety/", w{"a.nic.safety", "b.nic.safety", "c.nic.safety", "ns1.dns.nic.safety", "ns2.dns.nic.safety", "ns3.dns.nic.safety"}, n, n, w{"es"}, "whois.nic.safety", e, w{"https://rdap.nic.safety/"}, t},
1316 {"safeway", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
1317 {"sakura", r, x, 0x42, "SAKURA Internet Inc.", "https://www.icann.org/en/registry-agreements/details/sakura", w{"tld1.nic.sakura", "tld2.nic.sakura", "tld3.nic.sakura", "tld5.nic.sakura"}, n, n, w{"ja"}, e, e, w{"https://rdap.nic.sakura/rdap/"}, t},
1318 {"sale", r, x, 0x40, "Dog Beach, LLC", "https://identity.digital/", w{"v0n0.nic.sale", "v0n1.nic.sale", "v0n2.nic.sale", "v0n3.nic.sale", "v2n0.nic.sale", "v2n1.nic.sale"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.sale", e, w{"https://rdap.donuts.co/rdap/"}, t},
1319 {"salon", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.salon", "v0n1.nic.salon", "v0n2.nic.salon", "v0n3.nic.salon", "v2n0.nic.salon", "v2n1.nic.salon"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.salon", e, w{"https://rdap.donuts.co/rdap/"}, t},
1320 {"samsclub", r, x, 0x42, "Wal-Mart Stores, Inc.", "https://www.icann.org/en/registry-agreements/details/samsclub", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.samsclub", e, w{"https://tld-rdap.verisign.com/samsclub/v1/"}, f},
1321 {"samsung", r, x, 0x42, "SAMSUNG SDS CO., LTD", "http://nic.samsung/", w{"ns1.samsung.centralnic-dns.com", "ns2.samsung.centralnic-dns.com", "ns3.samsung.centralnic-dns.com", "ns4.samsung.centralnic-dns.com"}, n, n, w{"ko"}, "whois.nic.samsung", e, w{"https://nic.samsung:8443/rdap/"}, t},
1322 {"sandvik", r, x, 0x42, "Sandvik AB", "https://www.nic.sandvik/en/", w{"a.nic.sandvik", "b.nic.sandvik", "c.nic.sandvik", "d.nic.sandvik"}, n, n, w{"da", "fr", "pl", "ru", "sv", "zh"}, "whois.nic.sandvik", e, w{"https://rdap.nic.sandvik/"}, t},
1323 {"sandvikcoromant", r, x, 0x42, "Sandvik AB", "https://www.sandvik.coromant.com/en-gb/pages/nic-sandvikcoromant.aspx", w{"a.nic.sandvikcoromant", "b.nic.sandvikcoromant", "c.nic.sandvikcoromant", "d.nic.sandvikcoromant"}, n, n, w{"da", "fr", "pl", "ru", "sv", "zh"}, "whois.nic.sandvikcoromant", e, w{"https://rdap.nic.sandvikcoromant/"}, t},
1324 {"sanofi", r, x, 0x42, "Sanofi", "http://nic.sanofi/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.sanofi", e, w{"https://tld-rdap.verisign.com/sanofi/v1/"}, f},
1325 {"sap", r, x, 0x42, "SAP AG", "https://www.icann.org/en/registry-agreements/details/sap", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, w{"ar", "ca", "cs", "da", "de", "el", "es", "fi", "fr", "he", "hr", "hu", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "tr", "uk", "zh"}, "whois.nic.sap", e, w{"https://rdap.nic.sap/"}, t},
1326 {"sapo", r, x, 0x842, e, e, n, n, n, n, e, e, n, f},
1327 {"sapphire", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
13251328 {"sarl", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.sarl", "v0n1.nic.sarl", "v0n2.nic.sarl", "v0n3.nic.sarl", "v2n0.nic.sarl", "v2n1.nic.sarl"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.sarl", e, w{"https://rdap.donuts.co/rdap/"}, t},
1326 {"sas", r, x, 0x42, "Research IP LLC", "https://newgtlds.icann.org/", w{"a.nic.sas", "b.nic.sas", "c.nic.sas", "ns1.dns.nic.sas", "ns2.dns.nic.sas", "ns3.dns.nic.sas"}, n, n, w{"es"}, "whois.nic.sas", e, w{"https://rdap.nic.sas/"}, t},
1327 {"save", r, x, 0x40, "Amazon Registry Services, Inc.", "https://newgtlds.icann.org/", w{"dns1.nic.save", "dns2.nic.save", "dns3.nic.save", "dns4.nic.save", "dnsa.nic.save", "dnsb.nic.save", "dnsc.nic.save", "dnsd.nic.save"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.save", e, w{"https://rdap.nominet.uk/save/"}, t},
1328 {"saxo", r, x, 0x42, "Saxo Bank A/S", "https://newgtlds.icann.org/", w{"a.nic.saxo", "b.nic.saxo", "c.nic.saxo", "d.nic.saxo"}, n, n, n, "whois.nic.saxo", e, w{"https://rdap.nic.saxo/"}, f},
1329 {"sas", r, x, 0x42, "Research IP LLC", "https://nic.sas/", w{"a.nic.sas", "b.nic.sas", "c.nic.sas", "ns1.dns.nic.sas", "ns2.dns.nic.sas", "ns3.dns.nic.sas"}, n, n, w{"es"}, "whois.nic.sas", e, w{"https://rdap.nic.sas/"}, t},
1330 {"save", r, x, 0x40, "Amazon Registry Services, Inc.", "https://nic.save/", w{"dns1.nic.save", "dns2.nic.save", "dns3.nic.save", "dns4.nic.save", "dnsa.nic.save", "dnsb.nic.save", "dnsc.nic.save", "dnsd.nic.save"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.save", e, w{"https://rdap.nominet.uk/save/"}, t},
1331 {"saxo", r, x, 0x42, "Saxo Bank A/S", "http://nic.saxo/", w{"a.nic.saxo", "b.nic.saxo", "c.nic.saxo", "d.nic.saxo"}, n, n, n, "whois.nic.saxo", e, w{"https://rdap.nic.saxo/"}, f},
13291332 {"sb", r, z[4261:4266], 0xa0, e, e, w{"ns1.anycastdns.cz", "ns2.anycastdns.cz", "pch.nic.sb"}, n, n, n, "whois.nic.net.sb", e, n, f},
1330 {"sbi", r, x, 0x42, "STATE BANK OF INDIA", "https://newgtlds.icann.org/", w{"a0.nic.sbi", "a2.nic.sbi", "b0.nic.sbi", "c0.nic.sbi"}, n, n, n, "whois.nic.sbi", e, w{"https://rdap.afilias-srs.net/rdap/sbi/"}, f},
1331 {"sbs", r, x, 0x42, "ShortDot SA", "https://newgtlds.icann.org/", w{"a.nic.sbs", "b.nic.sbs", "c.nic.sbs", "d.nic.sbs"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.sbs", e, w{"https://rdap.centralnic.com/sbs/"}, t},
1333 {"sbi", r, x, 0x42, "STATE BANK OF INDIA", "http://nic.sbi/", w{"a0.nic.sbi", "a2.nic.sbi", "b0.nic.sbi", "c0.nic.sbi"}, n, n, n, "whois.nic.sbi", e, w{"https://rdap.afilias-srs.net/rdap/sbi/"}, f},
1334 {"sbs", r, x, 0x42, "ShortDot SA", "https://shortdot.bond/sbs/", w{"a.nic.sbs", "b.nic.sbs", "c.nic.sbs", "d.nic.sbs"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.sbs", e, w{"https://rdap.centralnic.com/sbs/"}, t},
13321335 {"sc", r, z[4266:4271], 0xe0, e, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org", "ns1.nic.sc"}, n, n, w{"zh-CN"}, "whois2.afilias-grs.net", e, n, t},
1333 {"sca", r, x, 0x42, "SVENSKA CELLULOSA AKTIEBOLAGET SCA (publ)", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"ar", "ru", "sv", "zh"}, "whois.nic.sca", e, w{"https://tld-rdap.verisign.com/sca/v1/"}, t},
1334 {"scb", r, x, 0x42, "The Siam Commercial Bank Public Company Limited (\"SCB\")", "https://newgtlds.icann.org/", w{"a.nic.scb", "b.nic.scb", "c.nic.scb", "d.nic.scb"}, n, n, w{"th"}, "whois.nic.scb", e, w{"https://rdap.nic.scb/"}, t},
1335 {"schaeffler", r, x, 0x42, "Schaeffler Technologies AG & Co. KG", "https://newgtlds.icann.org/", w{"a.dns.nic.schaeffler", "m.dns.nic.schaeffler", "n.dns.nic.schaeffler"}, n, n, w{"be", "bg", "bs", "da", "de", "es", "hu", "is", "ko", "lt", "lv", "mk", "pl", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.afilias-srs.net", e, w{"https://rdap.nic.schaeffler/"}, t},
1336 {"schmidt", r, x, 0x42, "SCHMIDT GROUPE S.A.S.", "https://newgtlds.icann.org/", w{"a.nic.schmidt", "b.nic.schmidt", "c.nic.schmidt", "d.nic.schmidt"}, n, n, n, "whois.nic.schmidt", e, w{"https://rdap.nic.schmidt/"}, f},
1337 {"scholarships", r, x, 0x40, "Scholarships.com, LLC", "https://newgtlds.icann.org/", w{"a0.nic.scholarships", "a2.nic.scholarships", "b0.nic.scholarships", "c0.nic.scholarships"}, n, n, n, "whois.nic.scholarships", e, w{"https://rdap.afilias-srs.net/rdap/scholarships/"}, f},
1338 {"school", r, x, 0x40, "Binky Moon, LLC", "https://newgtlds.icann.org/", w{"v0n0.nic.school", "v0n1.nic.school", "v0n2.nic.school", "v0n3.nic.school", "v2n0.nic.school", "v2n1.nic.school"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.school", e, w{"https://rdap.donuts.co/rdap/"}, t},
1336 {"sca", r, x, 0x42, "SVENSKA CELLULOSA AKTIEBOLAGET SCA (publ)", "http://nic.sca/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"ar", "ru", "sv", "zh"}, "whois.nic.sca", e, w{"https://tld-rdap.verisign.com/sca/v1/"}, t},
1337 {"scb", r, x, 0x42, "The Siam Commercial Bank Public Company Limited (\"SCB\")", "https://www.nic.scb/", w{"a.nic.scb", "b.nic.scb", "c.nic.scb", "d.nic.scb"}, n, n, w{"th"}, "whois.nic.scb", e, w{"https://rdap.nic.scb/"}, t},
1338 {"schaeffler", r, x, 0x42, "Schaeffler Technologies AG & Co. KG", "https://www.nic.schaeffler/en/", w{"a.dns.nic.schaeffler", "m.dns.nic.schaeffler", "n.dns.nic.schaeffler"}, n, n, w{"be", "bg", "bs", "da", "de", "es", "hu", "is", "ko", "lt", "lv", "mk", "pl", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.afilias-srs.net", e, w{"https://rdap.nic.schaeffler/"}, t},
1339 {"schmidt", r, x, 0x42, "SCHMIDT GROUPE S.A.S.", "http://nic.schmidt/", w{"a.nic.schmidt", "b.nic.schmidt", "c.nic.schmidt", "d.nic.schmidt"}, n, n, n, "whois.nic.schmidt", e, w{"https://rdap.nic.schmidt/"}, f},
1340 {"scholarships", r, x, 0x40, "Scholarships.com, LLC", "http://nic.scholarships/", w{"a0.nic.scholarships", "a2.nic.scholarships", "b0.nic.scholarships", "c0.nic.scholarships"}, n, n, n, "whois.nic.scholarships", e, w{"https://rdap.afilias-srs.net/rdap/scholarships/"}, f},
1341 {"school", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.school", "v0n1.nic.school", "v0n2.nic.school", "v0n3.nic.school", "v2n0.nic.school", "v2n1.nic.school"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.school", e, w{"https://rdap.donuts.co/rdap/"}, t},
13391342 {"schule", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.schule", "v0n1.nic.schule", "v0n2.nic.schule", "v0n3.nic.schule", "v2n0.nic.schule", "v2n1.nic.schule"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.schule", e, w{"https://rdap.donuts.co/rdap/"}, t},
1340 {"schwarz", r, x, 0x42, "Schwarz Domains und Services GmbH & Co. KG", "https://newgtlds.icann.org/", w{"a.nic.schwarz", "b.nic.schwarz", "c.nic.schwarz", "d.nic.schwarz"}, n, n, w{"mul-Cyrl", "mul-Grek", "mul-Latn"}, "whois.nic.schwarz", e, w{"https://rdap.centralnic.com/schwarz/"}, t},
1341 {"schwarzgroup", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1342 {"science", r, x, 0x40, "dot Science Limited", "https://www.famousfourmedia.com/", w{"a.nic.science", "b.nic.science", "c.nic.science", "ns1.dns.nic.science", "ns2.dns.nic.science", "ns3.dns.nic.science"}, n, n, w{"da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.science", e, w{"https://rdap.nic.science/"}, t},
1343 {"scjohnson", r, x, 0x842, "Johnson Shareholdings, Inc.", "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.scjohnson", e, w{"https://tld-rdap.verisign.com/scjohnson/v1/"}, f},
1344 {"scor", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.scor", e, n, f},
1343 {"schwarz", r, x, 0x42, "Schwarz Domains und Services GmbH & Co. KG", "https://nic.schwarz/", w{"a.nic.schwarz", "b.nic.schwarz", "c.nic.schwarz", "d.nic.schwarz"}, n, n, w{"mul-Cyrl", "mul-Grek", "mul-Latn"}, "whois.nic.schwarz", e, w{"https://rdap.centralnic.com/schwarz/"}, t},
1344 {"schwarzgroup", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
1345 {"science", r, x, 0x40, "dot Science Limited", "http://nic.science/", w{"a.nic.science", "b.nic.science", "c.nic.science", "ns1.dns.nic.science", "ns2.dns.nic.science", "ns3.dns.nic.science"}, n, n, w{"da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.science", e, w{"https://rdap.nic.science/"}, t},
1346 {"scjohnson", r, x, 0x842, "Johnson Shareholdings, Inc.", e, n, n, n, n, "whois.nic.scjohnson", e, w{"https://tld-rdap.verisign.com/scjohnson/v1/"}, f},
1347 {"scor", r, x, 0x842, e, e, n, n, n, n, "whois.nic.scor", e, n, f},
13451348 {"scot", r, x, 0x440, "Dot Scot Registry Limited", e, w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, w{"GB-SCT"}, w{"mul-Latn"}, "whois.nic.scot", e, w{"https://rdap.nic.scot/"}, t},
13461349 {"sd", r, z[4271:4279], 0xa0, e, e, w{"ans1.canar.sd", "ans1.sis.sd", "ans2.canar.sd", "ans2.sis.sd", "ns-sd.afrinic.net", "pch.sis.sd", "sd.cctld.authdns.ripe.net"}, n, n, n, e, e, n, f},
13471350 {"se", r, z[4279:4311], 0xa0, e, e, w{"a.ns.se", "b.ns.se", "c.ns.se", "f.ns.se", "g.ns.se", "i.ns.se", "m.ns.se", "x.ns.se", "y.ns.se", "z.ns.se"}, n, n, w{"mul-Latn", "yi"}, "whois.iis.se", e, n, t},
1348 {"search", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
1349 {"seat", r, x, 0x42, "SEAT, S.A. (Sociedad Unipersonal)", "https://newgtlds.icann.org/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, w{"mul-Latn"}, "whois.nic.seat", e, w{"https://rdap.nic.seat/"}, t},
1350 {"secure", r, x, 0x40, "Amazon Registry Services, Inc.", "https://newgtlds.icann.org/", w{"dns1.nic.secure", "dns2.nic.secure", "dns3.nic.secure", "dns4.nic.secure", "dnsa.nic.secure", "dnsb.nic.secure", "dnsc.nic.secure", "dnsd.nic.secure"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.secure", e, w{"https://rdap.nominet.uk/secure/"}, t},
1351 {"security", r, x, 0x40, "XYZ.COM LLC", "https://newgtlds.icann.org/", w{"a.nic.security", "b.nic.security", "e.nic.security", "f.nic.security"}, n, n, w{"ar", "he", "ja", "ko", "lo", "mul-Grek", "mul-Latn", "ru", "th", "zh"}, "whois.nic.security", e, w{"https://rdap.centralnic.com/security/"}, t},
1352 {"seek", r, x, 0x42, "Seek Limited", "https://newgtlds.icann.org/", w{"a.nic.seek", "b.nic.seek", "c.nic.seek", "d.nic.seek"}, n, n, n, "whois.nic.seek", e, w{"https://rdap.nic.seek/"}, f},
1353 {"select", r, x, 0x42, "Registry Services, LLC", "https://newgtlds.icann.org/", w{"a.nic.select", "b.nic.select", "c.nic.select", "d.nic.select"}, n, n, n, "whois.nic.select", e, w{"https://rdap.nic.select/"}, f},
1354 {"sener", r, x, 0x42, "Sener Ingeniería y Sistemas, S.A.", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, e, e, w{"https://tld-rdap.verisign.com/sener/v1/"}, t},
1351 {"search", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.search", e, w{"https://www.registry.google/rdap/"}, t},
1352 {"seat", r, x, 0x42, "SEAT, S.A. (Sociedad Unipersonal)", "https://www.icann.org/en/registry-agreements/details/seat", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, w{"mul-Latn"}, "whois.nic.seat", e, w{"https://rdap.nic.seat/"}, t},
1353 {"secure", r, x, 0x40, "Amazon Registry Services, Inc.", "https://nic.secure/", w{"dns1.nic.secure", "dns2.nic.secure", "dns3.nic.secure", "dns4.nic.secure", "dnsa.nic.secure", "dnsb.nic.secure", "dnsc.nic.secure", "dnsd.nic.secure"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.secure", e, w{"https://rdap.nominet.uk/secure/"}, t},
1354 {"security", r, x, 0x40, "XYZ.COM LLC", "https://nic.security/", w{"a.nic.security", "b.nic.security", "e.nic.security", "f.nic.security"}, n, n, w{"ar", "he", "ja", "ko", "lo", "mul-Grek", "mul-Latn", "ru", "th", "zh"}, "whois.nic.security", e, w{"https://rdap.centralnic.com/security/"}, t},
1355 {"seek", r, x, 0x42, "Seek Limited", "http://www.nic.seek/", w{"a.nic.seek", "b.nic.seek", "c.nic.seek", "d.nic.seek"}, n, n, n, "whois.nic.seek", e, w{"https://rdap.nic.seek/"}, f},
1356 {"select", r, x, 0x42, "Registry Services, LLC", "https://www.be.select/", w{"a.nic.select", "b.nic.select", "c.nic.select", "d.nic.select"}, n, n, n, "whois.nic.select", e, w{"https://rdap.nic.select/"}, f},
1357 {"sener", r, x, 0x42, "Sener Ingeniería y Sistemas, S.A.", "http://nic.sener/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, e, e, w{"https://tld-rdap.verisign.com/sener/v1/"}, t},
13551358 {"services", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.services", "v0n1.nic.services", "v0n2.nic.services", "v0n3.nic.services", "v2n0.nic.services", "v2n1.nic.services"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.services", e, w{"https://rdap.donuts.co/rdap/"}, t},
1356 {"ses", r, x, 0x42, "SES", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.ses", e, w{"https://tld-rdap.verisign.com/ses/v1/"}, f},
1357 {"seven", r, x, 0x42, "Seven West Media Ltd", "https://newgtlds.icann.org/", w{"a.nic.seven", "b.nic.seven", "c.nic.seven", "d.nic.seven"}, n, n, n, "whois.nic.seven", e, w{"https://rdap.nic.seven/"}, f},
1358 {"sew", r, x, 0x42, "SEW-EURODRIVE GmbH & Co KG", "https://newgtlds.icann.org/", w{"a0.nic.sew", "a2.nic.sew", "b0.nic.sew", "c0.nic.sew"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/sew/"}, f},
1359 {"ses", r, x, 0x42, "SES", "http://nic.ses/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.ses", e, w{"https://tld-rdap.verisign.com/ses/v1/"}, f},
1360 {"seven", r, x, 0x42, "Seven West Media Ltd", "http://nic.seven/", w{"a.nic.seven", "b.nic.seven", "c.nic.seven", "d.nic.seven"}, n, n, n, "whois.nic.seven", e, w{"https://rdap.nic.seven/"}, f},
1361 {"sew", r, x, 0x42, "SEW-EURODRIVE GmbH & Co KG", "http://nic.sew/", w{"a0.nic.sew", "a2.nic.sew", "b0.nic.sew", "c0.nic.sew"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/sew/"}, f},
13591362 {"sex", r, x, 0x41, "ICM Registry SX LLC", "https://nic.sex/", w{"a.nic.sex", "b.nic.sex", "c.nic.sex", "d.nic.sex"}, n, n, w{"ar", "be", "bg", "bs", "cnr", "da", "de", "es", "fr", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.sex", e, w{"https://rdap.nic.sex/"}, t},
1360 {"sexy", r, x, 0x41, "Internet Naming Company LLC", "https://nic.sexy/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, w{"de", "es", "fr", "it", "ja", "mul-Cyrl", "pt", "zh"}, "whois.uniregistry.net", e, w{"https://whois.uniregistry.net/rdap/"}, t},
1361 {"sfr", r, x, 0x42, "Societe Francaise du Radiotelephone - SFR", "https://newgtlds.icann.org/", w{"a.nic.sfr", "b.nic.sfr", "c.nic.sfr", "d.nic.sfr"}, n, n, w{"mul-Latn"}, "whois.nic.sfr", e, w{"https://rdap.centralnic.com/sfr/"}, t},
1363 {"sexy", r, x, 0x41, "Internet Naming Company LLC", "https://nic.sexy/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, w{"de", "es", "fr", "it", "ja", "mul-Cyrl", "pt", "zh"}, "whois.nic.sexy", e, w{"https://whois.uniregistry.net/rdap/"}, t},
1364 {"sfr", r, x, 0x42, "Societe Francaise du Radiotelephone - SFR", "http://nic.sfr/", w{"a.nic.sfr", "b.nic.sfr", "c.nic.sfr", "d.nic.sfr"}, n, n, w{"mul-Latn"}, "whois.nic.sfr", e, w{"https://rdap.centralnic.com/sfr/"}, t},
13621365 {"sg", r, z[4311:4317], 0xa0, e, e, w{"dsany.sgnic.sg", "dsany2.sgnic.sg", "dsany3.sgnic.sg", "ns4.apnic.net", "pch.sgzones.sg"}, n, n, n, "whois.sgnic.sg", e, n, t},
13631366 {"sh", r, z[4317:4324], 0xa0, e, "https://www.nic.sh/", w{"a0.nic.sh", "a2.nic.sh", "b0.nic.sh", "c0.nic.sh"}, n, n, n, "whois.nic.sh", e, n, t},
1364 {"shangrila", r, x, 0x42, "Shangri‐La International Hotel Management Limited", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.shangrila", e, w{"https://tld-rdap.verisign.com/shangrila/v1/"}, f},
1365 {"sharp", r, x, 0x42, "Sharp Corporation", "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"es", "fr", "ja", "ko", "pl", "pt"}, "whois.nic.gmo", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
1366 {"shaw", r, x, 0x42, "Shaw Cablesystems G.P.", "https://newgtlds.icann.org/", w{"a0.nic.shaw", "a2.nic.shaw", "b0.nic.shaw", "c0.nic.shaw"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/shaw/"}, f},
1367 {"shell", r, x, 0x42, "Shell Information Technology International Inc", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.shell", e, w{"https://tld-rdap.verisign.com/shell/v1/"}, t},
1368 {"shia", r, x, 0x40, "Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.", "https://newgtlds.icann.org/", w{"a.ns.nic.shia", "b.ns.nic.shia", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, w{"Iran"}, n, "whois.nic.shia", e, w{"https://api.rdap.agitsys.net/"}, f},
1369 {"shiksha", r, x, 0x40, "Identity Digital Limited", "https://get.shiksha/", w{"a0.nic.shiksha", "a2.nic.shiksha", "b0.nic.shiksha", "c0.nic.shiksha"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.shiksha", e, w{"https://rdap.donuts.co/rdap/"}, t},
1367 {"shangrila", r, x, 0x42, "Shangri‐La International Hotel Management Limited", "https://www.icann.org/en/registry-agreements/details/shangrila", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.shangrila", e, w{"https://tld-rdap.verisign.com/shangrila/v1/"}, f},
1368 {"sharp", r, x, 0x42, "Sharp Corporation", "https://nic.sharp/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"es", "fr", "ja", "ko", "pl", "pt"}, "whois.nic.gmo", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
1369 {"shaw", r, x, 0x42, "Shaw Cablesystems G.P.", "https://www.shaw.ca/terms-of-use/", w{"a0.nic.shaw", "a2.nic.shaw", "b0.nic.shaw", "c0.nic.shaw"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/shaw/"}, f},
1370 {"shell", r, x, 0x42, "Shell Information Technology International Inc", "https://www.nic.shell/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.shell", e, w{"https://tld-rdap.verisign.com/shell/v1/"}, t},
1371 {"shia", r, x, 0x40, "Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.", "http://nic.shia/", w{"a.ns.nic.shia", "b.ns.nic.shia", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, w{"Iran"}, n, "whois.nic.shia", e, w{"https://api.rdap.agitsys.net/"}, f},
1372 {"shiksha", r, x, 0x40, "Identity Digital Limited", "http://nic.shiksha/", w{"a0.nic.shiksha", "a2.nic.shiksha", "b0.nic.shiksha", "c0.nic.shiksha"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.shiksha", e, w{"https://rdap.donuts.co/rdap/"}, t},
13701373 {"shoes", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.shoes", "v0n1.nic.shoes", "v0n2.nic.shoes", "v0n3.nic.shoes", "v2n0.nic.shoes", "v2n1.nic.shoes"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.shoes", e, w{"https://rdap.donuts.co/rdap/"}, t},
1371 {"shop", r, x, 0x40, "GMO Registry, Inc.", "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ar", "de", "es", "fr", "ja", "ko", "nl", "pl", "pt", "ru", "tr", "zh", "zh-Hans", "zh-Hant"}, "whois.nic.shop", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
1372 {"shopping", r, x, 0x40, "Binky Moon, LLC", "https://newgtlds.icann.org/", w{"v0n0.nic.shopping", "v0n1.nic.shopping", "v0n2.nic.shopping", "v0n3.nic.shopping", "v2n0.nic.shopping", "v2n1.nic.shopping"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.shopping", e, w{"https://rdap.donuts.co/rdap/"}, t},
1373 {"shopyourway", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1374 {"shouji", r, x, 0x42, "Beijing Qihu Keji Co., Ltd.", "https://newgtlds.icann.org/", w{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, n, "whois.teleinfo.cn", e, w{"https://rdap.teleinfo.cn/"}, f},
1375 {"show", r, x, 0x40, "Binky Moon, LLC", "https://newgtlds.icann.org/", w{"v0n0.nic.show", "v0n1.nic.show", "v0n2.nic.show", "v0n3.nic.show", "v2n0.nic.show", "v2n1.nic.show"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.show", e, w{"https://rdap.donuts.co/rdap/"}, t},
1376 {"showtime", r, x, 0x42, "CBS Domains Inc.", "https://newgtlds.icann.org/", w{"a0.nic.showtime", "a2.nic.showtime", "b0.nic.showtime", "c0.nic.showtime"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/showtime/"}, f},
1377 {"shriram", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.afilias-srs.net", e, n, f},
1378 {"si", r, z[4324:4331], 0xa0, e, e, w{"b.dns.si", "f.dns.si", "h.dns.si", "i.dns.si", "k.dns.si", "l.dns.si"}, n, n, w{"mul-Latn"}, "whois.register.si", e, n, t},
1379 {"silk", r, x, 0x42, "Amazon Registry Services, Inc.", "https://newgtlds.icann.org/", w{"dns1.nic.silk", "dns2.nic.silk", "dns3.nic.silk", "dns4.nic.silk", "dnsa.nic.silk", "dnsb.nic.silk", "dnsc.nic.silk", "dnsd.nic.silk"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.silk", e, w{"https://rdap.nominet.uk/silk/"}, t},
1380 {"sina", r, x, 0x42, "Sina Corporation", "https://newgtlds.icann.org/", w{"a0.nic.sina", "a2.nic.sina", "b0.nic.sina", "c0.nic.sina"}, n, n, w{"zh-CN", "zh-TW"}, "whois.nic.sina", e, w{"https://rdap.afilias-srs.net/rdap/sina/"}, t},
1374 {"shop", r, x, 0x40, "GMO Registry, Inc.", "https://get.shop/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ar", "de", "es", "fr", "ja", "ko", "nl", "pl", "pt", "ru", "tr", "zh", "zh-Hans", "zh-Hant"}, "whois.nic.shop", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
1375 {"shopping", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.shopping", "v0n1.nic.shopping", "v0n2.nic.shopping", "v0n3.nic.shopping", "v2n0.nic.shopping", "v2n1.nic.shopping"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.shopping", e, w{"https://rdap.donuts.co/rdap/"}, t},
1376 {"shopyourway", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
1377 {"shouji", r, x, 0x42, "Beijing Qihu Keji Co., Ltd.", "https://www.icann.org/en/registry-agreements/details/shouji", w{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, n, "whois.teleinfo.cn", e, w{"https://rdap.teleinfo.cn/"}, f},
1378 {"show", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.show", "v0n1.nic.show", "v0n2.nic.show", "v0n3.nic.show", "v2n0.nic.show", "v2n1.nic.show"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.show", e, w{"https://rdap.donuts.co/rdap/"}, t},
1379 {"showtime", r, x, 0x42, "CBS Domains Inc.", "https://nic.showtime/", w{"a0.nic.showtime", "a2.nic.showtime", "b0.nic.showtime", "c0.nic.showtime"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/showtime/"}, f},
1380 {"shriram", r, x, 0x842, e, e, n, n, n, n, "whois.afilias-srs.net", e, n, f},
1381 {"si", r, z[4324:4331], 0xa0, e, e, w{"b.dns.si", "f.dns.si", "h.dns.si", "i.dns.si", "k.dns.si", "l.dns.si"}, n, n, w{"mul-Latn"}, "whois.arnes.si", e, n, t},
1382 {"silk", r, x, 0x42, "Amazon Registry Services, Inc.", "https://nic.silk/", w{"dns1.nic.silk", "dns2.nic.silk", "dns3.nic.silk", "dns4.nic.silk", "dnsa.nic.silk", "dnsb.nic.silk", "dnsc.nic.silk", "dnsd.nic.silk"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.silk", e, w{"https://rdap.nominet.uk/silk/"}, t},
1383 {"sina", r, x, 0x42, "Sina Corporation", "https://www.icann.org/en/registry-agreements/details/sina", w{"a0.nic.sina", "a2.nic.sina", "b0.nic.sina", "c0.nic.sina"}, n, n, w{"zh-CN", "zh-TW"}, "whois.nic.sina", e, w{"https://rdap.afilias-srs.net/rdap/sina/"}, t},
13811384 {"singles", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.singles", "v0n1.nic.singles", "v0n2.nic.singles", "v0n3.nic.singles", "v2n0.nic.singles", "v2n1.nic.singles"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.singles", e, w{"https://rdap.donuts.co/rdap/"}, t},
1382 {"site", r, x, 0x40, "Radix FZC", "https://newgtlds.icann.org/", w{"a.nic.site", "b.nic.site", "e.nic.site", "f.nic.site"}, n, n, w{"ar", "he", "ja", "ko", "lo", "mul-Cyrl", "mul-Grek", "mul-Latn", "th", "zh"}, "whois.nic.site", e, w{"https://rdap.centralnic.com/site/"}, t},
1385 {"site", r, x, 0x40, "Radix FZC", "https://radix.website/dot-site", w{"a.nic.site", "b.nic.site", "e.nic.site", "f.nic.site"}, n, n, w{"ar", "he", "ja", "ko", "lo", "mul-Cyrl", "mul-Grek", "mul-Latn", "th", "zh"}, "whois.nic.site", e, w{"https://rdap.centralnic.com/site/"}, t},
13831386 {"sj", r, x, 0xa8, e, e, w{"nac.no", "nn.uninett.no", "server.nordu.net", "x.nic.no", "y.nic.no", "z.nic.no"}, n, n, n, e, e, n, f},
13841387 {"sk", r, x, 0xa0, e, e, w{"a.tld.sk", "b.tld.sk", "c.tld.sk", "e.tld.sk", "f.tld.sk", "g.tld.sk", "h.tld.sk"}, n, n, n, "whois.sk-nic.sk", e, n, f},
1385 {"ski", r, x, 0x40, "Identity Digital Limited", "https://domains.ski/", w{"a0.nic.ski", "a2.nic.ski", "b0.nic.ski", "c0.nic.ski"}, n, n, w{"de"}, "whois.nic.ski", e, w{"https://rdap.donuts.co/rdap/"}, t},
1386 {"skin", r, x, 0x40, "XYZ.COM LLC", "https://newgtlds.icann.org/", w{"a.nic.skin", "b.nic.skin", "c.nic.skin", "d.nic.skin"}, n, n, w{"ja", "ko", "mul-Grek", "mul-Latn", "ru", "zh"}, "whois.nic.skin", e, w{"https://rdap.centralnic.com/skin/"}, t},
1387 {"skolkovo", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1388 {"sky", r, x, 0x42, "Sky International AG", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"mul-Arab", "mul-Latn"}, "whois.nic.sky", e, w{"https://tld-rdap.verisign.com/sky/v1/"}, t},
1389 {"skydrive", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1390 {"skype", r, x, 0x42, "Microsoft Corporation", "https://newgtlds.icann.org/", w{"a.nic.skype", "b.nic.skype", "c.nic.skype", "ns1.dns.nic.skype", "ns2.dns.nic.skype", "ns3.dns.nic.skype"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.skype", e, w{"https://rdap.nic.skype/"}, t},
1388 {"ski", r, x, 0x40, "Identity Digital Limited", "http://nic.ski/", w{"a0.nic.ski", "a2.nic.ski", "b0.nic.ski", "c0.nic.ski"}, n, n, w{"de"}, "whois.nic.ski", e, w{"https://rdap.donuts.co/rdap/"}, t},
1389 {"skin", r, x, 0x40, "XYZ.COM LLC", "https://nic.skin/", w{"a.nic.skin", "b.nic.skin", "c.nic.skin", "d.nic.skin"}, n, n, w{"ja", "ko", "mul-Grek", "mul-Latn", "ru", "zh"}, "whois.nic.skin", e, w{"https://rdap.centralnic.com/skin/"}, t},
1390 {"skolkovo", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
1391 {"sky", r, x, 0x42, "Sky International AG", "https://www.skygroup.sky/nic-sky", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"mul-Arab", "mul-Latn"}, "whois.nic.sky", e, w{"https://tld-rdap.verisign.com/sky/v1/"}, t},
1392 {"skydrive", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
1393 {"skype", r, x, 0x42, "Microsoft Corporation", "https://nic.skype/", w{"a.nic.skype", "b.nic.skype", "c.nic.skype", "ns1.dns.nic.skype", "ns2.dns.nic.skype", "ns3.dns.nic.skype"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.skype", e, w{"https://rdap.nic.skype/"}, t},
13911394 {"sl", r, z[4331:4336], 0xa0, e, "https://www.nic.sl/", w{"ns1.neoip.com", "ns2.neoip.com"}, n, n, n, "whois.nic.sl", e, n, f},
1392 {"sling", r, x, 0x42, "DISH Technologies L.L.C.", "https://newgtlds.icann.org/", w{"a0.nic.sling", "a2.nic.sling", "b0.nic.sling", "c0.nic.sling"}, n, n, n, "whois.nic.sling", e, w{"https://rdap.afilias-srs.net/rdap/sling/"}, f},
1395 {"sling", r, x, 0x42, "DISH Technologies L.L.C.", "https://www.icann.org/en/registry-agreements/details/sling", w{"a0.nic.sling", "a2.nic.sling", "b0.nic.sling", "c0.nic.sling"}, n, n, n, "whois.nic.sling", e, w{"https://rdap.afilias-srs.net/rdap/sling/"}, f},
13931396 {"sm", r, x, 0xa0, e, e, w{"dns.intelcom.sm", "dns.omniway.sm", "ns3.telecomitalia.sm", "sm.cctld.authdns.ripe.net"}, n, n, n, "whois.nic.sm", e, n, f},
1394 {"smart", r, x, 0x42, "Smart Communications, Inc. (SMART)", "https://newgtlds.icann.org/", w{"a.nic.smart", "b.nic.smart", "c.nic.smart", "d.nic.smart"}, n, n, n, "whois.nic.smart", e, w{"https://rdap.centralnic.com/smart/"}, f},
1395 {"smile", r, x, 0x40, "Amazon Registry Services, Inc.", "https://newgtlds.icann.org/", w{"dns1.nic.smile", "dns2.nic.smile", "dns3.nic.smile", "dns4.nic.smile", "dnsa.nic.smile", "dnsb.nic.smile", "dnsc.nic.smile", "dnsd.nic.smile"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.smile", e, w{"https://rdap.nominet.uk/smile/"}, t},
1397 {"smart", r, x, 0x42, "Smart Communications, Inc. (SMART)", "https://www.icann.org/en/registry-agreements/details/smart", w{"a.nic.smart", "b.nic.smart", "c.nic.smart", "d.nic.smart"}, n, n, n, "whois.nic.smart", e, w{"https://rdap.centralnic.com/smart/"}, f},
1398 {"smile", r, x, 0x40, "Amazon Registry Services, Inc.", "https://nic.smile/", w{"dns1.nic.smile", "dns2.nic.smile", "dns3.nic.smile", "dns4.nic.smile", "dnsa.nic.smile", "dnsb.nic.smile", "dnsc.nic.smile", "dnsd.nic.smile"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.smile", e, w{"https://rdap.nominet.uk/smile/"}, t},
13961399 {"sn", r, z[4336:4343], 0xa8, e, e, w{"censvrns0001.ird.fr", "ns-sn.nic.fr", "ns.ucad.sn", "ns1.sonatel.sn", "sn.cctld.authdns.ripe.net"}, n, n, n, "whois.nic.sn", e, n, f},
1397 {"sncf", r, x, 0x42, "Société Nationale des Chemins de fer Francais S N C F", "https://newgtlds.icann.org/", w{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, w{"mul-Latn"}, "whois.nic.sncf", e, w{"https://rdap.nic.sncf/"}, t},
1400 {"sncf", r, x, 0x42, "Société Nationale des Chemins de fer Francais S N C F", "https://www.icann.org/en/registry-agreements/details/sncf", w{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, w{"mul-Latn"}, "whois.nic.sncf", e, w{"https://rdap.nic.sncf/"}, t},
13981401 {"so", r, z[4343:4347], 0xa0, e, e, w{"d.nic.so", "e.nic.so"}, n, n, n, "whois.nic.so", e, n, f},
1399 {"soccer", r, x, 0x40, "Binky Moon, LLC", "https://newgtlds.icann.org/", w{"v0n0.nic.soccer", "v0n1.nic.soccer", "v0n2.nic.soccer", "v0n3.nic.soccer", "v2n0.nic.soccer", "v2n1.nic.soccer"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.soccer", e, w{"https://rdap.donuts.co/rdap/"}, t},
1402 {"soccer", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.soccer", "v0n1.nic.soccer", "v0n2.nic.soccer", "v0n3.nic.soccer", "v2n0.nic.soccer", "v2n1.nic.soccer"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.soccer", e, w{"https://rdap.donuts.co/rdap/"}, t},
14001403 {"social", r, x, 0x40, "Dog Beach, LLC", e, w{"v0n0.nic.social", "v0n1.nic.social", "v0n2.nic.social", "v0n3.nic.social", "v2n0.nic.social", "v2n1.nic.social"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.social", e, w{"https://rdap.donuts.co/rdap/"}, t},
1401 {"softbank", r, x, 0x42, "SoftBank Group Corp.", "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ja"}, "whois.nic.softbank", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
1402 {"software", r, x, 0x40, "Dog Beach, LLC", "https://newgtlds.icann.org/", w{"v0n0.nic.software", "v0n1.nic.software", "v0n2.nic.software", "v0n3.nic.software", "v2n0.nic.software", "v2n1.nic.software"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.software", e, w{"https://rdap.donuts.co/rdap/"}, t},
1403 {"sohu", r, x, 0x42, "Sohu.com Limited", "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.nic.sohu", e, w{"https://rdap.zdnsgtld.com/sohu/"}, t},
1404 {"softbank", r, x, 0x42, "SoftBank Group Corp.", "https://nic.softbank/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ja"}, "whois.nic.softbank", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
1405 {"software", r, x, 0x40, "Dog Beach, LLC", "https://identity.digital/", w{"v0n0.nic.software", "v0n1.nic.software", "v0n2.nic.software", "v0n3.nic.software", "v2n0.nic.software", "v2n1.nic.software"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.software", e, w{"https://rdap.donuts.co/rdap/"}, t},
1406 {"sohu", r, x, 0x42, "Sohu.com Limited", "https://www.icann.org/en/registry-agreements/details/sohu", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.nic.sohu", e, w{"https://rdap.zdnsgtld.com/sohu/"}, t},
14041407 {"solar", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.solar", "v0n1.nic.solar", "v0n2.nic.solar", "v0n3.nic.solar", "v2n0.nic.solar", "v2n1.nic.solar"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.solar", e, w{"https://rdap.donuts.co/rdap/"}, t},
14051408 {"solutions", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.solutions", "v0n1.nic.solutions", "v0n2.nic.solutions", "v0n3.nic.solutions", "v2n0.nic.solutions", "v2n1.nic.solutions"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.solutions", e, w{"https://rdap.donuts.co/rdap/"}, t},
1406 {"song", r, x, 0x42, "Amazon Registry Services, Inc.", "https://newgtlds.icann.org/", w{"a.nic.song", "b.nic.song", "c.nic.song", "ns1.dns.nic.song", "ns2.dns.nic.song", "ns3.dns.nic.song"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.song", e, w{"https://rdap.nic.song/"}, t},
1407 {"sony", r, x, 0x42, "Sony Corporation", "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ja"}, "whois.nic.sony", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
1408 {"soy", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
1409 {"spa", r, x, 0x50, "Asia Spa and Wellness Promotion Council Limited", "http://www.nic.spa/", w{"a0.nic.spa", "a2.nic.spa", "b0.nic.spa", "c0.nic.spa"}, n, n, w{"zh-CN", "zh-TW"}, "whois.afilias-srs.net", e, n, t},
1410 {"space", r, z[4347:4348], 0x40, "Radix FZC", "https://newgtlds.icann.org/", w{"a.nic.space", "b.nic.space", "e.nic.space", "f.nic.space"}, n, n, w{"ar", "he", "ja", "ko", "lo", "mul-Cyrl", "mul-Grek", "mul-Latn", "th", "zh"}, "whois.nic.space", e, w{"https://rdap.centralnic.com/space/"}, t},
1411 {"spiegel", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.ksregistry.net", e, n, f},
1412 {"sport", r, x, 0x40, "Global Association of International Sports Federations (GAISF)", "https://newgtlds.icann.org/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, w{"el", "he", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Latn", "zh"}, "whois.nic.sport", e, w{"https://rdap.nic.sport/"}, t},
1413 {"sports", r, x, 0x2040, e, "https://gtldresult.icann.org/applicationstatus/applicationdetails/604", n, n, n, n, e, e, n, t},
1414 {"spot", r, x, 0x40, "Amazon Registry Services, Inc.", "https://newgtlds.icann.org/", w{"dns1.nic.spot", "dns2.nic.spot", "dns3.nic.spot", "dns4.nic.spot", "dnsa.nic.spot", "dnsb.nic.spot", "dnsc.nic.spot", "dnsd.nic.spot"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.spot", e, w{"https://rdap.nominet.uk/spot/"}, t},
1415 {"spreadbetting", r, x, 0x840, e, "https://bostonivy.co/", n, n, n, n, "whois.nic.spreadbetting", e, w{"https://rdap.centralnic.com/spreadbetting/"}, f},
1409 {"song", r, x, 0x42, "Amazon Registry Services, Inc.", "https://nic.song/", w{"a.nic.song", "b.nic.song", "c.nic.song", "ns1.dns.nic.song", "ns2.dns.nic.song", "ns3.dns.nic.song"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.song", e, w{"https://rdap.nic.song/"}, t},
1410 {"sony", r, x, 0x42, "Sony Corporation", "https://nic.sony/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ja"}, "whois.nic.sony", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
1411 {"soy", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.soy", e, w{"https://www.registry.google/rdap/"}, t},
1412 {"spa", r, x, 0x50, "Asia Spa and Wellness Promotion Council Limited", "https://www.nic.spa/", w{"a0.nic.spa", "a2.nic.spa", "b0.nic.spa", "c0.nic.spa"}, n, n, w{"zh-CN", "zh-TW"}, "whois.afilias-srs.net", e, n, t},
1413 {"space", r, z[4347:4348], 0x40, "Radix FZC", "https://radix.website/dot-space", w{"a.nic.space", "b.nic.space", "e.nic.space", "f.nic.space"}, n, n, w{"ar", "he", "ja", "ko", "lo", "mul-Cyrl", "mul-Grek", "mul-Latn", "th", "zh"}, "whois.nic.space", e, w{"https://rdap.centralnic.com/space/"}, t},
1414 {"spiegel", r, x, 0x842, e, e, n, n, n, n, "whois.ksregistry.net", e, n, f},
1415 {"sport", r, x, 0x40, "Global Association of International Sports Federations (GAISF)", "https://nic.sport/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, w{"el", "he", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Latn", "zh"}, "whois.nic.sport", e, w{"https://rdap.nic.sport/"}, t},
1416 {"sports", r, x, 0x4040, e, "https://gtldresult.icann.org/applicationstatus/applicationdetails/604", n, n, n, n, e, e, n, t},
1417 {"spot", r, x, 0x40, "Amazon Registry Services, Inc.", "https://nic.spot/", w{"dns1.nic.spot", "dns2.nic.spot", "dns3.nic.spot", "dns4.nic.spot", "dnsa.nic.spot", "dnsb.nic.spot", "dnsc.nic.spot", "dnsd.nic.spot"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.spot", e, w{"https://rdap.nominet.uk/spot/"}, t},
1418 {"spreadbetting", r, x, 0x840, e, "https://www.icann.org/en/registry-agreements/details/spreadbetting", n, n, n, n, "whois.nic.spreadbetting", e, w{"https://rdap.centralnic.com/spreadbetting/"}, f},
14161419 {"sr", r, x, 0xe0, e, e, w{"ns1.sr.net", "ns2.sr.net"}, n, n, n, e, "http://www.register.sr/", n, f},
14171420 {"srl", r, x, 0x40, "InterNetX, Corp", "https://www.internetx.info/en/", w{"a0.nic.srl", "a2.nic.srl", "b0.nic.srl", "c0.nic.srl"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/srl/"}, f},
1418 {"srt", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.afilias-srs.net", e, n, f},
1421 {"srt", r, x, 0x842, e, e, n, n, n, n, "whois.afilias-srs.net", e, n, f},
14191422 {"ss", r, z[4348:4355], 0, e, e, w{"b.ns.tznic.or.tz", "ns-ss.afrinic.net", "pch.nic.ss", "ssnic.anycastdns.cz"}, n, n, n, "whois.nic.ss", e, n, t},
1420 {"st", r, z[4355:4368], 0xa0, e, e, w{"dns-au.st", "dns-st.bahnhof.net", "dns-us.st", "ns1.bahnhof.net"}, n, n, n, "whois.nic.st", e, n, f},
1421 {"stada", r, x, 0x42, "STADA Arzneimittel AG", "https://newgtlds.icann.org/", w{"a0.nic.stada", "a2.nic.stada", "b0.nic.stada", "c0.nic.stada"}, n, n, w{"be", "bg", "bs", "da", "de", "es", "hu", "is", "ko", "lt", "lv", "mk", "pl", "ru", "sr", "sr-ME", "sv", "uk", "zh-Hans", "zh-Hant"}, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/stada/"}, t},
1422 {"staples", r, x, 0x42, "Staples, Inc.", "https://newgtlds.icann.org/", w{"a.nic.staples", "b.nic.staples", "c.nic.staples", "ns1.dns.nic.staples", "ns2.dns.nic.staples", "ns3.dns.nic.staples"}, n, n, w{"es"}, "whois.nic.staples", e, w{"https://rdap.nic.staples/"}, t},
1423 {"star", r, x, 0x42, "Star India Private Limited", "https://newgtlds.icann.org/", w{"a0.nic.star", "a2.nic.star", "b0.nic.star", "c0.nic.star"}, n, n, w{"be", "bg", "bs", "da", "de", "es", "hu", "is", "ko", "lt", "lv", "mk", "pl", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.star", e, w{"https://rdap.afilias-srs.net/rdap/star/"}, t},
1424 {"starhub", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.starhub", e, n, f},
1425 {"statebank", r, x, 0x42, "STATE BANK OF INDIA", "https://newgtlds.icann.org/", w{"a0.nic.statebank", "a2.nic.statebank", "b0.nic.statebank", "c0.nic.statebank"}, n, n, n, "whois.nic.statebank", e, w{"https://rdap.afilias-srs.net/rdap/statebank/"}, f},
1426 {"statefarm", r, x, 0x42, "State Farm Mutual Automobile Insurance Company", "https://newgtlds.icann.org/", w{"a.nic.statefarm", "b.nic.statefarm", "c.nic.statefarm", "ns1.dns.nic.statefarm", "ns2.dns.nic.statefarm", "ns3.dns.nic.statefarm"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.statefarm", e, w{"https://rdap.nic.statefarm/"}, t},
1427 {"statoil", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.statoil", e, n, f},
1428 {"stc", r, x, 0x42, "Saudi Telecom Company", "https://newgtlds.icann.org/", w{"a.nic.stc", "b.nic.stc", "c.nic.stc", "d.nic.stc"}, n, n, n, "whois.nic.stc", e, w{"https://rdap.centralnic.com/stc/"}, f},
1429 {"stcgroup", r, x, 0x42, "Saudi Telecom Company", "https://newgtlds.icann.org/", w{"a.nic.stcgroup", "b.nic.stcgroup", "c.nic.stcgroup", "d.nic.stcgroup"}, n, n, n, "whois.nic.stcgroup", e, w{"https://rdap.centralnic.com/stcgroup/"}, f},
1430 {"stockholm", r, x, 0xc4, "Stockholms kommun", "https://newgtlds.icann.org/", w{"a0.nic.stockholm", "a2.nic.stockholm", "b0.nic.stockholm", "c0.nic.stockholm"}, n, w{"Stockholm", "SE-AB"}, w{"sv"}, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/stockholm/"}, t},
1431 {"storage", r, x, 0x40, "XYZ.COM LLC", "https://newgtlds.icann.org/", w{"a.nic.storage", "b.nic.storage", "c.nic.storage", "d.nic.storage"}, n, n, w{"ar", "he", "ja", "ko", "lo", "mul-Grek", "mul-Latn", "ru", "th", "zh"}, "whois.nic.storage", e, w{"https://rdap.centralnic.com/storage/"}, t},
1432 {"store", r, x, 0x40, "Radix FZC", "https://newgtlds.icann.org/", w{"a.nic.store", "b.nic.store", "e.nic.store", "f.nic.store"}, n, n, w{"ar", "he", "ja", "ko", "lo", "mul-Cyrl", "mul-Grek", "mul-Latn", "th", "zh"}, "whois.nic.store", e, w{"https://rdap.centralnic.com/store/"}, t},
1433 {"stream", r, x, 0x40, "dot Stream Limited", "https://www.famousfourmedia.com/", w{"a.nic.stream", "b.nic.stream", "c.nic.stream", "ns1.dns.nic.stream", "ns2.dns.nic.stream", "ns3.dns.nic.stream"}, n, n, w{"da", "de", "no", "sv"}, "whois.nic.stream", e, w{"https://rdap.nic.stream/"}, t},
1434 {"stroke", r, x, 0x2040, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1435 {"studio", r, x, 0x40, "Dog Beach, LLC", "https://newgtlds.icann.org/", w{"v0n0.nic.studio", "v0n1.nic.studio", "v0n2.nic.studio", "v0n3.nic.studio", "v2n0.nic.studio", "v2n1.nic.studio"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.studio", e, w{"https://rdap.donuts.co/rdap/"}, t},
1436 {"study", r, x, 0x40, "Registry Services, LLC", "https://newgtlds.icann.org/", w{"a.nic.study", "b.nic.study", "c.nic.study", "d.nic.study"}, n, n, n, "whois.nic.study", e, w{"https://rdap.nic.study/"}, f},
1437 {"style", r, x, 0x40, "Binky Moon, LLC", "https://newgtlds.icann.org/", w{"v0n0.nic.style", "v0n1.nic.style", "v0n2.nic.style", "v0n3.nic.style", "v2n0.nic.style", "v2n1.nic.style"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.style", e, w{"https://rdap.donuts.co/rdap/"}, t},
1438 {"su", r, z[4368:4420], 0xe0, e, e, w{"a.dns.ripn.net", "b.dns.ripn.net", "d.dns.ripn.net", "e.dns.ripn.net", "f.dns.ripn.net"}, n, n, n, "whois.tcinet.ru", e, n, t},
1439 {"sucks", r, x, 0x40, "Vox Populi Registry Ltd.", "https://newgtlds.icann.org/", w{"a.nic.sucks", "b.nic.sucks", "c.nic.sucks", "d.nic.sucks"}, n, n, n, "whois.nic.sucks", e, w{"https://rdap.nic.sucks/"}, f},
1440 {"supersport", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1423 {"st", r, z[4355:4368], 0xa0, e, e, w{"dns-st.bahnhof.net", "ns1.bahnhof.net", "southeast-2.dns-au.st"}, n, n, n, "whois.nic.st", e, n, f},
1424 {"stada", r, x, 0x42, "STADA Arzneimittel AG", "https://nic.stada/", w{"a0.nic.stada", "a2.nic.stada", "b0.nic.stada", "c0.nic.stada"}, n, n, w{"be", "bg", "bs", "da", "de", "es", "hu", "is", "ko", "lt", "lv", "mk", "pl", "ru", "sr", "sr-ME", "sv", "uk", "zh-Hans", "zh-Hant"}, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/stada/"}, t},
1425 {"staples", r, x, 0x42, "Staples, Inc.", "https://www.icann.org/en/registry-agreements/details/staples", w{"a.nic.staples", "b.nic.staples", "c.nic.staples", "ns1.dns.nic.staples", "ns2.dns.nic.staples", "ns3.dns.nic.staples"}, n, n, w{"es"}, "whois.nic.staples", e, w{"https://rdap.nic.staples/"}, t},
1426 {"star", r, x, 0x42, "Star India Private Limited", "https://www.icann.org/en/registry-agreements/details/star", w{"a0.nic.star", "a2.nic.star", "b0.nic.star", "c0.nic.star"}, n, n, w{"be", "bg", "bs", "da", "de", "es", "hu", "is", "ko", "lt", "lv", "mk", "pl", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.star", e, w{"https://rdap.afilias-srs.net/rdap/star/"}, t},
1427 {"starhub", r, x, 0x842, e, e, n, n, n, n, "whois.nic.starhub", e, n, f},
1428 {"statebank", r, x, 0x42, "STATE BANK OF INDIA", "http://nic.statebank/", w{"a0.nic.statebank", "a2.nic.statebank", "b0.nic.statebank", "c0.nic.statebank"}, n, n, n, "whois.nic.statebank", e, w{"https://rdap.afilias-srs.net/rdap/statebank/"}, f},
1429 {"statefarm", r, x, 0x42, "State Farm Mutual Automobile Insurance Company", "https://nic.statefarm/", w{"a.nic.statefarm", "b.nic.statefarm", "c.nic.statefarm", "ns1.dns.nic.statefarm", "ns2.dns.nic.statefarm", "ns3.dns.nic.statefarm"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.statefarm", e, w{"https://rdap.nic.statefarm/"}, t},
1430 {"statoil", r, x, 0x842, e, e, n, n, n, n, "whois.nic.statoil", e, n, f},
1431 {"stc", r, x, 0x42, "Saudi Telecom Company", "https://nic.stc/", w{"a.nic.stc", "b.nic.stc", "c.nic.stc", "d.nic.stc"}, n, n, n, "whois.nic.stc", e, w{"https://rdap.centralnic.com/stc/"}, f},
1432 {"stcgroup", r, x, 0x42, "Saudi Telecom Company", "https://nic.stcgroup/", w{"a.nic.stcgroup", "b.nic.stcgroup", "c.nic.stcgroup", "d.nic.stcgroup"}, n, n, n, "whois.nic.stcgroup", e, w{"https://rdap.centralnic.com/stcgroup/"}, f},
1433 {"stockholm", r, x, 0xc4, "Stockholms kommun", "http://nic.stockholm/", w{"a0.nic.stockholm", "a2.nic.stockholm", "b0.nic.stockholm", "c0.nic.stockholm"}, n, w{"Stockholm", "SE-AB"}, w{"sv"}, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/stockholm/"}, t},
1434 {"storage", r, x, 0x40, "XYZ.COM LLC", "https://nic.storage/", w{"a.nic.storage", "b.nic.storage", "c.nic.storage", "d.nic.storage"}, n, n, w{"ar", "he", "ja", "ko", "lo", "mul-Grek", "mul-Latn", "ru", "th", "zh"}, "whois.nic.storage", e, w{"https://rdap.centralnic.com/storage/"}, t},
1435 {"store", r, x, 0x40, "Radix FZC", "https://radix.website/dot-store", w{"a.nic.store", "b.nic.store", "e.nic.store", "f.nic.store"}, n, n, w{"ar", "he", "ja", "ko", "lo", "mul-Cyrl", "mul-Grek", "mul-Latn", "th", "zh"}, "whois.nic.store", e, w{"https://rdap.centralnic.com/store/"}, t},
1436 {"stream", r, x, 0x40, "dot Stream Limited", "http://nic.stream/", w{"a.nic.stream", "b.nic.stream", "c.nic.stream", "ns1.dns.nic.stream", "ns2.dns.nic.stream", "ns3.dns.nic.stream"}, n, n, w{"da", "de", "no", "sv"}, "whois.nic.stream", e, w{"https://rdap.nic.stream/"}, t},
1437 {"stroke", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
1438 {"studio", r, x, 0x40, "Dog Beach, LLC", "https://identity.digital/", w{"v0n0.nic.studio", "v0n1.nic.studio", "v0n2.nic.studio", "v0n3.nic.studio", "v2n0.nic.studio", "v2n1.nic.studio"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.studio", e, w{"https://rdap.donuts.co/rdap/"}, t},
1439 {"study", r, x, 0x40, "Registry Services, LLC", "https://www.get.study/", w{"a.nic.study", "b.nic.study", "c.nic.study", "d.nic.study"}, n, n, n, "whois.nic.study", e, w{"https://rdap.nic.study/"}, f},
1440 {"style", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.style", "v0n1.nic.style", "v0n2.nic.style", "v0n3.nic.style", "v2n0.nic.style", "v2n1.nic.style"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.style", e, w{"https://rdap.donuts.co/rdap/"}, t},
1441 {"su", r, z[4368:4420], 0xe0, e, e, w{"a.dns.ripn.net", "b.dns.ripn.net", "d.dns.ripn.net", "e.dns.ripn.net", "f.dns.ripn.net"}, n, n, n, "whois.ripn.net", e, n, t},
1442 {"sucks", r, x, 0x40, "Vox Populi Registry Ltd.", "https://www.get.sucks/", w{"a.nic.sucks", "b.nic.sucks", "c.nic.sucks", "d.nic.sucks"}, n, n, n, "whois.nic.sucks", e, w{"https://rdap.nic.sucks/"}, f},
1443 {"supersport", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
14411444 {"supplies", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.supplies", "v0n1.nic.supplies", "v0n2.nic.supplies", "v0n3.nic.supplies", "v2n0.nic.supplies", "v2n1.nic.supplies"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.supplies", e, w{"https://rdap.donuts.co/rdap/"}, t},
14421445 {"supply", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.supply", "v0n1.nic.supply", "v0n2.nic.supply", "v0n3.nic.supply", "v2n0.nic.supply", "v2n1.nic.supply"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.supply", e, w{"https://rdap.donuts.co/rdap/"}, t},
14431446 {"support", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.support", "v0n1.nic.support", "v0n2.nic.support", "v0n3.nic.support", "v2n0.nic.support", "v2n1.nic.support"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.support", e, w{"https://rdap.donuts.co/rdap/"}, t},
14441447 {"surf", r, x, 0x40, "Registry Services, LLC", "http://nic.surf/", w{"a.nic.surf", "b.nic.surf", "c.nic.surf", "d.nic.surf"}, n, n, w{"de", "es", "fr"}, "whois.nic.surf", e, w{"https://rdap.nic.surf/"}, t},
14451448 {"surgery", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.surgery", "v0n1.nic.surgery", "v0n2.nic.surgery", "v0n3.nic.surgery", "v2n0.nic.surgery", "v2n1.nic.surgery"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.surgery", e, w{"https://rdap.donuts.co/rdap/"}, t},
1446 {"suzuki", r, x, 0x42, "SUZUKI MOTOR CORPORATION", "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"es", "fr", "ja", "ko", "pl", "pt"}, "whois.nic.suzuki", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
1449 {"suzuki", r, x, 0x42, "SUZUKI MOTOR CORPORATION", "https://nic.suzuki/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"es", "fr", "ja", "ko", "pl", "pt"}, "whois.nic.suzuki", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
14471450 {"sv", r, z[4420:4425], 0xa0, e, e, w{"a.lactld.org", "auth02.ns.uu.net", "cir.red.sv", "dns-ext.nic.cr", "ns.dns.br", "ns.uu.net", "sir.red.sv", "sv.cctld.authdns.ripe.net"}, n, n, n, e, "http://www.svnet.org.sv/", n, f},
1448 {"svr", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1449 {"swatch", r, x, 0x42, "The Swatch Group Ltd", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.swatch", e, w{"https://tld-rdap.verisign.com/swatch/v1/"}, t},
1450 {"swiftcover", r, x, 0x842, "Swiftcover Insurance Services Limited", "https://newgtlds.icann.org/", n, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.swiftcover", e, w{"https://rdap.nic.swiftcover/"}, t},
1451 {"swiss", r, x, 0x50, "Swiss Confederation", "https://newgtlds.icann.org/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net", "g.nic.swiss", "ns15.rcode0.net", "u.nic.swiss"}, n, n, w{"mul-Latn"}, "whois.nic.swiss", e, w{"https://rdap.nic.swiss/"}, t},
1451 {"svr", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
1452 {"swatch", r, x, 0x42, "The Swatch Group Ltd", "https://nic.swatch/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.swatch", e, w{"https://tld-rdap.verisign.com/swatch/v1/"}, t},
1453 {"swiftcover", r, x, 0x842, "Swiftcover Insurance Services Limited", e, n, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.swiftcover", e, w{"https://rdap.nic.swiftcover/"}, t},
1454 {"swiss", r, x, 0x50, "Swiss Confederation", "https://www.nic.swiss/nic/de/home.html", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net", "g.nic.swiss", "ns15.rcode0.net", "u.nic.swiss"}, n, n, w{"mul-Latn"}, "whois.nic.swiss", e, w{"https://rdap.nic.swiss/"}, t},
14521455 {"sx", r, x, 0xa0, e, "https://en.wikipedia.org/wiki/.sx", w{"ns1.ns.sx", "ns2.ns.sx"}, n, n, n, "whois.sx", e, n, f},
1453 {"sy", r, z[4425:4431], 0xa0, e, "http://www.ste.gov.sy/", w{"ns1.tld.sy", "pch.anycast.tld.sy", "sy.cctld.authdns.ripe.net"}, n, n, n, "whois.tld.sy", e, n, f},
1456 {"sy", r, z[4425:4431], 0xa0, e, "https://nic.sy/", w{"ns1.tld.sy", "pch.anycast.tld.sy", "sy.cctld.authdns.ripe.net"}, n, n, n, "whois.tld.sy", e, n, f},
14541457 {"sydney", r, x, 0xc4, "State of New South Wales, Department of Premier and Cabinet", "https://www.iconic.sydney/", w{"a.nic.sydney", "b.nic.sydney", "c.nic.sydney", "d.nic.sydney"}, n, w{"Sydney"}, n, "whois.nic.sydney", e, w{"https://rdap.nic.sydney/"}, f},
1455 {"symantec", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.symantec", e, n, t},
1458 {"symantec", r, x, 0x842, e, e, n, n, n, n, "whois.nic.symantec", e, n, t},
14561459 {"systems", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.systems", "v0n1.nic.systems", "v0n2.nic.systems", "v0n3.nic.systems", "v2n0.nic.systems", "v2n1.nic.systems"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.systems", e, w{"https://rdap.donuts.co/rdap/"}, t},
14571460 {"sz", r, z[4431:4434], 0xa0, e, e, w{"ns1.sispa.org.sz", "rip.psg.com", "sz.cctld.authdns.ripe.net"}, n, n, n, e, e, n, f},
1458 {"tab", r, x, 0x42, "Tabcorp Holdings Limited", "https://newgtlds.icann.org/", w{"a.nic.tab", "b.nic.tab", "c.nic.tab", "d.nic.tab"}, n, n, n, "whois.nic.tab", e, w{"https://rdap.nic.tab/"}, f},
1459 {"taipei", r, x, 0xc4, "Taipei City Government", "https://newgtlds.icann.org/", w{"a.nic.taipei", "b.nic.taipei", "c.nic.taipei", "ns1.dns.nic.taipei", "ns2.dns.nic.taipei", "ns3.dns.nic.taipei"}, n, w{"Taipei", "TW-TPQ"}, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.taipei", e, w{"https://rdap.nic.taipei/"}, t},
1460 {"talk", r, x, 0x40, "Amazon Registry Services, Inc.", "https://newgtlds.icann.org/", w{"dns1.nic.talk", "dns2.nic.talk", "dns3.nic.talk", "dns4.nic.talk", "dnsa.nic.talk", "dnsb.nic.talk", "dnsc.nic.talk", "dnsd.nic.talk"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.talk", e, w{"https://rdap.nominet.uk/talk/"}, t},
1461 {"taobao", r, x, 0x42, "Alibaba Group Holding Limited", "https://newgtlds.icann.org/", w{"a.nic.taobao", "b.nic.taobao", "c.nic.taobao", "ns1.dns.nic.taobao", "ns2.dns.nic.taobao", "ns3.dns.nic.taobao"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh", "zh-CN", "zh-TW"}, "whois.nic.taobao", e, w{"https://rdap.nic.taobao/"}, t},
1462 {"target", r, x, 0x42, "Target Domain Holdings, LLC", "https://newgtlds.icann.org/", w{"a.nic.target", "b.nic.target", "c.nic.target", "ns1.dns.nic.target", "ns2.dns.nic.target", "ns3.dns.nic.target"}, n, n, w{"es"}, "whois.nic.target", e, w{"https://rdap.nic.target/"}, t},
1463 {"tata", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1464 {"tatamotors", r, x, 0x42, "Tata Motors Ltd", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.tatamotors", e, w{"https://tld-rdap.verisign.com/tatamotors/v1/"}, f},
1465 {"tatar", r, x, 0x440, "Limited Liability Company \"Coordination Center of Regional Domain of Tatarstan Republic\"", "https://newgtlds.icann.org/", w{"a.dns.ripn.net", "b.dns.ripn.net", "d.dns.ripn.net", "e.dns.ripn.net", "f.dns.ripn.net"}, n, w{"RU-TA"}, n, "whois.nic.tatar", e, w{"https://whois.nic.tatar/rdap/"}, f},
1466 {"tattoo", r, x, 0x40, "Top Level Design, LLC", "https://nic.tattoo/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, w{"de", "es", "fr", "it", "ja", "mul-Cyrl", "pt", "zh"}, "whois.uniregistry.net", e, w{"https://whois.uniregistry.net/rdap/"}, t},
1461 {"tab", r, x, 0x42, "Tabcorp Holdings Limited", "http://nic.tab/", w{"a.nic.tab", "b.nic.tab", "c.nic.tab", "d.nic.tab"}, n, n, n, "whois.nic.tab", e, w{"https://rdap.nic.tab/"}, f},
1462 {"taipei", r, x, 0xc4, "Taipei City Government", "http://nic.taipei/", w{"a.nic.taipei", "b.nic.taipei", "c.nic.taipei", "ns1.dns.nic.taipei", "ns2.dns.nic.taipei", "ns3.dns.nic.taipei"}, n, w{"Taipei", "TW-TPQ"}, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.taipei", e, w{"https://rdap.nic.taipei/"}, t},
1463 {"talk", r, x, 0x40, "Amazon Registry Services, Inc.", "https://nic.talk/", w{"dns1.nic.talk", "dns2.nic.talk", "dns3.nic.talk", "dns4.nic.talk", "dnsa.nic.talk", "dnsb.nic.talk", "dnsc.nic.talk", "dnsd.nic.talk"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.talk", e, w{"https://rdap.nominet.uk/talk/"}, t},
1464 {"taobao", r, x, 0x42, "Alibaba Group Holding Limited", "http://nic.taobao/", w{"a.nic.taobao", "b.nic.taobao", "c.nic.taobao", "ns1.dns.nic.taobao", "ns2.dns.nic.taobao", "ns3.dns.nic.taobao"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh", "zh-CN", "zh-TW"}, "whois.nic.taobao", e, w{"https://rdap.nic.taobao/"}, t},
1465 {"target", r, x, 0x42, "Target Domain Holdings, LLC", "https://nic.target/", w{"a.nic.target", "b.nic.target", "c.nic.target", "ns1.dns.nic.target", "ns2.dns.nic.target", "ns3.dns.nic.target"}, n, n, w{"es"}, "whois.nic.target", e, w{"https://rdap.nic.target/"}, t},
1466 {"tata", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
1467 {"tatamotors", r, x, 0x42, "Tata Motors Ltd", "https://www.icann.org/en/registry-agreements/details/tatamotors", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.tatamotors", e, w{"https://tld-rdap.verisign.com/tatamotors/v1/"}, f},
1468 {"tatar", r, x, 0x440, "Limited Liability Company \"Coordination Center of Regional Domain of Tatarstan Republic\"", "https://nic.tatar/", w{"a.dns.ripn.net", "b.dns.ripn.net", "d.dns.ripn.net", "e.dns.ripn.net", "f.dns.ripn.net"}, n, w{"RU-TA"}, n, "whois.nic.tatar", e, w{"https://whois.nic.tatar/rdap/"}, f},
1469 {"tattoo", r, x, 0x40, "Top Level Design, LLC", "https://nic.tattoo/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, w{"de", "es", "fr", "it", "ja", "mul-Cyrl", "pt", "zh"}, "whois.nic.tattoo", e, w{"https://whois.uniregistry.net/rdap/"}, t},
14671470 {"tax", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.tax", "v0n1.nic.tax", "v0n2.nic.tax", "v0n3.nic.tax", "v2n0.nic.tax", "v2n1.nic.tax"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.tax", e, w{"https://rdap.donuts.co/rdap/"}, t},
1468 {"taxi", r, x, 0x40, "Binky Moon, LLC", "https://newgtlds.icann.org/", w{"v0n0.nic.taxi", "v0n1.nic.taxi", "v0n2.nic.taxi", "v0n3.nic.taxi", "v2n0.nic.taxi", "v2n1.nic.taxi"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.taxi", e, w{"https://rdap.donuts.co/rdap/"}, t},
1471 {"taxi", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.taxi", "v0n1.nic.taxi", "v0n2.nic.taxi", "v0n3.nic.taxi", "v2n0.nic.taxi", "v2n1.nic.taxi"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.taxi", e, w{"https://rdap.donuts.co/rdap/"}, t},
14691472 {"tc", r, z[4434:4467], 0xa0, e, e, w{"root1.zone.tc", "root2.zone.tc", "root3.zone.tc", "root4.zone.tc", "root5.zone.tc", "root6.zone.tc", "root7.zone.tc", "root8.zone.tc"}, n, n, n, "whois.nic.tc", e, n, f},
1470 {"tci", r, x, 0x42, "Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.", "https://newgtlds.icann.org/", w{"a.ns.nic.tci", "b.ns.nic.tci", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, "whois.nic.tci", e, w{"https://api.rdap.agitsys.net/"}, f},
1471 {"td", r, z[4467:4471], 0xa0, e, "http://nic.td/", w{"anycastdns1.nic.td", "anycastdns2.nic.td", "ns-td.afrinic.net", "pch.nic.td"}, n, n, n, "whois.nic.td", e, n, f},
1472 {"tdk", r, x, 0x42, "TDK Corporation", "https://newgtlds.icann.org/", w{"a.nic.tdk", "b.nic.tdk", "c.nic.tdk", "ns1.dns.nic.tdk", "ns2.dns.nic.tdk", "ns3.dns.nic.tdk"}, n, n, w{"ja"}, "whois.nic.tdk", e, w{"https://rdap.nic.tdk/"}, t},
1473 {"team", r, x, 0x40, "Binky Moon, LLC", "https://newgtlds.icann.org/", w{"v0n0.nic.team", "v0n1.nic.team", "v0n2.nic.team", "v0n3.nic.team", "v2n0.nic.team", "v2n1.nic.team"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.team", e, w{"https://rdap.donuts.co/rdap/"}, t},
1474 {"tech", r, x, 0x40, "Radix FZC", "https://newgtlds.icann.org/", w{"a.nic.tech", "b.nic.tech", "e.nic.tech", "f.nic.tech"}, n, n, w{"ar", "he", "ja", "ko", "lo", "mul-Cyrl", "mul-Grek", "mul-Latn", "th", "zh"}, "whois.nic.tech", e, w{"https://rdap.centralnic.com/tech/"}, t},
1473 {"tci", r, x, 0x42, "Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.", "http://nic.tci/", w{"a.ns.nic.tci", "b.ns.nic.tci", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, "whois.nic.tci", e, w{"https://api.rdap.agitsys.net/"}, f},
1474 {"td", r, z[4467:4471], 0xa0, e, "https://nic.td/", w{"anycastdns1.nic.td", "anycastdns2.nic.td", "ns-td.afrinic.net", "pch.nic.td"}, n, n, n, "whois.nic.td", e, n, f},
1475 {"tdk", r, x, 0x42, "TDK Corporation", "http://nic.tdk/", w{"a.nic.tdk", "b.nic.tdk", "c.nic.tdk", "ns1.dns.nic.tdk", "ns2.dns.nic.tdk", "ns3.dns.nic.tdk"}, n, n, w{"ja"}, "whois.nic.tdk", e, w{"https://rdap.nic.tdk/"}, t},
1476 {"team", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.team", "v0n1.nic.team", "v0n2.nic.team", "v0n3.nic.team", "v2n0.nic.team", "v2n1.nic.team"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.team", e, w{"https://rdap.donuts.co/rdap/"}, t},
1477 {"tech", r, x, 0x40, "Radix FZC", "https://radix.website/dot-tech", w{"a.nic.tech", "b.nic.tech", "e.nic.tech", "f.nic.tech"}, n, n, w{"ar", "he", "ja", "ko", "lo", "mul-Cyrl", "mul-Grek", "mul-Latn", "th", "zh"}, "whois.nic.tech", e, w{"https://rdap.centralnic.com/tech/"}, t},
14751478 {"technology", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.technology", "v0n1.nic.technology", "v0n2.nic.technology", "v0n3.nic.technology", "v2n0.nic.technology", "v2n1.nic.technology"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.technology", e, w{"https://rdap.donuts.co/rdap/"}, t},
14761479 {"tel", r, x, 0x1040, "Telnames Limited", e, w{"ns1.dns.nic.tel", "ns2.dns.nic.tel", "ns3.dns.nic.tel", "ns4.dns.nic.tel", "ns5.dns.nic.tel", "ns6.dns.nic.tel", "ns7.dns.nic.tel", "ns8.dns.nic.tel"}, n, n, w{"da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.tel", e, w{"https://rdap.nic.tel/"}, t},
1477 {"telecity", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.telecity", e, n, f},
1478 {"telefonica", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois-fe.telefonica.tango.knipp.de", e, n, f},
1479 {"temasek", r, x, 0x42, "Temasek Holdings (Private) Limited", "https://newgtlds.icann.org/", w{"a0.nic.temasek", "a2.nic.temasek", "b0.nic.temasek", "c0.nic.temasek"}, n, n, w{"zh-CN", "zh-TW"}, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/temasek/"}, t},
1480 {"tennis", r, x, 0x40, "Binky Moon, LLC", "https://newgtlds.icann.org/", w{"v0n0.nic.tennis", "v0n1.nic.tennis", "v0n2.nic.tennis", "v0n3.nic.tennis", "v2n0.nic.tennis", "v2n1.nic.tennis"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.tennis", e, w{"https://rdap.donuts.co/rdap/"}, t},
1481 {"terra", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1482 {"teva", r, x, 0x42, "Teva Pharmaceutical Industries Limited", "https://newgtlds.icann.org/", w{"a.nic.teva", "b.nic.teva", "c.nic.teva", "ns1.dns.nic.teva", "ns2.dns.nic.teva", "ns3.dns.nic.teva"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.teva", e, w{"https://rdap.nic.teva/"}, t},
1480 {"telecity", r, x, 0x842, e, e, n, n, n, n, "whois.nic.telecity", e, n, f},
1481 {"telefonica", r, x, 0x842, e, e, n, n, n, n, "whois-fe.telefonica.tango.knipp.de", e, n, f},
1482 {"temasek", r, x, 0x42, "Temasek Holdings (Private) Limited", "https://www.temasek.com.sg/en/site-services/nictemasek", w{"a0.nic.temasek", "a2.nic.temasek", "b0.nic.temasek", "c0.nic.temasek"}, n, n, w{"zh-CN", "zh-TW"}, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/temasek/"}, t},
1483 {"tennis", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.tennis", "v0n1.nic.tennis", "v0n2.nic.tennis", "v0n3.nic.tennis", "v2n0.nic.tennis", "v2n1.nic.tennis"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.tennis", e, w{"https://rdap.donuts.co/rdap/"}, t},
1484 {"terra", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
1485 {"teva", r, x, 0x42, "Teva Pharmaceutical Industries Limited", "http://nic.teva/", w{"a.nic.teva", "b.nic.teva", "c.nic.teva", "ns1.dns.nic.teva", "ns2.dns.nic.teva", "ns3.dns.nic.teva"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.teva", e, w{"https://rdap.nic.teva/"}, t},
14831486 {"tf", r, z[4471:4485], 0xa0, e, e, w{"d.nic.fr", "e.ext.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, n, "whois.nic.tf", e, w{"https://rdap.nic.tf/"}, t},
1484 {"tg", r, x, 0xa0, e, "http://www.nic.tg/", w{"ns1.admin.net", "ns1.nic.tg", "ns2.admin.net", "ns2.nic.tg", "ns3.admin.net", "ns4.admin.net", "ns5.admin.net", "tld.cafe.tg"}, n, n, n, "whois.nic.tg", e, n, f},
1485 {"th", r, z[4485:4492], 0xa8, e, "https://www.thnic.co.th/", w{"a.thains.co.th", "b.thains.co.th", "c.thains.co.th", "ns.thnic.net", "p.thains.co.th"}, n, n, w{"th-TH"}, "whois.thnic.co.th", e, n, t},
1486 {"thai", r, x, 0x40, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1487 {"thd", r, x, 0x42, "Home Depot Product Authority, LLC", "https://newgtlds.icann.org/", w{"a0.nic.thd", "a2.nic.thd", "b0.nic.thd", "c0.nic.thd"}, n, n, n, "whois.nic.thd", e, w{"https://rdap.afilias-srs.net/rdap/thd/"}, f},
1488 {"theater", r, x, 0x40, "Binky Moon, LLC", "https://newgtlds.icann.org/", w{"v0n0.nic.theater", "v0n1.nic.theater", "v0n2.nic.theater", "v0n3.nic.theater", "v2n0.nic.theater", "v2n1.nic.theater"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.theater", e, w{"https://rdap.donuts.co/rdap/"}, t},
1489 {"theatre", r, x, 0x40, "XYZ.COM LLC", "https://newgtlds.icann.org/", w{"a.nic.theatre", "b.nic.theatre", "c.nic.theatre", "d.nic.theatre"}, n, n, w{"ar", "he", "ja", "ko", "lo", "mul-Grek", "mul-Latn", "ru", "th", "zh"}, "whois.nic.theatre", e, w{"https://rdap.centralnic.com/theatre/"}, t},
1490 {"theguardian", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1491 {"thehartford", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1492 {"tiaa", r, x, 0x42, "Teachers Insurance and Annuity Association of America", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.tiaa", e, w{"https://tld-rdap.verisign.com/tiaa/v1/"}, f},
1493 {"tickets", r, x, 0x40, "XYZ.COM LLC", "https://newgtlds.icann.org/", w{"a.nic.tickets", "b.nic.tickets", "c.nic.tickets", "d.nic.tickets"}, n, n, w{"ar", "da", "de", "es", "fr", "he", "ja", "ko", "lo", "mul-Cyrl", "mul-Grek", "mul-Latn", "mul-Mymr", "pl", "ru", "sv", "th", "zh"}, "whois.nic.tickets", e, w{"https://rdap.centralnic.com/tickets/"}, t},
1487 {"tg", r, x, 0xa0, e, "https://www.nic.tg/", w{"ns1.admin.net", "ns1.nic.tg", "ns2.admin.net", "ns2.nic.tg", "ns3.admin.net", "ns4.admin.net", "ns5.admin.net", "tld.cafe.tg"}, n, n, n, "whois.nic.tg", e, n, f},
1488 {"th", r, z[4485:4492], 0xa8, e, "https://www.thnic.co.th/", w{"a.thains.co.th", "b.thains.co.th", "c.thains.co.th", "ns.thnic.net", "p.thains.co.th"}, n, n, w{"th-TH"}, "whois.thnic.net", e, n, t},
1489 {"thai", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
1490 {"thd", r, x, 0x42, "Home Depot Product Authority, LLC", "https://www.icann.org/en/registry-agreements/details/thd", w{"a0.nic.thd", "a2.nic.thd", "b0.nic.thd", "c0.nic.thd"}, n, n, n, "whois.nic.thd", e, w{"https://rdap.afilias-srs.net/rdap/thd/"}, f},
1491 {"theater", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.theater", "v0n1.nic.theater", "v0n2.nic.theater", "v0n3.nic.theater", "v2n0.nic.theater", "v2n1.nic.theater"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.theater", e, w{"https://rdap.donuts.co/rdap/"}, t},
1492 {"theatre", r, x, 0x40, "XYZ.COM LLC", "https://nic.theatre/", w{"a.nic.theatre", "b.nic.theatre", "c.nic.theatre", "d.nic.theatre"}, n, n, w{"ar", "he", "ja", "ko", "lo", "mul-Grek", "mul-Latn", "ru", "th", "zh"}, "whois.nic.theatre", e, w{"https://rdap.centralnic.com/theatre/"}, t},
1493 {"theguardian", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
1494 {"thehartford", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
1495 {"tiaa", r, x, 0x42, "Teachers Insurance and Annuity Association of America", "https://www.icann.org/en/registry-agreements/details/tiaa", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.tiaa", e, w{"https://tld-rdap.verisign.com/tiaa/v1/"}, f},
1496 {"tickets", r, x, 0x40, "XYZ.COM LLC", "https://nic.tickets/", w{"a.nic.tickets", "b.nic.tickets", "c.nic.tickets", "d.nic.tickets"}, n, n, w{"ar", "da", "de", "es", "fr", "he", "ja", "ko", "lo", "mul-Cyrl", "mul-Grek", "mul-Latn", "mul-Mymr", "pl", "ru", "sv", "th", "zh"}, "whois.nic.tickets", e, w{"https://rdap.centralnic.com/tickets/"}, t},
14941497 {"tienda", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.tienda", "v0n1.nic.tienda", "v0n2.nic.tienda", "v0n3.nic.tienda", "v2n0.nic.tienda", "v2n1.nic.tienda"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.tienda", e, w{"https://rdap.donuts.co/rdap/"}, t},
1495 {"tiffany", r, x, 0x42, "Tiffany and Company", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.tiffany", e, w{"https://tld-rdap.verisign.com/tiffany/v1/"}, t},
1496 {"tiffay", r, x, 0, e, e, n, n, n, n, "whois.nic.tiffany", e, n, t},
1497 {"tiia", r, x, 0, e, e, n, n, n, n, e, e, n, t},
1498 {"tiffany", r, x, 0x42, "Tiffany and Company", "http://nic.tiffany/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.tiffany", e, w{"https://tld-rdap.verisign.com/tiffany/v1/"}, t},
1499 {"tiffay", r, x, 0x4000, e, e, n, n, n, n, "whois.nic.tiffany", e, n, t},
1500 {"tiia", r, x, 0x4040, e, e, n, n, n, n, e, e, n, t},
14981501 {"tips", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.tips", "v0n1.nic.tips", "v0n2.nic.tips", "v0n3.nic.tips", "v2n0.nic.tips", "v2n1.nic.tips"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.tips", e, w{"https://rdap.donuts.co/rdap/"}, t},
1499 {"tires", r, x, 0x40, "Binky Moon, LLC", "https://newgtlds.icann.org/", w{"v0n0.nic.tires", "v0n1.nic.tires", "v0n2.nic.tires", "v0n3.nic.tires", "v2n0.nic.tires", "v2n1.nic.tires"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.tires", e, w{"https://rdap.donuts.co/rdap/"}, t},
1500 {"tirol", r, x, 0x440, "punkt Tirol GmbH", "https://newgtlds.icann.org/", w{"dns.ryce-rsp.com", "ns1.dns.business", "ns1.ryce-rsp.com"}, n, w{"AT-7"}, w{"mul-Latn"}, "whois.nic.tirol", e, w{"https://rdap.ryce-rsp.com/rdap/"}, t},
1502 {"tires", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.tires", "v0n1.nic.tires", "v0n2.nic.tires", "v0n3.nic.tires", "v2n0.nic.tires", "v2n1.nic.tires"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.tires", e, w{"https://rdap.donuts.co/rdap/"}, t},
1503 {"tirol", r, x, 0x440, "punkt Tirol GmbH", "http://www.nic.tirol/", w{"dns.ryce-rsp.com", "ns1.dns.business", "ns1.ryce-rsp.com"}, n, w{"AT-7"}, w{"mul-Latn"}, "whois.nic.tirol", e, w{"https://rdap.ryce-rsp.com/rdap/"}, t},
15011504 {"tj", r, z[4492:4513], 0xa0, e, e, w{"ns1.nic.tj", "ns2.tojikiston.com", "phloem.uoregon.edu", "tj.cctld.authdns.ripe.net"}, n, n, n, e, "http://www.nic.tj/whois.html", n, f},
1502 {"tjmaxx", r, x, 0x42, "The TJX Companies, Inc.", "https://newgtlds.icann.org/", w{"a.nic.tjmaxx", "b.nic.tjmaxx", "c.nic.tjmaxx", "ns1.dns.nic.tjmaxx", "ns2.dns.nic.tjmaxx", "ns3.dns.nic.tjmaxx"}, n, n, n, "whois.nic.tjmaxx", e, w{"https://rdap.nic.tjmaxx/"}, f},
1503 {"tjx", r, x, 0x42, "The TJX Companies, Inc.", "https://newgtlds.icann.org/", w{"a.nic.tjx", "b.nic.tjx", "c.nic.tjx", "ns1.dns.nic.tjx", "ns2.dns.nic.tjx", "ns3.dns.nic.tjx"}, n, n, n, "whois.nic.tjx", e, w{"https://rdap.nic.tjx/"}, f},
1505 {"tjmaxx", r, x, 0x42, "The TJX Companies, Inc.", "http://nic.tjmaxx/", w{"a.nic.tjmaxx", "b.nic.tjmaxx", "c.nic.tjmaxx", "ns1.dns.nic.tjmaxx", "ns2.dns.nic.tjmaxx", "ns3.dns.nic.tjmaxx"}, n, n, n, "whois.nic.tjmaxx", e, w{"https://rdap.nic.tjmaxx/"}, f},
1506 {"tjx", r, x, 0x42, "The TJX Companies, Inc.", "http://nic.tjx/", w{"a.nic.tjx", "b.nic.tjx", "c.nic.tjx", "ns1.dns.nic.tjx", "ns2.dns.nic.tjx", "ns3.dns.nic.tjx"}, n, n, n, "whois.nic.tjx", e, w{"https://rdap.nic.tjx/"}, f},
15041507 {"tk", r, x, 0xa0, e, e, w{"a.ns.tk", "b.ns.tk", "c.ns.tk", "d.ns.tk"}, n, n, n, "whois.dot.tk", e, n, t},
1505 {"tkmaxx", r, x, 0x42, "The TJX Companies, Inc.", "https://newgtlds.icann.org/", w{"a.nic.tkmaxx", "b.nic.tkmaxx", "c.nic.tkmaxx", "ns1.dns.nic.tkmaxx", "ns2.dns.nic.tkmaxx", "ns3.dns.nic.tkmaxx"}, n, n, n, "whois.nic.tkmaxx", e, w{"https://rdap.nic.tkmaxx/"}, f},
1508 {"tkmaxx", r, x, 0x42, "The TJX Companies, Inc.", "http://nic.tkmaxx/", w{"a.nic.tkmaxx", "b.nic.tkmaxx", "c.nic.tkmaxx", "ns1.dns.nic.tkmaxx", "ns2.dns.nic.tkmaxx", "ns3.dns.nic.tkmaxx"}, n, n, n, "whois.nic.tkmaxx", e, w{"https://rdap.nic.tkmaxx/"}, f},
15061509 {"tl", r, z[4513:4520], 0xa0, e, e, w{"ns.anycast.nic.tl", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, "whois.nic.tl", e, n, f},
1507 {"tm", r, z[4520:4528], 0xa0, e, "http://nic.tm/", w{"ns-a1.tm", "ns-a2.tm", "ns-a3.tm", "ns-a4.tm", "ns-d1.tm", "ns-l1.tm", "ns-y1.tm"}, n, n, n, "whois.nic.tm", e, n, t},
1508 {"tmall", r, x, 0x42, "Alibaba Group Holding Limited", "https://newgtlds.icann.org/", w{"a.nic.tmall", "b.nic.tmall", "c.nic.tmall", "ns1.dns.nic.tmall", "ns2.dns.nic.tmall", "ns3.dns.nic.tmall"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh", "zh-CN", "zh-TW"}, "whois.nic.tmall", e, w{"https://rdap.nic.tmall/"}, t},
1510 {"tm", r, z[4520:4528], 0xa0, e, "https://nic.tm/", w{"ns-a1.tm", "ns-a2.tm", "ns-a3.tm", "ns-a4.tm", "ns-d1.tm", "ns-l1.tm", "ns-y1.tm"}, n, n, n, "whois.nic.tm", e, n, t},
1511 {"tmall", r, x, 0x42, "Alibaba Group Holding Limited", "http://nic.tmall/", w{"a.nic.tmall", "b.nic.tmall", "c.nic.tmall", "ns1.dns.nic.tmall", "ns2.dns.nic.tmall", "ns3.dns.nic.tmall"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh", "zh-CN", "zh-TW"}, "whois.nic.tmall", e, w{"https://rdap.nic.tmall/"}, t},
15091512 {"tn", r, z[4528:4547], 0xa0, e, e, w{"ns-tn.afrinic.net", "ns1.ati.tn", "ns2.ati.tn", "ns2.nic.fr", "pch.ati.tn", "rip.psg.com"}, n, n, n, "whois.ati.tn", e, n, f},
15101513 {"to", r, x, 0xa0, e, "https://www.tonic.to/", w{"colo.tonic.to", "frankfurt.tonic.to", "helsinki.tonic.to", "newyork.tonic.to", "singapore.tonic.to", "sydney.tonic.to", "tonic.to"}, n, n, n, "whois.tonic.to", e, n, t},
15111514 {"today", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.today", "v0n1.nic.today", "v0n2.nic.today", "v0n3.nic.today", "v2n0.nic.today", "v2n1.nic.today"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.today", e, w{"https://rdap.donuts.co/rdap/"}, t},
15121515 {"tokyo", r, x, 0xc4, "GMO Registry, Inc.", e, w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, w{"Tokyo", "JP-13"}, w{"ja"}, "whois.nic.tokyo", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
15131516 {"tools", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.tools", "v0n1.nic.tools", "v0n2.nic.tools", "v0n3.nic.tools", "v2n0.nic.tools", "v2n1.nic.tools"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.tools", e, w{"https://rdap.donuts.co/rdap/"}, t},
1514 {"top", r, x, 0x40, ".TOP Registry", "http://www.nic.top/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, w{"ar", "de", "es", "fr", "ja", "ru", "tw", "zh-Hans", "zh-Hant"}, "whois.nic.top", e, w{"https://rdap.zdnsgtld.com/top/"}, t},
1515 {"toray", r, x, 0x42, "Toray Industries, Inc.", "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ja"}, "whois.nic.toray", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
1516 {"toshiba", r, x, 0x42, "TOSHIBA Corporation", "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"es", "fr", "ja", "ko", "pl", "pt"}, "whois.nic.toshiba", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
1517 {"total", r, x, 0x42, "TOTAL SE", "https://newgtlds.icann.org/", w{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, w{"mul-Latn"}, "whois.nic.total", e, w{"https://rdap.nic.total/"}, t},
1518 {"tour", r, x, 0x40, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1519 {"tours", r, x, 0x40, "Binky Moon, LLC", "https://newgtlds.icann.org/", w{"v0n0.nic.tours", "v0n1.nic.tours", "v0n2.nic.tours", "v0n3.nic.tours", "v2n0.nic.tours", "v2n1.nic.tours"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.tours", e, w{"https://rdap.donuts.co/rdap/"}, t},
1517 {"top", r, x, 0x40, ".TOP Registry", "https://www.nic.top/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com"}, n, n, w{"ar", "de", "es", "fr", "ja", "ru", "tw", "zh-Hans", "zh-Hant"}, "whois.nic.top", e, w{"https://rdap.zdnsgtld.com/top/"}, t},
1518 {"toray", r, x, 0x42, "Toray Industries, Inc.", "https://nic.toray/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ja"}, "whois.nic.toray", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
1519 {"toshiba", r, x, 0x42, "TOSHIBA Corporation", "https://www.icann.org/en/registry-agreements/details/toshiba", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"es", "fr", "ja", "ko", "pl", "pt"}, "whois.nic.toshiba", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
1520 {"total", r, x, 0x42, "TOTAL SE", "https://nic.total/", w{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, w{"mul-Latn"}, "whois.nic.total", e, w{"https://rdap.nic.total/"}, t},
1521 {"tour", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
1522 {"tours", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.tours", "v0n1.nic.tours", "v0n2.nic.tours", "v0n3.nic.tours", "v2n0.nic.tours", "v2n1.nic.tours"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.tours", e, w{"https://rdap.donuts.co/rdap/"}, t},
15201523 {"town", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.town", "v0n1.nic.town", "v0n2.nic.town", "v0n3.nic.town", "v2n0.nic.town", "v2n1.nic.town"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.town", e, w{"https://rdap.donuts.co/rdap/"}, t},
1521 {"toyota", r, x, 0x42, "TOYOTA MOTOR CORPORATION", "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ja"}, "whois.nic.toyota", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
1524 {"toyota", r, x, 0x42, "TOYOTA MOTOR CORPORATION", "http://www.nic.toyota/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ja"}, "whois.nic.toyota", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
15221525 {"toys", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.toys", "v0n1.nic.toys", "v0n2.nic.toys", "v0n3.nic.toys", "v2n0.nic.toys", "v2n1.nic.toys"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.toys", e, w{"https://rdap.donuts.co/rdap/"}, t},
15231526 {"tp", r, z[4547:4550], 0x8a0, e, e, n, n, n, n, e, e, n, f},
1524 {"tr", r, z[4550:4571], 0xa8, e, "https://www.nic.tr/", w{"ns31.nic.tr", "ns34.nic.tr", "ns35.nic.tr", "ns41.nic.tr", "ns42.nic.tr", "ns61.nic.tr", "ns71.nic.tr"}, n, n, n, "whois.nic.tr", e, n, t},
1525 {"trade", r, x, 0x40, "Elite Registry Limited", "https://www.famousfourmedia.com/", w{"a.nic.trade", "b.nic.trade", "c.nic.trade", "ns1.dns.nic.trade", "ns2.dns.nic.trade", "ns3.dns.nic.trade"}, n, n, w{"da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.trade", e, w{"https://rdap.nic.trade/"}, t},
1526 {"tradershotels", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1527 {"trading", r, x, 0x40, "Dog Beach, LLC", "https://bostonivy.co/", w{"v0n0.nic.trading", "v0n1.nic.trading", "v0n2.nic.trading", "v0n3.nic.trading", "v2n0.nic.trading", "v2n1.nic.trading"}, n, n, n, "whois.nic.trading", e, w{"https://rdap.donuts.co/rdap/"}, f},
1527 {"tr", r, z[4550:4571], 0xa8, e, "https://www.iana.org/domains/root/db/tr.html", w{"ns31.nic.tr", "ns34.nic.tr", "ns35.nic.tr", "ns41.nic.tr", "ns42.nic.tr", "ns61.nic.tr", "ns71.nic.tr"}, n, n, n, "whois.nic.tr", e, n, t},
1528 {"trade", r, x, 0x40, "Elite Registry Limited", "http://nic.trade/", w{"a.nic.trade", "b.nic.trade", "c.nic.trade", "ns1.dns.nic.trade", "ns2.dns.nic.trade", "ns3.dns.nic.trade"}, n, n, w{"da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.trade", e, w{"https://rdap.nic.trade/"}, t},
1529 {"tradershotels", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
1530 {"trading", r, x, 0x40, "Dog Beach, LLC", "http://nic.trading/", w{"v0n0.nic.trading", "v0n1.nic.trading", "v0n2.nic.trading", "v0n3.nic.trading", "v2n0.nic.trading", "v2n1.nic.trading"}, n, n, n, "whois.nic.trading", e, w{"https://rdap.donuts.co/rdap/"}, f},
15281531 {"training", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.training", "v0n1.nic.training", "v0n2.nic.training", "v0n3.nic.training", "v2n0.nic.training", "v2n1.nic.training"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.training", e, w{"https://rdap.donuts.co/rdap/"}, t},
1529 {"transformers", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1530 {"translations", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1531 {"transunion", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1532 {"transformers", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
1533 {"translations", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
1534 {"transunion", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
15321535 {"travel", r, x, 0x1040, "Dog Beach, LLC", "https://www.travel.domains/", w{"v0n0.nic.travel", "v0n1.nic.travel", "v0n2.nic.travel", "v0n3.nic.travel", "v2n0.nic.travel", "v2n1.nic.travel"}, n, n, n, "whois.nic.travel", e, w{"https://rdap.donuts.co/rdap/"}, f},
1533 {"travelchannel", r, x, 0x42, "Lifestyle Domain Holdings, Inc.", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.travelchannel", e, w{"https://tld-rdap.verisign.com/travelchannel/v1/"}, f},
1534 {"travelers", r, x, 0x42, "Travelers TLD, LLC", "https://newgtlds.icann.org/", w{"a0.nic.travelers", "a2.nic.travelers", "b0.nic.travelers", "c0.nic.travelers"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/travelers/"}, f},
1535 {"travelersinsurance", r, x, 0x42, "Travelers TLD, LLC", "https://newgtlds.icann.org/", w{"a0.nic.travelersinsurance", "a2.nic.travelersinsurance", "b0.nic.travelersinsurance", "c0.nic.travelersinsurance"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/travelersinsurance/"}, f},
1536 {"travelguard", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1537 {"trust", r, x, 0x40, "Internet Naming Company LLC", "https://newgtlds.icann.org/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, "whois.nic.trust", e, w{"https://rdap.nic.trust/"}, f},
1538 {"trv", r, x, 0x42, "Travelers TLD, LLC", "https://newgtlds.icann.org/", w{"a0.nic.trv", "a2.nic.trv", "b0.nic.trv", "c0.nic.trv"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/trv/"}, f},
1536 {"travelchannel", r, x, 0x42, "Lifestyle Domain Holdings, Inc.", "https://www.icann.org/en/registry-agreements/details/travelchannel", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.travelchannel", e, w{"https://tld-rdap.verisign.com/travelchannel/v1/"}, f},
1537 {"travelers", r, x, 0x42, "Travelers TLD, LLC", "https://nic.travelers/", w{"a0.nic.travelers", "a2.nic.travelers", "b0.nic.travelers", "c0.nic.travelers"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/travelers/"}, f},
1538 {"travelersinsurance", r, x, 0x42, "Travelers TLD, LLC", "https://nic.travelersinsurance/", w{"a0.nic.travelersinsurance", "a2.nic.travelersinsurance", "b0.nic.travelersinsurance", "c0.nic.travelersinsurance"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/travelersinsurance/"}, f},
1539 {"travelguard", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
1540 {"trust", r, x, 0x40, "Internet Naming Company LLC", "https://uniregistry.link/extensions/trust/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, "whois.nic.trust", e, w{"https://rdap.nic.trust/"}, f},
1541 {"trv", r, x, 0x42, "Travelers TLD, LLC", "https://nic.trv/", w{"a0.nic.trv", "a2.nic.trv", "b0.nic.trv", "c0.nic.trv"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/trv/"}, f},
15391542 {"tt", r, z[4571:4603], 0xa0, e, e, w{"a.lactld.org", "ns3.nic.mx", "pch.nic.tt", "ripe.nic.tt"}, n, n, n, e, "http://www.nic.tt/cgi-bin/search.pl", n, f},
1540 {"tube", r, x, 0x40, "Latin American Telecom LLC", "https://newgtlds.icann.org/", w{"a.nic.tube", "b.nic.tube", "c.nic.tube", "ns1.dns.nic.tube", "ns2.dns.nic.tube", "ns3.dns.nic.tube"}, n, n, n, "whois.nic.tube", e, w{"https://rdap.nic.tube/"}, f},
1541 {"tui", r, x, 0x42, "TUI AG", "https://newgtlds.icann.org/", w{"a.nic.tui", "b.nic.tui", "c.nic.tui", "d.nic.tui"}, n, n, w{"de"}, "whois.nic.tui", e, w{"https://rdap.centralnic.com/tui/"}, t},
1542 {"tunes", r, x, 0x48, "Amazon Registry Services, Inc.", "https://newgtlds.icann.org/", w{"dns1.nic.tunes", "dns2.nic.tunes", "dns3.nic.tunes", "dns4.nic.tunes", "dnsa.nic.tunes", "dnsb.nic.tunes", "dnsc.nic.tunes", "dnsd.nic.tunes"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.tunes", e, w{"https://rdap.nominet.uk/tunes/"}, t},
1543 {"tushu", r, x, 0x42, "Amazon Registry Services, Inc.", "https://newgtlds.icann.org/", w{"dns1.nic.tushu", "dns2.nic.tushu", "dns3.nic.tushu", "dns4.nic.tushu", "dnsa.nic.tushu", "dnsb.nic.tushu", "dnsc.nic.tushu", "dnsd.nic.tushu"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.tushu", e, w{"https://rdap.nominet.uk/tushu/"}, t},
1543 {"tube", r, x, 0x40, "Latin American Telecom LLC", "http://nic.tube/", w{"a.nic.tube", "b.nic.tube", "c.nic.tube", "ns1.dns.nic.tube", "ns2.dns.nic.tube", "ns3.dns.nic.tube"}, n, n, n, "whois.nic.tube", e, w{"https://rdap.nic.tube/"}, f},
1544 {"tui", r, x, 0x42, "TUI AG", "https://nic.tui/", w{"a.nic.tui", "b.nic.tui", "c.nic.tui", "d.nic.tui"}, n, n, w{"de"}, "whois.nic.tui", e, w{"https://rdap.centralnic.com/tui/"}, t},
1545 {"tunes", r, x, 0x48, "Amazon Registry Services, Inc.", "https://nic.tunes/", w{"dns1.nic.tunes", "dns2.nic.tunes", "dns3.nic.tunes", "dns4.nic.tunes", "dnsa.nic.tunes", "dnsb.nic.tunes", "dnsc.nic.tunes", "dnsd.nic.tunes"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.tunes", e, w{"https://rdap.nominet.uk/tunes/"}, t},
1546 {"tushu", r, x, 0x42, "Amazon Registry Services, Inc.", "https://nic.tushu/", w{"dns1.nic.tushu", "dns2.nic.tushu", "dns3.nic.tushu", "dns4.nic.tushu", "dnsa.nic.tushu", "dnsb.nic.tushu", "dnsc.nic.tushu", "dnsd.nic.tushu"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.tushu", e, w{"https://rdap.nominet.uk/tushu/"}, t},
15441547 {"tv", r, x, 0xe0, e, e, w{"a.nic.tv", "b.nic.tv", "c.nic.tv", "d.nic.tv"}, n, n, n, "tvwhois.verisign-grs.com", e, w{"https://tld-rdap.verisign.com/tv/v1/"}, t},
1545 {"tvs", r, x, 0x42, "T V SUNDRAM IYENGAR & SONS LIMITED", "https://newgtlds.icann.org/", w{"a0.nic.tvs", "a2.nic.tvs", "b0.nic.tvs", "c0.nic.tvs"}, n, n, n, "whois.nic.tvs", e, w{"https://rdap.afilias-srs.net/rdap/tvs/"}, f},
1546 {"tw", r, z[4603:4616], 0xa0, e, e, w{"a.dns.tw", "anytld.apnic.net", "b.dns.tw", "c.dns.tw", "d.dns.tw", "e.dns.tw", "f.dns.tw", "g.dns.tw", "h.dns.tw", "ns.twnic.net"}, n, n, w{"de", "fr", "ja", "ko", "th", "zh", "zh-Hant"}, "whois.twnic.net.tw", e, n, t},
1548 {"tvs", r, x, 0x42, "T V SUNDRAM IYENGAR & SONS LIMITED", "http://nic.tvs/", w{"a0.nic.tvs", "a2.nic.tvs", "b0.nic.tvs", "c0.nic.tvs"}, n, n, n, "whois.nic.tvs", e, w{"https://rdap.afilias-srs.net/rdap/tvs/"}, f},
1549 {"tw", r, z[4603:4616], 0xa0, e, e, w{"a.dns.tw", "anytld.apnic.net", "b.dns.tw", "c.dns.tw", "d.dns.tw", "e.dns.tw", "f.dns.tw", "g.dns.tw", "h.dns.tw", "ns.twnic.net"}, n, n, w{"de", "fr", "ja", "ko", "th", "zh", "zh-Hant"}, "whois.twnic.net", e, n, t},
15471550 {"tz", r, z[4616:4628], 0xa8, e, e, w{"fork.sth.dnsnode.net", "ns-tz.afrinic.net", "ns.anycast.co.tz", "ns2.tznic.or.tz", "rip.psg.com", "tz-e.ns.nic.cz"}, n, n, n, "whois.tznic.or.tz", e, w{"https://whois.tznic.or.tz/rdap/"}, f},
1548 {"ua", r, z[4628:4694], 0xa0, e, "http://www.nic.net.ua/", w{"bg.ns.ua", "cd1.ns.ua", "ho1.ns.ua", "in1.ns.ua", "pch.ns.ua", "rcz.ns.ua"}, n, n, w{"mul-Cyrl"}, "whois.ua", e, n, t},
1549 {"ubank", r, x, 0x42, "National Australia Bank Limited", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.ubank", e, w{"https://tld-rdap.verisign.com/ubank/v1/"}, f},
1550 {"ubs", r, x, 0x42, "UBS AG", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.ubs", e, w{"https://tld-rdap.verisign.com/ubs/v1/"}, f},
1551 {"uconnect", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.afilias-srs.net", e, n, f},
1551 {"ua", r, z[4628:4694], 0xa0, e, "https://www.nic.net.ua/", w{"bg.ns.ua", "cd1.ns.ua", "ho1.ns.ua", "in1.ns.ua", "pch.ns.ua", "rcz.ns.ua"}, n, n, w{"mul-Cyrl"}, "whois.ua", e, n, t},
1552 {"ubank", r, x, 0x42, "National Australia Bank Limited", "https://www.ubank.com.au/nic", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.ubank", e, w{"https://tld-rdap.verisign.com/ubank/v1/"}, f},
1553 {"ubs", r, x, 0x42, "UBS AG", "https://www.icann.org/en/registry-agreements/details/ubs", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.ubs", e, w{"https://tld-rdap.verisign.com/ubs/v1/"}, f},
1554 {"uconnect", r, x, 0x842, e, e, n, n, n, n, "whois.afilias-srs.net", e, n, f},
15521555 {"ug", r, z[4694:4703], 0xa0, e, e, w{"anycast.eahd.or.ug", "ns-ug.afrinic.net", "ns.icann.org", "root.eahd.or.ug", "ug.cctld.authdns.ripe.net"}, n, n, n, "whois.co.ug", e, n, f},
15531556 {"uk", r, z[4703:4713], 0xa0, e, "https://www.nominet.uk/", w{"dns1.nic.uk", "dns2.nic.uk", "dns3.nic.uk", "dns4.nic.uk", "nsa.nic.uk", "nsb.nic.uk", "nsc.nic.uk", "nsd.nic.uk"}, n, n, n, "whois.nic.uk", e, w{"https://rdap.nominet.uk/uk/"}, f},
1554 {"ultrabook", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1557 {"ultrabook", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
15551558 {"um", r, x, 0x8a0, e, e, n, n, n, n, e, e, n, f},
1556 {"ummah", r, x, 0x2042, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1557 {"unicom", r, x, 0x42, "China United Network Communications Corporation Limited", "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, w{"es", "ru", "zh-Hans", "zh-Hant"}, "whois.nic.unicom", e, w{"https://rdap.zdnsgtld.com/unicom/"}, t},
1558 {"unicorn", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1559 {"ummah", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
1560 {"unicom", r, x, 0x42, "China United Network Communications Corporation Limited", "https://www.icann.org/en/registry-agreements/details/unicom", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, w{"es", "ru", "zh-Hans", "zh-Hant"}, "whois.nic.unicom", e, w{"https://rdap.zdnsgtld.com/unicom/"}, t},
1561 {"unicorn", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
15591562 {"university", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.university", "v0n1.nic.university", "v0n2.nic.university", "v0n3.nic.university", "v2n0.nic.university", "v2n1.nic.university"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.university", e, w{"https://rdap.donuts.co/rdap/"}, t},
15601563 {"uno", r, x, 0x40, "Radix FZC", e, w{"a.nic.uno", "b.nic.uno", "c.nic.uno", "d.nic.uno"}, n, n, w{"ar", "es", "he", "ja", "ko", "lo", "mul-Cyrl", "mul-Grek", "mul-Latn", "th", "zh"}, "whois.nic.uno", e, w{"https://rdap.centralnic.com/uno/"}, t},
1561 {"uol", r, x, 0x42, "UBN INTERNET LTDA.", "https://newgtlds.icann.org/", w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, w{"pt"}, "whois.gtlds.nic.br", e, w{"https://rdap.gtlds.nic.br/"}, t},
1562 {"ups", r, x, 0x42, "UPS Market Driver, Inc.", "https://newgtlds.icann.org/", w{"a0.nic.ups", "a2.nic.ups", "b0.nic.ups", "c0.nic.ups"}, n, n, n, "whois.nic.ups", e, w{"https://rdap.afilias-srs.net/rdap/ups/"}, f},
1564 {"uol", r, x, 0x42, "UBN INTERNET LTDA.", "https://nic.uol/", w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, w{"pt"}, "whois.gtlds.nic.br", e, w{"https://rdap.gtlds.nic.br/"}, t},
1565 {"ups", r, x, 0x42, "UPS Market Driver, Inc.", "https://www.ups.com/lasso/login?reasonCode=-1", w{"a0.nic.ups", "a2.nic.ups", "b0.nic.ups", "c0.nic.ups"}, n, n, n, "whois.nic.ups", e, w{"https://rdap.afilias-srs.net/rdap/ups/"}, f},
15631566 {"us", r, z[4713:4773], 0xa0, e, e, w{"b.cctld.us", "f.cctld.us", "k.cctld.us", "w.cctld.us", "x.cctld.us", "y.cctld.us"}, n, n, n, "whois.nic.us", e, n, f},
15641567 {"uy", r, z[4773:4779], 0xa0, e, e, w{"a.lactld.org", "a.nic.uy", "b.nic.uy", "d.nic.uy", "ns.dns.br", "ns1.anteldata.com.uy", "ns2.anteldata.com.uy", "ns3.nic.mx"}, n, n, n, "whois.nic.org.uy", e, n, f},
15651568 {"uz", r, z[4779:4793], 0xa0, e, e, w{"ns1.uz", "ns2.uz", "ns3.uz", "ns4.uz", "ns5.uz", "ns6.uz", "ns7.uz"}, n, n, n, "whois.cctld.uz", e, w{"http://cctld.uz:9000/"}, f},
15661569 {"va", r, x, 0xa0, e, e, w{"dns.nic.it", "john.vatican.va", "michael.vatican.va", "osiris.namex.it", "seth.namex.it", "va.cctld.authdns.ripe.net"}, n, n, n, "whois.iana.org", e, n, f},
15671570 {"vacations", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.vacations", "v0n1.nic.vacations", "v0n2.nic.vacations", "v0n3.nic.vacations", "v2n0.nic.vacations", "v2n1.nic.vacations"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.vacations", e, w{"https://rdap.donuts.co/rdap/"}, t},
1568 {"vana", r, x, 0x42, "Lifestyle Domain Holdings, Inc.", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.vana", e, w{"https://tld-rdap.verisign.com/vana/v1/"}, f},
1569 {"vanguard", r, x, 0x42, "The Vanguard Group, Inc.", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.vanguard", e, w{"https://tld-rdap.verisign.com/vanguard/v1/"}, f},
1570 {"vanish", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1571 {"vana", r, x, 0x42, "Lifestyle Domain Holdings, Inc.", "https://www.icann.org/en/registry-agreements/details/vana", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.vana", e, w{"https://tld-rdap.verisign.com/vana/v1/"}, f},
1572 {"vanguard", r, x, 0x42, "The Vanguard Group, Inc.", "https://www.icann.org/en/registry-agreements/details/vanguard", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.vanguard", e, w{"https://tld-rdap.verisign.com/vanguard/v1/"}, f},
1573 {"vanish", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
15711574 {"vc", r, z[4793:4796], 0xe0, e, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, n, "whois2.afilias-grs.net", e, n, f},
15721575 {"ve", r, z[4796:4807], 0xa8, e, e, w{"a.lactld.org", "ns3.nic.ve", "ns4.nic.ve", "ns5.nic.ve", "ns6.nic.ve", "ssdns-tld.nic.cl"}, n, n, w{"es"}, "whois.nic.ve", e, n, t},
1573 {"vegas", r, x, 0xc4, "Dot Vegas, Inc.", "http://nic.vegas/", w{"a0.nic.vegas", "a2.nic.vegas", "b0.nic.vegas", "c0.nic.vegas"}, n, w{"Las Vegas"}, n, "whois.nic.vegas", e, w{"https://rdap.afilias-srs.net/rdap/vegas/"}, f},
1576 {"vegas", r, x, 0xc4, "Dot Vegas, Inc.", "https://nic.vegas/", w{"a0.nic.vegas", "a2.nic.vegas", "b0.nic.vegas", "c0.nic.vegas"}, n, w{"Las Vegas"}, n, "whois.nic.vegas", e, w{"https://rdap.afilias-srs.net/rdap/vegas/"}, f},
15741577 {"ventures", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.ventures", "v0n1.nic.ventures", "v0n2.nic.ventures", "v0n3.nic.ventures", "v2n0.nic.ventures", "v2n1.nic.ventures"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.ventures", e, w{"https://rdap.donuts.co/rdap/"}, t},
1575 {"verisign", r, x, 0x42, "VeriSign, Inc.", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "el", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "uk", "zh"}, "whois.nic.verisign", e, w{"https://tld-rdap.verisign.com/verisign/v1/"}, t},
1576 {"xn--vermgensberater-ctb" /* vermögensberater */, r, x, 0x48, "Deutsche Vermögensberatung Aktiengesellschaft DVAG", "https://newgtlds.icann.org/", w{"a.nic.xn--vermgensberater-ctb", "b.nic.xn--vermgensberater-ctb", "c.nic.xn--vermgensberater-ctb", "d.nic.xn--vermgensberater-ctb"}, n, n, w{"de"}, "whois.nic.xn--vermgensberater-ctb", e, w{"https://rdap.centralnic.com/xn--vermgensberater-ctb/"}, t},
1577 {"xn--vermgensberatung-pwb" /* vermögensberatung */, r, x, 0x48, "Deutsche Vermögensberatung Aktiengesellschaft DVAG", "https://newgtlds.icann.org/", w{"a.nic.xn--vermgensberatung-pwb", "b.nic.xn--vermgensberatung-pwb", "c.nic.xn--vermgensberatung-pwb", "d.nic.xn--vermgensberatung-pwb"}, n, n, w{"de"}, "whois.nic.xn--vermgensberatung-pwb", e, w{"https://rdap.centralnic.com/xn--vermgensberatung-pwb/"}, t},
1578 {"verisign", r, x, 0x42, "VeriSign, Inc.", "https://www.icann.org/en/registry-agreements/details/verisign", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "el", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "uk", "zh"}, "whois.nic.verisign", e, w{"https://tld-rdap.verisign.com/verisign/v1/"}, t},
1579 {"xn--vermgensberater-ctb" /* vermögensberater */, r, x, 0x48, "Deutsche Vermögensberatung Aktiengesellschaft DVAG", "https://www.icann.org/en/registry-agreements/details/xn--vermgensberater-ctb", w{"a.nic.xn--vermgensberater-ctb", "b.nic.xn--vermgensberater-ctb", "c.nic.xn--vermgensberater-ctb", "d.nic.xn--vermgensberater-ctb"}, n, n, w{"de"}, "whois.nic.xn--vermgensberater-ctb", e, w{"https://rdap.centralnic.com/xn--vermgensberater-ctb/"}, t},
1580 {"xn--vermgensberatung-pwb" /* vermögensberatung */, r, x, 0x48, "Deutsche Vermögensberatung Aktiengesellschaft DVAG", "https://www.icann.org/en/registry-agreements/details/xn--vermgensberatung-pwb", w{"a.nic.xn--vermgensberatung-pwb", "b.nic.xn--vermgensberatung-pwb", "c.nic.xn--vermgensberatung-pwb", "d.nic.xn--vermgensberatung-pwb"}, n, n, w{"de"}, "whois.nic.xn--vermgensberatung-pwb", e, w{"https://rdap.centralnic.com/xn--vermgensberatung-pwb/"}, t},
15781581 {"versicherung", r, x, 0x40, "tldbox GmbH", e, w{"a.dns.nic.versicherung", "m.dns.nic.versicherung", "n.dns.nic.versicherung"}, n, n, w{"mul-Latn"}, "whois.nic.versicherung", e, w{"https://rdap.nic.versicherung/v1/"}, t},
15791582 {"vet", r, x, 0x40, "Dog Beach, LLC", e, w{"v0n0.nic.vet", "v0n1.nic.vet", "v0n2.nic.vet", "v0n3.nic.vet", "v2n0.nic.vet", "v2n1.nic.vet"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.vet", e, w{"https://rdap.donuts.co/rdap/"}, t},
15801583 {"vg", r, z[4807:4808], 0xa0, e, e, w{"a.nic.vg", "b.nic.vg", "c.nic.vg", "d.nic.vg"}, w{"88.198.29.97"}, n, n, "whois.nic.vg", e, w{"https://rdap.centralnic.com/vg/"}, f},
15811584 {"vi", r, z[4808:4814], 0xa8, e, "https://secure.nic.vi/", w{"auth100.ns.uu.net", "auth110.ns.uu.net", "ns3.nic.vi", "pch.nic.vi"}, n, n, n, e, "https://secure.nic.vi/whois-lookup/", n, f},
15821585 {"viajes", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.viajes", "v0n1.nic.viajes", "v0n2.nic.viajes", "v0n3.nic.viajes", "v2n0.nic.viajes", "v2n1.nic.viajes"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.viajes", e, w{"https://rdap.donuts.co/rdap/"}, t},
1583 {"video", r, x, 0x40, "Dog Beach, LLC", "https://newgtlds.icann.org/", w{"v0n0.nic.video", "v0n1.nic.video", "v0n2.nic.video", "v0n3.nic.video", "v2n0.nic.video", "v2n1.nic.video"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.video", e, w{"https://rdap.donuts.co/rdap/"}, t},
1584 {"vig", r, x, 0x42, "VIENNA INSURANCE GROUP AG Wiener Versicherung Gruppe", "https://newgtlds.icann.org/", w{"a0.nic.vig", "a2.nic.vig", "b0.nic.vig", "c0.nic.vig"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/vig/"}, f},
1585 {"viking", r, x, 0x42, "Viking River Cruises (Bermuda) Ltd.", "https://newgtlds.icann.org/", w{"a0.nic.viking", "a2.nic.viking", "b0.nic.viking", "c0.nic.viking"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/viking/"}, f},
1586 {"video", r, x, 0x40, "Dog Beach, LLC", "https://identity.digital/", w{"v0n0.nic.video", "v0n1.nic.video", "v0n2.nic.video", "v0n3.nic.video", "v2n0.nic.video", "v2n1.nic.video"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.video", e, w{"https://rdap.donuts.co/rdap/"}, t},
1587 {"vig", r, x, 0x42, "VIENNA INSURANCE GROUP AG Wiener Versicherung Gruppe", "https://nic.vig/en/home.html", w{"a0.nic.vig", "a2.nic.vig", "b0.nic.vig", "c0.nic.vig"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/vig/"}, f},
1588 {"viking", r, x, 0x42, "Viking River Cruises (Bermuda) Ltd.", "http://nic.viking/", w{"a0.nic.viking", "a2.nic.viking", "b0.nic.viking", "c0.nic.viking"}, n, n, n, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/viking/"}, f},
15861589 {"villas", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.villas", "v0n1.nic.villas", "v0n2.nic.villas", "v0n3.nic.villas", "v2n0.nic.villas", "v2n1.nic.villas"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.villas", e, w{"https://rdap.donuts.co/rdap/"}, t},
1587 {"vin", r, x, 0x40, "Binky Moon, LLC", "https://newgtlds.icann.org/", w{"v0n0.nic.vin", "v0n1.nic.vin", "v0n2.nic.vin", "v0n3.nic.vin", "v2n0.nic.vin", "v2n1.nic.vin"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.vin", e, w{"https://rdap.donuts.co/rdap/"}, t},
1590 {"vin", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.vin", "v0n1.nic.vin", "v0n2.nic.vin", "v0n3.nic.vin", "v2n0.nic.vin", "v2n1.nic.vin"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.vin", e, w{"https://rdap.donuts.co/rdap/"}, t},
15881591 {"vip", r, x, 0x40, "Registry Services, LLC", "http://nic.vip/", w{"a.nic.vip", "b.nic.vip", "c.nic.vip", "d.nic.vip"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "he", "it", "no", "ru", "sv", "zh"}, "whois.nic.vip", e, w{"https://rdap.nic.vip/"}, t},
1589 {"virgin", r, x, 0x42, "Virgin Enterprises Limited", "https://newgtlds.icann.org/", w{"dns1.nic.virgin", "dns2.nic.virgin", "dns3.nic.virgin", "dns4.nic.virgin", "dnsa.nic.virgin", "dnsb.nic.virgin", "dnsc.nic.virgin", "dnsd.nic.virgin"}, n, n, n, "whois.nic.virgin", e, w{"https://rdap.nominet.uk/virgin/"}, f},
1590 {"visa", r, x, 0x42, "Visa Worldwide Pte. Limited", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.visa", e, w{"https://tld-rdap.verisign.com/visa/v1/"}, t},
1592 {"virgin", r, x, 0x42, "Virgin Enterprises Limited", "http://nic.virgin/", w{"dns1.nic.virgin", "dns2.nic.virgin", "dns3.nic.virgin", "dns4.nic.virgin", "dnsa.nic.virgin", "dnsb.nic.virgin", "dnsc.nic.virgin", "dnsd.nic.virgin"}, n, n, n, "whois.nic.virgin", e, w{"https://rdap.nominet.uk/virgin/"}, f},
1593 {"visa", r, x, 0x42, "Visa Worldwide Pte. Limited", "https://usa.visa.com/legal/visa-nic.html", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.visa", e, w{"https://tld-rdap.verisign.com/visa/v1/"}, t},
15911594 {"vision", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.vision", "v0n1.nic.vision", "v0n2.nic.vision", "v0n3.nic.vision", "v2n0.nic.vision", "v2n1.nic.vision"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.vision", e, w{"https://rdap.donuts.co/rdap/"}, t},
1592 {"vista", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.vista", e, n, f},
1593 {"vistaprint", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.vistaprint", e, n, f},
1594 {"viva", r, x, 0x42, "Saudi Telecom Company", "https://newgtlds.icann.org/", w{"a.nic.viva", "b.nic.viva", "c.nic.viva", "d.nic.viva"}, n, n, n, "whois.nic.viva", e, w{"https://rdap.centralnic.com/viva/"}, f},
1595 {"vivo", r, x, 0x42, "Telefonica Brasil S.A.", "https://newgtlds.icann.org/", w{"a.nic.vivo", "b.nic.vivo", "c.nic.vivo", "ns1.dns.nic.vivo", "ns2.dns.nic.vivo", "ns3.dns.nic.vivo"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.vivo", e, w{"https://rdap.nic.vivo/"}, t},
1596 {"vlaanderen", r, x, 0x440, "DNS.be vzw", "https://newgtlds.icann.org/", w{"a.nsset.vlaanderen", "b.nsset.vlaanderen", "c.nsset.vlaanderen", "d.nsset.vlaanderen", "y.nsset.vlaanderen", "z.nsset.vlaanderen"}, n, w{"BE-VLG"}, w{"mul-Latn"}, "whois.nic.vlaanderen", e, w{"https://rdap.nic.vlaanderen/"}, t},
1595 {"vista", r, x, 0x842, e, e, n, n, n, n, "whois.nic.vista", e, n, f},
1596 {"vistaprint", r, x, 0x842, e, e, n, n, n, n, "whois.nic.vistaprint", e, n, f},
1597 {"viva", r, x, 0x42, "Saudi Telecom Company", "https://nic.viva/", w{"a.nic.viva", "b.nic.viva", "c.nic.viva", "d.nic.viva"}, n, n, n, "whois.nic.viva", e, w{"https://rdap.centralnic.com/viva/"}, f},
1598 {"vivo", r, x, 0x42, "Telefonica Brasil S.A.", "https://www.vivo.com.br/para-voce", w{"a.nic.vivo", "b.nic.vivo", "c.nic.vivo", "ns1.dns.nic.vivo", "ns2.dns.nic.vivo", "ns3.dns.nic.vivo"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.vivo", e, w{"https://rdap.nic.vivo/"}, t},
1599 {"vlaanderen", r, x, 0x440, "DNS.be vzw", "https://www.dnsbelgium.be/", w{"a.nsset.vlaanderen", "b.nsset.vlaanderen", "c.nsset.vlaanderen", "d.nsset.vlaanderen", "y.nsset.vlaanderen", "z.nsset.vlaanderen"}, n, w{"BE-VLG"}, w{"mul-Latn"}, "whois.nic.vlaanderen", e, w{"https://rdap.nic.vlaanderen/"}, t},
15971600 {"vn", r, z[4814:4826], 0xa0, e, e, w{"a.dns-servers.vn", "b.dns-servers.vn", "c.dns-servers.vn", "d.dns-servers.vn", "e.dns-servers.vn", "f.dns-servers.vn", "g.dns-servers.vn", "h.dns-servers.vn"}, n, n, n, e, "http://www.vnnic.vn/en/domain", n, t},
15981601 {"vodka", r, x, 0x40, "Registry Services, LLC", "http://nic.vodka/", w{"a.nic.vodka", "b.nic.vodka", "c.nic.vodka", "d.nic.vodka"}, n, n, w{"de", "es", "fr"}, "whois.nic.vodka", e, w{"https://rdap.nic.vodka/"}, t},
1599 {"volkswagen", r, x, 0x42, "Volkswagen Group of America Inc.", "https://newgtlds.icann.org/", w{"a0.nic.volkswagen", "a2.nic.volkswagen", "b0.nic.volkswagen", "c0.nic.volkswagen"}, n, n, w{"be", "bg", "bs", "da", "de", "es", "hu", "is", "ko", "lt", "lv", "mk", "pl", "ru", "sr", "sr-ME", "sv", "uk", "zh-Hans", "zh-Hant"}, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/volkswagen/"}, t},
1600 {"volvo", r, x, 0x42, "Volvo Holding Sverige Aktiebolag", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.volvo", e, w{"https://tld-rdap.verisign.com/volvo/v1/"}, f},
1601 {"vons", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1602 {"vote", r, x, 0x40, "Monolith Registry LLC", "https://get.vote/", w{"a0.nic.vote", "a2.nic.vote", "b0.nic.vote", "c0.nic.vote"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.vote", e, w{"https://rdap.donuts.co/rdap/"}, t},
1602 {"volkswagen", r, x, 0x42, "Volkswagen Group of America Inc.", "http://nic.volkswagen/", w{"a0.nic.volkswagen", "a2.nic.volkswagen", "b0.nic.volkswagen", "c0.nic.volkswagen"}, n, n, w{"be", "bg", "bs", "da", "de", "es", "hu", "is", "ko", "lt", "lv", "mk", "pl", "ru", "sr", "sr-ME", "sv", "uk", "zh-Hans", "zh-Hant"}, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/volkswagen/"}, t},
1603 {"volvo", r, x, 0x42, "Volvo Holding Sverige Aktiebolag", "https://www.nic.volvo/en/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.volvo", e, w{"https://tld-rdap.verisign.com/volvo/v1/"}, f},
1604 {"vons", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
1605 {"vote", r, x, 0x40, "Monolith Registry LLC", "http://nic.vote/", w{"a0.nic.vote", "a2.nic.vote", "b0.nic.vote", "c0.nic.vote"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.vote", e, w{"https://rdap.donuts.co/rdap/"}, t},
16031606 {"voting", r, x, 0x40, "Valuetainment Corp.", e, w{"a.nic.voting", "b.nic.voting", "c.nic.voting", "d.nic.voting"}, n, n, w{"mul-Cyrl", "mul-Latn"}, "whois.nic.voting", e, w{"https://rdap.nic.voting/v1/"}, t},
1604 {"voto", r, x, 0x40, "Monolith Registry LLC", "https://get.voto/", w{"a0.nic.voto", "a2.nic.voto", "b0.nic.voto", "c0.nic.voto"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.voto", e, w{"https://rdap.donuts.co/rdap/"}, t},
1607 {"voto", r, x, 0x40, "Monolith Registry LLC", "http://nic.voto/", w{"a0.nic.voto", "a2.nic.voto", "b0.nic.voto", "c0.nic.voto"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.voto", e, w{"https://rdap.donuts.co/rdap/"}, t},
16051608 {"voyage", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.voyage", "v0n1.nic.voyage", "v0n2.nic.voyage", "v0n3.nic.voyage", "v2n0.nic.voyage", "v2n1.nic.voyage"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.voyage", e, w{"https://rdap.donuts.co/rdap/"}, t},
16061609 {"vu", r, z[4826:4831], 0xa0, e, e, w{"ns1.tldns.vu", "ns2.tldns.vu", "ns3.tldns.vu", "ns4.tldns.vu"}, n, n, n, "whois.dnrs.vu", e, n, f},
1607 {"vuelos", r, x, 0x40, "Travel Reservations SRL", "https://newgtlds.icann.org/", w{"a.nic.vuelos", "b.nic.vuelos", "c.nic.vuelos", "ns1.dns.nic.vuelos", "ns2.dns.nic.vuelos", "ns3.dns.nic.vuelos"}, n, n, w{"es"}, "whois.nic.vuelos", e, w{"https://rdap.nic.vuelos/"}, t},
1610 {"vuelos", r, x, 0x40, "Travel Reservations SRL", "http://nic.vuelos/", w{"a.nic.vuelos", "b.nic.vuelos", "c.nic.vuelos", "ns1.dns.nic.vuelos", "ns2.dns.nic.vuelos", "ns3.dns.nic.vuelos"}, n, n, w{"es"}, "whois.nic.vuelos", e, w{"https://rdap.nic.vuelos/"}, t},
16081611 {"wales", r, x, 0x4c0, "Nominet UK", "https://ourhomeonline.wales/", w{"dns1.nic.wales", "dns2.nic.wales", "dns3.nic.wales", "dns4.nic.wales", "dnsa.nic.wales", "dnsb.nic.wales", "dnsc.nic.wales", "dnsd.nic.wales"}, n, w{"GB-WLS"}, w{"cy"}, "whois.nic.wales", e, w{"https://rdap.nominet.uk/wales/"}, t},
1609 {"walmart", r, x, 0x42, "Wal-Mart Stores, Inc.", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.walmart", e, w{"https://tld-rdap.verisign.com/walmart/v1/"}, f},
1610 {"walter", r, x, 0x42, "Sandvik AB", "https://newgtlds.icann.org/", w{"a.nic.walter", "b.nic.walter", "c.nic.walter", "d.nic.walter"}, n, n, w{"da", "fr", "pl", "ru", "sv", "zh"}, "whois.nic.walter", e, w{"https://rdap.nic.walter/"}, t},
1611 {"wang", r, x, 0x40, "Zodiac Wang Limited", e, w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.gtld.knet.cn", e, w{"https://rdap.zdnsgtld.com/wang/"}, t},
1612 {"wanggou", r, x, 0x48, "Amazon Registry Services, Inc.", "https://newgtlds.icann.org/", w{"dns1.nic.wanggou", "dns2.nic.wanggou", "dns3.nic.wanggou", "dns4.nic.wanggou", "dnsa.nic.wanggou", "dnsb.nic.wanggou", "dnsc.nic.wanggou", "dnsd.nic.wanggou"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.wanggou", e, w{"https://rdap.nominet.uk/wanggou/"}, t},
1613 {"warman", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.warman", e, n, f},
1612 {"walmart", r, x, 0x42, "Wal-Mart Stores, Inc.", "https://www.icann.org/en/registry-agreements/details/walmart", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.walmart", e, w{"https://tld-rdap.verisign.com/walmart/v1/"}, f},
1613 {"walter", r, x, 0x42, "Sandvik AB", "https://www.walter-tools.com/en-gb/company/mission_facts/legal_notice/pages/nic-walter.aspx", w{"a.nic.walter", "b.nic.walter", "c.nic.walter", "d.nic.walter"}, n, n, w{"da", "fr", "pl", "ru", "sv", "zh"}, "whois.nic.walter", e, w{"https://rdap.nic.walter/"}, t},
1614 {"wang", r, x, 0x40, "Zodiac Wang Limited", e, w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.nic.wang", e, w{"https://rdap.zdnsgtld.com/wang/"}, t},
1615 {"wanggou", r, x, 0x48, "Amazon Registry Services, Inc.", "https://nic.wanggou/", w{"dns1.nic.wanggou", "dns2.nic.wanggou", "dns3.nic.wanggou", "dns4.nic.wanggou", "dnsa.nic.wanggou", "dnsb.nic.wanggou", "dnsc.nic.wanggou", "dnsd.nic.wanggou"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.wanggou", e, w{"https://rdap.nominet.uk/wanggou/"}, t},
1616 {"warman", r, x, 0x842, e, e, n, n, n, n, "whois.nic.warman", e, n, f},
16141617 {"watch", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.watch", "v0n1.nic.watch", "v0n2.nic.watch", "v0n3.nic.watch", "v2n0.nic.watch", "v2n1.nic.watch"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.watch", e, w{"https://rdap.donuts.co/rdap/"}, t},
1615 {"watches", r, x, 0x40, "Identity Digital Limited", "https://newgtlds.icann.org/", w{"a0.nic.watches", "a2.nic.watches", "b0.nic.watches", "c0.nic.watches"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "pl", "pt", "ru", "sv", "zh-Hans", "zh-TW"}, "whois.nic.watches", e, w{"https://rdap.donuts.co/rdap/"}, t},
1616 {"weather", r, x, 0x40, "International Business Machines Corporation", "https://newgtlds.icann.org/", w{"ns1.dns.nic.weather", "ns2.dns.nic.weather", "ns3.dns.nic.weather", "ns4.dns.nic.weather", "ns5.dns.nic.weather", "ns6.dns.nic.weather"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.weather", e, w{"https://rdap.nic.weather/"}, t},
1617 {"weatherchannel", r, x, 0x42, "International Business Machines Corporation", "https://newgtlds.icann.org/", w{"ns1.dns.nic.weatherchannel", "ns2.dns.nic.weatherchannel", "ns3.dns.nic.weatherchannel", "ns4.dns.nic.weatherchannel", "ns5.dns.nic.weatherchannel", "ns6.dns.nic.weatherchannel"}, n, n, n, "whois.nic.weatherchannel", e, w{"https://rdap.nic.weatherchannel/"}, f},
1618 {"web", r, x, 0x40, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1619 {"webcam", r, x, 0x40, "dot Webcam Limited", "https://www.famousfourmedia.com/", w{"a.nic.webcam", "b.nic.webcam", "c.nic.webcam", "ns1.dns.nic.webcam", "ns2.dns.nic.webcam", "ns3.dns.nic.webcam"}, n, n, w{"da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.webcam", e, w{"https://rdap.nic.webcam/"}, t},
1620 {"weber", r, x, 0x42, "Saint-Gobain Weber SA", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"mul-Arab", "mul-Cyrl", "mul-Hang", "mul-Hani", "mul-Latn"}, "whois.nic.weber", e, w{"https://tld-rdap.verisign.com/weber/v1/"}, t},
1621 {"webjet", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1622 {"webs", r, x, 0x40, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1618 {"watches", r, x, 0x40, "Identity Digital Limited", "https://identity.digital/", w{"a0.nic.watches", "a2.nic.watches", "b0.nic.watches", "c0.nic.watches"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "pl", "pt", "ru", "sv", "zh-Hans", "zh-TW"}, "whois.nic.watches", e, w{"https://rdap.donuts.co/rdap/"}, t},
1619 {"weather", r, x, 0x40, "International Business Machines Corporation", "http://www.nic.weather/", w{"ns1.dns.nic.weather", "ns2.dns.nic.weather", "ns3.dns.nic.weather", "ns4.dns.nic.weather", "ns5.dns.nic.weather", "ns6.dns.nic.weather"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.weather", e, w{"https://rdap.nic.weather/"}, t},
1620 {"weatherchannel", r, x, 0x42, "International Business Machines Corporation", "http://www.nic.weatherchannel/", w{"ns1.dns.nic.weatherchannel", "ns2.dns.nic.weatherchannel", "ns3.dns.nic.weatherchannel", "ns4.dns.nic.weatherchannel", "ns5.dns.nic.weatherchannel", "ns6.dns.nic.weatherchannel"}, n, n, n, "whois.nic.weatherchannel", e, w{"https://rdap.nic.weatherchannel/"}, f},
1621 {"web", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
1622 {"webcam", r, x, 0x40, "dot Webcam Limited", "http://nic.webcam/", w{"a.nic.webcam", "b.nic.webcam", "c.nic.webcam", "ns1.dns.nic.webcam", "ns2.dns.nic.webcam", "ns3.dns.nic.webcam"}, n, n, w{"da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.webcam", e, w{"https://rdap.nic.webcam/"}, t},
1623 {"weber", r, x, 0x42, "Saint-Gobain Weber SA", "https://nic.weber/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"mul-Arab", "mul-Cyrl", "mul-Hang", "mul-Hani", "mul-Latn"}, "whois.nic.weber", e, w{"https://tld-rdap.verisign.com/weber/v1/"}, t},
1624 {"webjet", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
1625 {"webs", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
16231626 {"website", r, x, 0x40, "Radix FZC", e, w{"a.nic.website", "b.nic.website", "e.nic.website", "f.nic.website"}, n, n, w{"ar", "he", "ja", "ko", "lo", "mul-Cyrl", "mul-Grek", "mul-Latn", "th", "zh"}, "whois.nic.website", e, w{"https://rdap.centralnic.com/website/"}, t},
1624 {"wed", r, x, 0x40, e, "https://newgtlds.icann.org/", w{"dns1.emdns.uk", "dns2.emdns.uk", "dns3.emdns.uk", "dns4.emdns.uk", "dnsa.emdns.uk", "dnsb.emdns.uk", "dnsc.emdns.uk", "dnsd.emdns.uk"}, n, n, n, "whois.nic.wed", e, w{"https://rdap.nominet.uk/wed/"}, f},
1627 {"wed", r, x, 0x40, e, "https://www.icann.org/resources/pages/ebero-2013-04-02-en", w{"dns1.emdns.uk", "dns2.emdns.uk", "dns3.emdns.uk", "dns4.emdns.uk", "dnsa.emdns.uk", "dnsb.emdns.uk", "dnsc.emdns.uk", "dnsd.emdns.uk"}, n, n, n, "whois.nic.wed", e, w{"https://rdap.nominet.uk/wed/"}, f},
16251628 {"wedding", r, x, 0x40, "Registry Services, LLC", "http://nic.wedding/", w{"a.nic.wedding", "b.nic.wedding", "c.nic.wedding", "d.nic.wedding"}, n, n, w{"de", "es", "fr", "zh"}, "whois.nic.wedding", e, w{"https://rdap.nic.wedding/"}, t},
1626 {"weibo", r, x, 0x40, "Sina Corporation", "https://newgtlds.icann.org/", w{"a0.nic.weibo", "a2.nic.weibo", "b0.nic.weibo", "c0.nic.weibo"}, n, n, w{"zh-CN", "zh-TW"}, "whois.nic.weibo", e, w{"https://rdap.afilias-srs.net/rdap/weibo/"}, t},
1627 {"weir", r, x, 0x42, "Weir Group IP Limited", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, w{"https://tld-rdap.verisign.com/weir/v1/"}, f},
1629 {"weibo", r, x, 0x40, "Sina Corporation", "https://www.icann.org/en/registry-agreements/details/weibo", w{"a0.nic.weibo", "a2.nic.weibo", "b0.nic.weibo", "c0.nic.weibo"}, n, n, w{"zh-CN", "zh-TW"}, "whois.nic.weibo", e, w{"https://rdap.afilias-srs.net/rdap/weibo/"}, t},
1630 {"weir", r, x, 0x42, "Weir Group IP Limited", "http://nic.weir/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, w{"https://tld-rdap.verisign.com/weir/v1/"}, f},
16281631 {"wf", r, x, 0xa0, e, e, w{"d.nic.fr", "e.ext.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, n, "whois.nic.wf", e, w{"https://rdap.nic.wf/"}, t},
1629 {"whoswho", r, x, 0x40, "Who's Who Registry", "https://newgtlds.icann.org/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, w{"de", "es", "fr", "ja", "ko", "pl", "pt", "ru", "zh"}, "whois.nic.whoswho", e, w{"https://rdap.nic.whoswho/"}, t},
1632 {"whoswho", r, x, 0x40, "Who's Who Registry", "https://internet.whoswho/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, w{"de", "es", "fr", "ja", "ko", "pl", "pt", "ru", "zh"}, "whois.nic.whoswho", e, w{"https://rdap.nic.whoswho/"}, t},
16301633 {"wien", r, x, 0xc4, "punkt.wien GmbH", e, w{"dns.ryce-rsp.com", "ns1.dns.business", "ns1.ryce-rsp.com"}, n, w{"Vienna", "AT-9"}, w{"mul-Latn"}, "whois.nic.wien", e, w{"https://rdap.ryce-rsp.com/rdap/"}, t},
16311634 {"wiki", r, x, 0x40, "Top Level Design, LLC", e, w{"a.nic.wiki", "b.nic.wiki", "c.nic.wiki", "d.nic.wiki"}, n, n, w{"ar", "he", "ja", "ko", "lo", "mul-Cyrl", "mul-Grek", "mul-Latn", "th", "zh"}, "whois.nic.wiki", e, w{"https://rdap.nic.wiki/"}, t},
1632 {"williamhill", r, x, 0x42, "William Hill Organization Limited", "https://newgtlds.icann.org/", w{"a.nic.williamhill", "b.nic.williamhill", "c.nic.williamhill", "ns1.dns.nic.williamhill", "ns2.dns.nic.williamhill", "ns3.dns.nic.williamhill"}, n, n, n, "whois.nic.williamhill", e, w{"https://rdap.nic.williamhill/"}, f},
1633 {"wilmar", r, x, 0x42, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1634 {"win", r, x, 0x40, "First Registry Limited", "https://www.famousfourmedia.com/", w{"a.nic.win", "b.nic.win", "c.nic.win", "ns1.dns.nic.win", "ns2.dns.nic.win", "ns3.dns.nic.win"}, n, n, w{"da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.win", e, w{"https://rdap.nic.win/"}, t},
1635 {"windows", r, x, 0x42, "Microsoft Corporation", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, e, e, w{"https://tld-rdap.verisign.com/windows/v1/"}, t},
1636 {"wine", r, x, 0x40, "Binky Moon, LLC", "https://newgtlds.icann.org/", w{"v0n0.nic.wine", "v0n1.nic.wine", "v0n2.nic.wine", "v0n3.nic.wine", "v2n0.nic.wine", "v2n1.nic.wine"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.wine", e, w{"https://rdap.donuts.co/rdap/"}, t},
1637 {"winners", r, x, 0x42, "The TJX Companies, Inc.", "https://newgtlds.icann.org/", w{"a.nic.winners", "b.nic.winners", "c.nic.winners", "ns1.dns.nic.winners", "ns2.dns.nic.winners", "ns3.dns.nic.winners"}, n, n, n, "whois.nic.winners", e, w{"https://rdap.nic.winners/"}, f},
1638 {"wme", r, x, 0x42, "William Morris Endeavor Entertainment, LLC", "https://newgtlds.icann.org/", w{"a.nic.wme", "b.nic.wme", "c.nic.wme", "d.nic.wme"}, n, n, w{"de"}, "whois.nic.wme", e, w{"https://rdap.centralnic.com/wme/"}, t},
1639 {"wolterskluwer", r, x, 0x42, "Wolters Kluwer N.V.", "https://newgtlds.icann.org/", w{"a0.nic.wolterskluwer", "a2.nic.wolterskluwer", "b0.nic.wolterskluwer", "c0.nic.wolterskluwer"}, n, n, w{"be", "bg", "bs", "da", "de", "es", "hu", "is", "ko", "lt", "lv", "mk", "pl", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.wolterskluwer", e, w{"https://rdap.afilias-srs.net/rdap/wolterskluwer/"}, t},
1640 {"woodside", r, x, 0x42, "Woodside Petroleum Limited", "https://newgtlds.icann.org/", w{"a.nic.woodside", "b.nic.woodside", "c.nic.woodside", "d.nic.woodside"}, n, n, n, "whois.nic.woodside", e, w{"https://rdap.nic.woodside/"}, f},
1635 {"williamhill", r, x, 0x42, "William Hill Organization Limited", "https://nic.williamhill/", w{"a.nic.williamhill", "b.nic.williamhill", "c.nic.williamhill", "ns1.dns.nic.williamhill", "ns2.dns.nic.williamhill", "ns3.dns.nic.williamhill"}, n, n, n, "whois.nic.williamhill", e, w{"https://rdap.nic.williamhill/"}, f},
1636 {"wilmar", r, x, 0x4042, e, e, n, n, n, n, e, e, n, f},
1637 {"win", r, x, 0x40, "First Registry Limited", "http://nic.win/", w{"a.nic.win", "b.nic.win", "c.nic.win", "ns1.dns.nic.win", "ns2.dns.nic.win", "ns3.dns.nic.win"}, n, n, w{"da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.win", e, w{"https://rdap.nic.win/"}, t},
1638 {"windows", r, x, 0x42, "Microsoft Corporation", "https://nic.windows/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, e, e, w{"https://tld-rdap.verisign.com/windows/v1/"}, t},
1639 {"wine", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.wine", "v0n1.nic.wine", "v0n2.nic.wine", "v0n3.nic.wine", "v2n0.nic.wine", "v2n1.nic.wine"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.wine", e, w{"https://rdap.donuts.co/rdap/"}, t},
1640 {"winners", r, x, 0x42, "The TJX Companies, Inc.", "http://nic.winners/", w{"a.nic.winners", "b.nic.winners", "c.nic.winners", "ns1.dns.nic.winners", "ns2.dns.nic.winners", "ns3.dns.nic.winners"}, n, n, n, "whois.nic.winners", e, w{"https://rdap.nic.winners/"}, f},
1641 {"wme", r, x, 0x42, "William Morris Endeavor Entertainment, LLC", "https://nic.wme/", w{"a.nic.wme", "b.nic.wme", "c.nic.wme", "d.nic.wme"}, n, n, w{"de"}, "whois.nic.wme", e, w{"https://rdap.centralnic.com/wme/"}, t},
1642 {"wolterskluwer", r, x, 0x42, "Wolters Kluwer N.V.", "http://nic.wolterskluwer/", w{"a0.nic.wolterskluwer", "a2.nic.wolterskluwer", "b0.nic.wolterskluwer", "c0.nic.wolterskluwer"}, n, n, w{"be", "bg", "bs", "da", "de", "es", "hu", "is", "ko", "lt", "lv", "mk", "pl", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.wolterskluwer", e, w{"https://rdap.afilias-srs.net/rdap/wolterskluwer/"}, t},
1643 {"woodside", r, x, 0x42, "Woodside Petroleum Limited", "http://nic.woodside/", w{"a.nic.woodside", "b.nic.woodside", "c.nic.woodside", "d.nic.woodside"}, n, n, n, "whois.nic.woodside", e, w{"https://rdap.nic.woodside/"}, f},
16411644 {"work", r, x, 0x40, "Registry Services, LLC", "http://nic.work/", w{"a.nic.work", "b.nic.work", "c.nic.work", "d.nic.work"}, n, n, w{"de", "es", "fr", "zh"}, "whois.nic.work", e, w{"https://rdap.nic.work/"}, t},
16421645 {"works", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.works", "v0n1.nic.works", "v0n2.nic.works", "v0n3.nic.works", "v2n0.nic.works", "v2n1.nic.works"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.works", e, w{"https://rdap.donuts.co/rdap/"}, t},
1643 {"world", r, x, 0x40, "Binky Moon, LLC", "https://newgtlds.icann.org/", w{"v0n0.nic.world", "v0n1.nic.world", "v0n2.nic.world", "v0n3.nic.world", "v2n0.nic.world", "v2n1.nic.world"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.world", e, w{"https://rdap.donuts.co/rdap/"}, t},
1644 {"wow", r, x, 0x40, "Amazon Registry Services, Inc.", "https://newgtlds.icann.org/", w{"dns1.nic.wow", "dns2.nic.wow", "dns3.nic.wow", "dns4.nic.wow", "dnsa.nic.wow", "dnsb.nic.wow", "dnsc.nic.wow", "dnsd.nic.wow"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.wow", e, w{"https://rdap.nominet.uk/wow/"}, t},
1645 {"ws", r, z[4831:4836], 0xe0, e, "https://www.worldsite.ws/", w{"a.dns.ws", "ns2.dns.ws", "ns5.dns.ws", "s.dns.ws", "us3.dns.ws", "us4.dns.ws"}, w{"64.70.19.203"}, n, n, "whois.website.ws", e, n, t},
1646 {"wtc", r, x, 0x42, "World Trade Centers Association, Inc.", "https://newgtlds.icann.org/", w{"a.nic.wtc", "b.nic.wtc", "c.nic.wtc", "d.nic.wtc"}, n, n, n, "whois.nic.wtc", e, w{"https://rdap.nic.wtc/"}, f},
1646 {"world", r, x, 0x40, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.world", "v0n1.nic.world", "v0n2.nic.world", "v0n3.nic.world", "v2n0.nic.world", "v2n1.nic.world"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.world", e, w{"https://rdap.donuts.co/rdap/"}, t},
1647 {"wow", r, x, 0x40, "Amazon Registry Services, Inc.", "https://nic.wow/", w{"dns1.nic.wow", "dns2.nic.wow", "dns3.nic.wow", "dns4.nic.wow", "dnsa.nic.wow", "dnsb.nic.wow", "dnsc.nic.wow", "dnsd.nic.wow"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.wow", e, w{"https://rdap.nominet.uk/wow/"}, t},
1648 {"ws", r, z[4831:4836], 0xe0, e, "https://www.worldsite.ws/", w{"a.dns.ws", "ns2.dns.ws", "ns5.dns.ws", "s.dns.ws", "us3.dns.ws", "us4.dns.ws"}, w{"64.70.19.203"}, n, n, "whois.worldsite.ws", e, n, t},
1649 {"wtc", r, x, 0x42, "World Trade Centers Association, Inc.", "http://nic.wtc/", w{"a.nic.wtc", "b.nic.wtc", "c.nic.wtc", "d.nic.wtc"}, n, n, n, "whois.nic.wtc", e, w{"https://rdap.nic.wtc/"}, f},
16471650 {"wtf", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.wtf", "v0n1.nic.wtf", "v0n2.nic.wtf", "v0n3.nic.wtf", "v2n0.nic.wtf", "v2n1.nic.wtf"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.wtf", e, w{"https://rdap.donuts.co/rdap/"}, t},
1648 {"xbox", r, x, 0x42, "Microsoft Corporation", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, e, e, w{"https://tld-rdap.verisign.com/xbox/v1/"}, t},
1649 {"xerox", r, x, 0x42, "Xerox DNHC LLC", "https://newgtlds.icann.org/", w{"a.nic.xerox", "b.nic.xerox", "c.nic.xerox", "d.nic.xerox"}, n, n, n, "whois.nic.xerox", e, w{"https://tld-rdap.verisign.com/xerox/v1/"}, f},
1650 {"xfinity", r, x, 0x42, "Comcast IP Holdings I, LLC", "https://newgtlds.icann.org/", w{"dns1.nic.xfinity", "dns2.nic.xfinity", "dns3.nic.xfinity", "dns4.nic.xfinity", "dnsa.nic.xfinity", "dnsb.nic.xfinity", "dnsc.nic.xfinity", "dnsd.nic.xfinity"}, n, n, n, "whois.nic.xfinity", e, w{"https://rdap.nominet.uk/xfinity/"}, f},
1651 {"xihuan", r, x, 0x40, "Beijing Qihu Keji Co., Ltd.", "https://newgtlds.icann.org/", w{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, n, "whois.teleinfo.cn", e, w{"https://rdap.teleinfo.cn/"}, f},
1652 {"xin", r, x, 0x40, "Elegant Leader Limited", "https://newgtlds.icann.org/", w{"a0.nic.xin", "a2.nic.xin", "b0.nic.xin", "c0.nic.xin"}, n, n, n, "whois.nic.xin", e, w{"https://rdap.aceregistry.net/rdap/xin/"}, f},
1653 {"xperia", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.xperia", e, n, f},
1651 {"xbox", r, x, 0x42, "Microsoft Corporation", "https://nic.xbox/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, e, e, w{"https://tld-rdap.verisign.com/xbox/v1/"}, t},
1652 {"xerox", r, x, 0x42, "Xerox DNHC LLC", "http://nic.xerox/", w{"a.nic.xerox", "b.nic.xerox", "c.nic.xerox", "d.nic.xerox"}, n, n, n, "whois.nic.xerox", e, w{"https://tld-rdap.verisign.com/xerox/v1/"}, f},
1653 {"xfinity", r, x, 0x42, "Comcast IP Holdings I, LLC", "https://nic.xfinity/", w{"dns1.nic.xfinity", "dns2.nic.xfinity", "dns3.nic.xfinity", "dns4.nic.xfinity", "dnsa.nic.xfinity", "dnsb.nic.xfinity", "dnsc.nic.xfinity", "dnsd.nic.xfinity"}, n, n, n, "whois.nic.xfinity", e, w{"https://rdap.nominet.uk/xfinity/"}, f},
1654 {"xihuan", r, x, 0x40, "Beijing Qihu Keji Co., Ltd.", "https://www.icann.org/en/registry-agreements/details/xihuan", w{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, n, "whois.teleinfo.cn", e, w{"https://rdap.teleinfo.cn/"}, f},
1655 {"xin", r, x, 0x40, "Elegant Leader Limited", "https://nic.xin/", w{"a0.nic.xin", "a2.nic.xin", "b0.nic.xin", "c0.nic.xin"}, n, n, n, "whois.nic.xin", e, w{"https://rdap.aceregistry.net/rdap/xin/"}, f},
1656 {"xperia", r, x, 0x842, e, e, n, n, n, n, "whois.nic.xperia", e, n, f},
16541657 {"xxx", r, x, 0x41, "ICM Registry LLC", "https://nic.xxx/", w{"a.nic.xxx", "b.nic.xxx", "c.nic.xxx", "d.nic.xxx"}, n, n, w{"be", "bg", "bs", "cnr", "da", "de", "es", "fr", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.xxx", e, w{"https://rdap.nic.xxx/"}, t},
16551658 {"xyz", r, x, 0x40, "XYZ.COM LLC", e, w{"generationxyz.nic.xyz", "x.nic.xyz", "y.nic.xyz", "z.nic.xyz"}, n, n, w{"ar", "he", "ja", "ko", "lo", "mul-Grek", "mul-Latn", "ru", "th", "zh"}, "whois.nic.xyz", e, w{"https://rdap.centralnic.com/xyz/"}, t},
1656 {"yachts", r, x, 0x40, "XYZ.COM LLC", "https://newgtlds.icann.org/", w{"a.nic.yachts", "b.nic.yachts", "c.nic.yachts", "d.nic.yachts"}, n, n, n, "whois.nic.yachts", e, w{"https://rdap.centralnic.com/yachts/"}, f},
1657 {"yahoo", r, x, 0x42, "Oath Inc.", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.yahoo", e, w{"https://tld-rdap.verisign.com/yahoo/v1/"}, t},
1658 {"yamaxun", r, x, 0x42, "Amazon Registry Services, Inc.", "https://newgtlds.icann.org/", w{"dns1.nic.yamaxun", "dns2.nic.yamaxun", "dns3.nic.yamaxun", "dns4.nic.yamaxun", "dnsa.nic.yamaxun", "dnsb.nic.yamaxun", "dnsc.nic.yamaxun", "dnsd.nic.yamaxun"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.yamaxun", e, w{"https://rdap.nominet.uk/yamaxun/"}, t},
1659 {"yandex", r, x, 0x42, "Yandex Europe B.V.", "https://newgtlds.icann.org/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, "whois.nic.yandex", e, w{"https://rdap.nic.yandex/"}, f},
1659 {"yachts", r, x, 0x40, "XYZ.COM LLC", "https://nic.yachts/", w{"a.nic.yachts", "b.nic.yachts", "c.nic.yachts", "d.nic.yachts"}, n, n, n, "whois.nic.yachts", e, w{"https://rdap.centralnic.com/yachts/"}, f},
1660 {"yahoo", r, x, 0x42, "Oath Inc.", "https://gtldyahoo.tumblr.com/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.yahoo", e, w{"https://tld-rdap.verisign.com/yahoo/v1/"}, t},
1661 {"yamaxun", r, x, 0x42, "Amazon Registry Services, Inc.", "https://nic.yamaxun/", w{"dns1.nic.yamaxun", "dns2.nic.yamaxun", "dns3.nic.yamaxun", "dns4.nic.yamaxun", "dnsa.nic.yamaxun", "dnsb.nic.yamaxun", "dnsc.nic.yamaxun", "dnsd.nic.yamaxun"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.yamaxun", e, w{"https://rdap.nominet.uk/yamaxun/"}, t},
1662 {"yandex", r, x, 0x42, "Yandex Europe B.V.", "https://nic.yandex/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, "whois.nic.yandex", e, w{"https://rdap.nic.yandex/"}, f},
16601663 {"ye", r, z[4836:4844], 0xa8, e, e, w{"ns1.yemen.net.ye", "ns2.yemen.net.ye", "sah1.ye", "sah2.ye"}, n, n, n, e, e, n, f},
1661 {"yellowpages", r, x, 0x48, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1662 {"yodobashi", r, x, 0x42, "YODOBASHI CAMERA CO.,LTD.", "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ja"}, "whois.nic.gmo", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
1664 {"yellowpages", r, x, 0x4048, e, e, n, n, n, n, e, e, n, f},
1665 {"yodobashi", r, x, 0x42, "YODOBASHI CAMERA CO.,LTD.", "https://nic.yodobashi/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, w{"ja"}, "whois.nic.gmo", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
16631666 {"yoga", r, x, 0x40, "Registry Services, LLC", "http://nic.yoga/", w{"a.nic.yoga", "b.nic.yoga", "c.nic.yoga", "d.nic.yoga"}, n, n, w{"de", "es", "fr", "zh"}, "whois.nic.yoga", e, w{"https://rdap.nic.yoga/"}, t},
16641667 {"yokohama", r, x, 0xc4, "GMO Registry, Inc.", e, w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, w{"Yokohama"}, w{"ja"}, "whois.nic.yokohama", e, w{"https://rdap.gmoregistry.net/rdap/"}, t},
1665 {"you", r, x, 0x40, "Amazon Registry Services, Inc.", "https://newgtlds.icann.org/", w{"dns1.nic.you", "dns2.nic.you", "dns3.nic.you", "dns4.nic.you", "dnsa.nic.you", "dnsb.nic.you", "dnsc.nic.you", "dnsd.nic.you"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.you", e, w{"https://rdap.nominet.uk/you/"}, t},
1668 {"you", r, x, 0x40, "Amazon Registry Services, Inc.", "https://nic.you/", w{"dns1.nic.you", "dns2.nic.you", "dns3.nic.you", "dns4.nic.you", "dnsa.nic.you", "dnsb.nic.you", "dnsc.nic.you", "dnsd.nic.you"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.you", e, w{"https://rdap.nominet.uk/you/"}, t},
16661669 {"youtube", r, x, 0x42, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
16671670 {"yt", r, x, 0xa0, e, e, w{"d.nic.fr", "e.ext.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, n, "whois.nic.yt", e, w{"https://rdap.nic.yt/"}, t},
16681671 {"yu", r, z[4844:4850], 0x8a0, e, e, n, n, n, n, e, e, n, f},
1669 {"yun", r, x, 0x40, "Beijing Qihu Keji Co., Ltd.", "https://newgtlds.icann.org/", w{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, n, "whois.teleinfo.cn", e, w{"https://rdap.teleinfo.cn/"}, f},
1672 {"yun", r, x, 0x40, "Beijing Qihu Keji Co., Ltd.", "https://www.icann.org/en/registry-agreements/details/yun", w{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, n, "whois.teleinfo.cn", e, w{"https://rdap.teleinfo.cn/"}, f},
16701673 {"za", r, z[4850:4877], 0xa8, e, e, w{"nsza.is.co.za", "za-ns.anycast.pch.net", "za1.dnsnode.net"}, n, n, n, "whois.nic.za", e, n, f},
1671 {"zappos", r, x, 0x42, "Amazon Registry Services, Inc.", "https://newgtlds.icann.org/", w{"dns1.nic.zappos", "dns2.nic.zappos", "dns3.nic.zappos", "dns4.nic.zappos", "dnsa.nic.zappos", "dnsb.nic.zappos", "dnsc.nic.zappos", "dnsd.nic.zappos"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.zappos", e, w{"https://rdap.nominet.uk/zappos/"}, t},
1672 {"zara", r, x, 0x42, "Industria de Diseño Textil, S.A. (INDITEX, S.A.)", "https://newgtlds.icann.org/", w{"a0.nic.zara", "a2.nic.zara", "b0.nic.zara", "c0.nic.zara"}, n, n, w{"be", "bg", "bs", "da", "de", "es", "hu", "is", "ko", "lt", "lv", "mk", "pl", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/zara/"}, t},
1673 {"zero", r, x, 0x40, "Amazon Registry Services, Inc.", "https://newgtlds.icann.org/", w{"a.nic.zero", "b.nic.zero", "c.nic.zero", "ns1.dns.nic.zero", "ns2.dns.nic.zero", "ns3.dns.nic.zero"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.zero", e, w{"https://rdap.nic.zero/"}, t},
1674 {"zappos", r, x, 0x42, "Amazon Registry Services, Inc.", "https://nic.zappos/", w{"dns1.nic.zappos", "dns2.nic.zappos", "dns3.nic.zappos", "dns4.nic.zappos", "dnsa.nic.zappos", "dnsb.nic.zappos", "dnsc.nic.zappos", "dnsd.nic.zappos"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.zappos", e, w{"https://rdap.nominet.uk/zappos/"}, t},
1675 {"zara", r, x, 0x42, "Industria de Diseño Textil, S.A. (INDITEX, S.A.)", "https://nic.zara/", w{"a0.nic.zara", "a2.nic.zara", "b0.nic.zara", "c0.nic.zara"}, n, n, w{"be", "bg", "bs", "da", "de", "es", "hu", "is", "ko", "lt", "lv", "mk", "pl", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/zara/"}, t},
1676 {"zero", r, x, 0x40, "Amazon Registry Services, Inc.", "https://nic.zero/", w{"a.nic.zero", "b.nic.zero", "c.nic.zero", "ns1.dns.nic.zero", "ns2.dns.nic.zero", "ns3.dns.nic.zero"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.zero", e, w{"https://rdap.nic.zero/"}, t},
16741677 {"zip", r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
1675 {"zippo", r, x, 0x842, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.zippo", e, n, f},
1678 {"zippo", r, x, 0x842, e, e, n, n, n, n, "whois.nic.zippo", e, n, f},
16761679 {"zm", r, z[4877:4885], 0xa0, e, e, w{"gransy.nic.zm", "pch.nic.zm"}, n, n, n, "whois.zicta.zm", e, n, f},
16771680 {"zone", r, x, 0x40, "Binky Moon, LLC", e, w{"v0n0.nic.zone", "v0n1.nic.zone", "v0n2.nic.zone", "v0n3.nic.zone", "v2n0.nic.zone", "v2n1.nic.zone"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.zone", e, w{"https://rdap.donuts.co/rdap/"}, t},
1678 {"zuerich", r, x, 0xc4, "Kanton Zürich (Canton of Zurich)", "http://nic.zuerich/", w{"a.nic.zuerich", "b.nic.zuerich", "c.nic.zuerich", "d.nic.zuerich"}, n, w{"Zurich", "CH-ZH"}, w{"de", "de-CH"}, "whois.nic.zuerich", e, w{"https://rdap.centralnic.com/zuerich/"}, t},
1679 {"zulu", r, x, 0x40, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, f},
1681 {"zuerich", r, x, 0xc4, "Kanton Zürich (Canton of Zurich)", "https://nic.zuerich/", w{"a.nic.zuerich", "b.nic.zuerich", "c.nic.zuerich", "d.nic.zuerich"}, n, w{"Zurich", "CH-ZH"}, w{"de", "de-CH"}, "whois.nic.zuerich", e, w{"https://rdap.centralnic.com/zuerich/"}, t},
1682 {"zulu", r, x, 0x4040, e, e, n, n, n, n, e, e, n, f},
16801683 {"zw", r, z[4885:4889], 0xa0, e, e, w{"ns1.liquidtelecom.net", "ns1zim.telone.co.zw", "ns2.liquidtelecom.net", "ns2zim.telone.co.zw", "zw-ns.anycast.pch.net"}, n, n, n, e, "http://www.zispa.org.zw/", n, f},
1681 {"xn--jxalpdlp" /* δοκιμή */, r, x, 0x40, e, e, n, n, n, n, e, e, n, t},
1684 {"xn--jxalpdlp" /* δοκιμή */, r, x, 0x2800, "IANA", "https://www.iana.org/domains/reserved", n, n, n, n, e, e, n, t},
16821685 {"xn--qxam" /* ελ */, r, x, 0xa0, e, e, w{"estia.ics.forth.gr", "gr-at.ics.forth.gr", "gr-c.ics.forth.gr", "gr-d.ics.forth.gr", "grdns.ics.forth.gr"}, n, n, n, e, "https://grweb.ics.forth.gr/", n, t},
16831686 {"xn--qxa6a" /* ευ */, r, x, 0xa0, e, e, w{"be.dns.eu", "si.dns.eu", "w.dns.eu", "x.dns.eu", "y.dns.eu"}, n, n, n, "whois.eu", e, n, t},
16841687 {"xn--90ae" /* бг */, r, x, 0xa0, e, e, w{"a.nic.bg", "b.nic.bg", "c.nic.bg", "d.nic.bg", "e.nic.bg", "p.nic.bg"}, n, n, w{"bg-BG"}, "whois.imena.bg", e, n, t},
16851688 {"xn--90ais" /* бел */, r, x, 0xa0, e, e, w{"dns1.tld.becloudby.com", "dns2.tld.becloudby.com", "dns3.tld.becloudby.com", "dns4.tld.becloudby.com", "dns5.tld.becloudby.com"}, n, n, n, "whois.cctld.by", e, n, t},
16861689 {"xn--d1acj3b" /* дети */, r, x, 0x40, "The Foundation for Network Initiatives “The Smart Internet”", e, w{"a.dns.ripn.net", "b.dns.ripn.net", "d.dns.ripn.net", "e.dns.ripn.net", "f.dns.ripn.net"}, n, n, w{"ru"}, "whois.nic.xn--d1acj3b", e, w{"https://whois.nic.xn--/rdap/-vofi1a3h"}, t},
16871690 {"xn--e1a4c" /* ею */, r, x, 0xa0, e, e, w{"be.dns.eu", "si.dns.eu", "w.dns.eu", "x.dns.eu", "y.dns.eu"}, n, n, w{"mul-Cyrl"}, "whois.eu", e, n, t},
1688 {"xn--80akhbyknj4f" /* испытание */, r, x, 0x40, e, e, n, n, n, n, e, e, n, t},
1689 {"xn--80aqecdr1a" /* католик */, r, x, 0x40, "Pontificium Consilium de Comunicationibus Socialibus (PCCS) (Pontifical Council for Social Communication)", "https://newgtlds.icann.org/", w{"a.nic.xn--80aqecdr1a", "b.nic.xn--80aqecdr1a", "c.nic.xn--80aqecdr1a", "d.nic.xn--80aqecdr1a"}, n, n, w{"mul-Cyrl"}, "whois.nic.xn--80aqecdr1a", e, w{"https://rdap.nic.xn--/-7sbygceu5a"}, t},
1690 {"xn--j1aef" /* ком */, r, x, 0x40, "VeriSign Sarl", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "el", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "uk", "zh"}, "whois.nic.xn--j1aef", e, w{"https://tld-rdap.verisign.com/xn--j1aef/v1/"}, t},
1691 {"xn--d1alf" /* мкд */, r, x, 0xa0, e, "https://newgtlds.icann.org/", w{"d.ext.nic.cz", "dns-mk.univie.ac.at", "ns2.arnes.si", "tld1.marnet.mk"}, n, n, n, "whois.marnet.mk", e, n, t},
1692 {"xn--l1acc" /* мон */, r, x, 0xa0, e, "https://newgtlds.icann.org/", w{"ns1.idn.mn", "ns2.idn.mn", "ns3.idn.mn"}, n, n, w{"mn"}, e, e, n, t},
1691 {"xn--80akhbyknj4f" /* испытание */, r, x, 0x2800, "IANA", "https://www.iana.org/domains/reserved", n, n, n, n, e, e, n, t},
1692 {"xn--80aqecdr1a" /* католик */, r, x, 0x40, "Pontificium Consilium de Comunicationibus Socialibus (PCCS) (Pontifical Council for Social Communication)", "http://nic.xn--80aqecdr1a/", w{"a.nic.xn--80aqecdr1a", "b.nic.xn--80aqecdr1a", "c.nic.xn--80aqecdr1a", "d.nic.xn--80aqecdr1a"}, n, n, w{"mul-Cyrl"}, "whois.nic.xn--80aqecdr1a", e, w{"https://rdap.nic.xn--/-7sbygceu5a"}, t},
1693 {"xn--j1aef" /* ком */, r, x, 0x40, "VeriSign Sarl", "https://www.icann.org/en/registry-agreements/details/xn--j1aef", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "el", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "uk", "zh"}, "whois.nic.xn--j1aef", e, w{"https://tld-rdap.verisign.com/xn--j1aef/v1/"}, t},
1694 {"xn--d1alf" /* мкд */, r, x, 0xa0, e, "https://www.iana.org/domains/root/db/xn--d1alf.html", w{"d.ext.nic.cz", "dns-mk.univie.ac.at", "ns2.arnes.si", "tld1.marnet.mk"}, n, n, n, "whois.marnet.mk", e, n, t},
1695 {"xn--l1acc" /* мон */, r, x, 0xa0, "Datacom Co.,Ltd", "https://www.mon.mn/", w{"ns1.idn.mn", "ns2.idn.mn", "ns3.idn.mn"}, n, n, w{"mn"}, e, e, n, t},
16931696 {"xn--80adxhks" /* москва */, r, x, 0xc4, "Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)", e, w{"a.dns.flexireg.ru", "b.dns.flexireg.net", "c.dns.flexireg.org", "d.dns.flexireg.domains"}, n, w{"Moscow"}, w{"ru"}, "whois.nic.xn--80adxhks", e, w{"https://flexireg.net/xn--80adxhks/rdap/"}, t},
16941697 {"xn--80asehdb" /* онлайн */, r, x, 0x40, "CORE Association", e, w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, w{"mul-Cyrl"}, "whois.nic.xn--80asehdb", e, w{"https://rdap.nic.xn--/-7sb1agjdc"}, t},
1695 {"xn--c1avg" /* орг */, r, x, 0x40, "Public Interest Registry", "https://pir.org/products/opr-domain/", w{"a0.nic.xn--c1avg", "a2.nic.xn--c1avg", "b0.nic.xn--c1avg", "c0.nic.xn--c1avg"}, n, n, w{"be", "bg", "bs", "mk", "ru", "sr", "sr-ME", "uk"}, "whois.nic.xn--c1avg", e, w{"https://rdap.publicinterestregistry.org/rdap/"}, t},
1696 {"xn--p1acf" /* рус */, r, z[4889:5089], 0x40, "Rusnames Limited", "https://newgtlds.icann.org/", w{"ns1.anycastdns.cz", "ns1.nic.xn--p1acf", "ns2.anycastdns.cz", "ns2.nic.xn--p1acf"}, n, n, w{"mul-Cyrl"}, "whois.nic.xn--p1acf", e, w{"https://api.rdap.nic.xn--/-4tbdh"}, t},
1697 {"xn--p1ai" /* рф */, r, z[5089:5092], 0xa0, e, "https://cctld.ru/", w{"a.dns.ripn.net", "b.dns.ripn.net", "d.dns.ripn.net", "e.dns.ripn.net", "f.dns.ripn.net"}, n, n, w{"mul-Cyrl", "ru-RU"}, "whois.tcinet.ru", e, n, t},
1698 {"xn--c1avg" /* орг */, r, x, 0x40, "Public Interest Registry", "https://thenew.org/org-people/domain-products/opr/", w{"a0.nic.xn--c1avg", "a2.nic.xn--c1avg", "b0.nic.xn--c1avg", "c0.nic.xn--c1avg"}, n, n, w{"be", "bg", "bs", "mk", "ru", "sr", "sr-ME", "uk"}, "whois.nic.xn--c1avg", e, w{"https://rdap.publicinterestregistry.org/rdap/"}, t},
1699 {"xn--p1acf" /* рус */, r, z[4889:5089], 0x40, "Rusnames Limited", "https://www.webnames.ru/", w{"ns1.anycastdns.cz", "ns1.nic.xn--p1acf", "ns2.anycastdns.cz", "ns2.nic.xn--p1acf"}, n, n, w{"mul-Cyrl"}, "whois.nic.xn--p1acf", e, w{"https://api.rdap.nic.xn--/-4tbdh"}, t},
1700 {"xn--p1ai" /* рф */, r, z[5089:5092], 0xa0, e, "https://www.iana.org/domains/root/db/xn--p1ai.html", w{"a.dns.ripn.net", "b.dns.ripn.net", "d.dns.ripn.net", "e.dns.ripn.net", "f.dns.ripn.net"}, n, n, w{"mul-Cyrl", "ru-RU"}, "whois.ripn.net", e, n, t},
16981701 {"xn--80aswg" /* сайт */, r, x, 0x40, "CORE Association", e, w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, w{"mul-Cyrl"}, "whois.nic.xn--80aswg", e, w{"https://rdap.nic.xn--/-7sb1a4ah"}, t},
16991702 {"xn--90a3ac" /* срб */, r, z[5092:5097], 0xa0, e, e, w{"a.nic.rs", "b.nic.rs", "f.nic.rs", "g.nic.rs", "h.nic.rs", "l.nic.rs"}, n, n, w{"bg", "cnr-Cyrl", "mk", "ru", "rue-Cyrl", "sr-Cyrl", "uk"}, "whois.rnids.rs", e, n, t},
17001703 {"xn--j1amh" /* укр */, r, x, 0xa0, e, "http://uanic.net/", w{"dns.tci.net.ua", "dns1.u-registry.com", "dns2.u-registry.net", "dns3.dotukr.com", "tier1.num.net.ua", "ukr.ns.ua"}, n, n, w{"crh-UA", "mul-Cyrl-UA", "ru-UA", "uk-UA"}, "whois.dotukr.com", e, n, t},
17011704 {"xn--80ao21a" /* қаз */, r, x, 0xa0, e, e, w{"ns.nic.kz", "ns1.nic.kz"}, n, n, n, "whois.nic.kz", e, n, t},
17021705 {"xn--y9a3aq" /* հայ */, r, x, 0xa0, e, e, w{"fork.sth.dnsnode.net", "ns-cdn.amnic.net", "ns-pch.amnic.net", "ns-pri.nic.am"}, n, n, n, "whois.amnic.net", e, n, t},
1703 {"xn--deba0ad" /* טעסט */, r, x, 0x40, e, e, n, n, n, n, e, e, n, t},
1706 {"xn--deba0ad" /* טעסט */, r, x, 0x2800, "IANA", "https://www.iana.org/domains/reserved", n, n, n, n, e, e, n, t},
17041707 {"xn--4dbrk0ce" /* ישראל */, r, x, 0xa0, e, e, w{"ilns.ilan.net.il", "lookup.iucc.ac.il", "ns1.ns.il", "ns3.ns.il", "ns4.ns.il", "nsa.ns.il", "nsb.ns.il", "nse.ns.il"}, n, n, n, "whois.isoc.org.il", e, n, t},
17051708 {"xn--9dbq2a" /* קום */, r, x, 0, "VeriSign Sarl", e, w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "el", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "uk", "zh"}, "whois.nic.xn--9dbq2a", e, w{"https://tld-rdap.verisign.com/xn--9dbq2a/v1/"}, t},
1706 {"xn--hgbk6aj7f53bba" /* آزمایشی */, r, x, 0x40, e, e, n, n, n, n, e, e, n, t},
1707 {"xn--kgbechtv" /* إختبار */, r, x, 0x40, e, e, n, n, n, n, e, e, n, t},
1708 {"xn--mgbca7dzdo" /* ابوظبي */, r, x, 0x40, "Abu Dhabi Systems and Information Centre", "https://newgtlds.icann.org/", w{"gtld.alpha.aridns.net.au", "gtld.beta.aridns.net.au", "gtld.delta.aridns.net.au", "gtld.gamma.aridns.net.au"}, n, n, w{"ar"}, "whois.nic.xn--mgbca7dzdo", e, w{"https://rdap.nic.xn--/-ymcda3fteqa"}, t},
1709 {"xn--mgbaakc7dvf" /* اتصالات */, r, x, 0x40, "Emirates Telecommunications Corporation (trading as Etisalat)", "https://newgtlds.icann.org/", w{"a.nic.xn--mgbaakc7dvf", "b.nic.xn--mgbaakc7dvf", "c.nic.xn--mgbaakc7dvf", "d.nic.xn--mgbaakc7dvf"}, n, n, w{"ar"}, "whois.centralnic.com", e, w{"https://rdap.centralnic.com/xn--mgbaakc7dvf/"}, t},
1710 {"xn--mgba3a3ejt" /* ارامكو */, r, x, 0x40, "Aramco Services Company", "https://newgtlds.icann.org/", w{"ns1.dns.nic.xn--mgba3a3ejt", "ns2.dns.nic.xn--mgba3a3ejt", "ns3.dns.nic.xn--mgba3a3ejt", "ns4.dns.nic.xn--mgba3a3ejt", "ns5.dns.nic.xn--mgba3a3ejt", "ns6.dns.nic.xn--mgba3a3ejt"}, n, n, w{"ar", "es"}, "whois.nic.xn--mgba3a3ejt", e, w{"https://rdap.nic.xn--/-ymca3b0flw"}, t},
1709 {"xn--hgbk6aj7f53bba" /* آزمایشی */, r, x, 0x2800, "IANA", "https://www.iana.org/domains/reserved", n, n, n, n, e, e, n, t},
1710 {"xn--kgbechtv" /* إختبار */, r, x, 0x2800, "IANA", "https://www.iana.org/domains/reserved", n, n, n, n, e, e, n, t},
1711 {"xn--mgbca7dzdo" /* ابوظبي */, r, x, 0x40, "Abu Dhabi Systems and Information Centre", "https://www.icann.org/en/registry-agreements/details/xn--mgbca7dzdo", w{"gtld.alpha.aridns.net.au", "gtld.beta.aridns.net.au", "gtld.delta.aridns.net.au", "gtld.gamma.aridns.net.au"}, n, n, w{"ar"}, "whois.nic.xn--mgbca7dzdo", e, w{"https://rdap.nic.xn--/-ymcda3fteqa"}, t},
1712 {"xn--mgbaakc7dvf" /* اتصالات */, r, x, 0x40, "Emirates Telecommunications Corporation (trading as Etisalat)", "https://nic.xn--mgbaakc7dvf/", w{"a.nic.xn--mgbaakc7dvf", "b.nic.xn--mgbaakc7dvf", "c.nic.xn--mgbaakc7dvf", "d.nic.xn--mgbaakc7dvf"}, n, n, w{"ar"}, "whois.centralnic.com", e, w{"https://rdap.centralnic.com/xn--mgbaakc7dvf/"}, t},
1713 {"xn--mgba3a3ejt" /* ارامكو */, r, x, 0x40, "Aramco Services Company", "http://www.nic.xn--mgba3a3ejt/", w{"ns1.dns.nic.xn--mgba3a3ejt", "ns2.dns.nic.xn--mgba3a3ejt", "ns3.dns.nic.xn--mgba3a3ejt", "ns4.dns.nic.xn--mgba3a3ejt", "ns5.dns.nic.xn--mgba3a3ejt", "ns6.dns.nic.xn--mgba3a3ejt"}, n, n, w{"ar", "es"}, "whois.nic.xn--mgba3a3ejt", e, w{"https://rdap.nic.xn--/-ymca3b0flw"}, t},
17111714 {"xn--mgbayh7gpa" /* الاردن */, r, x, 0xa0, e, e, w{"amra.nic.gov.jo", "jo.cctld.authdns.ripe.net", "jordan1st.nic.gov.jo", "petra.nic.gov.jo", "rip.psg.com"}, n, n, n, e, "http://idn.jo/whois_a.aspx", n, t},
17121715 {"xn--mgbcpq6gpa1a" /* البحرين */, r, x, 0xa0, e, e, w{"a.nic.xn--mgbcpq6gpa1a", "b.nic.xn--mgbcpq6gpa1a", "c.nic.xn--mgbcpq6gpa1a", "d.nic.xn--mgbcpq6gpa1a"}, n, n, n, e, e, n, t},
1713 {"xn--lgbbat1ad8j" /* الجزائر */, r, x, 0xa0, e, "https://newgtlds.icann.org/", w{"idn1.nic.dz", "idn2.nic.dz"}, n, n, n, "whois.nic.dz", e, n, t},
1716 {"xn--lgbbat1ad8j" /* الجزائر */, r, x, 0xa0, e, "https://www.iana.org/domains/root/db/xn--lgbbat1ad8j.html", w{"idn1.nic.dz", "idn2.nic.dz"}, n, n, n, "whois.nic.dz", e, n, t},
17141717 {"xn--mgberp4a5d4ar" /* السعودية */, r, x, 0xa0, e, e, w{"c1.dns.sa", "c2.dns.sa", "i1.dns.sa", "m1.dns.sa", "m2.dns.sa", "n1.dns.sa", "p1.dns.sa", "s1.dns.sa", "s2.dns.sa", "sh1.dns.sa"}, n, n, w{"ar", "ar-SA"}, "whois.nic.net.sa", e, n, t},
1715 {"xn--mgba7c0bbn0a" /* العليان */, r, x, 0x40, "Crescent Holding GmbH", "https://newgtlds.icann.org/", w{"a.nic.xn--mgba7c0bbn0a", "b.nic.xn--mgba7c0bbn0a", "c.nic.xn--mgba7c0bbn0a", "d.nic.xn--mgba7c0bbn0a"}, n, n, w{"ar"}, "whois.nic.xn--mgba7c0bbn0a", e, w{"https://rdap.nic.xn--/-ymca5e9bbp4a"}, t},
1716 {"xn--mgbc0a9azcg" /* المغرب */, r, x, 0xa0, e, "https://newgtlds.icann.org/", w{"a.tld.ma", "b.tld.ma", "c.tld.ma", "d.tld.ma", "e.tld.ma", "f.tld.ma", "ns-ma.nic.fr"}, n, n, n, "whois.iam.net.ma", e, n, t},
1718 {"xn--mgba7c0bbn0a" /* العليان */, r, x, 0x40, "Crescent Holding GmbH", "http://nic.xn--mgba7c0bbn0a/", w{"a.nic.xn--mgba7c0bbn0a", "b.nic.xn--mgba7c0bbn0a", "c.nic.xn--mgba7c0bbn0a", "d.nic.xn--mgba7c0bbn0a"}, n, n, w{"ar"}, "whois.nic.xn--mgba7c0bbn0a", e, w{"https://rdap.nic.xn--/-ymca5e9bbp4a"}, t},
1719 {"xn--mgbc0a9azcg" /* المغرب */, r, x, 0xa0, e, "https://www.iana.org/domains/root/db/xn--mgbc0a9azcg.html", w{"a.tld.ma", "b.tld.ma", "c.tld.ma", "d.tld.ma", "e.tld.ma", "f.tld.ma", "ns-ma.nic.fr"}, n, n, n, "whois.iam.net.ma", e, n, t},
17171720 {"xn--mgbaam7a8h" /* امارات */, r, x, 0xa0, e, e, w{"ns1.aedns.ae", "ns2.aedns.ae", "nsext-pch.aedns.ae"}, n, n, w{"ar-AE"}, "whois.aeda.net.ae", e, n, t},
17181721 {"xn--mgba3a4f16a" /* ایران */, r, x, 0xa0, e, e, w{"a.nic.ir", "ns.irnic.ir"}, n, n, n, "whois.nic.ir", e, n, t},
17191722 {"xn--mgbbh1a" /* بارت */, r, z[5097:5098], 0xa0, e, "https://www.registry.in/", w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, w{"IN-MH"}, w{"ks-IN"}, "whois.registry.in", e, n, t},
17201723 {"xn--mgbab2bd" /* بازار */, r, x, 0x40, "CORE Association", e, w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, w{"mul-Arab"}, "whois.nic.xn--mgbab2bd", e, w{"https://rdap.nic.xn--/-ymcac1ce"}, t},
1721 {"xn--ngbe9e0a" /* بيتك */, r, x, 0x40, "Kuwait Finance House", "https://newgtlds.icann.org/", w{"a.nic.xn--ngbe9e0a", "b.nic.xn--ngbe9e0a", "c.nic.xn--ngbe9e0a", "d.nic.xn--ngbe9e0a"}, n, n, w{"ar"}, "whois.nic.xn--ngbe9e0a", e, w{"https://rdap.centralnic.com/xn--ngbe9e0a/"}, t},
1724 {"xn--ngbe9e0a" /* بيتك */, r, x, 0x40, "Kuwait Finance House", "https://nic.xn--ngbe9e0a/", w{"a.nic.xn--ngbe9e0a", "b.nic.xn--ngbe9e0a", "c.nic.xn--ngbe9e0a", "d.nic.xn--ngbe9e0a"}, n, n, w{"ar"}, "whois.nic.xn--ngbe9e0a", e, w{"https://rdap.centralnic.com/xn--ngbe9e0a/"}, t},
17221725 {"xn--mgbbh1a71e" /* بھارت */, r, z[5098:5099], 0xa0, e, "https://www.registry.in/", w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, w{"IN-JK", "IN-TG", "IN-UP", "IN-BR", "IN-JH", "IN-WB", "IN-DL"}, w{"ur-IN"}, "whois.registry.in", e, n, t},
17231726 {"xn--pgbs0dh" /* تونس */, r, x, 0xa0, e, e, w{"ns-tn.afrinic.net", "ns1.ati.tn", "ns2.ati.tn", "ns2.nic.fr", "pch.ati.tn", "rip.psg.com"}, n, n, n, "whois.ati.tn", e, n, t},
17241727 {"xn--mgbpl2fh" /* سودان */, r, x, 0xa0, e, e, w{"ans1.sis.sd", "pch.sis.sd"}, n, n, n, e, e, n, t},
17251728 {"xn--ogbpf8fl" /* سورية */, r, x, 0xa0, e, e, w{"ns1.tld.sy", "pch.anycast.tld.sy", "sy.cctld.authdns.ripe.net"}, n, n, n, "whois.tld.sy", e, n, t},
17261729 {"xn--ngbc5azd" /* شبكة */, r, x, 0x40, "International Domain Registry Pty. Ltd.", "https://www.dotshabaka.com/", w{"a.nic.xn--ngbc5azd", "b.nic.xn--ngbc5azd", "c.nic.xn--ngbc5azd", "d.nic.xn--ngbc5azd"}, n, n, w{"mul-Arab"}, "whois.nic.xn--ngbc5azd", e, w{"https://rdap.nic.xn--/-0mcd6b8d"}, t},
17271730 {"xn--mgbtx2b" /* عراق */, r, x, 0xa0, e, e, w{"dyn1.cmc.iq", "dyn2.cmc.iq", "ns1.cmc.iq", "nsp-anycast.cmc.iq"}, n, n, n, "whois.cmc.iq", e, n, t},
1728 {"xn--ngbrx" /* عرب */, r, x, 0x40, "League of Arab States", "https://newgtlds.icann.org/", w{"gtld.alpha.aridns.net.au", "gtld.beta.aridns.net.au", "gtld.delta.aridns.net.au", "gtld.gamma.aridns.net.au"}, n, n, w{"ar"}, "whois.nic.xn--ngbrx", e, w{"https://rdap.nic.xn--/-0mc0a5a"}, t},
1729 {"xn--mgb9awbf" /* عمان */, r, x, 0xa0, e, "https://newgtlds.icann.org/", w{"cctld.alpha.aridns.net.au", "cctld.beta.aridns.net.au", "cctld.delta.aridns.net.au", "cctld.gamma.aridns.net.au", "ns1.registry.om", "ns2.registry.om"}, n, n, n, "whois.registry.om", e, n, t},
1730 {"xn--ygbi2ammx" /* فلسطين */, r, x, 0xa0, e, e, w{"dns1.gov.ps", "dns3.gov.ps", "idn.pnina.ps", "ns1.pnina.ps"}, n, n, n, "whois.pnina.ps", e, n, t},
1731 {"xn--ngbrx" /* عرب */, r, x, 0x40, "League of Arab States", "http://nic.xn--ngbrx/", w{"gtld.alpha.aridns.net.au", "gtld.beta.aridns.net.au", "gtld.delta.aridns.net.au", "gtld.gamma.aridns.net.au"}, n, n, w{"ar"}, "whois.nic.xn--ngbrx", e, w{"https://rdap.nic.xn--/-0mc0a5a"}, t},
1732 {"xn--mgb9awbf" /* عمان */, r, x, 0xa0, e, e, w{"cctld.alpha.aridns.net.au", "cctld.beta.aridns.net.au", "cctld.delta.aridns.net.au", "cctld.gamma.aridns.net.au", "ns1.registry.om", "ns2.registry.om"}, n, n, n, "whois.registry.om", e, n, t},
1733 {"xn--ygbi2ammx" /* فلسطين */, r, x, 0xa0, e, e, w{"dns1.gov.ps", "dns3.gov.ps", "ns1.pnina.ps"}, n, n, n, "whois.pnina.ps", e, n, t},
17311734 {"xn--wgbl6a" /* قطر */, r, x, 0xa0, e, e, w{"a.registry.qa", "b.registry.qa", "c.registry.qa", "d.registry.qa", "e.registry.qa", "f.registry.qa", "g.registry.qa", "h.registry.qa", "i.registry.qa"}, n, n, n, "whois.registry.qa", e, n, t},
1732 {"xn--mgbi4ecexp" /* كاثوليك */, r, x, 0x40, "Pontificium Consilium de Comunicationibus Socialibus (PCCS) (Pontifical Council for Social Communication)", "https://newgtlds.icann.org/", w{"a.nic.xn--mgbi4ecexp", "b.nic.xn--mgbi4ecexp", "c.nic.xn--mgbi4ecexp", "d.nic.xn--mgbi4ecexp"}, n, n, w{"ar"}, "whois.nic.xn--mgbi4ecexp", e, w{"https://rdap.nic.xn--/-ymcm8gcf1ar"}, t},
1733 {"xn--fhbei" /* كوم */, r, x, 0x40, "VeriSign Sarl", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "el", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "uk", "zh"}, "whois.nic.xn--fhbei", e, w{"https://tld-rdap.verisign.com/xn--fhbei/v1/"}, t},
1734 {"xn--pgb3ceoj" /* كيوتل */, r, x, 0x40, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, t},
1735 {"xn--mgbi4ecexp" /* كاثوليك */, r, x, 0x40, "Pontificium Consilium de Comunicationibus Socialibus (PCCS) (Pontifical Council for Social Communication)", "http://nic.xn--mgbi4ecexp/", w{"a.nic.xn--mgbi4ecexp", "b.nic.xn--mgbi4ecexp", "c.nic.xn--mgbi4ecexp", "d.nic.xn--mgbi4ecexp"}, n, n, w{"ar"}, "whois.nic.xn--mgbi4ecexp", e, w{"https://rdap.nic.xn--/-ymcm8gcf1ar"}, t},
1736 {"xn--fhbei" /* كوم */, r, x, 0x40, "VeriSign Sarl", "https://www.icann.org/en/registry-agreements/details/xn--fhbei", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "el", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "uk", "zh"}, "whois.nic.xn--fhbei", e, w{"https://tld-rdap.verisign.com/xn--fhbei/v1/"}, t},
1737 {"xn--pgb3ceoj" /* كيوتل */, r, x, 0x4040, e, e, n, n, n, n, e, e, n, t},
17351738 {"xn--wgbh1c" /* مصر */, r, x, 0xa0, e, e, w{"ns1.dotmasr.eg", "ns2.dotmasr.eg", "ns3.dotmasr.eg"}, n, n, w{"ar-EG"}, "whois.dotmasr.eg", e, n, t},
17361739 {"xn--mgbx4cd0ab" /* مليسيا */, r, x, 0x40, e, e, w{"a.mynic.centralnic-dns.com", "a.nic.my", "a1.nic.my", "b.mynic.centralnic-dns.com", "c.mynic.centralnic-dns.com", "d.mynic.centralnic-dns.com"}, n, n, n, "whois.mynic.my", e, n, t},
1737 {"xn--mgbb9fbpob" /* موبايلي */, r, x, 0x840, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.xn--mgbb9fbpob", e, n, t},
1740 {"xn--mgbb9fbpob" /* موبايلي */, r, x, 0x840, e, e, n, n, n, n, "whois.nic.xn--mgbb9fbpob", e, n, t},
17381741 {"xn--mgbah1a3hjkrd" /* موريتانيا */, r, x, 0xa0, e, e, w{"ns-mr.afrinic.net", "ns-mr.nic.fr", "ns1.nic.mr", "ns2.nic.mr", "ns3.nic.mr"}, n, n, n, "whois.nic.mr", e, n, t},
1739 {"xn--mgbv6cfpo" /* موزايك */, r, x, 0x40, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, t},
1740 {"xn--4gbrim" /* موقع */, r, x, 0x40, "Helium TLDs Ltd", "https://newgtlds.icann.org/", w{"a.nic.xn--4gbrim", "b.nic.xn--4gbrim", "c.nic.xn--4gbrim", "d.nic.xn--4gbrim"}, n, n, n, "whois.nic.xn--4gbrim", e, w{"https://rdap.centralnic.com/xn--4gbrim/"}, t},
1741 {"xn--mgbt3dhd" /* همراه */, r, x, 0x40, "Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.", "https://newgtlds.icann.org/", w{"a.ns.nic.xn--mgbt3dhd", "b.ns.nic.xn--mgbt3dhd", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, w{"Iran"}, n, "whois.nic.xn--mgbt3dhd", e, w{"https://api.rdap.agitsys.net/"}, t},
1742 {"xn--mgbv6cfpo" /* موزايك */, r, x, 0x4040, e, e, n, n, n, n, e, e, n, t},
1743 {"xn--4gbrim" /* موقع */, r, x, 0x40, "Helium TLDs Ltd", "https://www.icann.org/en/registry-agreements/details/xn--4gbrim", w{"a.nic.xn--4gbrim", "b.nic.xn--4gbrim", "c.nic.xn--4gbrim", "d.nic.xn--4gbrim"}, n, n, n, "whois.nic.xn--4gbrim", e, w{"https://rdap.centralnic.com/xn--4gbrim/"}, t},
1744 {"xn--mgbt3dhd" /* همراه */, r, x, 0x40, "Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.", "https://www.icann.org/en/registry-agreements/details/xn--mgbt3dhd", w{"a.ns.nic.xn--mgbt3dhd", "b.ns.nic.xn--mgbt3dhd", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, w{"Iran"}, n, "whois.nic.xn--mgbt3dhd", e, w{"https://api.rdap.agitsys.net/"}, t},
17421745 {"xn--mgbai9azgqp6j" /* پاکستان */, r, x, 0, e, e, w{"ns.ntc.net.pk", "ns1.ntc.net.pk", "ns2.ntc.net.pk"}, n, n, n, e, e, n, t},
17431746 {"xn--mgbgu82a" /* ڀارت */, r, z[5099:5100], 0xa0, e, "https://www.registry.in/", w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, w{"IN-RJ", "IN-GJ", "IN-MP"}, w{"sd-IN"}, "whois.registry.in", e, n, t},
1744 {"xn--11b4c3d" /* कॉम */, r, x, 0x40, "VeriSign Sarl", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "el", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "uk", "zh"}, "whois.nic.xn--11b4c3d", e, w{"https://tld-rdap.verisign.com/xn--11b4c3d/v1/"}, t},
1745 {"xn--c2br7g" /* नेट */, r, x, 0x40, "VeriSign Sarl", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "el", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "uk", "zh"}, "whois.nic.xn--c2br7g", e, w{"https://tld-rdap.verisign.com/xn--c2br7g/v1/"}, t},
1746 {"xn--11b5bs3a9aj6g" /* परीक्षा */, r, x, 0x40, e, e, n, n, n, n, e, e, n, t},
1747 {"xn--11b4c3d" /* कॉम */, r, x, 0x40, "VeriSign Sarl", "https://www.icann.org/en/registry-agreements/details/xn--11b4c3d", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "el", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "uk", "zh"}, "whois.nic.xn--11b4c3d", e, w{"https://tld-rdap.verisign.com/xn--11b4c3d/v1/"}, t},
1748 {"xn--c2br7g" /* नेट */, r, x, 0x40, "VeriSign Sarl", "https://www.icann.org/en/registry-agreements/details/xn--c2br7g", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "el", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "uk", "zh"}, "whois.nic.xn--c2br7g", e, w{"https://tld-rdap.verisign.com/xn--c2br7g/v1/"}, t},
1749 {"xn--11b5bs3a9aj6g" /* परीक्षा */, r, x, 0x2800, "IANA", "https://www.iana.org/domains/reserved", n, n, n, n, e, e, n, t},
17471750 {"xn--h2brj9c" /* भारत */, r, z[5100:5101], 0xa0, e, "https://www.registry.in/", w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, w{"IN"}, w{"hi-IN"}, "whois.registry.in", e, n, t},
17481751 {"xn--h2breg3eve" /* भारतम् */, r, z[5101:5102], 0xa0, e, "https://www.registry.in/", w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, w{"sa-IN"}, "whois.registry.in", e, n, t},
17491752 {"xn--h2brj9c8c" /* भारोत */, r, z[5102:5103], 0xa0, e, "https://www.registry.in/", w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, w{"IN-AS", "IN-BR", "IN-JH", "IN-MZ", "IN-OR", "IN-TR", "IN-WB"}, w{"sat-Olck-IN"}, "whois.registry.in", e, n, t},
1750 {"xn--i1b6b1a6a2e" /* संगठन */, r, x, 0x40, "Public Interest Registry", "https://pir.org/products/hindi-domain/", w{"a0.nic.xn--i1b6b1a6a2e", "a2.nic.xn--i1b6b1a6a2e", "b0.nic.xn--i1b6b1a6a2e", "c0.nic.xn--i1b6b1a6a2e"}, n, n, w{"hi"}, "whois.nic.xn--i1b6b1a6a2e", e, w{"https://rdap.publicinterestregistry.org/rdap/"}, t},
1751 {"xn--54b7fta0cc" /* বাংলা */, r, x, 0xa0, e, e, w{"bayanno.btcl.net.bd", "bd-ns.anycast.pch.net", "ekushey.btcl.net.bd"}, n, n, n, e, e, n, t},
1753 {"xn--i1b6b1a6a2e" /* संगठन */, r, x, 0x40, "Public Interest Registry", "https://thenew.org/org-people/domain-products/%E0%A4%B8%E0%A4%82%E0%A4%97%E0%A4%A0%E0%A4%A8/", w{"a0.nic.xn--i1b6b1a6a2e", "a2.nic.xn--i1b6b1a6a2e", "b0.nic.xn--i1b6b1a6a2e", "c0.nic.xn--i1b6b1a6a2e"}, n, n, w{"hi"}, "whois.nic.xn--i1b6b1a6a2e", e, w{"https://rdap.publicinterestregistry.org/rdap/"}, t},
1754 {"xn--54b7fta0cc" /* বাংলা */, r, x, 0xa0, e, e, w{"bd-ns.anycast.pch.net"}, n, n, n, e, e, n, t},
17521755 {"xn--45brj9c" /* ভারত */, r, z[5103:5105], 0xa0, e, "https://www.registry.in/", w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, w{"IN-WB", "IN-TR", "IN-AS"}, w{"bn-IN"}, "whois.registry.in", e, n, t},
17531756 {"xn--45br5cyl" /* ভাৰত */, r, z[5105:5106], 0xa0, e, "https://www.registry.in/", w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, w{"IN-AS", "IN-AR", "IN-NL"}, w{"as-IN"}, "whois.registry.in", e, n, t},
17541757 {"xn--s9brj9c" /* ਭਾਰਤ */, r, z[5106:5107], 0xa0, e, "https://www.registry.in/", w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, w{"IN-PB"}, w{"pa-Guru-IN"}, "whois.registry.in", e, n, t},
17551758 {"xn--gecrj9c" /* ભારત */, r, z[5107:5108], 0xa0, e, "https://www.registry.in/", w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, w{"IN-GJ"}, w{"gu-IN"}, "whois.registry.in", e, n, t},
17561759 {"xn--3hcrj9c" /* ଭାରତ */, r, z[5108:5109], 0xa0, e, "https://www.registry.in/", w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, w{"IN-OR", "IN-AP", "IN-MP", "IN-JH", "IN-WB", "IN-CT"}, w{"or-IN"}, "whois.registry.in", e, n, t},
17571760 {"xn--xkc2dl3a5ee0h" /* இந்தியா */, r, z[5109:5110], 0xa0, e, "https://www.registry.in/", w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, w{"IN-TN", "IN-PY"}, w{"ta-IN"}, "whois.registry.in", e, n, t},
1758 {"xn--xkc2al3hye2a" /* இலங்கை */, r, x, 0xa0, e, "https://newgtlds.icann.org/", w{"lk.communitydns.net", "nic.lk-anycast.pch.net", "ns-c.nic.lk", "ns-d.nic.lk", "ns-l.nic.lk", "ns-t.nic.lk", "ns1.ac.lk", "ns3.ac.lk"}, n, n, n, "whois.nic.lk", e, n, t},
1761 {"xn--xkc2al3hye2a" /* இலங்கை */, r, x, 0xa0, e, "https://www.iana.org/domains/root/db/xn--xkc2al3hye2a.html", w{"lk.communitydns.net", "nic.lk-anycast.pch.net", "ns-c.nic.lk", "ns-d.nic.lk", "ns-l.nic.lk", "ns-t.nic.lk", "ns1.ac.lk"}, n, n, n, "whois.nic.lk", e, n, t},
17591762 {"xn--clchc0ea0b2g2a9gcd" /* சிங்கப்பூர் */, r, x, 0xa0, e, e, w{"dsany.sgnic.sg", "dsany2.sgnic.sg", "dsany3.sgnic.sg", "ns4.apnic.net", "pch.sgzones.sg"}, n, n, n, "whois.sgnic.sg", e, n, t},
1760 {"xn--hlcj6aya9esc7a" /* பரிட்சை */, r, x, 0x40, e, e, n, n, n, n, e, e, n, t},
1763 {"xn--hlcj6aya9esc7a" /* பரிட்சை */, r, x, 0x2800, "IANA", "https://www.iana.org/domains/reserved", n, n, n, n, e, e, n, t},
17611764 {"xn--fpcrj9c3d" /* భారత్ */, r, z[5110:5111], 0xa0, e, "https://www.registry.in/", w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, w{"IN-AP", "IN-TG"}, w{"te-IN"}, "whois.registry.in", e, n, t},
17621765 {"xn--2scrj9c" /* ಭಾರತ */, r, z[5111:5112], 0xa0, e, "https://www.registry.in/", w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, w{"IN-KA", "IN-MH", "IN-AP", "IN-TN", "IN-TG", "IN-KL", "IN-GA"}, w{"kn-IN"}, "whois.registry.in", e, n, t},
17631766 {"xn--rvc1e0am3e" /* ഭാരതം */, r, z[5112:5113], 0xa0, e, "https://www.registry.in/", w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, w{"IN-KL", "IN-LD", "IN-PY"}, w{"ml-IN"}, "whois.registry.in", e, n, t},
1764 {"xn--fzc2c9e2c" /* ලංකා */, r, x, 0xa0, e, e, w{"lk.communitydns.net", "nic.lk-anycast.pch.net", "ns-c.nic.lk", "ns-d.nic.lk", "ns-l.nic.lk", "ns-t.nic.lk", "ns1.ac.lk", "ns3.ac.lk"}, n, n, n, "whois.nic.lk", e, n, t},
1765 {"xn--42c2d9a" /* คอม */, r, x, 0x40, "VeriSign Sarl", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "el", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "uk", "zh"}, "whois.nic.xn--42c2d9a", e, w{"https://tld-rdap.verisign.com/xn--42c2d9a/v1/"}, t},
1767 {"xn--fzc2c9e2c" /* ලංකා */, r, x, 0xa0, e, e, w{"lk.communitydns.net", "nic.lk-anycast.pch.net", "ns-c.nic.lk", "ns-d.nic.lk", "ns-l.nic.lk", "ns-t.nic.lk", "ns1.ac.lk"}, n, n, n, "whois.nic.lk", e, n, t},
1768 {"xn--42c2d9a" /* คอม */, r, x, 0x40, "VeriSign Sarl", "https://www.icann.org/en/registry-agreements/details/xn--42c2d9a", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "el", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "uk", "zh"}, "whois.nic.xn--42c2d9a", e, w{"https://tld-rdap.verisign.com/xn--42c2d9a/v1/"}, t},
17661769 {"xn--o3cw4h" /* ไทย */, r, z[5113:5114], 0xa0, e, e, w{"a.thains.co.th", "b.thains.co.th", "ns.thnic.net", "p.thains.co.th"}, n, n, n, "whois.thnic.co.th", e, n, t},
17671770 {"xn--q7ce6a" /* ລາວ */, r, x, 0xa0, e, e, w{"a.xn--q7ce6a.centralnic-dns.com", "b.xn--q7ce6a.centralnic-dns.com", "c.xn--q7ce6a.centralnic-dns.com", "d.xn--q7ce6a.centralnic-dns.com"}, n, n, n, "whois.nic.la", e, n, t},
1768 {"xn--node" /* გე */, r, x, 0xa0, e, "https://newgtlds.icann.org/", w{"a.xn--node.globalanycastcloud.freenom.net", "b.xn--node.globalanycastcloud.freenom.net", "c.xn--node.globalanycastcloud.freenom.net", "d.xn--node.globalanycastcloud.freenom.net", "xn--node.ns.anycast.pch.net"}, n, n, n, "whois.itdc.ge", e, n, t},
1771 {"xn--node" /* გე */, r, x, 0xa0, e, "http://nic.xn--node/", w{"a.xn--node.globalanycastcloud.freenom.net", "b.xn--node.globalanycastcloud.freenom.net", "c.xn--node.globalanycastcloud.freenom.net", "d.xn--node.globalanycastcloud.freenom.net", "xn--node.ns.anycast.pch.net"}, w{"188.93.95.11"}, n, n, "whois.itdc.ge", e, n, t},
17691772 {"xn--q9jyb4c" /* みんな */, r, x, 0x40, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
1770 {"xn--cckwcxetd" /* アマゾン */, r, x, 0x42, "Amazon Registry Services, Inc.", "http://nic.xn--cckwcxetd/", w{"dns1.nic.xn--cckwcxetd", "dns2.nic.xn--cckwcxetd", "dns3.nic.xn--cckwcxetd", "dns4.nic.xn--cckwcxetd", "dnsa.nic.xn--cckwcxetd", "dnsb.nic.xn--cckwcxetd", "dnsc.nic.xn--cckwcxetd", "dnsd.nic.xn--cckwcxetd"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.xn--cckwcxetd", e, w{"https://rdap.nominet.uk/xn--cckwcxetd/"}, t},
1771 {"xn--gckr3f0f" /* クラウド */, r, x, 0x40, "Amazon Registry Services, Inc.", "https://newgtlds.icann.org/", w{"a.nic.xn--gckr3f0f", "b.nic.xn--gckr3f0f", "c.nic.xn--gckr3f0f", "ns1.dns.nic.xn--gckr3f0f", "ns2.dns.nic.xn--gckr3f0f", "ns3.dns.nic.xn--gckr3f0f"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.xn--gckr3f0f", e, w{"https://rdap.nic.xn--/-meu0a2h0g"}, t},
1773 {"xn--cckwcxetd" /* アマゾン */, r, x, 0x42, "Amazon Registry Services, Inc.", "https://nic.xn--cckwcxetd/", w{"dns1.nic.xn--cckwcxetd", "dns2.nic.xn--cckwcxetd", "dns3.nic.xn--cckwcxetd", "dns4.nic.xn--cckwcxetd", "dnsa.nic.xn--cckwcxetd", "dnsb.nic.xn--cckwcxetd", "dnsc.nic.xn--cckwcxetd", "dnsd.nic.xn--cckwcxetd"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.xn--cckwcxetd", e, w{"https://rdap.nominet.uk/xn--cckwcxetd/"}, t},
1774 {"xn--gckr3f0f" /* クラウド */, r, x, 0x40, "Amazon Registry Services, Inc.", "https://nic.xn--gckr3f0f/", w{"a.nic.xn--gckr3f0f", "b.nic.xn--gckr3f0f", "c.nic.xn--gckr3f0f", "ns1.dns.nic.xn--gckr3f0f", "ns2.dns.nic.xn--gckr3f0f", "ns3.dns.nic.xn--gckr3f0f"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.xn--gckr3f0f", e, w{"https://rdap.nic.xn--/-meu0a2h0g"}, t},
17721775 {"xn--qcka1pmc" /* グーグル */, r, x, 0x42, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
17731776 {"xn--tckwe" /* コム */, r, x, 0, "VeriSign Sarl", e, w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "el", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "uk", "zh"}, "whois.nic.xn--tckwe", e, w{"https://tld-rdap.verisign.com/xn--tckwe/v1/"}, t},
17741777 {"xn--cck2b3b" /* ストア */, r, x, 0x40, "Amazon Registry Services, Inc.", "https://nic.xn--cck2b3b/", w{"a.nic.xn--cck2b3b", "b.nic.xn--cck2b3b", "c.nic.xn--cck2b3b", "ns1.dns.nic.xn--cck2b3b", "ns2.dns.nic.xn--cck2b3b", "ns3.dns.nic.xn--cck2b3b"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.xn--cck2b3b", e, w{"https://rdap.nic.xn--/-eeu2cwc"}, t},
1775 {"xn--1ck2e1b" /* セール */, r, x, 0x40, "Amazon Registry Services, Inc.", "https://newgtlds.icann.org/", w{"a.nic.xn--1ck2e1b", "b.nic.xn--1ck2e1b", "c.nic.xn--1ck2e1b", "ns1.dns.nic.xn--1ck2e1b", "ns2.dns.nic.xn--1ck2e1b", "ns3.dns.nic.xn--1ck2e1b"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.xn--1ck2e1b", e, w{"https://rdap.nic.xn--/-tfuygrc"}, t},
1776 {"xn--zckzah" /* テスト */, r, x, 0x40, e, e, n, n, n, n, e, e, n, t},
1777 {"xn--bck1b9a5dre4c" /* ファッション */, r, x, 0x40, "Amazon Registry Services, Inc.", "https://newgtlds.icann.org/", w{"a.nic.xn--bck1b9a5dre4c", "b.nic.xn--bck1b9a5dre4c", "c.nic.xn--bck1b9a5dre4c", "ns1.dns.nic.xn--bck1b9a5dre4c", "ns2.dns.nic.xn--bck1b9a5dre4c", "ns3.dns.nic.xn--bck1b9a5dre4c"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.xn--bck1b9a5dre4c", e, w{"https://rdap.nic.xn--/-ceu0c2b2e5esd"}, t},
1778 {"xn--eckvdtc9d" /* ポイント */, r, x, 0x40, "Amazon Registry Services, Inc.", "https://newgtlds.icann.org/", w{"a.nic.xn--eckvdtc9d", "b.nic.xn--eckvdtc9d", "c.nic.xn--eckvdtc9d", "ns1.dns.nic.xn--eckvdtc9d", "ns2.dns.nic.xn--eckvdtc9d", "ns3.dns.nic.xn--eckvdtc9d"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.xn--eckvdtc9d", e, w{"https://rdap.nic.xn--/-ieu2end5e"}, t},
1779 {"xn--4gq48lf9j" /* 一号店 */, r, x, 0x2040, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, t},
1778 {"xn--1ck2e1b" /* セール */, r, x, 0x40, "Amazon Registry Services, Inc.", "https://nic.xn--1ck2e1b/", w{"a.nic.xn--1ck2e1b", "b.nic.xn--1ck2e1b", "c.nic.xn--1ck2e1b", "ns1.dns.nic.xn--1ck2e1b", "ns2.dns.nic.xn--1ck2e1b", "ns3.dns.nic.xn--1ck2e1b"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.xn--1ck2e1b", e, w{"https://rdap.nic.xn--/-tfuygrc"}, t},
1779 {"xn--zckzah" /* テスト */, r, x, 0x2800, "IANA", "https://www.iana.org/domains/reserved", n, n, n, n, e, e, n, t},
1780 {"xn--bck1b9a5dre4c" /* ファッション */, r, x, 0x40, "Amazon Registry Services, Inc.", "https://nic.xn--bck1b9a5dre4c/", w{"a.nic.xn--bck1b9a5dre4c", "b.nic.xn--bck1b9a5dre4c", "c.nic.xn--bck1b9a5dre4c", "ns1.dns.nic.xn--bck1b9a5dre4c", "ns2.dns.nic.xn--bck1b9a5dre4c", "ns3.dns.nic.xn--bck1b9a5dre4c"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.xn--bck1b9a5dre4c", e, w{"https://rdap.nic.xn--/-ceu0c2b2e5esd"}, t},
1781 {"xn--eckvdtc9d" /* ポイント */, r, x, 0x40, "Amazon Registry Services, Inc.", "https://nic.xn--eckvdtc9d/", w{"a.nic.xn--eckvdtc9d", "b.nic.xn--eckvdtc9d", "c.nic.xn--eckvdtc9d", "ns1.dns.nic.xn--eckvdtc9d", "ns2.dns.nic.xn--eckvdtc9d", "ns3.dns.nic.xn--eckvdtc9d"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.xn--eckvdtc9d", e, w{"https://rdap.nic.xn--/-ieu2end5e"}, t},
1782 {"xn--4gq48lf9j" /* 一号店 */, r, x, 0x4040, e, e, n, n, n, n, e, e, n, t},
17801783 {"xn--rhqv96g" /* 世界 */, r, x, 0, "Stable Tone Limited", e, w{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "it", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh-Hans", "zh-Hant"}, "whois.nic.xn--rhqv96g", e, w{"https://rdap.teleinfo.cn/xn--rhqv96g/"}, t},
1781 {"xn--fiq64b" /* 中信 */, r, x, 0x42, "CITIC Group Corporation", "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.gtld.knet.cn", e, w{"https://rdap.zdnsgtld.com/xn--fiq64b/"}, t},
1782 {"xn--fiqs8s" /* 中国 */, r, x, 0xa0, e, "http://cnnic.cn/", w{"h.dns.cn", "i.dns.cn", "j.dns.cn", "k.dns.cn", "l.dns.cn", "m.dns.cn", "n.dns.cn"}, w{"218.241.105.10", "wildcard.cnnic.cn"}, n, w{"zh-Hans-CN"}, "cwhois.cnnic.cn", e, n, t},
1783 {"xn--fiqz9s" /* 中國 */, r, x, 0xa0, e, "http://cnnic.cn/", w{"h.dns.cn", "i.dns.cn", "j.dns.cn", "k.dns.cn", "l.dns.cn", "m.dns.cn", "n.dns.cn"}, w{"218.241.105.10", "wildcard.cnnic.cn"}, n, w{"zh-Hant-CN"}, "cwhois.cnnic.cn", e, n, t},
1784 {"xn--fiq64b" /* 中信 */, r, x, 0x42, "CITIC Group Corporation", "https://www.icann.org/en/registry-agreements/details/xn--fiq64b", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.gtld.knet.cn", e, w{"https://rdap.zdnsgtld.com/xn--fiq64b/"}, t},
1785 {"xn--fiqs8s" /* 中国 */, r, x, 0xa0, e, "https://wanwang.aliyun.com/hosting/cn_domain", w{"h.dns.cn", "i.dns.cn", "j.dns.cn", "k.dns.cn", "l.dns.cn", "m.dns.cn", "n.dns.cn"}, w{"218.241.105.10", "wildcard.cnnic.cn"}, n, w{"zh-Hans-CN"}, "cwhois.cnnic.cn", e, n, t},
1786 {"xn--fiqz9s" /* 中國 */, r, x, 0xa0, e, "https://wanwang.aliyun.com/hosting/cn_domain", w{"h.dns.cn", "i.dns.cn", "j.dns.cn", "k.dns.cn", "l.dns.cn", "m.dns.cn", "n.dns.cn"}, w{"218.241.105.10", "wildcard.cnnic.cn"}, n, w{"zh-Hant-CN"}, "cwhois.cnnic.cn", e, n, t},
17841787 {"xn--fiq228c5hs" /* 中文网 */, r, x, 0x40, "TLD REGISTRY LIMITED OY", e, w{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, w{"zh-CN", "zh-Hans", "zh-Hant"}, "whois.teleinfo.cn", e, w{"https://rdap.teleinfo.cn/xn--fiq228c5hs/"}, t},
1785 {"xn--jlq480n2rg" /* 亚马逊 */, r, x, 0x42, "Amazon Registry Services, Inc.", "http://nic.xn--jlq480n2rg/", w{"dns1.nic.xn--jlq480n2rg", "dns2.nic.xn--jlq480n2rg", "dns3.nic.xn--jlq480n2rg", "dns4.nic.xn--jlq480n2rg", "dnsa.nic.xn--jlq480n2rg", "dnsb.nic.xn--jlq480n2rg", "dnsc.nic.xn--jlq480n2rg", "dnsd.nic.xn--jlq480n2rg"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.xn--jlq480n2rg", e, w{"https://rdap.nominet.uk/xn--jlq480n2rg/"}, t},
1786 {"xn--vhquv" /* 企业 */, r, x, 0, "Binky Moon, LLC", "https://newgtlds.icann.org/", w{"v0n0.nic.xn--vhquv", "v0n1.nic.xn--vhquv", "v0n2.nic.xn--vhquv", "v0n3.nic.xn--vhquv", "v2n0.nic.xn--vhquv", "v2n1.nic.xn--vhquv"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.xn--vhquv", e, w{"https://rdap.donuts.co/rdap/"}, t},
1787 {"xn--1qqw23a" /* 佛山 */, r, x, 0xc4, "Guangzhou YU Wei Information Technology Co., Ltd.", "https://newgtlds.icann.org/", w{"ta.ngtld.cn", "tb.ngtld.cn", "tc.ngtld.cn", "td.ngtld.cn", "te.ngtld.cn"}, n, w{"Foshan"}, w{"zh-Hans"}, "whois.ngtld.cn", e, w{"https://restwhois.ngtld.cn/"}, t},
1788 {"xn--vuq861b" /* 信息 */, r, x, 0, "Beijing Tele-info Network Technology Co., Ltd.", "https://newgtlds.icann.org/", w{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.teleinfo.cn", e, w{"https://rdap.teleinfo.cn/"}, t},
1789 {"xn--nyqy26a" /* 健康 */, r, x, 0, "Stable Tone Limited", "https://newgtlds.icann.org/", w{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "it", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh-Hans", "zh-Hant"}, "whois.nic.xn--nyqy26a", e, w{"https://rdap.teleinfo.cn/xn--nyqy26a/"}, t},
1790 {"xn--45q11c" /* 八卦 */, r, x, 0, "Zodiac Gemini Ltd", "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.gtld.knet.cn", e, w{"https://rdap.zdnsgtld.com/XN--45Q11C/"}, t},
1788 {"xn--jlq480n2rg" /* 亚马逊 */, r, x, 0x42, "Amazon Registry Services, Inc.", "https://nic.xn--jlq480n2rg/", w{"dns1.nic.xn--jlq480n2rg", "dns2.nic.xn--jlq480n2rg", "dns3.nic.xn--jlq480n2rg", "dns4.nic.xn--jlq480n2rg", "dnsa.nic.xn--jlq480n2rg", "dnsb.nic.xn--jlq480n2rg", "dnsc.nic.xn--jlq480n2rg", "dnsd.nic.xn--jlq480n2rg"}, n, n, w{"da", "de", "es", "fi", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.xn--jlq480n2rg", e, w{"https://rdap.nominet.uk/xn--jlq480n2rg/"}, t},
1789 {"xn--vhquv" /* 企业 */, r, x, 0, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.xn--vhquv", "v0n1.nic.xn--vhquv", "v0n2.nic.xn--vhquv", "v0n3.nic.xn--vhquv", "v2n0.nic.xn--vhquv", "v2n1.nic.xn--vhquv"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.xn--vhquv", e, w{"https://rdap.donuts.co/rdap/"}, t},
1790 {"xn--1qqw23a" /* 佛山 */, r, x, 0xc4, "Guangzhou YU Wei Information Technology Co., Ltd.", "https://www.icann.org/en/registry-agreements/details/xn--1qqw23a", w{"ta.ngtld.cn", "tb.ngtld.cn", "tc.ngtld.cn", "td.ngtld.cn", "te.ngtld.cn"}, n, w{"Foshan"}, w{"zh-Hans"}, "whois.ngtld.cn", e, w{"https://restwhois.ngtld.cn/"}, t},
1791 {"xn--vuq861b" /* 信息 */, r, x, 0, "Beijing Tele-info Network Technology Co., Ltd.", "https://www.icann.org/en/registry-agreements/details/xn--vuq861b", w{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.teleinfo.cn", e, w{"https://rdap.teleinfo.cn/"}, t},
1792 {"xn--nyqy26a" /* 健康 */, r, x, 0, "Stable Tone Limited", "https://www.icann.org/en/registry-agreements/details/xn--nyqy26a", w{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "it", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh-Hans", "zh-Hant"}, "whois.nic.xn--nyqy26a", e, w{"https://rdap.teleinfo.cn/xn--nyqy26a/"}, t},
1793 {"xn--45q11c" /* 八卦 */, r, x, 0, "Zodiac Gemini Ltd", "https://www.icann.org/en/registry-agreements/details/xn--45q11c", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.gtld.knet.cn", e, w{"https://rdap.zdnsgtld.com/XN--45Q11C/"}, t},
17911794 {"xn--55qx5d" /* 公司 */, r, x, 0, "China Internet Network Information Center (CNNIC)", e, w{"a.ngtld.cn", "b.ngtld.cn", "c.ngtld.cn", "d.ngtld.cn", "e.ngtld.cn"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.ngtld.cn", e, w{"https://restwhois.ngtld.cn/"}, t},
1792 {"xn--55qw42g" /* 公益 */, r, x, 0, "China Organizational Name Administration Center", "https://newgtlds.icann.org/", w{"ns1.conac.cn", "ns2.conac.cn", "ns3.conac.cn", "ns4.conac.cn", "ns5.conac.cn"}, n, n, w{"zh"}, "whois.conac.cn", e, w{"https://rdap.conac.cn/"}, t},
1795 {"xn--55qw42g" /* 公益 */, r, x, 0, "China Organizational Name Administration Center", "https://www.icann.org/en/registry-agreements/details/xn--55qw42g", w{"ns1.conac.cn", "ns2.conac.cn", "ns3.conac.cn", "ns4.conac.cn", "ns5.conac.cn"}, n, n, w{"zh"}, "whois.conac.cn", e, w{"https://rdap.conac.cn/"}, t},
17931796 {"xn--kprw13d" /* 台湾 */, r, x, 0xa0, e, e, w{"anytld.apnic.net", "d.dns.tw", "e.dns.tw", "f.dns.tw", "g.dns.tw", "h.dns.tw"}, n, n, w{"zh-Hans-TW"}, "whois.twnic.net.tw", e, n, t},
17941797 {"xn--kpry57d" /* 台灣 */, r, x, 0xa0, e, e, w{"anytld.apnic.net", "d.dns.tw", "e.dns.tw", "f.dns.tw", "g.dns.tw", "h.dns.tw"}, n, n, w{"zh-Hant-TW"}, "whois.twnic.net.tw", e, n, t},
1795 {"xn--czru2d" /* 商城 */, r, x, 0, "Zodiac Aquarius Limited", e, w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.gtld.knet.cn", e, w{"https://rdap.zdnsgtld.com/xn--czru2d/"}, t},
1796 {"xn--czrs0t" /* 商店 */, r, x, 0, "Binky Moon, LLC", "https://newgtlds.icann.org/", w{"v0n0.nic.xn--czrs0t", "v0n1.nic.xn--czrs0t", "v0n2.nic.xn--czrs0t", "v0n3.nic.xn--czrs0t", "v2n0.nic.xn--czrs0t", "v2n1.nic.xn--czrs0t"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.xn--czrs0t", e, w{"https://rdap.donuts.co/rdap/"}, t},
1797 {"xn--czr694b" /* 商标 */, r, x, 0, "Internet DotTrademark Organisation Limited", "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, e, e, w{"https://rdap.zdnsgtld.com/xn--czr694b/"}, t},
1798 {"xn--w4rs40l" /* 嘉里 */, r, x, 0x2, "Kerry Trading Co. Limited", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.xn--w4rs40l", e, w{"https://tld-rdap.verisign.com/xn--w4rs40l/v1/"}, t},
1799 {"xn--w4r85el8fhu5dnra" /* 嘉里大酒店 */, r, x, 0x40, "Kerry Trading Co. Limited", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.xn--w4r85el8fhu5dnra", e, w{"https://tld-rdap.verisign.com/xn--w4r85el8fhu5dnra/v1/"}, t},
1798 {"xn--czru2d" /* 商城 */, r, x, 0, "Zodiac Aquarius Limited", e, w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.gtld.knet.cn", e, w{"https://rdap.zdnsgtld.com/xn--czru2d/"}, t},
1799 {"xn--czrs0t" /* 商店 */, r, x, 0, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.xn--czrs0t", "v0n1.nic.xn--czrs0t", "v0n2.nic.xn--czrs0t", "v0n3.nic.xn--czrs0t", "v2n0.nic.xn--czrs0t", "v2n1.nic.xn--czrs0t"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.xn--czrs0t", e, w{"https://rdap.donuts.co/rdap/"}, t},
1800 {"xn--czr694b" /* 商标 */, r, x, 0, "Internet DotTrademark Organisation Limited", "https://www.icann.org/en/registry-agreements/details/xn--czr694b", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, e, e, w{"https://rdap.zdnsgtld.com/xn--czr694b/"}, t},
1801 {"xn--w4rs40l" /* 嘉里 */, r, x, 0x2, "Kerry Trading Co. Limited", "https://www.icann.org/en/registry-agreements/details/xn--w4rs40l", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.xn--w4rs40l", e, w{"https://tld-rdap.verisign.com/xn--w4rs40l/v1/"}, t},
1802 {"xn--w4r85el8fhu5dnra" /* 嘉里大酒店 */, r, x, 0x40, "Kerry Trading Co. Limited", "https://www.icann.org/en/registry-agreements/details/xn--w4r85el8fhu5dnra", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.xn--w4r85el8fhu5dnra", e, w{"https://tld-rdap.verisign.com/xn--w4r85el8fhu5dnra/v1/"}, t},
18001803 {"xn--3ds443g" /* 在线 */, r, x, 0x40, "TLD REGISTRY LIMITED OY", e, w{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, w{"zh-CN", "zh-Hans", "zh-Hant"}, "whois.teleinfo.cn", e, w{"https://rdap.teleinfo.cn/xn--3ds443g/"}, t},
1801 {"xn--3oq18vl8pn36a" /* 大众汽车 */, r, x, 0x842, "Volkswagen (China) Investment Co., Ltd.", "https://newgtlds.icann.org/", n, n, n, w{"be", "bg", "bs", "da", "de", "es", "hu", "is", "ko", "lt", "lv", "mk", "pl", "ru", "sr", "sr-ME", "sv", "uk", "zh-Hans", "zh-Hant"}, "whois.nic.xn--3oq18vl8pn36a", e, w{"https://rdap.afilias-srs.net/rdap/xn--3oq18vl8pn36a/"}, t},
1802 {"xn--pssy2u" /* 大拿 */, r, x, 0, "VeriSign Sarl", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "el", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "uk", "zh"}, "whois.nic.xn--pssy2u", e, w{"https://tld-rdap.verisign.com/xn--pssy2u/v1/"}, t},
1803 {"xn--tiq49xqyj" /* 天主教 */, r, x, 0x40, "Pontificium Consilium de Comunicationibus Socialibus (PCCS) (Pontifical Council for Social Communication)", "https://newgtlds.icann.org/", w{"a.nic.xn--tiq49xqyj", "b.nic.xn--tiq49xqyj", "c.nic.xn--tiq49xqyj", "d.nic.xn--tiq49xqyj"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.nic.xn--tiq49xqyj", e, w{"https://rdap.nic.xn--/-dr6ar36avim"}, t},
1804 {"xn--fjq720a" /* 娱乐 */, r, x, 0, "Binky Moon, LLC", "https://newgtlds.icann.org/", w{"v0n0.nic.xn--fjq720a", "v0n1.nic.xn--fjq720a", "v0n2.nic.xn--fjq720a", "v0n3.nic.xn--fjq720a", "v2n0.nic.xn--fjq720a", "v2n1.nic.xn--fjq720a"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.xn--fjq720a", e, w{"https://rdap.donuts.co/rdap/"}, t},
1805 {"xn--fct429k" /* 家電 */, r, x, 0, "Amazon Registry Services, Inc.", "https://newgtlds.icann.org/", w{"a.nic.xn--fct429k", "b.nic.xn--fct429k", "c.nic.xn--fct429k", "ns1.dns.nic.xn--fct429k", "ns2.dns.nic.xn--fct429k", "ns3.dns.nic.xn--fct429k"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.xn--fct429k", e, w{"https://rdap.nic.xn--/-ke2bt46o"}, t},
1806 {"xn--estv75g" /* 工行 */, r, x, 0x800, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.xn--estv75g", e, n, t},
1807 {"xn--xhq521b" /* 广东 */, r, x, 0, "Guangzhou YU Wei Information Technology Co., Ltd.", "https://newgtlds.icann.org/", w{"ta.ngtld.cn", "tb.ngtld.cn", "tc.ngtld.cn", "td.ngtld.cn", "te.ngtld.cn"}, n, n, w{"zh-Hans"}, "whois.ngtld.cn", e, w{"https://restwhois.ngtld.cn/"}, t},
1808 {"xn--6rtwn" /* 广州 */, r, x, 0x2000, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, t},
1809 {"xn--9krt00a" /* 微博 */, r, x, 0x42, "Sina Corporation", "https://newgtlds.icann.org/", w{"a0.nic.xn--9krt00a", "a2.nic.xn--9krt00a", "b0.nic.xn--9krt00a", "c0.nic.xn--9krt00a"}, n, n, w{"zh-CN", "zh-TW"}, "whois.nic.xn--9krt00a", e, w{"https://rdap.afilias-srs.net/rdap/xn--9krt00a/"}, t},
1810 {"xn--30rr7y" /* 慈善 */, r, x, 0, "Excellent First Limited", "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.gtld.knet.cn", e, w{"https://rdap.zdnsgtld.com/xn--30rr7y/"}, t},
1811 {"xn--6qq986b3xl" /* 我爱你 */, r, x, 0x40, "Tycoon Treasure Limited", "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.gtld.knet.cn", e, w{"https://rdap.zdnsgtld.com/xn--6qq986b3xl/"}, t},
1812 {"xn--kput3i" /* 手机 */, r, x, 0x40, "Beijing RITT-Net Technology Development Co., Ltd", "https://newgtlds.icann.org/", w{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, w{"zh-CN", "zh-Hans", "zh-Hant", "zh-TW"}, "whois.nic.xn--kput3i", e, w{"https://rdap.registrysystem.net/rdap/xn--kput3i/"}, t},
1813 {"xn--kpu716f" /* 手表 */, r, x, 0x800, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.xn--kpu716f", e, n, t},
1814 {"xn--otu796d" /* 招聘 */, r, x, 0, "Jiang Yu Liang Cai Technology Company Limited", "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, e, e, w{"https://rdap.zdnsgtld.com/xn--otu796d/"}, t},
1815 {"xn--zfr164b" /* 政务 */, r, x, 0, "China Organizational Name Administration Center", "https://newgtlds.icann.org/", w{"ns1.conac.cn", "ns2.conac.cn", "ns3.conac.cn", "ns4.conac.cn", "ns5.conac.cn"}, n, n, w{"zh"}, "whois.conac.cn", e, w{"https://rdap.conac.cn/"}, t},
1816 {"xn--mxtq1m" /* 政府 */, r, x, 0, "Net-Chinese Co., Ltd.", "https://newgtlds.icann.org/", w{"a.nic.xn--mxtq1m", "b.nic.xn--mxtq1m", "c.nic.xn--mxtq1m", "d.nic.xn--mxtq1m"}, n, n, n, "whois.nic.xn--mxtq1m", e, w{"https://rdap.twnic.tw/rdap/"}, t},
1804 {"xn--3oq18vl8pn36a" /* 大众汽车 */, r, x, 0x842, "Volkswagen (China) Investment Co., Ltd.", e, n, n, n, w{"be", "bg", "bs", "da", "de", "es", "hu", "is", "ko", "lt", "lv", "mk", "pl", "ru", "sr", "sr-ME", "sv", "uk", "zh-Hans", "zh-Hant"}, "whois.nic.xn--3oq18vl8pn36a", e, w{"https://rdap.afilias-srs.net/rdap/xn--3oq18vl8pn36a/"}, t},
1805 {"xn--pssy2u" /* 大拿 */, r, x, 0, "VeriSign Sarl", "https://www.icann.org/en/registry-agreements/details/xn--pssy2u", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "el", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "uk", "zh"}, "whois.nic.xn--pssy2u", e, w{"https://tld-rdap.verisign.com/xn--pssy2u/v1/"}, t},
1806 {"xn--tiq49xqyj" /* 天主教 */, r, x, 0x40, "Pontificium Consilium de Comunicationibus Socialibus (PCCS) (Pontifical Council for Social Communication)", "http://nic.xn--tiq49xqyj/", w{"a.nic.xn--tiq49xqyj", "b.nic.xn--tiq49xqyj", "c.nic.xn--tiq49xqyj", "d.nic.xn--tiq49xqyj"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.nic.xn--tiq49xqyj", e, w{"https://rdap.nic.xn--/-dr6ar36avim"}, t},
1807 {"xn--fjq720a" /* 娱乐 */, r, x, 0, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.xn--fjq720a", "v0n1.nic.xn--fjq720a", "v0n2.nic.xn--fjq720a", "v0n3.nic.xn--fjq720a", "v2n0.nic.xn--fjq720a", "v2n1.nic.xn--fjq720a"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.xn--fjq720a", e, w{"https://rdap.donuts.co/rdap/"}, t},
1808 {"xn--fct429k" /* 家電 */, r, x, 0, "Amazon Registry Services, Inc.", "https://nic.xn--fct429k/", w{"a.nic.xn--fct429k", "b.nic.xn--fct429k", "c.nic.xn--fct429k", "ns1.dns.nic.xn--fct429k", "ns2.dns.nic.xn--fct429k", "ns3.dns.nic.xn--fct429k"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.xn--fct429k", e, w{"https://rdap.nic.xn--/-ke2bt46o"}, t},
1809 {"xn--estv75g" /* 工行 */, r, x, 0x800, e, e, n, n, n, n, "whois.nic.xn--estv75g", e, n, t},
1810 {"xn--xhq521b" /* 广东 */, r, x, 0, "Guangzhou YU Wei Information Technology Co., Ltd.", "https://www.icann.org/en/registry-agreements/details/xn--xhq521b", w{"ta.ngtld.cn", "tb.ngtld.cn", "tc.ngtld.cn", "td.ngtld.cn", "te.ngtld.cn"}, n, n, w{"zh-Hans"}, "whois.ngtld.cn", e, w{"https://restwhois.ngtld.cn/"}, t},
1811 {"xn--6rtwn" /* 广州 */, r, x, 0x4000, e, e, n, n, n, n, e, e, n, t},
1812 {"xn--9krt00a" /* 微博 */, r, x, 0x42, "Sina Corporation", "https://www.icann.org/en/registry-agreements/details/xn--9krt00a", w{"a0.nic.xn--9krt00a", "a2.nic.xn--9krt00a", "b0.nic.xn--9krt00a", "c0.nic.xn--9krt00a"}, n, n, w{"zh-CN", "zh-TW"}, "whois.nic.xn--9krt00a", e, w{"https://rdap.afilias-srs.net/rdap/xn--9krt00a/"}, t},
1813 {"xn--30rr7y" /* 慈善 */, r, x, 0, "Excellent First Limited", "https://www.icann.org/en/registry-agreements/details/xn--30rr7y", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.gtld.knet.cn", e, w{"https://rdap.zdnsgtld.com/xn--30rr7y/"}, t},
1814 {"xn--6qq986b3xl" /* 我爱你 */, r, x, 0x40, "Tycoon Treasure Limited", "http://520.newgtld.cn/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.gtld.knet.cn", e, w{"https://rdap.zdnsgtld.com/xn--6qq986b3xl/"}, t},
1815 {"xn--kput3i" /* 手机 */, r, x, 0x40, "Beijing RITT-Net Technology Development Co., Ltd", "https://www.icann.org/en/registry-agreements/details/xn--kput3i", w{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, w{"zh-CN", "zh-Hans", "zh-Hant", "zh-TW"}, "whois.nic.xn--kput3i", e, w{"https://rdap.registrysystem.net/rdap/xn--kput3i/"}, t},
1816 {"xn--kpu716f" /* 手表 */, r, x, 0x800, e, e, n, n, n, n, "whois.nic.xn--kpu716f", e, n, t},
1817 {"xn--otu796d" /* 招聘 */, r, x, 0, "Jiang Yu Liang Cai Technology Company Limited", "https://www.icann.org/en/registry-agreements/details/xn--otu796d", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, e, e, w{"https://rdap.zdnsgtld.com/xn--otu796d/"}, t},
1818 {"xn--zfr164b" /* 政务 */, r, x, 0, "China Organizational Name Administration Center", "https://www.icann.org/en/registry-agreements/details/xn--zfr164b", w{"ns1.conac.cn", "ns2.conac.cn", "ns3.conac.cn", "ns4.conac.cn", "ns5.conac.cn"}, n, n, w{"zh"}, "whois.conac.cn", e, w{"https://rdap.conac.cn/"}, t},
1819 {"xn--mxtq1m" /* 政府 */, r, x, 0, "Net-Chinese Co., Ltd.", "https://www.icann.org/en/registry-agreements/details/xn--mxtq1m", w{"a.nic.xn--mxtq1m", "b.nic.xn--mxtq1m", "c.nic.xn--mxtq1m", "d.nic.xn--mxtq1m"}, n, n, n, "whois.nic.xn--mxtq1m", e, w{"https://rdap.twnic.tw/rdap/"}, t},
18171820 {"xn--yfro4i67o" /* 新加坡 */, r, x, 0xa0, e, e, w{"dsany.sgnic.sg", "dsany2.sgnic.sg", "dsany3.sgnic.sg", "ns4.apnic.net", "pch.sgzones.sg"}, n, n, n, "whois.sgnic.sg", e, n, t},
1818 {"xn--efvy88h" /* 新闻 */, r, x, 0, "Guangzhou YU Wei Information Technology Co., Ltd.", "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.nic.xn--efvy88h", e, w{"https://rdap.zdnsgtld.com/XN--EFVY88H/"}, t},
1819 {"xn--9et52u" /* 时尚 */, r, x, 0, "RISE VICTORY LIMITED", "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.gtld.knet.cn", e, w{"https://rdap.zdnsgtld.com/xn--9et52u/"}, t},
1820 {"xn--kcrx7bb75ajk3b" /* 普利司通 */, r, x, 0x2040, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, t},
1821 {"xn--rovu88b" /* 書籍 */, r, x, 0, "Amazon Registry Services, Inc.", "https://newgtlds.icann.org/", w{"a.nic.xn--rovu88b", "b.nic.xn--rovu88b", "c.nic.xn--rovu88b", "ns1.dns.nic.xn--rovu88b", "ns2.dns.nic.xn--rovu88b", "ns3.dns.nic.xn--rovu88b"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.xn--rovu88b", e, w{"https://rdap.nic.xn--/-826b334d"}, t},
1822 {"xn--nqv7f" /* 机构 */, r, x, 0x40, "Public Interest Registry", "https://pir.org/products/chinese2char-domain/", w{"a0.nic.xn--nqv7f", "a2.nic.xn--nqv7f", "b0.nic.xn--nqv7f", "c0.nic.xn--nqv7f"}, n, n, w{"zh-CN", "zh-TW"}, "whois.nic.xn--nqv7f", e, w{"https://rdap.publicinterestregistry.org/rdap/"}, t},
1823 {"xn--tqq33ed31aqia" /* 机构体制 */, r, x, 0x40, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, t},
1824 {"xn--dkwm73cwpn" /* 欧莱雅 */, r, x, 0x2040, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, t},
1825 {"xn--0zwm56d" /* 测试 */, r, x, 0, e, e, n, n, n, n, e, e, n, t},
1826 {"xn--b4w605ferd" /* 淡马锡 */, r, x, 0x42, "Temasek Holdings (Private) Limited", "https://newgtlds.icann.org/", w{"a0.nic.xn--b4w605ferd", "a2.nic.xn--b4w605ferd", "b0.nic.xn--b4w605ferd", "c0.nic.xn--b4w605ferd"}, n, n, w{"zh-CN", "zh-TW"}, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/xn--b4w605ferd/"}, t},
1827 {"xn--fes124c" /* 深圳 */, r, x, 0x2000, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, t},
1828 {"xn--g6w251d" /* 測試 */, r, x, 0, e, e, n, n, n, n, e, e, n, t},
1829 {"xn--unup4y" /* 游戏 */, r, x, 0, "Binky Moon, LLC", "https://newgtlds.icann.org/", w{"v0n0.nic.xn--unup4y", "v0n1.nic.xn--unup4y", "v0n2.nic.xn--unup4y", "v0n3.nic.xn--unup4y", "v2n0.nic.xn--unup4y", "v2n1.nic.xn--unup4y"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.xn--unup4y", e, w{"https://rdap.donuts.co/rdap/"}, t},
1821 {"xn--efvy88h" /* 新闻 */, r, x, 0, "Guangzhou YU Wei Information Technology Co., Ltd.", "https://www.icann.org/en/registry-agreements/details/xn--efvy88h", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.nic.xn--efvy88h", e, w{"https://rdap.zdnsgtld.com/XN--EFVY88H/"}, t},
1822 {"xn--9et52u" /* 时尚 */, r, x, 0, "RISE VICTORY LIMITED", "https://www.icann.org/en/registry-agreements/details/xn--9et52u", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.gtld.knet.cn", e, w{"https://rdap.zdnsgtld.com/xn--9et52u/"}, t},
1823 {"xn--kcrx7bb75ajk3b" /* 普利司通 */, r, x, 0x4040, e, e, n, n, n, n, e, e, n, t},
1824 {"xn--rovu88b" /* 書籍 */, r, x, 0, "Amazon Registry Services, Inc.", "https://nic.xn--rovu88b/", w{"a.nic.xn--rovu88b", "b.nic.xn--rovu88b", "c.nic.xn--rovu88b", "ns1.dns.nic.xn--rovu88b", "ns2.dns.nic.xn--rovu88b", "ns3.dns.nic.xn--rovu88b"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.xn--rovu88b", e, w{"https://rdap.nic.xn--/-826b334d"}, t},
1825 {"xn--nqv7f" /* 机构 */, r, x, 0x40, "Public Interest Registry", "https://thenew.org/org-people/domain-products/%E6%9C%BA%E6%9E%84/", w{"a0.nic.xn--nqv7f", "a2.nic.xn--nqv7f", "b0.nic.xn--nqv7f", "c0.nic.xn--nqv7f"}, n, n, w{"zh-CN", "zh-TW"}, "whois.nic.xn--nqv7f", e, w{"https://rdap.publicinterestregistry.org/rdap/"}, t},
1826 {"xn--tqq33ed31aqia" /* 机构体制 */, r, x, 0x4040, e, e, n, n, n, n, e, e, n, t},
1827 {"xn--dkwm73cwpn" /* 欧莱雅 */, r, x, 0x4040, e, e, n, n, n, n, e, e, n, t},
1828 {"xn--0zwm56d" /* 测试 */, r, x, 0x2800, "IANA", "https://www.iana.org/domains/reserved", n, n, n, n, e, e, n, t},
1829 {"xn--b4w605ferd" /* 淡马锡 */, r, x, 0x42, "Temasek Holdings (Private) Limited", "https://www.temasek.com.sg/zh/site-services/nictemasek", w{"a0.nic.xn--b4w605ferd", "a2.nic.xn--b4w605ferd", "b0.nic.xn--b4w605ferd", "c0.nic.xn--b4w605ferd"}, n, n, w{"zh-CN", "zh-TW"}, "whois.afilias-srs.net", e, w{"https://rdap.afilias-srs.net/rdap/xn--b4w605ferd/"}, t},
1830 {"xn--fes124c" /* 深圳 */, r, x, 0x4000, e, e, n, n, n, n, e, e, n, t},
1831 {"xn--g6w251d" /* 測試 */, r, x, 0x2800, "IANA", "https://www.iana.org/domains/reserved", n, n, n, n, e, e, n, t},
1832 {"xn--unup4y" /* 游戏 */, r, x, 0, "Binky Moon, LLC", "https://identity.digital/", w{"v0n0.nic.xn--unup4y", "v0n1.nic.xn--unup4y", "v0n2.nic.xn--unup4y", "v0n3.nic.xn--unup4y", "v2n0.nic.xn--unup4y", "v2n1.nic.xn--unup4y"}, n, n, w{"de", "es", "fr", "ja", "ko", "mul-Arab", "mul-Cyrl", "mul-Deva", "mul-Grek", "mul-Hebr", "mul-Latn", "mul-Taml", "mul-Thai", "zh"}, "whois.nic.xn--unup4y", e, w{"https://rdap.donuts.co/rdap/"}, t},
18301833 {"xn--mix891f" /* 澳門 */, r, x, 0xa0, e, e, w{"a.monic.mo", "b.monic.mo", "c.monic.mo", "d.monic.mo", "e.monic.mo", "ns17.cdns.net", "ns2.cuhk.edu.hk"}, n, n, n, "whois.monic.mo", e, n, t},
1831 {"xn--3pxu8k" /* 点看 */, r, x, 0, "VeriSign Sarl", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "el", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "uk", "zh"}, "whois.nic.xn--3pxu8k", e, w{"https://tld-rdap.verisign.com/xn--3pxu8k/v1/"}, t},
1832 {"xn--pbt977c" /* 珠宝 */, r, x, 0x800, e, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.xn--pbt977c", e, n, t},
1833 {"xn--hxt035cmppuel" /* 盛貿飯店 */, r, x, 0x40, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, t},
1834 {"xn--3pxu8k" /* 点看 */, r, x, 0, "VeriSign Sarl", "https://www.icann.org/en/registry-agreements/details/xn--3pxu8k", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "el", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "uk", "zh"}, "whois.nic.xn--3pxu8k", e, w{"https://tld-rdap.verisign.com/xn--3pxu8k/v1/"}, t},
1835 {"xn--pbt977c" /* 珠宝 */, r, x, 0x800, e, e, n, n, n, n, "whois.nic.xn--pbt977c", e, n, t},
1836 {"xn--hxt035cmppuel" /* 盛貿飯店 */, r, x, 0x4040, e, e, n, n, n, n, e, e, n, t},
18341837 {"xn--6frz82g" /* 移动 */, r, x, 0, "Identity Digital Limited", e, w{"a0.nic.xn--6frz82g", "a2.nic.xn--6frz82g", "b0.nic.xn--6frz82g", "c0.nic.xn--6frz82g"}, n, n, w{"ar", "be", "bg", "bs", "da", "de", "es", "fi", "fr", "hi", "hu", "is", "it", "ko", "lt", "lv", "mk", "pl", "pt", "ru", "sr", "sr-ME", "sv", "uk", "zh-CN", "zh-TW"}, "whois.nic.xn--6frz82g", e, w{"https://rdap.donuts.co/rdap/"}, t},
1835 {"xn--nqv7fs00ema" /* 组织机构 */, r, x, 0x40, "Public Interest Registry", "https://newgtlds.icann.org/", w{"a0.nic.xn--nqv7fs00ema", "a2.nic.xn--nqv7fs00ema", "b0.nic.xn--nqv7fs00ema", "c0.nic.xn--nqv7fs00ema"}, n, n, w{"zh-CN", "zh-TW"}, "whois.nic.xn--nqv7fs00ema", e, w{"https://rdap.publicinterestregistry.org/rdap/"}, t},
1836 {"xn--ses554g" /* 网址 */, r, x, 0, "KNET Co., Ltd.", "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, w{"de", "es", "fr", "ja", "ru", "zh-Hans", "zh-Hant"}, "whois.nic.xn--ses554g", e, w{"https://rdap.zdnsgtld.com/xn--ses554g/"}, t},
1837 {"xn--hxt814e" /* 网店 */, r, x, 0, "Zodiac Taurus Limited", "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.gtld.knet.cn", e, w{"https://rdap.zdnsgtld.com/xn--hxt814e/"}, t},
1838 {"xn--5tzm5g" /* 网站 */, r, x, 0x40, "Global Website TLD Asia Limited", "https://nic.xn--5tzm5g/", w{"a0.nic.xn--5tzm5g", "a2.nic.xn--5tzm5g", "b0.nic.xn--5tzm5g", "c0.nic.xn--5tzm5g"}, n, n, w{"zh-CN", "zh-TW"}, "whois.nic.xn--5tzm5g", e, w{"https://rdap.donuts.co/rdap/"}, t},
1838 {"xn--nqv7fs00ema" /* 组织机构 */, r, x, 0x40, "Public Interest Registry", "https://thenew.org/org-people/work-with-us/contact/", w{"a0.nic.xn--nqv7fs00ema", "a2.nic.xn--nqv7fs00ema", "b0.nic.xn--nqv7fs00ema", "c0.nic.xn--nqv7fs00ema"}, n, n, w{"zh-CN", "zh-TW"}, "whois.nic.xn--nqv7fs00ema", e, w{"https://rdap.publicinterestregistry.org/rdap/"}, t},
1839 {"xn--ses554g" /* 网址 */, r, x, 0, "KNET Co., Ltd.", "http://nic.xn--ses554g/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com"}, n, n, w{"de", "es", "fr", "ja", "ru", "zh-Hans", "zh-Hant"}, "whois.nic.xn--ses554g", e, w{"https://rdap.zdnsgtld.com/xn--ses554g/"}, t},
1840 {"xn--hxt814e" /* 网店 */, r, x, 0, "Zodiac Taurus Limited", "https://www.icann.org/en/registry-agreements/details/xn--hxt814e", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.gtld.knet.cn", e, w{"https://rdap.zdnsgtld.com/xn--hxt814e/"}, t},
1841 {"xn--5tzm5g" /* 网站 */, r, x, 0x40, "Global Website TLD Asia Limited", "https://identity.digital/", w{"a0.nic.xn--5tzm5g", "a2.nic.xn--5tzm5g", "b0.nic.xn--5tzm5g", "c0.nic.xn--5tzm5g"}, n, n, w{"zh-CN", "zh-TW"}, "whois.nic.xn--5tzm5g", e, w{"https://rdap.donuts.co/rdap/"}, t},
18391842 {"xn--io0a7i" /* 网络 */, r, x, 0, "China Internet Network Information Center (CNNIC)", e, w{"a.ngtld.cn", "b.ngtld.cn", "c.ngtld.cn", "d.ngtld.cn", "e.ngtld.cn"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.ngtld.cn", e, w{"https://restwhois.ngtld.cn/"}, t},
1840 {"xn--8y0a063a" /* 联通 */, r, x, 0x2, "China United Network Communications Corporation Limited", "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.nic.xn--8y0a063a", e, w{"https://rdap.zdnsgtld.com/xn--8y0a063a/"}, t},
1841 {"xn--jlq61u9w7b" /* 诺基亚 */, r, x, 0x42, "Nokia Corporation", "https://newgtlds.icann.org/", w{"a0.nic.xn--jlq61u9w7b", "a2.nic.xn--jlq61u9w7b", "b0.nic.xn--jlq61u9w7b", "c0.nic.xn--jlq61u9w7b"}, n, n, w{"zh-CN", "zh-TW"}, "whois.nic.xn--jlq61u9w7b", e, w{"https://rdap.afilias-srs.net/rdap/xn--jlq61u9w7b/"}, t},
1843 {"xn--8y0a063a" /* 联通 */, r, x, 0x2, "China United Network Communications Corporation Limited", "https://www.icann.org/en/registry-agreements/details/xn--8y0a063a", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.nic.xn--8y0a063a", e, w{"https://rdap.zdnsgtld.com/xn--8y0a063a/"}, t},
1844 {"xn--jlq61u9w7b" /* 诺基亚 */, r, x, 0x42, "Nokia Corporation", "http://nic.xn--jlq61u9w7b/", w{"a0.nic.xn--jlq61u9w7b", "a2.nic.xn--jlq61u9w7b", "b0.nic.xn--jlq61u9w7b", "c0.nic.xn--jlq61u9w7b"}, n, n, w{"zh-CN", "zh-TW"}, "whois.nic.xn--jlq61u9w7b", e, w{"https://rdap.afilias-srs.net/rdap/xn--jlq61u9w7b/"}, t},
18421845 {"xn--flw351e" /* 谷歌 */, r, x, 0x42, "Charleston Road Registry Inc.", "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, w{"mul-Arab", "mul-Armn", "mul-Beng", "mul-Cyrl", "mul-Deva", "mul-Ethi", "mul-Geor", "mul-Grek", "mul-Guru", "mul-Hebr", "mul-Jpan", "mul-Khmr", "mul-Knda", "mul-Kore", "mul-Latn", "mul-Mlym", "mul-Mymr", "mul-Orya", "mul-Sinh", "mul-Taml", "mul-Telu", "mul-Thai", "mul-Tibt", "zh-Hans", "zh-Hant"}, "whois.nic.google", e, w{"https://www.registry.google/rdap/"}, t},
1843 {"xn--g2xx48c" /* 购物 */, r, x, 0, "Nawang Heli(Xiamen) Network Service Co., LTD.", "https://newgtlds.icann.org/", w{"a.nic.xn--g2xx48c", "b.nic.xn--g2xx48c", "c.nic.xn--g2xx48c", "ns1.dns.nic.xn--g2xx48c", "ns2.dns.nic.xn--g2xx48c", "ns3.dns.nic.xn--g2xx48c"}, n, n, w{"zh"}, "whois.nic.xn--g2xx48c", e, w{"https://rdap.nic.xn--/-mv1c947e"}, t},
1844 {"xn--55qx5d8y0buji4b870u" /* 通用电气公司 */, r, x, 0x40, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, t},
1845 {"xn--gk3at1e" /* 通販 */, r, x, 0, "Amazon Registry Services, Inc.", "https://newgtlds.icann.org/", w{"a.nic.xn--gk3at1e", "b.nic.xn--gk3at1e", "c.nic.xn--gk3at1e", "ns1.dns.nic.xn--gk3at1e", "ns2.dns.nic.xn--gk3at1e", "ns3.dns.nic.xn--gk3at1e"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.xn--gk3at1e", e, w{"https://rdap.nic.xn--/-mu2dk8g"}, t},
1846 {"xn--3bst00m" /* 集团 */, r, x, 0, "Eagle Horizon Limited", "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.gtld.knet.cn", e, w{"https://rdap.zdnsgtld.com/xn--3bst00m/"}, t},
1847 {"xn--fzys8d69uvgm" /* 電訊盈科 */, r, x, 0x42, "PCCW Enterprises Limited", "https://newgtlds.icann.org/", w{"a0.nic.xn--fzys8d69uvgm", "a2.nic.xn--fzys8d69uvgm", "b0.nic.xn--fzys8d69uvgm", "c0.nic.xn--fzys8d69uvgm"}, n, n, w{"zh-CN", "zh-TW"}, "whois.nic.xn--fzys8d69uvgm", e, w{"https://rdap.afilias-srs.net/rdap/xn--fzys8d69uvgm/"}, t},
1848 {"xn--kcrx77d1x4a" /* 飞利浦 */, r, x, 0x42, "Koninklijke Philips N.V.", "https://newgtlds.icann.org/", w{"a.nic.xn--kcrx77d1x4a", "b.nic.xn--kcrx77d1x4a", "c.nic.xn--kcrx77d1x4a", "d.nic.xn--kcrx77d1x4a"}, n, n, w{"zh", "zh-Hans", "zh-Hant"}, "whois.nic.xn--kcrx77d1x4a", e, w{"https://rdap.nic.xn--/-ue8at05fzx3b"}, t},
1849 {"xn--jvr189m" /* 食品 */, r, x, 0, "Amazon Registry Services, Inc.", "http://nic.xn--jvr189m/", w{"a.nic.xn--jvr189m", "b.nic.xn--jvr189m", "c.nic.xn--jvr189m", "ns1.dns.nic.xn--jvr189m", "ns2.dns.nic.xn--jvr189m", "ns3.dns.nic.xn--jvr189m"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.xn--jvr189m", e, w{"https://rdap.nic.xn--/-sh9an60s"}, t},
1850 {"xn--imr513n" /* 餐厅 */, r, x, 0, "Internet DotTrademark Organisation Limited", "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, e, e, w{"https://rdap.zdnsgtld.com/xn--imr513n/"}, t},
1851 {"xn--5su34j936bgsg" /* 香格里拉 */, r, x, 0x42, "Shangri‐La International Hotel Management Limited", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.xn--5su34j936bgsg", e, w{"https://tld-rdap.verisign.com/xn--5su34j936bgsg/v1/"}, t},
1846 {"xn--g2xx48c" /* 购物 */, r, x, 0, "Nawang Heli(Xiamen) Network Service Co., LTD.", "http://nic.xn--g2xx48c/", w{"a.nic.xn--g2xx48c", "b.nic.xn--g2xx48c", "c.nic.xn--g2xx48c", "ns1.dns.nic.xn--g2xx48c", "ns2.dns.nic.xn--g2xx48c", "ns3.dns.nic.xn--g2xx48c"}, n, n, w{"zh"}, "whois.nic.xn--g2xx48c", e, w{"https://rdap.nic.xn--/-mv1c947e"}, t},
1847 {"xn--55qx5d8y0buji4b870u" /* 通用电气公司 */, r, x, 0x4040, e, e, n, n, n, n, e, e, n, t},
1848 {"xn--gk3at1e" /* 通販 */, r, x, 0, "Amazon Registry Services, Inc.", "https://nic.xn--gk3at1e/", w{"a.nic.xn--gk3at1e", "b.nic.xn--gk3at1e", "c.nic.xn--gk3at1e", "ns1.dns.nic.xn--gk3at1e", "ns2.dns.nic.xn--gk3at1e", "ns3.dns.nic.xn--gk3at1e"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.xn--gk3at1e", e, w{"https://rdap.nic.xn--/-mu2dk8g"}, t},
1849 {"xn--3bst00m" /* 集团 */, r, x, 0, "Eagle Horizon Limited", "https://www.icann.org/en/registry-agreements/details/xn--3bst00m", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, "whois.gtld.knet.cn", e, w{"https://rdap.zdnsgtld.com/xn--3bst00m/"}, t},
1850 {"xn--fzys8d69uvgm" /* 電訊盈科 */, r, x, 0x42, "PCCW Enterprises Limited", "https://www.icann.org/en/registry-agreements/details/xn--fzys8d69uvgm", w{"a0.nic.xn--fzys8d69uvgm", "a2.nic.xn--fzys8d69uvgm", "b0.nic.xn--fzys8d69uvgm", "c0.nic.xn--fzys8d69uvgm"}, n, n, w{"zh-CN", "zh-TW"}, "whois.nic.xn--fzys8d69uvgm", e, w{"https://rdap.afilias-srs.net/rdap/xn--fzys8d69uvgm/"}, t},
1851 {"xn--kcrx77d1x4a" /* 飞利浦 */, r, x, 0x42, "Koninklijke Philips N.V.", "http://nic.xn--kcrx77d1x4a/", w{"a.nic.xn--kcrx77d1x4a", "b.nic.xn--kcrx77d1x4a", "c.nic.xn--kcrx77d1x4a", "d.nic.xn--kcrx77d1x4a"}, n, n, w{"zh", "zh-Hans", "zh-Hant"}, "whois.nic.xn--kcrx77d1x4a", e, w{"https://rdap.nic.xn--/-ue8at05fzx3b"}, t},
1852 {"xn--jvr189m" /* 食品 */, r, x, 0, "Amazon Registry Services, Inc.", "https://nic.xn--jvr189m/", w{"a.nic.xn--jvr189m", "b.nic.xn--jvr189m", "c.nic.xn--jvr189m", "ns1.dns.nic.xn--jvr189m", "ns2.dns.nic.xn--jvr189m", "ns3.dns.nic.xn--jvr189m"}, n, n, w{"ar", "da", "de", "es", "fi", "fr", "hu", "is", "ja", "ko", "lt", "lv", "no", "pl", "pt", "ru", "sv", "zh"}, "whois.nic.xn--jvr189m", e, w{"https://rdap.nic.xn--/-sh9an60s"}, t},
1853 {"xn--imr513n" /* 餐厅 */, r, x, 0, "Internet DotTrademark Organisation Limited", "https://www.icann.org/en/registry-agreements/details/xn--imr513n", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com"}, n, n, w{"zh-Hans", "zh-Hant"}, e, e, w{"https://rdap.zdnsgtld.com/xn--imr513n/"}, t},
1854 {"xn--5su34j936bgsg" /* 香格里拉 */, r, x, 0x42, "Shangri‐La International Hotel Management Limited", "https://www.icann.org/en/registry-agreements/details/xn--5su34j936bgsg", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "de", "el", "es", "fr", "hr", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "sr", "sv", "uk", "zh"}, "whois.nic.xn--5su34j936bgsg", e, w{"https://tld-rdap.verisign.com/xn--5su34j936bgsg/v1/"}, t},
18521855 {"xn--j6w193g" /* 香港 */, r, z[5114:5120], 0xa0, e, e, w{"c.hkirc.net.hk", "d.hkirc.net.hk", "t.hkirc.net.hk", "u.hkirc.net.hk", "v.hkirc.net.hk", "x.hkirc.net.hk", "y.hkirc.net.hk", "z.hkirc.net.hk"}, n, n, w{"zh-Hans-HK"}, "whois.hkirc.hk", e, n, t},
1853 {"xn--j6w470d71issc" /* 香港電訊 */, r, x, 0x2040, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, t},
1854 {"xn--c1yn36f" /* 點看 */, r, x, 0, e, "https://newgtlds.icann.org/", n, n, n, n, e, e, n, t},
1855 {"xn--t60b56a" /* 닷넷 */, r, x, 0, "VeriSign Sarl", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "el", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "uk", "zh"}, "whois.nic.xn--t60b56a", e, w{"https://tld-rdap.verisign.com/xn--t60b56a/v1/"}, t},
1856 {"xn--mk1bu44c" /* 닷컴 */, r, x, 0, "VeriSign Sarl", "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "el", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "uk", "zh"}, "whois.nic.xn--mk1bu44c", e, w{"https://tld-rdap.verisign.com/xn--mk1bu44c/v1/"}, t},
1857 {"xn--cg4bki" /* 삼성 */, r, x, 0x42, "SAMSUNG SDS CO., LTD", "https://newgtlds.icann.org/", w{"ns1.xn--cg4bki.centralnic-dns.com", "ns2.xn--cg4bki.centralnic-dns.com", "ns3.xn--cg4bki.centralnic-dns.com", "ns4.xn--cg4bki.centralnic-dns.com"}, n, n, w{"ko"}, "whois.kr", e, w{"https://nic.samsung:8443/rdap/"}, t},
1858 {"xn--9t4b11yi5a" /* 테스트 */, r, x, 0x40, e, e, n, n, n, n, e, e, n, t},
1856 {"xn--j6w470d71issc" /* 香港電訊 */, r, x, 0x4040, e, e, n, n, n, n, e, e, n, t},
1857 {"xn--c1yn36f" /* 點看 */, r, x, 0x4000, e, e, n, n, n, n, e, e, n, t},
1858 {"xn--t60b56a" /* 닷넷 */, r, x, 0, "VeriSign Sarl", "https://www.icann.org/en/registry-agreements/details/xn--t60b56a", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "el", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "uk", "zh"}, "whois.nic.xn--t60b56a", e, w{"https://tld-rdap.verisign.com/xn--t60b56a/v1/"}, t},
1859 {"xn--mk1bu44c" /* 닷컴 */, r, x, 0, "VeriSign Sarl", "https://www.icann.org/en/registry-agreements/details/xn--mk1bu44c", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, w{"az", "be", "bg", "el", "ja", "ko", "ku", "mk", "mul-Arab", "mul-Armi", "mul-Armn", "mul-Avst", "mul-Bali", "mul-Bamu", "mul-Batk", "mul-Beng", "mul-Bopo", "mul-Brah", "mul-Bugi", "mul-Buhd", "mul-Cans", "mul-Cari", "mul-Cham", "mul-Cher", "mul-Copt", "mul-Cyrl", "mul-Deva", "mul-Egyp", "mul-Ethi", "mul-Geor", "mul-Glag", "mul-Grek", "mul-Gujr", "mul-Guru", "mul-Hang", "mul-Hani", "mul-Hano", "mul-Hebr", "mul-Hira", "mul-Java", "mul-Kali", "mul-Kana", "mul-Khar", "mul-Khmr", "mul-Knda", "mul-Kthi", "mul-Lana", "mul-Laoo", "mul-Latn", "mul-Lepc", "mul-Limb", "mul-Lisu", "mul-Lyci", "mul-Lydi", "mul-Mand", "mul-Mlym", "mul-Mong", "mul-Mtei", "mul-Mymr", "mul-Nkoo", "mul-Ogam", "mul-Olck", "mul-Orkh", "mul-Orya", "mul-Phag", "mul-Phli", "mul-Phnx", "mul-Prti", "mul-Rjng", "mul-Runr", "mul-Samr", "mul-Sarb", "mul-Saur", "mul-Sinh", "mul-Sund", "mul-Sylo", "mul-Syrc", "mul-Tagb", "mul-Tale", "mul-Talu", "mul-Taml", "mul-Tavt", "mul-Telu", "mul-Tfng", "mul-Tglg", "mul-Thaa", "mul-Thai", "mul-Tibt", "mul-Vaii", "mul-Xpeo", "mul-Xsux", "mul-Yiii", "pl", "ro", "ru", "uk", "zh"}, "whois.nic.xn--mk1bu44c", e, w{"https://tld-rdap.verisign.com/xn--mk1bu44c/v1/"}, t},
1860 {"xn--cg4bki" /* 삼성 */, r, x, 0x42, "SAMSUNG SDS CO., LTD", "http://nic.xn--cg4bki/", w{"ns1.xn--cg4bki.centralnic-dns.com", "ns2.xn--cg4bki.centralnic-dns.com", "ns3.xn--cg4bki.centralnic-dns.com", "ns4.xn--cg4bki.centralnic-dns.com"}, n, n, w{"ko"}, "whois.kr", e, w{"https://nic.samsung:8443/rdap/"}, t},
1861 {"xn--9t4b11yi5a" /* 테스트 */, r, x, 0x2800, "IANA", "https://www.iana.org/domains/reserved", n, n, n, n, e, e, n, t},
18591862 {"xn--3e0b707e" /* 한국 */, r, x, 0xa0, e, e, w{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, n, "whois.kr", e, n, t},
18601863 {"com.ac", &z[10], x, 0x800, e, e, n, n, n, n, e, e, n, f},
18611864 {"gov.ac", &z[10], x, 0x800, e, e, n, n, n, n, e, e, n, f},
18951898 {"net.ai", &z[35], x, 0, e, e, w{"pch.whois.ai"}, n, n, n, e, e, n, f},
18961899 {"off.ai", &z[35], x, 0, e, e, w{"pch.whois.ai"}, n, n, n, e, e, n, f},
18971900 {"org.ai", &z[35], x, 0, e, e, w{"pch.whois.ai"}, n, n, n, e, e, n, f},
1898 {"com.al", &z[42], x, 0, e, e, w{"al.cctld.authdns.ripe.net", "ns-al.isti.cnr.it", "ns1.nic.al", "ns2.nic.al", "nsx.nic.al", "rip.psg.com"}, n, n, n, e, e, n, f},
1899 {"edu.al", &z[42], x, 0, e, e, w{"al.cctld.authdns.ripe.net", "ns-al.isti.cnr.it", "ns1.nic.al", "ns2.nic.al", "nsx.nic.al", "rip.psg.com"}, n, n, n, e, e, n, f},
1900 {"gov.al", &z[42], x, 0, e, e, w{"al.cctld.authdns.ripe.net", "ns-al.isti.cnr.it", "ns1.nic.al", "ns2.nic.al", "nsx.nic.al", "rip.psg.com"}, n, n, n, e, e, n, f},
1901 {"com.al", &z[42], x, 0, e, e, w{"ns1.nic.al", "ns2.nic.al", "nsx.nic.al", "rip.psg.com"}, n, n, n, e, e, n, f},
1902 {"edu.al", &z[42], x, 0, e, e, w{"ns1.nic.al", "ns2.nic.al", "nsx.nic.al", "rip.psg.com"}, n, n, n, e, e, n, f},
1903 {"gov.al", &z[42], x, 0, e, e, w{"ns1.nic.al", "ns2.nic.al", "nsx.nic.al", "rip.psg.com"}, n, n, n, e, e, n, f},
19011904 {"inima.al", &z[42], x, 0, e, e, w{"ns1.he.net", "ns2.he.net", "ns3.he.net", "ns4.he.net", "ns5.he.net"}, n, n, n, e, e, n, f},
1902 {"net.al", &z[42], x, 0, e, e, w{"al.cctld.authdns.ripe.net", "ns-al.isti.cnr.it", "ns1.nic.al", "ns2.nic.al", "nsx.nic.al", "rip.psg.com"}, n, n, n, e, e, n, f},
1903 {"org.al", &z[42], x, 0, e, e, w{"al.cctld.authdns.ripe.net", "ns-al.isti.cnr.it", "ns1.nic.al", "ns2.nic.al", "nsx.nic.al", "rip.psg.com"}, n, n, n, e, e, n, f},
1905 {"net.al", &z[42], x, 0, e, e, w{"ns1.nic.al", "ns2.nic.al", "nsx.nic.al", "rip.psg.com"}, n, n, n, e, e, n, f},
1906 {"org.al", &z[42], x, 0, e, e, w{"ns1.nic.al", "ns2.nic.al", "nsx.nic.al", "rip.psg.com"}, n, n, n, e, e, n, f},
19041907 {"soros.al", &z[42], x, 0, e, e, w{"ns1.hostmonster.com", "ns2.hostmonster.com"}, n, n, n, e, e, n, f},
19051908 {"tirana.al", &z[42], x, 0, e, e, w{"ns3.albtelecom.net", "ns4.albtelecom.net"}, n, n, n, e, e, n, f},
19061909 {"uniti.al", &z[42], x, 0, e, e, n, n, n, n, e, e, n, f},
24142417 {"inf.cu", &z[349], x, 0, e, e, n, n, n, n, e, e, n, f},
24152418 {"net.cu", &z[349], x, 0, e, e, n, n, n, n, e, e, n, f},
24162419 {"org.cu", &z[349], x, 0, e, e, n, n, n, n, e, e, n, f},
2417 {"tur.cu", &z[349], x, 0, e, e, w{"ns.ceniai.net.cu", "ns1.g4its.com", "ns1.tur.cu", "ns2.g4its.com", "ns2.tur.cu", "ns3.tur.cu", "ns4.tur.cu", "ns5.tur.cu"}, n, n, n, e, e, n, f},
2420 {"tur.cu", &z[349], x, 0, e, e, w{"ns1.tur.cu", "ns2.tur.cu", "ns3.tur.cu", "ns4.tur.cu"}, n, n, n, e, e, n, f},
24182421 {"com.cv", &z[351], x, 0, e, e, n, n, n, n, e, e, n, f},
24192422 {"edu.cv", &z[351], x, 0, e, e, n, n, n, n, e, e, n, t},
24202423 {"gov.cv", &z[351], x, 0, e, e, w{"ns1.gov.cv", "ns2.gov.cv", "ns3.gov.cv", "ns4.gov.cv"}, n, n, n, e, e, n, f},
24442447 {"pro.cy", &z[354], x, 0, e, e, w{"cy-ns.anycast.pch.net", "cynic4.dns.cy", "cynic6.dns.cy", "estia.ics.forth.gr", "ns31.rcode0.net", "ns4.apnic.net"}, n, n, n, e, e, n, f},
24452448 {"tm.cy", &z[354], x, 0, e, e, w{"cy-ns.anycast.pch.net", "cynic4.dns.cy", "cynic6.dns.cy", "estia.ics.forth.gr", "ns31.rcode0.net", "ns4.apnic.net"}, n, n, n, e, e, n, f},
24462449 {"co.cz", &z[357], x, 0, e, e, w{"ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, e, e, n, f},
2447 {"1x.de", &z[368], x, 0x200, e, e, w{"ns1.subdomain.net", "ns2.subdomain.net"}, n, n, n, e, e, n, t},
2450 {"1x.de", &z[368], x, 0x200, e, e, w{"ns1.subdomain.net", "ns2.subdomain.net"}, w{"1x.de", "95.217.58.108"}, n, n, e, e, n, t},
24482451 {"co.de", &z[368], x, 0, e, e, w{"ns1.subdomain.net", "ns2.subdomain.net"}, w{"95.217.58.108", "co.de"}, n, n, "whois.co.de", e, n, t},
24492452 {"com.de", &z[368], x, 0, e, e, w{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, w{"54.153.56.183", "com.de"}, n, n, "whois.centralnic.com", e, w{"https://rdap.centralnic.com/com.de/"}, f},
24502453 {"biz.dk", &z[397], x, 0, e, e, w{"dns2000.euro-isp.net", "dns2001.euro-isp.net", "mail.digitalmarketing.net", "ns.digitalmarketing.net", "ns1.dk.org", "post.digitalmarketing.net", "root-dns.euro-isp.net"}, n, n, n, e, e, n, f},
25042507 {"eun.eg", &z[435], x, 0, e, e, w{"frcu.eun.eg", "ns.idsc.gov.eg", "rip.psg.com"}, n, n, n, e, e, n, f},
25052508 {"gov.eg", &z[435], x, 0, e, e, w{"frcu.eun.eg", "ns.idsc.gov.eg", "rip.psg.com"}, n, n, n, e, e, n, f},
25062509 {"info.eg", &z[435], x, 0, e, e, w{"frcu.eun.eg", "rip.psg.com"}, n, n, n, e, e, n, f},
2507 {"mil.eg", &z[435], x, 0, e, e, n, n, n, n, e, e, n, f},
2510 {"mil.eg", &z[435], x, 0, e, e, w{"frcu.eun.eg", "rip.psg.com"}, n, n, n, e, e, n, f},
25082511 {"name.eg", &z[435], x, 0, e, e, w{"frcu.eun.eg", "rip.psg.com"}, n, n, n, e, e, n, f},
25092512 {"net.eg", &z[435], x, 0, e, e, w{"frcu.eun.eg", "rip.psg.com"}, n, n, n, e, e, n, f},
25102513 {"org.eg", &z[435], x, 0, e, e, w{"frcu.eun.eg", "rip.psg.com", "www.frcu.eun.eg"}, n, n, n, e, e, n, f},
25112514 {"sci.eg", &z[435], x, 0, e, e, w{"frcu.eun.eg", "rip.psg.com"}, n, n, n, e, e, n, f},
25122515 {"sport.eg", &z[435], x, 0, e, e, w{"frcu.eun.eg", "rip.psg.com"}, n, n, n, e, e, n, t},
25132516 {"tv.eg", &z[435], x, 0, e, e, w{"frcu.eun.eg", "rip.psg.com"}, n, n, n, e, e, n, f},
2514 {"com.er", &z[446], x, 0, e, e, w{"er.cctld.authdns.ripe.net", "ns0.punchdown.org", "ns1.punchdown.net", "sawanew.noc.net.er", "zaranew.noc.net.er"}, n, n, n, e, e, n, t},
2515 {"edu.er", &z[446], x, 0, e, e, w{"er.cctld.authdns.ripe.net", "ns0.punchdown.org", "ns1.punchdown.net", "sawanew.noc.net.er", "zaranew.noc.net.er"}, n, n, n, e, e, n, f},
2516 {"gov.er", &z[446], x, 0, e, e, w{"er.cctld.authdns.ripe.net", "ns0.punchdown.org", "ns1.punchdown.net", "sawanew.noc.net.er", "zaranew.noc.net.er"}, n, n, n, e, e, n, f},
2517 {"com.er", &z[446], x, 0, e, e, w{"er.cctld.authdns.ripe.net", "sawanew.noc.net.er", "zaranew.noc.net.er"}, n, n, n, e, e, n, t},
2518 {"edu.er", &z[446], x, 0, e, e, w{"er.cctld.authdns.ripe.net", "sawanew.noc.net.er", "zaranew.noc.net.er"}, n, n, n, e, e, n, f},
2519 {"gov.er", &z[446], x, 0, e, e, w{"er.cctld.authdns.ripe.net", "sawanew.noc.net.er", "zaranew.noc.net.er"}, n, n, n, e, e, n, f},
25172520 {"ind.er", &z[446], x, 0, e, e, w{"er.cctld.authdns.ripe.net", "ns0.punchdown.org", "ns1.punchdown.net", "sawanew.noc.net.er", "sawaold.noc.net.er", "zaranew.noc.net.er", "zaraold.noc.net.er"}, n, n, n, e, e, n, f},
25182521 {"mil.er", &z[446], x, 0, e, e, w{"er.cctld.authdns.ripe.net", "ns0.punchdown.org", "ns1.punchdown.net", "sawanew.noc.net.er", "sawaold.noc.net.er", "zaranew.noc.net.er", "zaraold.noc.net.er"}, n, n, n, e, e, n, f},
2519 {"net.er", &z[446], x, 0, e, e, w{"er.cctld.authdns.ripe.net", "ns0.punchdown.org", "ns1.punchdown.net", "sawanew.noc.net.er", "zaranew.noc.net.er"}, n, n, n, e, e, n, f},
2520 {"org.er", &z[446], x, 0, e, e, w{"er.cctld.authdns.ripe.net", "ns0.punchdown.org", "ns1.punchdown.net", "sawanew.noc.net.er", "zaranew.noc.net.er"}, n, n, n, e, e, n, f},
2522 {"net.er", &z[446], x, 0, e, e, w{"er.cctld.authdns.ripe.net", "sawanew.noc.net.er", "zaranew.noc.net.er"}, n, n, n, e, e, n, f},
2523 {"org.er", &z[446], x, 0, e, e, w{"er.cctld.authdns.ripe.net", "sawanew.noc.net.er", "zaranew.noc.net.er"}, n, n, n, e, e, n, f},
25212524 {"com.es", &z[449], x, 0, e, e, w{"c.nic.es", "g.nic.es", "h.nic.es", "n3ns.nic.es"}, n, n, n, e, e, n, f},
25222525 {"edu.es", &z[449], x, 0, e, e, w{"c.nic.es", "g.nic.es", "h.nic.es", "n3ns.nic.es"}, n, n, n, e, e, n, f},
25232526 {"gob.es", &z[449], x, 0, e, e, w{"c.nic.es", "g.nic.es", "h.nic.es", "n3ns.nic.es"}, n, n, n, e, e, n, f},
27122715 {"org.hn", &z[642], x, 0, e, e, n, n, n, n, e, e, n, f},
27132716 {"com.hr", &z[665], x, 0, e, e, w{"dns-ez-1.carnet.hr", "dns1.com.hr", "dns2.com.hr"}, n, n, n, e, e, n, f},
27142717 {"from.hr", &z[665], x, 0, e, e, w{"dns-ez-1.carnet.hr", "dns1.from.hr", "dns2.from.hr"}, n, n, n, e, e, n, f},
2715 {"iz.hr", &z[665], x, 0, e, e, w{"dns-ez-1.carnet.hr", "dns1.from.hr", "dns1.iz.hr", "dns2.from.hr", "dns2.iz.hr"}, n, n, n, e, e, n, f},
2716 {"name.hr", &z[665], x, 0, e, e, w{"dns-ez-1.carnet.hr", "dns1.from.hr", "dns1.name.hr", "dns2.from.hr", "dns2.name.hr"}, n, n, n, e, e, n, f},
2718 {"iz.hr", &z[665], x, 0, e, e, w{"dns-ez-1.carnet.hr", "dns1.iz.hr", "dns2.iz.hr"}, n, n, n, e, e, n, f},
2719 {"name.hr", &z[665], x, 0, e, e, w{"dns-ez-1.carnet.hr", "dns1.name.hr", "dns2.name.hr"}, n, n, n, e, e, n, f},
27172720 {"adult.ht", &z[667], x, 0x1, e, e, w{"charles.cdec.polymtl.ca", "ht-ns.anycast.pch.net", "ns3.nic.fr"}, n, n, n, e, e, n, f},
27182721 {"art.ht", &z[667], x, 0, e, e, n, n, n, n, e, e, n, f},
27192722 {"asso.ht", &z[667], x, 0, e, e, n, n, n, n, e, e, n, f},
28432846 {"com.io", &z[708], x, 0x800, e, e, n, n, n, n, e, e, n, t},
28442847 {"org.io", &z[708], x, 0x800, e, e, n, n, n, n, e, e, n, t},
28452848 {"biz.iq", &z[710], x, 0, e, e, w{"dyn1.cmc.iq", "dyn2.cmc.iq", "ns.cocca.fr", "ns1.cmc.iq", "nsp-anycast.cmc.iq", "sns-pb.isc.org"}, n, n, n, e, e, n, t},
2846 {"com.iq", &z[710], x, 0, e, e, w{"ns.cocca.fr", "ns1.cmc.iq", "nsp-anycast.cmc.iq", "sns-pb.isc.org"}, n, n, n, e, e, n, f},
2847 {"edu.iq", &z[710], x, 0, e, e, w{"ns.cocca.fr", "ns1.cmc.iq", "nsp-anycast.cmc.iq", "sns-pb.isc.org"}, n, n, n, e, e, n, f},
2848 {"gov.iq", &z[710], x, 0, e, e, w{"ns.cocca.fr", "ns1.cmc.iq", "nsp-anycast.cmc.iq", "sns-pb.isc.org"}, n, n, n, e, e, n, f},
2849 {"com.iq", &z[710], x, 0, e, e, w{"ns.cocca.fr", "ns1.cmc.iq", "nsp-anycast.cmc.iq"}, n, n, n, e, e, n, f},
2850 {"edu.iq", &z[710], x, 0, e, e, w{"ns1.cmc.iq", "nsp-anycast.cmc.iq"}, n, n, n, e, e, n, f},
2851 {"gov.iq", &z[710], x, 0, e, e, w{"ns1.cmc.iq", "nsp-anycast.cmc.iq"}, n, n, n, e, e, n, f},
28492852 {"info.iq", &z[710], x, 0, e, e, w{"ns23.cmc.iq", "ns24.cmc.iq"}, n, n, n, e, e, n, t},
2850 {"mil.iq", &z[710], x, 0, e, e, w{"ns.cocca.fr", "ns1.cmc.iq", "nsp-anycast.cmc.iq", "sns-pb.isc.org"}, n, n, n, e, e, n, f},
2853 {"mil.iq", &z[710], x, 0, e, e, w{"ns1.cmc.iq", "nsp-anycast.cmc.iq"}, n, n, n, e, e, n, f},
28512854 {"name.iq", &z[710], x, 0, e, e, w{"ns.cocca.fr", "ns1.cmc.iq", "nsp-anycast.cmc.iq"}, n, n, n, e, e, n, t},
2852 {"net.iq", &z[710], x, 0, e, e, w{"ns.cocca.fr", "ns1.cmc.iq", "nsp-anycast.cmc.iq", "sns-pb.isc.org"}, n, n, n, e, e, n, t},
2853 {"org.iq", &z[710], x, 0, e, e, w{"ns.cocca.fr", "ns1.cmc.iq", "nsp-anycast.cmc.iq", "sns-pb.isc.org"}, n, n, n, e, e, n, f},
2854 {"tv.iq", &z[710], x, 0, e, e, w{"ns.cocca.fr", "ns1.cmc.iq", "nsp-anycast.cmc.iq", "sns-pb.isc.org"}, n, n, n, e, e, n, t},
2855 {"net.iq", &z[710], x, 0, e, e, w{"ns.cocca.fr", "ns1.cmc.iq", "nsp-anycast.cmc.iq"}, n, n, n, e, e, n, t},
2856 {"org.iq", &z[710], x, 0, e, e, w{"ns.cocca.fr", "ns1.cmc.iq", "nsp-anycast.cmc.iq"}, n, n, n, e, e, n, f},
2857 {"tv.iq", &z[710], x, 0, e, e, w{"ns.cocca.fr", "ns1.cmc.iq", "nsp-anycast.cmc.iq"}, n, n, n, e, e, n, t},
28552858 {"ac.ir", &z[711], x, 0, e, e, w{"a.nic.ir", "b.nic.ir", "dns-ir.univie.ac.at", "ir.cctld.authdns.ripe.net"}, n, n, n, e, e, n, f},
28562859 {"co.ir", &z[711], x, 0, e, e, w{"a.nic.ir", "b.nic.ir", "dns-ir.univie.ac.at", "ir.cctld.authdns.ripe.net"}, n, n, n, e, e, n, f},
28572860 {"gov.ir", &z[711], x, 0, e, e, w{"a.nic.ir", "b.nic.ir", "dns-ir.univie.ac.at", "ir.cctld.authdns.ripe.net"}, n, n, n, e, e, n, f},
33683371 {"biz.ki", &z[763], x, 0, e, e, n, n, n, n, e, e, n, f},
33693372 {"com.ki", &z[763], x, 0, e, e, n, n, n, n, e, e, n, f},
33703373 {"edu.ki", &z[763], x, 0, e, e, n, n, n, n, e, e, n, f},
3371 {"eu.ki", &z[763], x, 0x200, e, e, w{"ns1.subdomain.net", "ns2.subdomain.net"}, w{"95.217.58.108", "eu.ki"}, n, n, e, e, n, t},
3374 {"eu.ki", &z[763], x, 0x200, e, e, n, w{"95.217.58.108", "eu.ki"}, n, n, e, e, n, t},
33723375 {"gov.ki", &z[763], x, 0, e, e, n, n, n, n, e, e, n, f},
33733376 {"info.ki", &z[763], x, 0, e, e, n, n, n, n, e, e, n, f},
33743377 {"mob.ki", &z[763], x, 0, e, e, n, n, n, n, e, e, n, f},
35233526 {"priv.me", &z[892], x, 0, e, e, w{"a0.nic.me", "a2.nic.me", "b0.nic.me", "b2.nic.me", "c0.nic.me"}, n, n, n, e, e, n, f},
35243527 {"co.mg", &z[907], x, 0, e, e, w{"censvrns0001.ird.fr", "ns-mg.malagasy.com", "ns.dts.mg", "ns.nic.mg", "pch.nic.mg"}, n, n, n, e, e, n, f},
35253528 {"com.mg", &z[907], x, 0, e, e, w{"censvrns0001.ird.fr", "ns-mg.malagasy.com", "ns.dts.mg", "ns.nic.mg", "pch.nic.mg"}, n, n, n, e, e, n, f},
3526 {"edu.mg", &z[907], x, 0, e, e, w{"censvrns0001.ird.fr", "ns.dts.mg", "ns.nic.mg", "pch.nic.mg"}, n, n, n, e, e, n, f},
3529 {"edu.mg", &z[907], x, 0, e, e, w{"ns.dts.mg", "ns.nic.mg", "pch.nic.mg"}, n, n, n, e, e, n, f},
35273530 {"gov.mg", &z[907], x, 0, e, e, w{"ns.gov.mg", "ns1.gov.mg", "ns2.gov.mg"}, n, n, n, e, e, n, f},
35283531 {"in.mg", &z[907], x, 0, e, e, w{"ns1.in.mg", "ns2.in.mg"}, n, n, n, e, e, n, t},
35293532 {"mil.mg", &z[907], x, 0, e, e, w{"censvrns0001.ird.fr", "ns.dts.mg", "ns.nic.mg", "pch.nic.mg"}, n, n, n, e, e, n, f},
35303533 {"net.mg", &z[907], x, 0, e, e, w{"censvrns0001.ird.fr", "ns-mg.malagasy.com", "ns.dts.mg", "ns.nic.mg", "pch.nic.mg"}, n, n, n, e, e, n, f},
3531 {"nom.mg", &z[907], x, 0, e, e, w{"censvrns0001.ird.fr", "ns-mg.malagasy.com", "ns.dts.mg", "ns.nic.mg", "pch.nic.mg"}, n, n, n, e, e, n, f},
3534 {"nom.mg", &z[907], x, 0, e, e, w{"censvrns0001.ird.fr", "ns.dts.mg", "ns.nic.mg", "pch.nic.mg"}, n, n, n, e, e, n, f},
35323535 {"org.mg", &z[907], x, 0, e, e, w{"censvrns0001.ird.fr", "ns-mg.malagasy.com", "ns.dts.mg", "ns.nic.mg", "pch.nic.mg"}, n, n, n, e, e, n, f},
35333536 {"prd.mg", &z[907], x, 0, e, e, w{"censvrns0001.ird.fr", "ns-mg.malagasy.com", "ns.dts.mg", "ns.nic.mg", "pch.nic.mg"}, n, n, n, e, e, n, f},
35343537 {"tm.mg", &z[907], x, 0, e, e, n, n, n, n, e, e, n, f},
35633566 {"gov.mo", &z[927], x, 0, e, e, w{"ns1.gov.mo", "ns2.gov.mo", "ns3.gov.mo", "ns4.gov.mo", "ns5.gov.mo"}, n, n, n, e, e, n, f},
35643567 {"net.mo", &z[927], x, 0, e, e, w{"a.monic.mo", "b.monic.mo", "c.monic.mo", "d.monic.mo", "e.monic.mo", "ns17.cdns.net", "ns2.cuhk.edu.hk"}, n, n, n, e, e, n, f},
35653568 {"org.mo", &z[927], x, 0, e, e, w{"a.monic.mo", "b.monic.mo", "c.monic.mo", "d.monic.mo", "e.monic.mo", "ns17.cdns.net", "ns2.cuhk.edu.hk"}, n, n, n, e, e, n, f},
3566 {"co.mp", &z[949], x, 0, e, e, w{"ns1.nic.net.mp", "ns2.nic.net.mp"}, n, n, n, e, e, n, t},
3569 {"co.mp", &z[949], x, 0, e, e, n, n, n, n, e, e, n, t},
35673570 {"com.mp", &z[949], x, 0, e, e, n, n, n, n, e, e, n, f},
35683571 {"gov.mp", &z[949], x, 0, e, e, w{"ns1.nic.net.mp", "ns2.nic.net.mp"}, n, n, n, e, e, n, f},
35693572 {"org.mp", &z[949], x, 0, e, e, w{"ns1.nic.net.mp", "ns2.nic.net.mp"}, n, n, n, e, e, n, f},
36983701 {"biz.ni", &z[1003], x, 0, e, e, w{"dns-ext.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns2.ni", "ns3.ni"}, n, n, n, e, e, n, f},
36993702 {"co.ni", &z[1003], x, 0, e, e, w{"dns-ext.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns2.ni", "ns3.ni"}, n, n, n, e, e, n, f},
37003703 {"com.ni", &z[1003], x, 0, e, e, w{"dns-ext.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns2.ni", "ns3.ni"}, n, n, n, e, e, n, f},
3701 {"edu.ni", &z[1003], x, 0, e, e, w{"auth01.ns.uu.net", "dns-ext.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns2.ni", "ns3.ni"}, n, n, n, e, e, n, f},
3704 {"edu.ni", &z[1003], x, 0, e, e, w{"dns-ext.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns2.ni", "ns3.ni"}, n, n, n, e, e, n, f},
37023705 {"gob.ni", &z[1003], x, 0, e, e, w{"dns-ext.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns2.ni", "ns3.ni"}, n, n, n, e, e, n, f},
37033706 {"gov.ni", &z[1003], x, 0, e, e, n, n, n, n, e, e, n, t},
37043707 {"in.ni", &z[1003], x, 0, e, e, w{"dns-ext.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns2.ni", "ns3.ni"}, n, n, n, e, e, n, f},
38023805 {"info.np", &z[1019], x, 0, e, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, n, e, e, n, f},
38033806 {"ink.np", &z[1019], x, 0, e, "https://register.com.np/", n, n, n, n, e, e, n, f},
38043807 {"jobs.np", &z[1019], x, 0, e, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, n, e, e, n, f},
3805 {"limited.np", &z[1019], x, 0, e, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, n, f},
3808 {"limited.np", &z[1019], x, 0, e, "https://register.com.np/", w{"ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, n, e, e, n, f},
38063809 {"link.np", &z[1019], x, 0, e, "https://register.com.np/", n, n, n, n, e, e, n, f},
38073810 {"management.np", &z[1019], x, 0, e, "https://register.com.np/", n, n, n, n, e, e, n, f},
38083811 {"marketing.np", &z[1019], x, 0, e, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, n, f},
38183821 {"org.np", &z[1019], x, 0, e, "https://register.com.np/", w{"np-ns.npix.net.np", "np.cctld.authdns.ripe.net", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, n, e, e, n, f},
38193822 {"partners.np", &z[1019], x, 0, e, "https://register.com.np/", n, n, n, n, e, e, n, f},
38203823 {"parts.np", &z[1019], x, 0, e, "https://register.com.np/", n, n, n, n, e, e, n, f},
3821 {"photo.np", &z[1019], x, 0, e, "https://register.com.np/", w{"np-ns.npix.net.np", "np.cctld.authdns.ripe.net", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, n, f},
3824 {"photo.np", &z[1019], x, 0, e, "https://register.com.np/", w{"np-ns.npix.net.np", "np.cctld.authdns.ripe.net", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, n, e, e, n, f},
38223825 {"photos.np", &z[1019], x, 0, e, "https://register.com.np/", n, n, n, n, e, e, n, f},
38233826 {"pics.np", &z[1019], x, 0, e, "https://register.com.np/", n, n, n, n, e, e, n, f},
38243827 {"pink.np", &z[1019], x, 0, e, "https://register.com.np/", n, n, n, n, e, e, n, f},
3825 {"pro.np", &z[1019], x, 0, e, "https://register.com.np/", w{"np-ns.npix.net.np", "np.cctld.authdns.ripe.net", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, n, e, e, n, f},
3828 {"pro.np", &z[1019], x, 0, e, "https://register.com.np/", w{"np-ns.npix.net.np", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, n, e, e, n, f},
38263829 {"productions.np", &z[1019], x, 0, e, "https://register.com.np/", n, n, n, n, e, e, n, f},
38273830 {"products.np", &z[1019], x, 0, e, "https://register.com.np/", n, n, n, n, e, e, n, f},
38283831 {"properties.np", &z[1019], x, 0, e, "https://register.com.np/", n, n, n, n, e, e, n, f},
38373840 {"shoes.np", &z[1019], x, 0, e, "https://register.com.np/", n, n, n, n, e, e, n, f},
38383841 {"social.np", &z[1019], x, 0, e, "https://register.com.np/", n, n, n, n, e, e, n, f},
38393842 {"solar.np", &z[1019], x, 0, e, "https://register.com.np/", n, n, n, n, e, e, n, f},
3840 {"solutions.np", &z[1019], x, 0, e, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, n, f},
3843 {"solutions.np", &z[1019], x, 0, e, "https://register.com.np/", w{"np-ns.npix.net.np", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, n, e, e, n, f},
38413844 {"space.np", &z[1019], x, 0, e, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, n, f},
38423845 {"supplies.np", &z[1019], x, 0, e, "https://register.com.np/", n, n, n, n, e, e, n, f},
38433846 {"supply.np", &z[1019], x, 0, e, "https://register.com.np/", n, n, n, n, e, e, n, f},
38483851 {"tattoo.np", &z[1019], x, 0, e, "https://register.com.np/", n, n, n, n, e, e, n, f},
38493852 {"tax.np", &z[1019], x, 0, e, "https://register.com.np/", n, n, n, n, e, e, n, f},
38503853 {"technology.np", &z[1019], x, 0, e, "https://register.com.np/", n, n, n, n, e, e, n, f},
3851 {"tel.np", &z[1019], x, 0, e, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, n, e, e, n, f},
3854 {"tel.np", &z[1019], x, 0, e, "https://register.com.np/", w{"np-ns.npix.net.np", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, n, e, e, n, f},
38523855 {"tips.np", &z[1019], x, 0, e, "https://register.com.np/", n, n, n, n, e, e, n, f},
38533856 {"today.np", &z[1019], x, 0, e, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net"}, n, n, n, e, e, n, f},
38543857 {"tools.np", &z[1019], x, 0, e, "https://register.com.np/", n, n, n, n, e, e, n, f},
38693872 {"wiki.np", &z[1019], x, 0, e, "https://register.com.np/", n, n, n, n, e, e, n, f},
38703873 {"works.np", &z[1019], x, 0, e, "https://register.com.np/", n, n, n, n, e, e, n, f},
38713874 {"wtf.np", &z[1019], x, 0, e, "https://register.com.np/", n, n, n, n, e, e, n, f},
3872 {"xyz.np", &z[1019], x, 0, e, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, n, f},
3875 {"xyz.np", &z[1019], x, 0, e, "https://register.com.np/", w{"np-ns.npix.net.np", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, n, f},
38733876 {"zone.np", &z[1019], x, 0, e, "https://register.com.np/", n, n, n, n, e, e, n, f},
38743877 {"biz.nr", &z[1020], x, 0, e, e, w{"ns0.cenpac.net.nr", "ns1.cenpac.net.nr", "ns2.cenpac.net.nr"}, n, n, n, e, e, n, f},
38753878 {"com.nr", &z[1020], x, 0, e, e, w{"ns0.cenpac.net.nr", "ns1.cenpac.net.nr", "ns2.cenpac.net.nr", "phloem.uoregon.edu"}, n, n, n, e, e, n, f},
42484251 {"teach.pro", &z[1123], x, 0, e, e, w{"curitiba.ns.porkbun.com", "fortaleza.ns.porkbun.com", "maceio.ns.porkbun.com", "salvador.ns.porkbun.com"}, w{"44.230.85.241", "52.33.207.7", "uixie.porkbun.com"}, n, n, e, e, n, f},
42494252 {"vet.pro", &z[1123], x, 0, e, e, n, n, n, n, e, e, n, f},
42504253 {"com.ps", &z[1134], x, 0, e, "https://www.pnina.ps/registration-policy/", w{"ns1.pnina.ps", "ns2.pnina.ps", "ote.pnina.ps", "ps-ns.anycast.pch.net", "ps.cctld.authdns.ripe.net", "rip.psg.com"}, n, n, n, e, e, n, f},
4251 {"edu.ps", &z[1134], x, 0, e, "https://www.tonic.to/", w{"dns1.gov.ps", "dns3.gov.ps", "dns4.pna.ps", "dns5.gov.ps", "ns1.gov.ps", "ns1.pnina.ps", "ns2.pnina.ps", "ote.pnina.ps"}, w{"2001:4860:4802:32::78", "2001:cdba::3257:9652", "208.91.112.55", "forcesafesearch.google.com"}, n, n, e, e, n, f},
4254 {"edu.ps", &z[1134], x, 0, e, "https://www.tonic.to/", w{"dns1.gov.ps", "dns3.gov.ps", "dns4.pna.ps", "dns5.gov.ps", "ns1.gov.ps", "ns1.pnina.ps", "ns2.pnina.ps", "ote.pnina.ps"}, n, n, n, e, e, n, f},
42524255 {"gov.ps", &z[1134], x, 0, e, e, w{"dns1.gov.ps", "ns1.gov.ps", "ns1.palgov.net", "ns2.palgov.net"}, n, n, n, e, e, n, f},
42534256 {"mobi.ps", &z[1134], x, 0x200, e, e, w{"ns1.subdomain.net", "ns2.subdomain.net"}, w{"95.217.58.108", "mobi.ps"}, n, n, e, e, n, t},
42544257 {"mun.ps", &z[1134], x, 0, e, e, w{"dns1.gov.ps", "ns1.gov.ps", "ns2.palgov.net", "ns2.pnina.ps"}, n, n, n, e, e, n, f},
43744377 {"gov.sc", &z[1226], x, 0, e, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, n, e, e, n, f},
43754378 {"net.sc", &z[1226], x, 0, e, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, n, e, e, n, f},
43764379 {"org.sc", &z[1226], x, 0, e, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, n, e, e, n, f},
4377 {"com.sd", &z[1240], x, 0, e, e, w{"ans1.canar.sd", "ans1.sis.sd", "ans2.canar.sd", "ns-sd.afrinic.net", "ns.cocca.fr", "ns1.uaenic.ae", "ns2.uaenic.ae", "pch.sis.sd", "sd.cctld.authdns.ripe.net"}, n, n, n, e, e, n, f},
4380 {"com.sd", &z[1240], x, 0, e, e, w{"ans1.canar.sd", "ans1.sis.sd", "ans2.canar.sd", "ns-sd.afrinic.net", "ns.cocca.fr", "pch.sis.sd", "sd.cctld.authdns.ripe.net"}, n, n, n, e, e, n, f},
43784381 {"edu.sd", &z[1240], x, 0, e, e, w{"ans1.canar.sd", "ans1.sis.sd", "ans2.canar.sd", "ns-sd.afrinic.net", "ns.cocca.fr", "pch.sis.sd", "sd.cctld.authdns.ripe.net"}, n, n, n, e, e, n, f},
4379 {"gov.sd", &z[1240], x, 0, e, e, w{"ans1.canar.sd", "ans1.sis.sd", "ans2.canar.sd", "ns-sd.afrinic.net", "ns.cocca.fr", "ns1.uaenic.ae", "ns2.uaenic.ae", "pch.sis.sd", "sd.cctld.authdns.ripe.net"}, n, n, n, e, e, n, f},
4382 {"gov.sd", &z[1240], x, 0, e, e, w{"ans1.canar.sd", "ans1.sis.sd", "ans2.canar.sd", "ns-sd.afrinic.net", "ns.cocca.fr", "pch.sis.sd", "sd.cctld.authdns.ripe.net"}, n, n, n, e, e, n, f},
43804383 {"info.sd", &z[1240], x, 0, e, e, w{"ans1.canar.sd", "ans1.sis.sd", "ans2.canar.sd", "ns-sd.afrinic.net", "ns.cocca.fr", "pch.sis.sd", "sd.cctld.authdns.ripe.net"}, n, n, n, e, e, n, f},
43814384 {"med.sd", &z[1240], x, 0, e, e, w{"ans1.canar.sd", "ans1.sis.sd", "ans2.canar.sd", "ns-sd.afrinic.net", "ns.cocca.fr", "sd.cctld.authdns.ripe.net"}, n, n, n, e, e, n, f},
43824385 {"net.sd", &z[1240], x, 0, e, e, w{"ans1.canar.sd", "ans1.sis.sd", "ans2.canar.sd", "ns-sd.afrinic.net", "ns.cocca.fr", "pch.sis.sd", "sd.cctld.authdns.ripe.net"}, n, n, n, e, e, n, f},
43834386 {"org.sd", &z[1240], x, 0, e, e, w{"ans1.canar.sd", "ans1.sis.sd", "ans2.canar.sd", "ns-sd.afrinic.net", "ns.cocca.fr", "pch.sis.sd", "sd.cctld.authdns.ripe.net"}, n, n, n, e, e, n, f},
4384 {"tv.sd", &z[1240], x, 0, e, e, w{"ans1.sis.sd", "ns.cocca.fr", "ns1.domains.sd", "ns2.domains.sd"}, n, n, n, e, e, n, f},
4387 {"tv.sd", &z[1240], x, 0, e, e, w{"ns1.domains.sd", "ns2.domains.sd"}, n, n, n, e, e, n, f},
43854388 {"a.se", &z[1241], x, 0, e, e, n, n, n, n, e, e, n, t},
43864389 {"ac.se", &z[1241], x, 0, e, e, n, n, n, n, e, e, n, f},
43874390 {"b.se", &z[1241], x, 0, e, e, n, n, n, n, e, e, n, f},
43974400 {"k.se", &z[1241], x, 0, e, e, n, n, n, n, e, e, n, f},
43984401 {"l.se", &z[1241], x, 0, e, e, n, n, n, n, e, e, n, f},
43994402 {"m.se", &z[1241], x, 0, e, e, n, n, n, n, e, e, n, f},
4400 {"mil.se", &z[1241], x, 0, e, e, w{"dns5.telia.com", "dns6.telia.com", "ns.defence.se", "ns.mil.se", "ns2.mil.se", "ns3.mil.se", "pitea.dns.swip.net"}, n, n, n, e, e, n, f},
4403 {"mil.se", &z[1241], x, 0, e, e, w{"dns5.telia.com", "dns6.telia.com", "ns.mil.se", "ns2.mil.se", "ns3.mil.se", "pitea.dns.swip.net"}, n, n, n, e, e, n, f},
44014404 {"n.se", &z[1241], x, 0, e, e, n, n, n, n, e, e, n, f},
44024405 {"o.se", &z[1241], x, 0, e, e, n, n, n, n, e, e, n, f},
44034406 {"org.se", &z[1241], x, 0, e, e, n, n, n, n, e, e, n, f},
49554958 {"org.yu", &z[1562], x, 0x800, e, e, n, n, n, n, e, e, n, f},
49564959 {"ac.za", &z[1564], x, 0, e, e, w{"disa.tenet.ac.za", "ns2us.dns.business", "ns3.dns.business", "ns4.dns.business", "za-ns.anycast.pch.net"}, n, n, n, "whois.ac.za", e, n, f},
49574960 {"agric.za", &z[1564], x, 0, e, e, w{"demeter.is.co.za", "jupiter.is.co.za", "titan.is.co.za"}, n, n, n, e, e, n, f},
4958 {"alt.za", &z[1564], x, 0, e, e, w{"ns-za.afrinic.net", "ns1.iafrica.com", "ns2.iafrica.com", "psg.com", "za-ns.anycast.pch.net"}, n, n, n, e, e, n, f},
4961 {"alt.za", &z[1564], x, 0, e, e, w{"ns1.iafrica.com", "ns2.iafrica.com", "psg.com", "za-ns.anycast.pch.net"}, n, n, n, e, e, n, f},
49594962 {"bourse.za", &z[1564], x, 0x800, e, e, n, n, n, n, e, e, n, f},
49604963 {"city.za", &z[1564], x, 0, e, e, n, n, n, n, e, e, n, f},
49614964 {"co.za", &z[1564], x, 0, e, e, w{"coza1.dnsnode.net", "ns.coza.net.za", "ns0.is.co.za", "ns2us.dns.business"}, n, n, n, "coza-whois.registry.net.za", e, n, f},