source: josm/trunk/src/org/openstreetmap/josm/data/validation/routines/DomainValidator.java@ 10460

Last change on this file since 10460 was 10460, checked in by Don-vip, 8 years ago

update new TLD from IANA

  • Property svn:eol-style set to native
File size: 89.9 KB
Line 
1/*
2 * Licensed to the Apache Software Foundation (ASF) under one or more
3 * contributor license agreements. See the NOTICE file distributed with
4 * this work for additional information regarding copyright ownership.
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17package org.openstreetmap.josm.data.validation.routines;
18
19import java.net.IDN;
20import java.util.Arrays;
21import java.util.Locale;
22
23import org.openstreetmap.josm.Main;
24
25/**
26 * <p><b>Domain name</b> validation routines.</p>
27 *
28 * <p>
29 * This validator provides methods for validating Internet domain names
30 * and top-level domains.
31 * </p>
32 *
33 * <p>Domain names are evaluated according
34 * to the standards <a href="http://www.ietf.org/rfc/rfc1034.txt">RFC1034</a>,
35 * section 3, and <a href="http://www.ietf.org/rfc/rfc1123.txt">RFC1123</a>,
36 * section 2.1. No accommodation is provided for the specialized needs of
37 * other applications; if the domain name has been URL-encoded, for example,
38 * validation will fail even though the equivalent plaintext version of the
39 * same name would have passed.
40 * </p>
41 *
42 * <p>
43 * Validation is also provided for top-level domains (TLDs) as defined and
44 * maintained by the Internet Assigned Numbers Authority (IANA):
45 * </p>
46 *
47 * <ul>
48 * <li>{@link #isValidInfrastructureTld} - validates infrastructure TLDs
49 * (<code>.arpa</code>, etc.)</li>
50 * <li>{@link #isValidGenericTld} - validates generic TLDs
51 * (<code>.com, .org</code>, etc.)</li>
52 * <li>{@link #isValidCountryCodeTld} - validates country code TLDs
53 * (<code>.us, .uk, .cn</code>, etc.)</li>
54 * </ul>
55 *
56 * <p>
57 * (<b>NOTE</b>: This class does not provide IP address lookup for domain names or
58 * methods to ensure that a given domain name matches a specific IP; see
59 * {@link java.net.InetAddress} for that functionality.)
60 * </p>
61 *
62 * @version $Revision: 1740822 $
63 * @since Validator 1.4
64 */
65public final class DomainValidator extends AbstractValidator {
66
67 private static final int MAX_DOMAIN_LENGTH = 253;
68
69 private static final String[] EMPTY_STRING_ARRAY = new String[0];
70
71 // Regular expression strings for hostnames (derived from RFC2396 and RFC 1123)
72
73 // RFC2396: domainlabel = alphanum | alphanum *( alphanum | "-" ) alphanum
74 // Max 63 characters
75 private static final String DOMAIN_LABEL_REGEX = "\\p{Alnum}(?>[\\p{Alnum}-]{0,61}\\p{Alnum})?";
76
77 // RFC2396 toplabel = alpha | alpha *( alphanum | "-" ) alphanum
78 // Max 63 characters
79 private static final String TOP_LABEL_REGEX = "\\p{Alpha}(?>[\\p{Alnum}-]{0,61}\\p{Alnum})?";
80
81 // RFC2396 hostname = *( domainlabel "." ) toplabel [ "." ]
82 // Note that the regex currently requires both a domain label and a top level label, whereas
83 // the RFC does not. This is because the regex is used to detect if a TLD is present.
84 // If the match fails, input is checked against DOMAIN_LABEL_REGEX (hostnameRegex)
85 // RFC1123 sec 2.1 allows hostnames to start with a digit
86 private static final String DOMAIN_NAME_REGEX =
87 "^(?:" + DOMAIN_LABEL_REGEX + "\\.)+" + "(" + TOP_LABEL_REGEX + ")\\.?$";
88
89 private final boolean allowLocal;
90
91 /**
92 * Singleton instance of this validator, which
93 * doesn't consider local addresses as valid.
94 */
95 private static final DomainValidator DOMAIN_VALIDATOR = new DomainValidator(false);
96
97 /**
98 * Singleton instance of this validator, which does
99 * consider local addresses valid.
100 */
101 private static final DomainValidator DOMAIN_VALIDATOR_WITH_LOCAL = new DomainValidator(true);
102
103 /**
104 * RegexValidator for matching domains.
105 */
106 private final RegexValidator domainRegex =
107 new RegexValidator(DOMAIN_NAME_REGEX);
108 /**
109 * RegexValidator for matching a local hostname
110 */
111 // RFC1123 sec 2.1 allows hostnames to start with a digit
112 private final RegexValidator hostnameRegex =
113 new RegexValidator(DOMAIN_LABEL_REGEX);
114
115 /**
116 * Returns the singleton instance of this validator. It
117 * will not consider local addresses as valid.
118 * @return the singleton instance of this validator
119 */
120 public static synchronized DomainValidator getInstance() {
121 inUse = true;
122 return DOMAIN_VALIDATOR;
123 }
124
125 /**
126 * Returns the singleton instance of this validator,
127 * with local validation as required.
128 * @param allowLocal Should local addresses be considered valid?
129 * @return the singleton instance of this validator
130 */
131 public static synchronized DomainValidator getInstance(boolean allowLocal) {
132 inUse = true;
133 if (allowLocal) {
134 return DOMAIN_VALIDATOR_WITH_LOCAL;
135 }
136 return DOMAIN_VALIDATOR;
137 }
138
139 /**
140 * Private constructor.
141 * @param allowLocal whether to allow local domains
142 */
143 private DomainValidator(boolean allowLocal) {
144 this.allowLocal = allowLocal;
145 }
146
147 /**
148 * Returns true if the specified <code>String</code> parses
149 * as a valid domain name with a recognized top-level domain.
150 * The parsing is case-insensitive.
151 * @param domain the parameter to check for domain name syntax
152 * @return true if the parameter is a valid domain name
153 */
154 @Override
155 public boolean isValid(String domain) {
156 if (domain == null) {
157 return false;
158 }
159 domain = unicodeToASCII(domain);
160 // hosts must be equally reachable via punycode and Unicode
161 // Unicode is never shorter than punycode, so check punycode
162 // if domain did not convert, then it will be caught by ASCII
163 // checks in the regexes below
164 if (domain.length() > MAX_DOMAIN_LENGTH) {
165 return false;
166 }
167 String[] groups = domainRegex.match(domain);
168 if (groups != null && groups.length > 0) {
169 return isValidTld(groups[0]);
170 }
171 return allowLocal && hostnameRegex.isValid(domain);
172 }
173
174 @Override
175 public String getValidatorName() {
176 return null;
177 }
178
179 // package protected for unit test access
180 // must agree with isValid() above
181 boolean isValidDomainSyntax(String domain) {
182 if (domain == null) {
183 return false;
184 }
185 domain = unicodeToASCII(domain);
186 // hosts must be equally reachable via punycode and Unicode
187 // Unicode is never shorter than punycode, so check punycode
188 // if domain did not convert, then it will be caught by ASCII
189 // checks in the regexes below
190 if (domain.length() > MAX_DOMAIN_LENGTH) {
191 return false;
192 }
193 String[] groups = domainRegex.match(domain);
194 return (groups != null && groups.length > 0)
195 || hostnameRegex.isValid(domain);
196 }
197
198 /**
199 * Returns true if the specified <code>String</code> matches any
200 * IANA-defined top-level domain. Leading dots are ignored if present.
201 * The search is case-insensitive.
202 * @param tld the parameter to check for TLD status, not null
203 * @return true if the parameter is a TLD
204 */
205 public boolean isValidTld(String tld) {
206 tld = unicodeToASCII(tld);
207 if (allowLocal && isValidLocalTld(tld)) {
208 return true;
209 }
210 return isValidInfrastructureTld(tld)
211 || isValidGenericTld(tld)
212 || isValidCountryCodeTld(tld);
213 }
214
215 /**
216 * Returns true if the specified <code>String</code> matches any
217 * IANA-defined infrastructure top-level domain. Leading dots are
218 * ignored if present. The search is case-insensitive.
219 * @param iTld the parameter to check for infrastructure TLD status, not null
220 * @return true if the parameter is an infrastructure TLD
221 */
222 public boolean isValidInfrastructureTld(String iTld) {
223 final String key = chompLeadingDot(unicodeToASCII(iTld).toLowerCase(Locale.ENGLISH));
224 return arrayContains(INFRASTRUCTURE_TLDS, key);
225 }
226
227 /**
228 * Returns true if the specified <code>String</code> matches any
229 * IANA-defined generic top-level domain. Leading dots are ignored
230 * if present. The search is case-insensitive.
231 * @param gTld the parameter to check for generic TLD status, not null
232 * @return true if the parameter is a generic TLD
233 */
234 public boolean isValidGenericTld(String gTld) {
235 final String key = chompLeadingDot(unicodeToASCII(gTld).toLowerCase(Locale.ENGLISH));
236 return (arrayContains(GENERIC_TLDS, key) || arrayContains(genericTLDsPlus, key))
237 && !arrayContains(genericTLDsMinus, key);
238 }
239
240 /**
241 * Returns true if the specified <code>String</code> matches any
242 * IANA-defined country code top-level domain. Leading dots are
243 * ignored if present. The search is case-insensitive.
244 * @param ccTld the parameter to check for country code TLD status, not null
245 * @return true if the parameter is a country code TLD
246 */
247 public boolean isValidCountryCodeTld(String ccTld) {
248 final String key = chompLeadingDot(unicodeToASCII(ccTld).toLowerCase(Locale.ENGLISH));
249 return (arrayContains(COUNTRY_CODE_TLDS, key) || arrayContains(countryCodeTLDsPlus, key))
250 && !arrayContains(countryCodeTLDsMinus, key);
251 }
252
253 /**
254 * Returns true if the specified <code>String</code> matches any
255 * widely used "local" domains (localhost or localdomain). Leading dots are
256 * ignored if present. The search is case-insensitive.
257 * @param lTld the parameter to check for local TLD status, not null
258 * @return true if the parameter is an local TLD
259 */
260 public boolean isValidLocalTld(String lTld) {
261 final String key = chompLeadingDot(unicodeToASCII(lTld).toLowerCase(Locale.ENGLISH));
262 return arrayContains(LOCAL_TLDS, key);
263 }
264
265 private static String chompLeadingDot(String str) {
266 if (str.startsWith(".")) {
267 return str.substring(1);
268 }
269 return str;
270 }
271
272 // ---------------------------------------------
273 // ----- TLDs defined by IANA
274 // ----- Authoritative and comprehensive list at:
275 // ----- http://data.iana.org/TLD/tlds-alpha-by-domain.txt
276
277 // Note that the above list is in UPPER case.
278 // The code currently converts strings to lower case (as per the tables below)
279
280 // IANA also provide an HTML list at http://www.iana.org/domains/root/db
281 // Note that this contains several country code entries which are NOT in
282 // the text file. These all have the "Not assigned" in the "Sponsoring Organisation" column
283 // For example (as of 2015-01-02):
284 // .bl country-code Not assigned
285 // .um country-code Not assigned
286
287 // WARNING: this array MUST be sorted, otherwise it cannot be searched reliably using binary search
288 private static final String[] INFRASTRUCTURE_TLDS = new String[] {
289 "arpa", // internet infrastructure
290 };
291
292 // WARNING: this array MUST be sorted, otherwise it cannot be searched reliably using binary search
293 private static final String[] GENERIC_TLDS = new String[] {
294 // Taken from Version 2016062200, Last Updated Wed Jun 22 07:07:02 2016 UTC
295 "aaa", // aaa American Automobile Association, Inc.
296 "aarp", // aarp AARP
297 "abb", // abb ABB Ltd
298 "abbott", // abbott Abbott Laboratories, Inc.
299 "abbvie", // abbvie AbbVie Inc.
300 "able", // able Able Inc.
301 "abogado", // abogado Top Level Domain Holdings Limited
302 "abudhabi", // abudhabi Abu Dhabi Systems and Information Centre
303 "academy", // academy Half Oaks, LLC
304 "accenture", // accenture Accenture plc
305 "accountant", // accountant dot Accountant Limited
306 "accountants", // accountants Knob Town, LLC
307 "aco", // aco ACO Severin Ahlmann GmbH &amp; Co. KG
308 "active", // active The Active Network, Inc
309 "actor", // actor United TLD Holdco Ltd.
310 "adac", // adac Allgemeiner Deutscher Automobil-Club e.V. (ADAC)
311 "ads", // ads Charleston Road Registry Inc.
312 "adult", // adult ICM Registry AD LLC
313 "aeg", // aeg Aktiebolaget Electrolux
314 "aero", // aero Societe Internationale de Telecommunications Aeronautique (SITA INC USA)
315 "aetna", // aetna Aetna Life Insurance Company
316 "afl", // afl Australian Football League
317 "agakhan", // agakhan Fondation Aga Khan (Aga Khan Foundation)
318 "agency", // agency Steel Falls, LLC
319 "aig", // aig American International Group, Inc.
320 "airbus", // airbus Airbus S.A.S.
321 "airforce", // airforce United TLD Holdco Ltd.
322 "airtel", // airtel Bharti Airtel Limited
323 "akdn", // akdn Fondation Aga Khan (Aga Khan Foundation)
324 "alibaba", // alibaba Alibaba Group Holding Limited
325 "alipay", // alipay Alibaba Group Holding Limited
326 "allfinanz", // allfinanz Allfinanz Deutsche Vermögensberatung Aktiengesellschaft
327 "ally", // ally Ally Financial Inc.
328 "alsace", // alsace REGION D ALSACE
329 "alstom", // alstom ALSTOM
330 "amica", // amica Amica Mutual Insurance Company
331 "amsterdam", // amsterdam Gemeente Amsterdam
332 "analytics", // analytics Campus IP LLC
333 "android", // android Charleston Road Registry Inc.
334 "anquan", // anquan QIHOO 360 TECHNOLOGY CO. LTD.
335 "anz", // anz Australia and New Zealand Banking Group Limited
336 "apartments", // apartments June Maple, LLC
337 "app", // app Charleston Road Registry Inc.
338 "apple", // apple Apple Inc.
339 "aquarelle", // aquarelle Aquarelle.com
340 "aramco", // aramco Aramco Services Company
341 "archi", // archi STARTING DOT LIMITED
342 "army", // army United TLD Holdco Ltd.
343 "arte", // arte Association Relative à la Télévision Européenne G.E.I.E.
344 "asia", // asia DotAsia Organisation Ltd.
345 "associates", // associates Baxter Hill, LLC
346 "attorney", // attorney United TLD Holdco, Ltd
347 "auction", // auction United TLD HoldCo, Ltd.
348 "audi", // audi AUDI Aktiengesellschaft
349 "audible", // audible Amazon Registry Service, Inc.
350 "audio", // audio Uniregistry, Corp.
351 "author", // author Amazon Registry Services, Inc.
352 "auto", // auto Uniregistry, Corp.
353 "autos", // autos DERAutos, LLC
354 "avianca", // avianca Aerovias del Continente Americano S.A. Avianca
355 "aws", // aws Amazon Registry Services, Inc.
356 "axa", // axa AXA SA
357 "azure", // azure Microsoft Corporation
358 "baby", // baby Johnson &amp; Johnson Services, Inc.
359 "baidu", // baidu Baidu, Inc.
360 "band", // band United TLD Holdco, Ltd
361 "bank", // bank fTLD Registry Services, LLC
362 "bar", // bar Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable
363 "barcelona", // barcelona Municipi de Barcelona
364 "barclaycard", // barclaycard Barclays Bank PLC
365 "barclays", // barclays Barclays Bank PLC
366 "barefoot", // barefoot Gallo Vineyards, Inc.
367 "bargains", // bargains Half Hallow, LLC
368 "bauhaus", // bauhaus Werkhaus GmbH
369 "bayern", // bayern Bayern Connect GmbH
370 "bbc", // bbc British Broadcasting Corporation
371 "bbva", // bbva BANCO BILBAO VIZCAYA ARGENTARIA, S.A.
372 "bcg", // bcg The Boston Consulting Group, Inc.
373 "bcn", // bcn Municipi de Barcelona
374 "beats", // beats Beats Electronics, LLC
375 "beer", // beer Top Level Domain Holdings Limited
376 "bentley", // bentley Bentley Motors Limited
377 "berlin", // berlin dotBERLIN GmbH &amp; Co. KG
378 "best", // best BestTLD Pty Ltd
379 "bet", // bet Afilias plc
380 "bharti", // bharti Bharti Enterprises (Holding) Private Limited
381 "bible", // bible American Bible Society
382 "bid", // bid dot Bid Limited
383 "bike", // bike Grand Hollow, LLC
384 "bing", // bing Microsoft Corporation
385 "bingo", // bingo Sand Cedar, LLC
386 "bio", // bio STARTING DOT LIMITED
387 "biz", // biz Neustar, Inc.
388 "black", // black Afilias Limited
389 "blackfriday", // blackfriday Uniregistry, Corp.
390 "blanco", // blanco BLANCO GmbH + Co KG
391 "blog", // blog Knock Knock WHOIS There, LLC
392 "bloomberg", // bloomberg Bloomberg IP Holdings LLC
393 "blue", // blue Afilias Limited
394 "bms", // bms Bristol-Myers Squibb Company
395 "bmw", // bmw Bayerische Motoren Werke Aktiengesellschaft
396 "bnl", // bnl Banca Nazionale del Lavoro
397 "bnpparibas", // bnpparibas BNP Paribas
398 "boats", // boats DERBoats, LLC
399 "boehringer", // boehringer Boehringer Ingelheim International GmbH
400 "bom", // bom Núcleo de Informação e Coordenação do Ponto BR - NIC.br
401 "bond", // bond Bond University Limited
402 "boo", // boo Charleston Road Registry Inc.
403 "book", // book Amazon Registry Services, Inc.
404 "boots", // boots THE BOOTS COMPANY PLC
405 "bosch", // bosch Robert Bosch GMBH
406 "bostik", // bostik Bostik SA
407 "bot", // bot Amazon Registry Services, Inc.
408 "boutique", // boutique Over Galley, LLC
409 "bradesco", // bradesco Banco Bradesco S.A.
410 "bridgestone", // bridgestone Bridgestone Corporation
411 "broadway", // broadway Celebrate Broadway, Inc.
412 "broker", // broker DOTBROKER REGISTRY LTD
413 "brother", // brother Brother Industries, Ltd.
414 "brussels", // brussels DNS.be vzw
415 "budapest", // budapest Top Level Domain Holdings Limited
416 "bugatti", // bugatti Bugatti International SA
417 "build", // build Plan Bee LLC
418 "builders", // builders Atomic Madison, LLC
419 "business", // business Spring Cross, LLC
420 "buy", // buy Amazon Registry Services, INC
421 "buzz", // buzz DOTSTRATEGY CO.
422 "bzh", // bzh Association www.bzh
423 "cab", // cab Half Sunset, LLC
424 "cafe", // cafe Pioneer Canyon, LLC
425 "cal", // cal Charleston Road Registry Inc.
426 "call", // call Amazon Registry Services, Inc.
427 "cam", // cam AC Webconnecting Holding B.V.
428 "camera", // camera Atomic Maple, LLC
429 "camp", // camp Delta Dynamite, LLC
430 "cancerresearch", // cancerresearch Australian Cancer Research Foundation
431 "canon", // canon Canon Inc.
432 "capetown", // capetown ZA Central Registry NPC trading as ZA Central Registry
433 "capital", // capital Delta Mill, LLC
434 "car", // car Cars Registry Limited
435 "caravan", // caravan Caravan International, Inc.
436 "cards", // cards Foggy Hollow, LLC
437 "care", // care Goose Cross, LLC
438 "career", // career dotCareer LLC
439 "careers", // careers Wild Corner, LLC
440 "cars", // cars Uniregistry, Corp.
441 "cartier", // cartier Richemont DNS Inc.
442 "casa", // casa Top Level Domain Holdings Limited
443 "cash", // cash Delta Lake, LLC
444 "casino", // casino Binky Sky, LLC
445 "cat", // cat Fundacio puntCAT
446 "catering", // catering New Falls. LLC
447 "cba", // cba COMMONWEALTH BANK OF AUSTRALIA
448 "cbn", // cbn The Christian Broadcasting Network, Inc.
449 "ceb", // ceb The Corporate Executive Board Company
450 "center", // center Tin Mill, LLC
451 "ceo", // ceo CEOTLD Pty Ltd
452 "cern", // cern European Organization for Nuclear Research (&quot;CERN&quot;)
453 "cfa", // cfa CFA Institute
454 "cfd", // cfd DOTCFD REGISTRY LTD
455 "chanel", // chanel Chanel International B.V.
456 "channel", // channel Charleston Road Registry Inc.
457 "chase", // chase JPMorgan Chase &amp; Co.
458 "chat", // chat Sand Fields, LLC
459 "cheap", // cheap Sand Cover, LLC
460 "chintai", // chintai CHINTAI Corporation
461 "chloe", // chloe Richemont DNS Inc.
462 "christmas", // christmas Uniregistry, Corp.
463 "chrome", // chrome Charleston Road Registry Inc.
464 "church", // church Holly Fileds, LLC
465 "cipriani", // cipriani Hotel Cipriani Srl
466 "circle", // circle Amazon Registry Services, Inc.
467 "cisco", // cisco Cisco Technology, Inc.
468 "citic", // citic CITIC Group Corporation
469 "city", // city Snow Sky, LLC
470 "cityeats", // cityeats Lifestyle Domain Holdings, Inc.
471 "claims", // claims Black Corner, LLC
472 "cleaning", // cleaning Fox Shadow, LLC
473 "click", // click Uniregistry, Corp.
474 "clinic", // clinic Goose Park, LLC
475 "clinique", // clinique The Estée Lauder Companies Inc.
476 "clothing", // clothing Steel Lake, LLC
477 "cloud", // cloud ARUBA S.p.A.
478 "club", // club .CLUB DOMAINS, LLC
479 "clubmed", // clubmed Club Méditerranée S.A.
480 "coach", // coach Koko Island, LLC
481 "codes", // codes Puff Willow, LLC
482 "coffee", // coffee Trixy Cover, LLC
483 "college", // college XYZ.COM LLC
484 "cologne", // cologne NetCologne Gesellschaft für Telekommunikation mbH
485 "com", // com VeriSign Global Registry Services
486 "commbank", // commbank COMMONWEALTH BANK OF AUSTRALIA
487 "community", // community Fox Orchard, LLC
488 "company", // company Silver Avenue, LLC
489 "compare", // compare iSelect Ltd
490 "computer", // computer Pine Mill, LLC
491 "comsec", // comsec VeriSign, Inc.
492 "condos", // condos Pine House, LLC
493 "construction", // construction Fox Dynamite, LLC
494 "consulting", // consulting United TLD Holdco, LTD.
495 "contact", // contact Top Level Spectrum, Inc.
496 "contractors", // contractors Magic Woods, LLC
497 "cooking", // cooking Top Level Domain Holdings Limited
498 "cool", // cool Koko Lake, LLC
499 "coop", // coop DotCooperation LLC
500 "corsica", // corsica Collectivité Territoriale de Corse
501 "country", // country Top Level Domain Holdings Limited
502 "coupon", // coupon Amazon Registry Services, Inc.
503 "coupons", // coupons Black Island, LLC
504 "courses", // courses OPEN UNIVERSITIES AUSTRALIA PTY LTD
505 "credit", // credit Snow Shadow, LLC
506 "creditcard", // creditcard Binky Frostbite, LLC
507 "creditunion", // creditunion CUNA Performance Resources, LLC
508 "cricket", // cricket dot Cricket Limited
509 "crown", // crown Crown Equipment Corporation
510 "crs", // crs Federated Co-operatives Limited
511 "cruises", // cruises Spring Way, LLC
512 "csc", // csc Alliance-One Services, Inc.
513 "cuisinella", // cuisinella SALM S.A.S.
514 "cymru", // cymru Nominet UK
515 "cyou", // cyou Beijing Gamease Age Digital Technology Co., Ltd.
516 "dabur", // dabur Dabur India Limited
517 "dad", // dad Charleston Road Registry Inc.
518 "dance", // dance United TLD Holdco Ltd.
519 "date", // date dot Date Limited
520 "dating", // dating Pine Fest, LLC
521 "datsun", // datsun NISSAN MOTOR CO., LTD.
522 "day", // day Charleston Road Registry Inc.
523 "dclk", // dclk Charleston Road Registry Inc.
524 "dds", // dds Minds + Machines Group Limited
525 "deal", // deal Amazon Registry Service, Inc.
526 "dealer", // dealer Dealer Dot Com, Inc.
527 "deals", // deals Sand Sunset, LLC
528 "degree", // degree United TLD Holdco, Ltd
529 "delivery", // delivery Steel Station, LLC
530 "dell", // dell Dell Inc.
531 "deloitte", // deloitte Deloitte Touche Tohmatsu
532 "delta", // delta Delta Air Lines, Inc.
533 "democrat", // democrat United TLD Holdco Ltd.
534 "dental", // dental Tin Birch, LLC
535 "dentist", // dentist United TLD Holdco, Ltd
536 "desi", // desi Desi Networks LLC
537 "design", // design Top Level Design, LLC
538 "dev", // dev Charleston Road Registry Inc.
539 "dhl", // dhl Deutsche Post AG
540 "diamonds", // diamonds John Edge, LLC
541 "diet", // diet Uniregistry, Corp.
542 "digital", // digital Dash Park, LLC
543 "direct", // direct Half Trail, LLC
544 "directory", // directory Extra Madison, LLC
545 "discount", // discount Holly Hill, LLC
546 "dnp", // dnp Dai Nippon Printing Co., Ltd.
547 "docs", // docs Charleston Road Registry Inc.
548 "dog", // dog Koko Mill, LLC
549 "doha", // doha Communications Regulatory Authority (CRA)
550 "domains", // domains Sugar Cross, LLC
551 "dot", // dot Dish DBS Corporation
552 "download", // download dot Support Limited
553 "drive", // drive Charleston Road Registry Inc.
554 "dtv", // dtv Dish DBS Corporation
555 "dubai", // dubai Dubai Smart Government Department
556 "dunlop", // dunlop The Goodyear Tire &amp; Rubber Company
557 "dupont", // dupont E. I. du Pont de Nemours and Company
558 "durban", // durban ZA Central Registry NPC trading as ZA Central Registry
559 "dvag", // dvag Deutsche Vermögensberatung Aktiengesellschaft DVAG
560 "earth", // earth Interlink Co., Ltd.
561 "eat", // eat Charleston Road Registry Inc.
562 "edeka", // edeka EDEKA Verband kaufmännischer Genossenschaften e.V.
563 "edu", // edu EDUCAUSE
564 "education", // education Brice Way, LLC
565 "email", // email Spring Madison, LLC
566 "emerck", // emerck Merck KGaA
567 "energy", // energy Binky Birch, LLC
568 "engineer", // engineer United TLD Holdco Ltd.
569 "engineering", // engineering Romeo Canyon
570 "enterprises", // enterprises Snow Oaks, LLC
571 "epost", // epost Deutsche Post AG
572 "epson", // epson Seiko Epson Corporation
573 "equipment", // equipment Corn Station, LLC
574 "ericsson", // ericsson Telefonaktiebolaget L M Ericsson
575 "erni", // erni ERNI Group Holding AG
576 "esq", // esq Charleston Road Registry Inc.
577 "estate", // estate Trixy Park, LLC
578 "eurovision", // eurovision European Broadcasting Union (EBU)
579 "eus", // eus Puntueus Fundazioa
580 "events", // events Pioneer Maple, LLC
581 "everbank", // everbank EverBank
582 "exchange", // exchange Spring Falls, LLC
583 "expert", // expert Magic Pass, LLC
584 "exposed", // exposed Victor Beach, LLC
585 "express", // express Sea Sunset, LLC
586 "extraspace", // extraspace Extra Space Storage LLC
587 "fage", // fage Fage International S.A.
588 "fail", // fail Atomic Pipe, LLC
589 "fairwinds", // fairwinds FairWinds Partners, LLC
590 "faith", // faith dot Faith Limited
591 "family", // family United TLD Holdco Ltd.
592 "fan", // fan Asiamix Digital Ltd
593 "fans", // fans Asiamix Digital Limited
594 "farm", // farm Just Maple, LLC
595 "fashion", // fashion Top Level Domain Holdings Limited
596 "fast", // fast Amazon Registry Services, Inc.
597 "feedback", // feedback Top Level Spectrum, Inc.
598 "ferrero", // ferrero Ferrero Trading Lux S.A.
599 "film", // film Motion Picture Domain Registry Pty Ltd
600 "final", // final Núcleo de Informação e Coordenação do Ponto BR - NIC.br
601 "finance", // finance Cotton Cypress, LLC
602 "financial", // financial Just Cover, LLC
603 "fire", // fire Amazon Registry Service, Inc.
604 "firestone", // firestone Bridgestone Corporation
605 "firmdale", // firmdale Firmdale Holdings Limited
606 "fish", // fish Fox Woods, LLC
607 "fishing", // fishing Top Level Domain Holdings Limited
608 "fit", // fit Minds + Machines Group Limited
609 "fitness", // fitness Brice Orchard, LLC
610 "flickr", // flickr Yahoo! Domain Services Inc.
611 "flights", // flights Fox Station, LLC
612 "flir", // flir FLIR Systems, Inc.
613 "florist", // florist Half Cypress, LLC
614 "flowers", // flowers Uniregistry, Corp.
615 "flsmidth", // flsmidth FLSmidth A/S
616 "fly", // fly Charleston Road Registry Inc.
617 "foo", // foo Charleston Road Registry Inc.
618 "football", // football Foggy Farms, LLC
619 "ford", // ford Ford Motor Company
620 "forex", // forex DOTFOREX REGISTRY LTD
621 "forsale", // forsale United TLD Holdco, LLC
622 "forum", // forum Fegistry, LLC
623 "foundation", // foundation John Dale, LLC
624 "fox", // fox FOX Registry, LLC
625 "fresenius", // fresenius Fresenius Immobilien-Verwaltungs-GmbH
626 "frl", // frl FRLregistry B.V.
627 "frogans", // frogans OP3FT
628 "frontier", // frontier Frontier Communications Corporation
629 "ftr", // ftr Frontier Communications Corporation
630 "fund", // fund John Castle, LLC
631 "furniture", // furniture Lone Fields, LLC
632 "futbol", // futbol United TLD Holdco, Ltd.
633 "fyi", // fyi Silver Tigers, LLC
634 "gal", // gal Asociación puntoGAL
635 "gallery", // gallery Sugar House, LLC
636 "gallo", // gallo Gallo Vineyards, Inc.
637 "gallup", // gallup Gallup, Inc.
638 "game", // game Uniregistry, Corp.
639 "games", // games United TLD Holdco Ltd.
640 "garden", // garden Top Level Domain Holdings Limited
641 "gbiz", // gbiz Charleston Road Registry Inc.
642 "gdn", // gdn Joint Stock Company "Navigation-information systems"
643 "gea", // gea GEA Group Aktiengesellschaft
644 "gent", // gent COMBELL GROUP NV/SA
645 "genting", // genting Resorts World Inc. Pte. Ltd.
646 "ggee", // ggee GMO Internet, Inc.
647 "gift", // gift Uniregistry, Corp.
648 "gifts", // gifts Goose Sky, LLC
649 "gives", // gives United TLD Holdco Ltd.
650 "giving", // giving Giving Limited
651 "glass", // glass Black Cover, LLC
652 "gle", // gle Charleston Road Registry Inc.
653 "global", // global Dot Global Domain Registry Limited
654 "globo", // globo Globo Comunicação e Participações S.A
655 "gmail", // gmail Charleston Road Registry Inc.
656 "gmbh", // gmbh Extra Dynamite, LLC
657 "gmo", // gmo GMO Internet, Inc.
658 "gmx", // gmx 1&amp;1 Mail &amp; Media GmbH
659 "gold", // gold June Edge, LLC
660 "goldpoint", // goldpoint YODOBASHI CAMERA CO.,LTD.
661 "golf", // golf Lone Falls, LLC
662 "goo", // goo NTT Resonant Inc.
663 "goodyear", // goodyear The Goodyear Tire &amp; Rubber Company
664 "goog", // goog Charleston Road Registry Inc.
665 "google", // google Charleston Road Registry Inc.
666 "gop", // gop Republican State Leadership Committee, Inc.
667 "got", // got Amazon Registry Services, Inc.
668 "gov", // gov General Services Administration Attn: QTDC, 2E08 (.gov Domain Registration)
669 "grainger", // grainger Grainger Registry Services, LLC
670 "graphics", // graphics Over Madison, LLC
671 "gratis", // gratis Pioneer Tigers, LLC
672 "green", // green Afilias Limited
673 "gripe", // gripe Corn Sunset, LLC
674 "group", // group Romeo Town, LLC
675 "guardian", // guardian The Guardian Life Insurance Company of America
676 "gucci", // gucci Guccio Gucci S.p.a.
677 "guge", // guge Charleston Road Registry Inc.
678 "guide", // guide Snow Moon, LLC
679 "guitars", // guitars Uniregistry, Corp.
680 "guru", // guru Pioneer Cypress, LLC
681 "hamburg", // hamburg Hamburg Top-Level-Domain GmbH
682 "hangout", // hangout Charleston Road Registry Inc.
683 "haus", // haus United TLD Holdco, LTD.
684 "hdfcbank", // hdfcbank HDFC Bank Limited
685 "health", // health DotHealth, LLC
686 "healthcare", // healthcare Silver Glen, LLC
687 "help", // help Uniregistry, Corp.
688 "helsinki", // helsinki City of Helsinki
689 "here", // here Charleston Road Registry Inc.
690 "hermes", // hermes Hermes International
691 "hiphop", // hiphop Uniregistry, Corp.
692 "hisamitsu", // hisamitsu Hisamitsu Pharmaceutical Co.,Inc.
693 "hitachi", // hitachi Hitachi, Ltd.
694 "hiv", // hiv dotHIV gemeinnuetziger e.V.
695 "hkt", // hkt PCCW-HKT DataCom Services Limited
696 "hockey", // hockey Half Willow, LLC
697 "holdings", // holdings John Madison, LLC
698 "holiday", // holiday Goose Woods, LLC
699 "homedepot", // homedepot Homer TLC, Inc.
700 "homes", // homes DERHomes, LLC
701 "honda", // honda Honda Motor Co., Ltd.
702 "horse", // horse Top Level Domain Holdings Limited
703 "host", // host DotHost Inc.
704 "hosting", // hosting Uniregistry, Corp.
705 "hoteles", // hoteles Travel Reservations SRL
706 "hotmail", // hotmail Microsoft Corporation
707 "house", // house Sugar Park, LLC
708 "how", // how Charleston Road Registry Inc.
709 "hsbc", // hsbc HSBC Holdings PLC
710 "htc", // htc HTC corporation
711 "hyundai", // hyundai Hyundai Motor Company
712 "ibm", // ibm International Business Machines Corporation
713 "icbc", // icbc Industrial and Commercial Bank of China Limited
714 "ice", // ice IntercontinentalExchange, Inc.
715 "icu", // icu One.com A/S
716 "ifm", // ifm ifm electronic gmbh
717 "iinet", // iinet Connect West Pty. Ltd.
718 "imamat", // imamat Fondation Aga Khan (Aga Khan Foundation)
719 "imdb", // imdb Amazon Registry Service, Inc.
720 "immo", // immo Auburn Bloom, LLC
721 "immobilien", // immobilien United TLD Holdco Ltd.
722 "industries", // industries Outer House, LLC
723 "infiniti", // infiniti NISSAN MOTOR CO., LTD.
724 "info", // info Afilias Limited
725 "ing", // ing Charleston Road Registry Inc.
726 "ink", // ink Top Level Design, LLC
727 "institute", // institute Outer Maple, LLC
728 "insurance", // insurance fTLD Registry Services LLC
729 "insure", // insure Pioneer Willow, LLC
730 "int", // int Internet Assigned Numbers Authority
731 "international", // international Wild Way, LLC
732 "investments", // investments Holly Glen, LLC
733 "ipiranga", // ipiranga Ipiranga Produtos de Petroleo S.A.
734 "irish", // irish Dot-Irish LLC
735 "iselect", // iselect iSelect Ltd
736 "ismaili", // ismaili Fondation Aga Khan (Aga Khan Foundation)
737 "ist", // ist Istanbul Metropolitan Municipality
738 "istanbul", // istanbul Istanbul Metropolitan Municipality / Medya A.S.
739 "itau", // itau Itau Unibanco Holding S.A.
740 "itv", // itv ITV Services Limited
741 "iwc", // iwc Richemont DNS Inc.
742 "jaguar", // jaguar Jaguar Land Rover Ltd
743 "java", // java Oracle Corporation
744 "jcb", // jcb JCB Co., Ltd.
745 "jcp", // jcp JCP Media, Inc.
746 "jetzt", // jetzt New TLD Company AB
747 "jewelry", // jewelry Wild Bloom, LLC
748 "jlc", // jlc Richemont DNS Inc.
749 "jll", // jll Jones Lang LaSalle Incorporated
750 "jmp", // jmp Matrix IP LLC
751 "jnj", // jnj Johnson &amp; Johnson Services, Inc.
752 "jobs", // jobs Employ Media LLC
753 "joburg", // joburg ZA Central Registry NPC trading as ZA Central Registry
754 "jot", // jot Amazon Registry Services, Inc.
755 "joy", // joy Amazon Registry Services, Inc.
756 "jpmorgan", // jpmorgan JPMorgan Chase &amp; Co.
757 "jprs", // jprs Japan Registry Services Co., Ltd.
758 "juegos", // juegos Uniregistry, Corp.
759 "kaufen", // kaufen United TLD Holdco Ltd.
760 "kddi", // kddi KDDI CORPORATION
761 "kerryhotels", // kerryhotels Kerry Trading Co. Limited
762 "kerrylogistics", // kerrylogistics Kerry Trading Co. Limited
763 "kerryproperties", // kerryproperties Kerry Trading Co. Limited
764 "kfh", // kfh Kuwait Finance House
765 "kia", // kia KIA MOTORS CORPORATION
766 "kim", // kim Afilias Limited
767 "kinder", // kinder Ferrero Trading Lux S.A.
768 "kindle", // kindle Amazon Registry Service, Inc.
769 "kitchen", // kitchen Just Goodbye, LLC
770 "kiwi", // kiwi DOT KIWI LIMITED
771 "koeln", // koeln NetCologne Gesellschaft für Telekommunikation mbH
772 "komatsu", // komatsu Komatsu Ltd.
773 "kosher", // kosher Kosher Marketing Assets LLC
774 "kpmg", // kpmg KPMG International Cooperative (KPMG International Genossenschaft)
775 "kpn", // kpn Koninklijke KPN N.V.
776 "krd", // krd KRG Department of Information Technology
777 "kred", // kred KredTLD Pty Ltd
778 "kuokgroup", // kuokgroup Kerry Trading Co. Limited
779 "kyoto", // kyoto Academic Institution: Kyoto Jyoho Gakuen
780 "lacaixa", // lacaixa CAIXA D&#39;ESTALVIS I PENSIONS DE BARCELONA
781 "lamborghini", // lamborghini Automobili Lamborghini S.p.A.
782 "lamer", // lamer The Estée Lauder Companies Inc.
783 "lancaster", // lancaster LANCASTER
784 "land", // land Pine Moon, LLC
785 "landrover", // landrover Jaguar Land Rover Ltd
786 "lanxess", // lanxess LANXESS Corporation
787 "lasalle", // lasalle Jones Lang LaSalle Incorporated
788 "lat", // lat ECOM-LAC Federación de Latinoamérica y el Caribe para Internet y el Comercio Electrónico
789 "latrobe", // latrobe La Trobe University
790 "law", // law Minds + Machines Group Limited
791 "lawyer", // lawyer United TLD Holdco, Ltd
792 "lds", // lds IRI Domain Management, LLC
793 "lease", // lease Victor Trail, LLC
794 "leclerc", // leclerc A.C.D. LEC Association des Centres Distributeurs Edouard Leclerc
795 "legal", // legal Blue Falls, LLC
796 "lego", // lego LEGO Juris A/S
797 "lexus", // lexus TOYOTA MOTOR CORPORATION
798 "lgbt", // lgbt Afilias Limited
799 "liaison", // liaison Liaison Technologies, Incorporated
800 "lidl", // lidl Schwarz Domains und Services GmbH &amp; Co. KG
801 "life", // life Trixy Oaks, LLC
802 "lifeinsurance", // lifeinsurance American Council of Life Insurers
803 "lifestyle", // lifestyle Lifestyle Domain Holdings, Inc.
804 "lighting", // lighting John McCook, LLC
805 "like", // like Amazon Registry Services, Inc.
806 "limited", // limited Big Fest, LLC
807 "limo", // limo Hidden Frostbite, LLC
808 "lincoln", // lincoln Ford Motor Company
809 "linde", // linde Linde Aktiengesellschaft
810 "link", // link Uniregistry, Corp.
811 "lipsy", // lipsy Lipsy Ltd
812 "live", // live United TLD Holdco Ltd.
813 "living", // living Lifestyle Domain Holdings, Inc.
814 "lixil", // lixil LIXIL Group Corporation
815 "loan", // loan dot Loan Limited
816 "loans", // loans June Woods, LLC
817 "locker", // locker Dish DBS Corporation
818 "locus", // locus Locus Analytics LLC
819 "lol", // lol Uniregistry, Corp.
820 "london", // london Dot London Domains Limited
821 "lotte", // lotte Lotte Holdings Co., Ltd.
822 "lotto", // lotto Afilias Limited
823 "love", // love Merchant Law Group LLP
824 "ltd", // ltd Over Corner, LLC
825 "ltda", // ltda InterNetX Corp.
826 "lupin", // lupin LUPIN LIMITED
827 "luxe", // luxe Top Level Domain Holdings Limited
828 "luxury", // luxury Luxury Partners LLC
829 "madrid", // madrid Comunidad de Madrid
830 "maif", // maif Mutuelle Assurance Instituteur France (MAIF)
831 "maison", // maison Victor Frostbite, LLC
832 "makeup", // makeup L&#39;Oréal
833 "man", // man MAN SE
834 "management", // management John Goodbye, LLC
835 "mango", // mango PUNTO FA S.L.
836 "market", // market Unitied TLD Holdco, Ltd
837 "marketing", // marketing Fern Pass, LLC
838 "markets", // markets DOTMARKETS REGISTRY LTD
839 "marriott", // marriott Marriott Worldwide Corporation
840 "mattel", // mattel Mattel Sites, Inc.
841 "mba", // mba Lone Hollow, LLC
842 "med", // med Medistry LLC
843 "media", // media Grand Glen, LLC
844 "meet", // meet Afilias Limited
845 "melbourne", // melbourne The Crown in right of the State of Victoria
846 "meme", // meme Charleston Road Registry Inc.
847 "memorial", // memorial Dog Beach, LLC
848 "men", // men Exclusive Registry Limited
849 "menu", // menu Wedding TLD2, LLC
850 "meo", // meo PT Comunicacoes S.A.
851 "metlife", // metlife MetLife Services and Solutions, LLC
852 "miami", // miami Top Level Domain Holdings Limited
853 "microsoft", // microsoft Microsoft Corporation
854 "mil", // mil DoD Network Information Center
855 "mini", // mini Bayerische Motoren Werke Aktiengesellschaft
856 "mlb", // mlb MLB Advanced Media DH, LLC
857 "mls", // mls The Canadian Real Estate Association
858 "mma", // mma MMA IARD
859 "mobi", // mobi Afilias Technologies Limited dba dotMobi
860 "mobily", // mobily GreenTech Consultancy Company W.L.L.
861 "moda", // moda United TLD Holdco Ltd.
862 "moe", // moe Interlink Co., Ltd.
863 "moi", // moi Amazon Registry Services, Inc.
864 "mom", // mom Uniregistry, Corp.
865 "monash", // monash Monash University
866 "money", // money Outer McCook, LLC
867 "montblanc", // montblanc Richemont DNS Inc.
868 "mormon", // mormon IRI Domain Management, LLC (&quot;Applicant&quot;)
869 "mortgage", // mortgage United TLD Holdco, Ltd
870 "moscow", // moscow Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)
871 "motorcycles", // motorcycles DERMotorcycles, LLC
872 "mov", // mov Charleston Road Registry Inc.
873 "movie", // movie New Frostbite, LLC
874 "movistar", // movistar Telefónica S.A.
875 "mtn", // mtn MTN Dubai Limited
876 "mtpc", // mtpc Mitsubishi Tanabe Pharma Corporation
877 "mtr", // mtr MTR Corporation Limited
878 "museum", // museum Museum Domain Management Association
879 "mutual", // mutual Northwestern Mutual MU TLD Registry, LLC
880 "mutuelle", // mutuelle Fédération Nationale de la Mutualité Française
881 "nadex", // nadex Nadex Domains, Inc
882 "nagoya", // nagoya GMO Registry, Inc.
883 "name", // name VeriSign Information Services, Inc.
884 "natura", // natura NATURA COSMÉTICOS S.A.
885 "navy", // navy United TLD Holdco Ltd.
886 "nec", // nec NEC Corporation
887 "net", // net VeriSign Global Registry Services
888 "netbank", // netbank COMMONWEALTH BANK OF AUSTRALIA
889 "netflix", // netflix Netflix, Inc.
890 "network", // network Trixy Manor, LLC
891 "neustar", // neustar NeuStar, Inc.
892 "new", // new Charleston Road Registry Inc.
893 "news", // news United TLD Holdco Ltd.
894 "next", // next Next plc
895 "nextdirect", // nextdirect Next plc
896 "nexus", // nexus Charleston Road Registry Inc.
897 "ngo", // ngo Public Interest Registry
898 "nhk", // nhk Japan Broadcasting Corporation (NHK)
899 "nico", // nico DWANGO Co., Ltd.
900 "nikon", // nikon NIKON CORPORATION
901 "ninja", // ninja United TLD Holdco Ltd.
902 "nissan", // nissan NISSAN MOTOR CO., LTD.
903 "nissay", // nissay Nippon Life Insurance Company
904 "nokia", // nokia Nokia Corporation
905 "northwesternmutual", // northwesternmutual Northwestern Mutual Registry, LLC
906 "norton", // norton Symantec Corporation
907 "now", // now Amazon Registry Service, Inc.
908 "nowruz", // nowruz Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.
909 "nowtv", // nowtv Starbucks (HK) Limited
910 "nra", // nra NRA Holdings Company, INC.
911 "nrw", // nrw Minds + Machines GmbH
912 "ntt", // ntt NIPPON TELEGRAPH AND TELEPHONE CORPORATION
913 "nyc", // nyc The City of New York by and through the New York City Department of Information Technology &amp; Telecommunications
914 "obi", // obi OBI Group Holding SE &amp; Co. KGaA
915 "office", // office Microsoft Corporation
916 "okinawa", // okinawa BusinessRalliart inc.
917 "olayan", // olayan Crescent Holding GmbH
918 "olayangroup", // olayangroup Crescent Holding GmbH
919 "ollo", // ollo Dish DBS Corporation
920 "omega", // omega The Swatch Group Ltd
921 "one", // one One.com A/S
922 "ong", // ong Public Interest Registry
923 "onl", // onl I-REGISTRY Ltd., Niederlassung Deutschland
924 "online", // online DotOnline Inc.
925 "ooo", // ooo INFIBEAM INCORPORATION LIMITED
926 "oracle", // oracle Oracle Corporation
927 "orange", // orange Orange Brand Services Limited
928 "org", // org Public Interest Registry (PIR)
929 "organic", // organic Afilias Limited
930 "origins", // origins The Estée Lauder Companies Inc.
931 "osaka", // osaka Interlink Co., Ltd.
932 "otsuka", // otsuka Otsuka Holdings Co., Ltd.
933 "ott", // ott Dish DBS Corporation
934 "ovh", // ovh OVH SAS
935 "page", // page Charleston Road Registry Inc.
936 "pamperedchef", // pamperedchef The Pampered Chef, Ltd.
937 "panerai", // panerai Richemont DNS Inc.
938 "paris", // paris City of Paris
939 "pars", // pars Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.
940 "partners", // partners Magic Glen, LLC
941 "parts", // parts Sea Goodbye, LLC
942 "party", // party Blue Sky Registry Limited
943 "passagens", // passagens Travel Reservations SRL
944 "pccw", // pccw PCCW Enterprises Limited
945 "pet", // pet Afilias plc
946 "pharmacy", // pharmacy National Association of Boards of Pharmacy
947 "philips", // philips Koninklijke Philips N.V.
948 "photo", // photo Uniregistry, Corp.
949 "photography", // photography Sugar Glen, LLC
950 "photos", // photos Sea Corner, LLC
951 "physio", // physio PhysBiz Pty Ltd
952 "piaget", // piaget Richemont DNS Inc.
953 "pics", // pics Uniregistry, Corp.
954 "pictet", // pictet Pictet Europe S.A.
955 "pictures", // pictures Foggy Sky, LLC
956 "pid", // pid Top Level Spectrum, Inc.
957 "pin", // pin Amazon Registry Services, Inc.
958 "ping", // ping Ping Registry Provider, Inc.
959 "pink", // pink Afilias Limited
960 "pioneer", // pioneer Pioneer Corporation
961 "pizza", // pizza Foggy Moon, LLC
962 "place", // place Snow Galley, LLC
963 "play", // play Charleston Road Registry Inc.
964 "playstation", // playstation Sony Computer Entertainment Inc.
965 "plumbing", // plumbing Spring Tigers, LLC
966 "plus", // plus Sugar Mill, LLC
967 "pohl", // pohl Deutsche Vermögensberatung Aktiengesellschaft DVAG
968 "poker", // poker Afilias Domains No. 5 Limited
969 "porn", // porn ICM Registry PN LLC
970 "post", // post Universal Postal Union
971 "praxi", // praxi Praxi S.p.A.
972 "press", // press DotPress Inc.
973 "prime", // prime Amazon Registry Service, Inc.
974 "pro", // pro Registry Services Corporation dba RegistryPro
975 "prod", // prod Charleston Road Registry Inc.
976 "productions", // productions Magic Birch, LLC
977 "prof", // prof Charleston Road Registry Inc.
978 "progressive", // progressive Progressive Casualty Insurance Company
979 "promo", // promo Afilias plc
980 "properties", // properties Big Pass, LLC
981 "property", // property Uniregistry, Corp.
982 "protection", // protection XYZ.COM LLC
983 "pub", // pub United TLD Holdco Ltd.
984 "pwc", // pwc PricewaterhouseCoopers LLP
985 "qpon", // qpon dotCOOL, Inc.
986 "quebec", // quebec PointQuébec Inc
987 "quest", // quest Quest ION Limited
988 "racing", // racing Premier Registry Limited
989 "read", // read Amazon Registry Services, Inc.
990 "realestate", // realestate dotRealEstate LLC
991 "realtor", // realtor Real Estate Domains LLC
992 "realty", // realty Fegistry, LLC
993 "recipes", // recipes Grand Island, LLC
994 "red", // red Afilias Limited
995 "redstone", // redstone Redstone Haute Couture Co., Ltd.
996 "redumbrella", // redumbrella Travelers TLD, LLC
997 "rehab", // rehab United TLD Holdco Ltd.
998 "reise", // reise Foggy Way, LLC
999 "reisen", // reisen New Cypress, LLC
1000 "reit", // reit National Association of Real Estate Investment Trusts, Inc.
1001 "ren", // ren Beijing Qianxiang Wangjing Technology Development Co., Ltd.
1002 "rent", // rent XYZ.COM LLC
1003 "rentals", // rentals Big Hollow,LLC
1004 "repair", // repair Lone Sunset, LLC
1005 "report", // report Binky Glen, LLC
1006 "republican", // republican United TLD Holdco Ltd.
1007 "rest", // rest Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable
1008 "restaurant", // restaurant Snow Avenue, LLC
1009 "review", // review dot Review Limited
1010 "reviews", // reviews United TLD Holdco, Ltd.
1011 "rexroth", // rexroth Robert Bosch GMBH
1012 "rich", // rich I-REGISTRY Ltd., Niederlassung Deutschland
1013 "richardli", // richardli Pacific Century Asset Management (HK) Limited
1014 "ricoh", // ricoh Ricoh Company, Ltd.
1015 "rio", // rio Empresa Municipal de Informática SA - IPLANRIO
1016 "rip", // rip United TLD Holdco Ltd.
1017 "rocher", // rocher Ferrero Trading Lux S.A.
1018 "rocks", // rocks United TLD Holdco, LTD.
1019 "rodeo", // rodeo Top Level Domain Holdings Limited
1020 "room", // room Amazon Registry Services, Inc.
1021 "rsvp", // rsvp Charleston Road Registry Inc.
1022 "ruhr", // ruhr regiodot GmbH &amp; Co. KG
1023 "run", // run Snow Park, LLC
1024 "rwe", // rwe RWE AG
1025 "ryukyu", // ryukyu BusinessRalliart inc.
1026 "saarland", // saarland dotSaarland GmbH
1027 "safe", // safe Amazon Registry Services, Inc.
1028 "safety", // safety Safety Registry Services, LLC.
1029 "sakura", // sakura SAKURA Internet Inc.
1030 "sale", // sale United TLD Holdco, Ltd
1031 "salon", // salon Outer Orchard, LLC
1032 "samsung", // samsung SAMSUNG SDS CO., LTD
1033 "sandvik", // sandvik Sandvik AB
1034 "sandvikcoromant", // sandvikcoromant Sandvik AB
1035 "sanofi", // sanofi Sanofi
1036 "sap", // sap SAP AG
1037 "sapo", // sapo PT Comunicacoes S.A.
1038 "sarl", // sarl Delta Orchard, LLC
1039 "sas", // sas Research IP LLC
1040 "save", // save Amazon Registry Service, Inc.
1041 "saxo", // saxo Saxo Bank A/S
1042 "sbi", // sbi STATE BANK OF INDIA
1043 "sbs", // sbs SPECIAL BROADCASTING SERVICE CORPORATION
1044 "sca", // sca SVENSKA CELLULOSA AKTIEBOLAGET SCA (publ)
1045 "scb", // scb The Siam Commercial Bank Public Company Limited (&quot;SCB&quot;)
1046 "schaeffler", // schaeffler Schaeffler Technologies AG &amp; Co. KG
1047 "schmidt", // schmidt SALM S.A.S.
1048 "scholarships", // scholarships Scholarships.com, LLC
1049 "school", // school Little Galley, LLC
1050 "schule", // schule Outer Moon, LLC
1051 "schwarz", // schwarz Schwarz Domains und Services GmbH &amp; Co. KG
1052 "science", // science dot Science Limited
1053 "scor", // scor SCOR SE
1054 "scot", // scot Dot Scot Registry Limited
1055 "seat", // seat SEAT, S.A. (Sociedad Unipersonal)
1056 "security", // security XYZ.COM LLC
1057 "seek", // seek Seek Limited
1058 "select", // select iSelect Ltd
1059 "sener", // sener Sener Ingeniería y Sistemas, S.A.
1060 "services", // services Fox Castle, LLC
1061 "seven", // seven Seven West Media Ltd
1062 "sew", // sew SEW-EURODRIVE GmbH &amp; Co KG
1063 "sex", // sex ICM Registry SX LLC
1064 "sexy", // sexy Uniregistry, Corp.
1065 "sfr", // sfr Societe Francaise du Radiotelephone - SFR
1066 "sharp", // sharp Sharp Corporation
1067 "shaw", // shaw Shaw Cablesystems G.P.
1068 "shell", // shell Shell Information Technology International Inc
1069 "shia", // shia Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.
1070 "shiksha", // shiksha Afilias Limited
1071 "shoes", // shoes Binky Galley, LLC
1072 "shop", // shop GMO Registry, Inc.
1073 "shopping", // shopping Over Keep, LLC
1074 "shouji", // shouji QIHOO 360 TECHNOLOGY CO. LTD.
1075 "show", // show Snow Beach, LLC
1076 "shriram", // shriram Shriram Capital Ltd.
1077 "silk", // silk Amazon Registry Service, Inc.
1078 "sina", // sina Sina Corporation
1079 "singles", // singles Fern Madison, LLC
1080 "site", // site DotSite Inc.
1081 "ski", // ski STARTING DOT LIMITED
1082 "skin", // skin L&#39;Oréal
1083 "sky", // sky Sky International AG
1084 "skype", // skype Microsoft Corporation
1085 "smile", // smile Amazon Registry Services, Inc.
1086 "sncf", // sncf SNCF (Société Nationale des Chemins de fer Francais)
1087 "soccer", // soccer Foggy Shadow, LLC
1088 "social", // social United TLD Holdco Ltd.
1089 "softbank", // softbank SoftBank Group Corp.
1090 "software", // software United TLD Holdco, Ltd
1091 "sohu", // sohu Sohu.com Limited
1092 "solar", // solar Ruby Town, LLC
1093 "solutions", // solutions Silver Cover, LLC
1094 "song", // song Amazon EU S.à r.l.
1095 "sony", // sony Sony Corporation
1096 "soy", // soy Charleston Road Registry Inc.
1097 "space", // space DotSpace Inc.
1098 "spiegel", // spiegel SPIEGEL-Verlag Rudolf Augstein GmbH &amp; Co. KG
1099 "spot", // spot Amazon Registry Services, Inc.
1100 "spreadbetting", // spreadbetting DOTSPREADBETTING REGISTRY LTD
1101 "srl", // srl InterNetX Corp.
1102 "stada", // stada STADA Arzneimittel AG
1103 "star", // star Star India Private Limited
1104 "starhub", // starhub StarHub Limited
1105 "statebank", // statebank STATE BANK OF INDIA
1106 "statefarm", // statefarm State Farm Mutual Automobile Insurance Company
1107 "statoil", // statoil Statoil ASA
1108 "stc", // stc Saudi Telecom Company
1109 "stcgroup", // stcgroup Saudi Telecom Company
1110 "stockholm", // stockholm Stockholms kommun
1111 "storage", // storage Self Storage Company LLC
1112 "store", // store DotStore Inc.
1113 "stream", // stream dot Stream Limited
1114 "studio", // studio United TLD Holdco Ltd.
1115 "study", // study OPEN UNIVERSITIES AUSTRALIA PTY LTD
1116 "style", // style Binky Moon, LLC
1117 "sucks", // sucks Vox Populi Registry Ltd.
1118 "supplies", // supplies Atomic Fields, LLC
1119 "supply", // supply Half Falls, LLC
1120 "support", // support Grand Orchard, LLC
1121 "surf", // surf Top Level Domain Holdings Limited
1122 "surgery", // surgery Tin Avenue, LLC
1123 "suzuki", // suzuki SUZUKI MOTOR CORPORATION
1124 "swatch", // swatch The Swatch Group Ltd
1125 "swiss", // swiss Swiss Confederation
1126 "sydney", // sydney State of New South Wales, Department of Premier and Cabinet
1127 "symantec", // symantec Symantec Corporation
1128 "systems", // systems Dash Cypress, LLC
1129 "tab", // tab Tabcorp Holdings Limited
1130 "taipei", // taipei Taipei City Government
1131 "talk", // talk Amazon Registry Services, Inc.
1132 "taobao", // taobao Alibaba Group Holding Limited
1133 "tatamotors", // tatamotors Tata Motors Ltd
1134 "tatar", // tatar Limited Liability Company "Coordination Center of Regional Domain of Tatarstan Republic"
1135 "tattoo", // tattoo Uniregistry, Corp.
1136 "tax", // tax Storm Orchard, LLC
1137 "taxi", // taxi Pine Falls, LLC
1138 "tci", // tci Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.
1139 "tdk", // tdk TDK Corporation
1140 "team", // team Atomic Lake, LLC
1141 "tech", // tech Dot Tech LLC
1142 "technology", // technology Auburn Falls, LLC
1143 "tel", // tel Telnic Ltd.
1144 "telecity", // telecity TelecityGroup International Limited
1145 "telefonica", // telefonica Telefónica S.A.
1146 "temasek", // temasek Temasek Holdings (Private) Limited
1147 "tennis", // tennis Cotton Bloom, LLC
1148 "teva", // teva Teva Pharmaceutical Industries Limited
1149 "thd", // thd Homer TLC, Inc.
1150 "theater", // theater Blue Tigers, LLC
1151 "theatre", // theatre XYZ.COM LLC
1152 "tickets", // tickets Accent Media Limited
1153 "tienda", // tienda Victor Manor, LLC
1154 "tiffany", // tiffany Tiffany and Company
1155 "tips", // tips Corn Willow, LLC
1156 "tires", // tires Dog Edge, LLC
1157 "tirol", // tirol punkt Tirol GmbH
1158 "tmall", // tmall Alibaba Group Holding Limited
1159 "today", // today Pearl Woods, LLC
1160 "tokyo", // tokyo GMO Registry, Inc.
1161 "tools", // tools Pioneer North, LLC
1162 "top", // top Jiangsu Bangning Science &amp; Technology Co.,Ltd.
1163 "toray", // toray Toray Industries, Inc.
1164 "toshiba", // toshiba TOSHIBA Corporation
1165 "total", // total Total SA
1166 "tours", // tours Sugar Station, LLC
1167 "town", // town Koko Moon, LLC
1168 "toyota", // toyota TOYOTA MOTOR CORPORATION
1169 "toys", // toys Pioneer Orchard, LLC
1170 "trade", // trade Elite Registry Limited
1171 "trading", // trading DOTTRADING REGISTRY LTD
1172 "training", // training Wild Willow, LLC
1173 "travel", // travel Tralliance Registry Management Company, LLC.
1174 "travelers", // travelers Travelers TLD, LLC
1175 "travelersinsurance", // travelersinsurance Travelers TLD, LLC
1176 "trust", // trust Artemis Internet Inc
1177 "trv", // trv Travelers TLD, LLC
1178 "tube", // tube Latin American Telecom LLC
1179 "tui", // tui TUI AG
1180 "tunes", // tunes Amazon Registry Services, Inc.
1181 "tushu", // tushu Amazon Registry Services, Inc.
1182 "tvs", // tvs T V SUNDRAM IYENGAR &amp; SONS PRIVATE LIMITED
1183 "ubs", // ubs UBS AG
1184 "unicom", // unicom China United Network Communications Corporation Limited
1185 "university", // university Little Station, LLC
1186 "uno", // uno Dot Latin LLC
1187 "uol", // uol UBN INTERNET LTDA.
1188 "ups", // ups UPS Market Driver, Inc.
1189 "vacations", // vacations Atomic Tigers, LLC
1190 "vana", // vana Lifestyle Domain Holdings, Inc.
1191 "vegas", // vegas Dot Vegas, Inc.
1192 "ventures", // ventures Binky Lake, LLC
1193 "verisign", // verisign VeriSign, Inc.
1194 "versicherung", // versicherung dotversicherung-registry GmbH
1195 "vet", // vet United TLD Holdco, Ltd
1196 "viajes", // viajes Black Madison, LLC
1197 "video", // video United TLD Holdco, Ltd
1198 "vig", // vig VIENNA INSURANCE GROUP AG Wiener Versicherung Gruppe
1199 "viking", // viking Viking River Cruises (Bermuda) Ltd.
1200 "villas", // villas New Sky, LLC
1201 "vin", // vin Holly Shadow, LLC
1202 "vip", // vip Minds + Machines Group Limited
1203 "virgin", // virgin Virgin Enterprises Limited
1204 "vision", // vision Koko Station, LLC
1205 "vista", // vista Vistaprint Limited
1206 "vistaprint", // vistaprint Vistaprint Limited
1207 "viva", // viva Saudi Telecom Company
1208 "vlaanderen", // vlaanderen DNS.be vzw
1209 "vodka", // vodka Top Level Domain Holdings Limited
1210 "volkswagen", // volkswagen Volkswagen Group of America Inc.
1211 "vote", // vote Monolith Registry LLC
1212 "voting", // voting Valuetainment Corp.
1213 "voto", // voto Monolith Registry LLC
1214 "voyage", // voyage Ruby House, LLC
1215 "vuelos", // vuelos Travel Reservations SRL
1216 "wales", // wales Nominet UK
1217 "walter", // walter Sandvik AB
1218 "wang", // wang Zodiac Registry Limited
1219 "wanggou", // wanggou Amazon Registry Services, Inc.
1220 "warman", // warman Weir Group IP Limited
1221 "watch", // watch Sand Shadow, LLC
1222 "watches", // watches Richemont DNS Inc.
1223 "weather", // weather The Weather Channel, LLC
1224 "weatherchannel", // weatherchannel The Weather Channel, LLC
1225 "webcam", // webcam dot Webcam Limited
1226 "weber", // weber Saint-Gobain Weber SA
1227 "website", // website DotWebsite Inc.
1228 "wed", // wed Atgron, Inc.
1229 "wedding", // wedding Top Level Domain Holdings Limited
1230 "weibo", // weibo Sina Corporation
1231 "weir", // weir Weir Group IP Limited
1232 "whoswho", // whoswho Who&#39;s Who Registry
1233 "wien", // wien punkt.wien GmbH
1234 "wiki", // wiki Top Level Design, LLC
1235 "williamhill", // williamhill William Hill Organization Limited
1236 "win", // win First Registry Limited
1237 "windows", // windows Microsoft Corporation
1238 "wine", // wine June Station, LLC
1239 "wme", // wme William Morris Endeavor Entertainment, LLC
1240 "wolterskluwer", // wolterskluwer Wolters Kluwer N.V.
1241 "work", // work Top Level Domain Holdings Limited
1242 "works", // works Little Dynamite, LLC
1243 "world", // world Bitter Fields, LLC
1244 "wtc", // wtc World Trade Centers Association, Inc.
1245 "wtf", // wtf Hidden Way, LLC
1246 "xbox", // xbox Microsoft Corporation
1247 "xerox", // xerox Xerox DNHC LLC
1248 "xihuan", // xihuan QIHOO 360 TECHNOLOGY CO. LTD.
1249 "xin", // xin Elegant Leader Limited
1250 "xn--11b4c3d", // कॉम VeriSign Sarl
1251 "xn--1ck2e1b", // セール Amazon Registry Services, Inc.
1252 "xn--1qqw23a", // 佛山 Guangzhou YU Wei Information Technology Co., Ltd.
1253 "xn--30rr7y", // 慈善 Excellent First Limited
1254 "xn--3bst00m", // 集团 Eagle Horizon Limited
1255 "xn--3ds443g", // 在线 TLD REGISTRY LIMITED
1256 "xn--3pxu8k", // 点看 VeriSign Sarl
1257 "xn--42c2d9a", // คอม VeriSign Sarl
1258 "xn--45q11c", // 八卦 Zodiac Scorpio Limited
1259 "xn--4gbrim", // موقع Suhub Electronic Establishment
1260 "xn--55qw42g", // 公益 China Organizational Name Administration Center
1261 "xn--55qx5d", // 公司 Computer Network Information Center of Chinese Academy of Sciences (China Internet Network Information Center)
1262 "xn--5tzm5g", // 网站 Global Website TLD Asia Limited
1263 "xn--6frz82g", // 移动 Afilias Limited
1264 "xn--6qq986b3xl", // 我爱你 Tycoon Treasure Limited
1265 "xn--80adxhks", // москва Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)
1266 "xn--80asehdb", // онлайн CORE Association
1267 "xn--80aswg", // сайт CORE Association
1268 "xn--8y0a063a", // 联通 China United Network Communications Corporation Limited
1269 "xn--9dbq2a", // קום VeriSign Sarl
1270 "xn--9et52u", // 时尚 RISE VICTORY LIMITED
1271 "xn--9krt00a", // 微博 Sina Corporation
1272 "xn--b4w605ferd", // 淡马锡 Temasek Holdings (Private) Limited
1273 "xn--bck1b9a5dre4c", // ファッション Amazon Registry Services, Inc.
1274 "xn--c1avg", // орг Public Interest Registry
1275 "xn--c2br7g", // नेट VeriSign Sarl
1276 "xn--cck2b3b", // ストア Amazon Registry Services, Inc.
1277 "xn--cg4bki", // 삼성 SAMSUNG SDS CO., LTD
1278 "xn--czr694b", // 商标 HU YI GLOBAL INFORMATION RESOURCES(HOLDING) COMPANY.HONGKONG LIMITED
1279 "xn--czrs0t", // 商店 Wild Island, LLC
1280 "xn--czru2d", // 商城 Zodiac Aquarius Limited
1281 "xn--d1acj3b", // дети The Foundation for Network Initiatives “The Smart Internet”
1282 "xn--eckvdtc9d", // ポイント Amazon Registry Services, Inc.
1283 "xn--efvy88h", // 新闻 Xinhua News Agency Guangdong Branch 新华通讯社广东分社
1284 "xn--estv75g", // 工行 Industrial and Commercial Bank of China Limited
1285 "xn--fct429k", // 家電 Amazon Registry Services, Inc.
1286 "xn--fhbei", // كوم VeriSign Sarl
1287 "xn--fiq228c5hs", // 中文网 TLD REGISTRY LIMITED
1288 "xn--fiq64b", // 中信 CITIC Group Corporation
1289 "xn--fjq720a", // 娱乐 Will Bloom, LLC
1290 "xn--flw351e", // 谷歌 Charleston Road Registry Inc.
1291 "xn--fzys8d69uvgm", // 電訊盈科 PCCW Enterprises Limited
1292 "xn--g2xx48c", // 购物 Minds + Machines Group Limited
1293 "xn--gckr3f0f", // クラウド Amazon Registry Services, Inc.
1294 "xn--hxt814e", // 网店 Zodiac Libra Limited
1295 "xn--i1b6b1a6a2e", // संगठन Public Interest Registry
1296 "xn--imr513n", // 餐厅 HU YI GLOBAL INFORMATION RESOURCES (HOLDING) COMPANY. HONGKONG LIMITED
1297 "xn--io0a7i", // 网络 Computer Network Information Center of Chinese Academy of Sciences (China Internet Network Information Center)
1298 "xn--j1aef", // ком VeriSign Sarl
1299 "xn--jlq61u9w7b", // 诺基亚 Nokia Corporation
1300 "xn--jvr189m", // 食品 Amazon Registry Services, Inc.
1301 "xn--kcrx77d1x4a", // 飞利浦 Koninklijke Philips N.V.
1302 "xn--kpu716f", // 手表 Richemont DNS Inc.
1303 "xn--kput3i", // 手机 Beijing RITT-Net Technology Development Co., Ltd
1304 "xn--mgba3a3ejt", // ارامكو Aramco Services Company
1305 "xn--mgba7c0bbn0a", // العليان Crescent Holding GmbH
1306 "xn--mgbab2bd", // بازار CORE Association
1307 "xn--mgbb9fbpob", // موبايلي GreenTech Consultancy Company W.L.L.
1308 "xn--mgbca7dzdo", // ابوظبي Abu Dhabi Systems and Information Centre
1309 "xn--mgbt3dhd", // همراه Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.
1310 "xn--mk1bu44c", // 닷컴 VeriSign Sarl
1311 "xn--mxtq1m", // 政府 Net-Chinese Co., Ltd.
1312 "xn--ngbc5azd", // شبكة International Domain Registry Pty. Ltd.
1313 "xn--ngbe9e0a", // بيتك Kuwait Finance House
1314 "xn--nqv7f", // 机构 Public Interest Registry
1315 "xn--nqv7fs00ema", // 组织机构 Public Interest Registry
1316 "xn--nyqy26a", // 健康 Stable Tone Limited
1317 "xn--p1acf", // рус Rusnames Limited
1318 "xn--pbt977c", // 珠宝 Richemont DNS Inc.
1319 "xn--pssy2u", // 大拿 VeriSign Sarl
1320 "xn--q9jyb4c", // みんな Charleston Road Registry Inc.
1321 "xn--qcka1pmc", // グーグル Charleston Road Registry Inc.
1322 "xn--rhqv96g", // 世界 Stable Tone Limited
1323 "xn--rovu88b", // 書籍 Amazon EU S.à r.l.
1324 "xn--ses554g", // 网址 KNET Co., Ltd
1325 "xn--t60b56a", // 닷넷 VeriSign Sarl
1326 "xn--tckwe", // コム VeriSign Sarl
1327 "xn--unup4y", // 游戏 Spring Fields, LLC
1328 "xn--vermgensberater-ctb", // VERMöGENSBERATER Deutsche Vermögensberatung Aktiengesellschaft DVAG
1329 "xn--vermgensberatung-pwb", // VERMöGENSBERATUNG Deutsche Vermögensberatung Aktiengesellschaft DVAG
1330 "xn--vhquv", // 企业 Dash McCook, LLC
1331 "xn--vuq861b", // 信息 Beijing Tele-info Network Technology Co., Ltd.
1332 "xn--w4r85el8fhu5dnra", // 嘉里大酒店 Kerry Trading Co. Limited
1333 "xn--w4rs40l", // 嘉里 Kerry Trading Co. Limited
1334 "xn--xhq521b", // 广东 Guangzhou YU Wei Information Technology Co., Ltd.
1335 "xn--zfr164b", // 政务 China Organizational Name Administration Center
1336 "xperia", // xperia Sony Mobile Communications AB
1337 "xxx", // xxx ICM Registry LLC
1338 "xyz", // xyz XYZ.COM LLC
1339 "yachts", // yachts DERYachts, LLC
1340 "yahoo", // yahoo Yahoo! Domain Services Inc.
1341 "yamaxun", // yamaxun Amazon Registry Services, Inc.
1342 "yandex", // yandex YANDEX, LLC
1343 "yodobashi", // yodobashi YODOBASHI CAMERA CO.,LTD.
1344 "yoga", // yoga Top Level Domain Holdings Limited
1345 "yokohama", // yokohama GMO Registry, Inc.
1346 "you", // you Amazon Registry Services, Inc.
1347 "youtube", // youtube Charleston Road Registry Inc.
1348 "yun", // yun QIHOO 360 TECHNOLOGY CO. LTD.
1349 "zappos", // zappos Amazon Registry Service, Inc.
1350 "zara", // zara Industria de Diseño Textil, S.A. (INDITEX, S.A.)
1351 "zero", // zero Amazon Registry Services, Inc.
1352 "zip", // zip Charleston Road Registry Inc.
1353 "zone", // zone Outer Falls, LLC
1354 "zuerich", // zuerich Kanton Zürich (Canton of Zurich)
1355 };
1356
1357 // WARNING: this array MUST be sorted, otherwise it cannot be searched reliably using binary search
1358 private static final String[] COUNTRY_CODE_TLDS = new String[] {
1359 "ac", // Ascension Island
1360 "ad", // Andorra
1361 "ae", // United Arab Emirates
1362 "af", // Afghanistan
1363 "ag", // Antigua and Barbuda
1364 "ai", // Anguilla
1365 "al", // Albania
1366 "am", // Armenia
1367 //"an", // Netherlands Antilles (retired)
1368 "ao", // Angola
1369 "aq", // Antarctica
1370 "ar", // Argentina
1371 "as", // American Samoa
1372 "at", // Austria
1373 "au", // Australia (includes Ashmore and Cartier Islands and Coral Sea Islands)
1374 "aw", // Aruba
1375 "ax", // Åland
1376 "az", // Azerbaijan
1377 "ba", // Bosnia and Herzegovina
1378 "bb", // Barbados
1379 "bd", // Bangladesh
1380 "be", // Belgium
1381 "bf", // Burkina Faso
1382 "bg", // Bulgaria
1383 "bh", // Bahrain
1384 "bi", // Burundi
1385 "bj", // Benin
1386 "bm", // Bermuda
1387 "bn", // Brunei Darussalam
1388 "bo", // Bolivia
1389 "br", // Brazil
1390 "bs", // Bahamas
1391 "bt", // Bhutan
1392 "bv", // Bouvet Island
1393 "bw", // Botswana
1394 "by", // Belarus
1395 "bz", // Belize
1396 "ca", // Canada
1397 "cc", // Cocos (Keeling) Islands
1398 "cd", // Democratic Republic of the Congo (formerly Zaire)
1399 "cf", // Central African Republic
1400 "cg", // Republic of the Congo
1401 "ch", // Switzerland
1402 "ci", // Côte d'Ivoire
1403 "ck", // Cook Islands
1404 "cl", // Chile
1405 "cm", // Cameroon
1406 "cn", // China, mainland
1407 "co", // Colombia
1408 "cr", // Costa Rica
1409 "cu", // Cuba
1410 "cv", // Cape Verde
1411 "cw", // Curaçao
1412 "cx", // Christmas Island
1413 "cy", // Cyprus
1414 "cz", // Czech Republic
1415 "de", // Germany
1416 "dj", // Djibouti
1417 "dk", // Denmark
1418 "dm", // Dominica
1419 "do", // Dominican Republic
1420 "dz", // Algeria
1421 "ec", // Ecuador
1422 "ee", // Estonia
1423 "eg", // Egypt
1424 "er", // Eritrea
1425 "es", // Spain
1426 "et", // Ethiopia
1427 "eu", // European Union
1428 "fi", // Finland
1429 "fj", // Fiji
1430 "fk", // Falkland Islands
1431 "fm", // Federated States of Micronesia
1432 "fo", // Faroe Islands
1433 "fr", // France
1434 "ga", // Gabon
1435 "gb", // Great Britain (United Kingdom)
1436 "gd", // Grenada
1437 "ge", // Georgia
1438 "gf", // French Guiana
1439 "gg", // Guernsey
1440 "gh", // Ghana
1441 "gi", // Gibraltar
1442 "gl", // Greenland
1443 "gm", // The Gambia
1444 "gn", // Guinea
1445 "gp", // Guadeloupe
1446 "gq", // Equatorial Guinea
1447 "gr", // Greece
1448 "gs", // South Georgia and the South Sandwich Islands
1449 "gt", // Guatemala
1450 "gu", // Guam
1451 "gw", // Guinea-Bissau
1452 "gy", // Guyana
1453 "hk", // Hong Kong
1454 "hm", // Heard Island and McDonald Islands
1455 "hn", // Honduras
1456 "hr", // Croatia (Hrvatska)
1457 "ht", // Haiti
1458 "hu", // Hungary
1459 "id", // Indonesia
1460 "ie", // Ireland (Éire)
1461 "il", // Israel
1462 "im", // Isle of Man
1463 "in", // India
1464 "io", // British Indian Ocean Territory
1465 "iq", // Iraq
1466 "ir", // Iran
1467 "is", // Iceland
1468 "it", // Italy
1469 "je", // Jersey
1470 "jm", // Jamaica
1471 "jo", // Jordan
1472 "jp", // Japan
1473 "ke", // Kenya
1474 "kg", // Kyrgyzstan
1475 "kh", // Cambodia (Khmer)
1476 "ki", // Kiribati
1477 "km", // Comoros
1478 "kn", // Saint Kitts and Nevis
1479 "kp", // North Korea
1480 "kr", // South Korea
1481 "kw", // Kuwait
1482 "ky", // Cayman Islands
1483 "kz", // Kazakhstan
1484 "la", // Laos (currently being marketed as the official domain for Los Angeles)
1485 "lb", // Lebanon
1486 "lc", // Saint Lucia
1487 "li", // Liechtenstein
1488 "lk", // Sri Lanka
1489 "lr", // Liberia
1490 "ls", // Lesotho
1491 "lt", // Lithuania
1492 "lu", // Luxembourg
1493 "lv", // Latvia
1494 "ly", // Libya
1495 "ma", // Morocco
1496 "mc", // Monaco
1497 "md", // Moldova
1498 "me", // Montenegro
1499 "mg", // Madagascar
1500 "mh", // Marshall Islands
1501 "mk", // Republic of Macedonia
1502 "ml", // Mali
1503 "mm", // Myanmar
1504 "mn", // Mongolia
1505 "mo", // Macau
1506 "mp", // Northern Mariana Islands
1507 "mq", // Martinique
1508 "mr", // Mauritania
1509 "ms", // Montserrat
1510 "mt", // Malta
1511 "mu", // Mauritius
1512 "mv", // Maldives
1513 "mw", // Malawi
1514 "mx", // Mexico
1515 "my", // Malaysia
1516 "mz", // Mozambique
1517 "na", // Namibia
1518 "nc", // New Caledonia
1519 "ne", // Niger
1520 "nf", // Norfolk Island
1521 "ng", // Nigeria
1522 "ni", // Nicaragua
1523 "nl", // Netherlands
1524 "no", // Norway
1525 "np", // Nepal
1526 "nr", // Nauru
1527 "nu", // Niue
1528 "nz", // New Zealand
1529 "om", // Oman
1530 "pa", // Panama
1531 "pe", // Peru
1532 "pf", // French Polynesia With Clipperton Island
1533 "pg", // Papua New Guinea
1534 "ph", // Philippines
1535 "pk", // Pakistan
1536 "pl", // Poland
1537 "pm", // Saint-Pierre and Miquelon
1538 "pn", // Pitcairn Islands
1539 "pr", // Puerto Rico
1540 "ps", // Palestinian territories (PA-controlled West Bank and Gaza Strip)
1541 "pt", // Portugal
1542 "pw", // Palau
1543 "py", // Paraguay
1544 "qa", // Qatar
1545 "re", // Réunion
1546 "ro", // Romania
1547 "rs", // Serbia
1548 "ru", // Russia
1549 "rw", // Rwanda
1550 "sa", // Saudi Arabia
1551 "sb", // Solomon Islands
1552 "sc", // Seychelles
1553 "sd", // Sudan
1554 "se", // Sweden
1555 "sg", // Singapore
1556 "sh", // Saint Helena
1557 "si", // Slovenia
1558 "sj", // Svalbard and Jan Mayen Islands Not in use (Norwegian dependencies; see .no)
1559 "sk", // Slovakia
1560 "sl", // Sierra Leone
1561 "sm", // San Marino
1562 "sn", // Senegal
1563 "so", // Somalia
1564 "sr", // Suriname
1565 "st", // São Tomé and Príncipe
1566 "su", // Soviet Union (deprecated)
1567 "sv", // El Salvador
1568 "sx", // Sint Maarten
1569 "sy", // Syria
1570 "sz", // Swaziland
1571 "tc", // Turks and Caicos Islands
1572 "td", // Chad
1573 "tf", // French Southern and Antarctic Lands
1574 "tg", // Togo
1575 "th", // Thailand
1576 "tj", // Tajikistan
1577 "tk", // Tokelau
1578 "tl", // East Timor (deprecated old code)
1579 "tm", // Turkmenistan
1580 "tn", // Tunisia
1581 "to", // Tonga
1582 //"tp", // East Timor (Retired)
1583 "tr", // Turkey
1584 "tt", // Trinidad and Tobago
1585 "tv", // Tuvalu
1586 "tw", // Taiwan, Republic of China
1587 "tz", // Tanzania
1588 "ua", // Ukraine
1589 "ug", // Uganda
1590 "uk", // United Kingdom
1591 "us", // United States of America
1592 "uy", // Uruguay
1593 "uz", // Uzbekistan
1594 "va", // Vatican City State
1595 "vc", // Saint Vincent and the Grenadines
1596 "ve", // Venezuela
1597 "vg", // British Virgin Islands
1598 "vi", // U.S. Virgin Islands
1599 "vn", // Vietnam
1600 "vu", // Vanuatu
1601 "wf", // Wallis and Futuna
1602 "ws", // Samoa (formerly Western Samoa)
1603 "xn--3e0b707e", // 한국 KISA (Korea Internet &amp; Security Agency)
1604 "xn--45brj9c", // ভারত National Internet Exchange of India
1605 "xn--80ao21a", // қаз Association of IT Companies of Kazakhstan
1606 "xn--90a3ac", // срб Serbian National Internet Domain Registry (RNIDS)
1607 "xn--90ais", // ??? Reliable Software Inc.
1608 "xn--clchc0ea0b2g2a9gcd", // சிங்கப்பூர் Singapore Network Information Centre (SGNIC) Pte Ltd
1609 "xn--d1alf", // мкд Macedonian Academic Research Network Skopje
1610 "xn--e1a4c", // ею EURid vzw/asbl
1611 "xn--fiqs8s", // 中国 China Internet Network Information Center
1612 "xn--fiqz9s", // 中國 China Internet Network Information Center
1613 "xn--fpcrj9c3d", // భారత్ National Internet Exchange of India
1614 "xn--fzc2c9e2c", // ලංකා LK Domain Registry
1615 "xn--gecrj9c", // ભારત National Internet Exchange of India
1616 "xn--h2brj9c", // भारत National Internet Exchange of India
1617 "xn--j1amh", // укр Ukrainian Network Information Centre (UANIC), Inc.
1618 "xn--j6w193g", // 香港 Hong Kong Internet Registration Corporation Ltd.
1619 "xn--kprw13d", // 台湾 Taiwan Network Information Center (TWNIC)
1620 "xn--kpry57d", // 台灣 Taiwan Network Information Center (TWNIC)
1621 "xn--l1acc", // мон Datacom Co.,Ltd
1622 "xn--lgbbat1ad8j", // الجزائر CERIST
1623 "xn--mgb9awbf", // عمان Telecommunications Regulatory Authority (TRA)
1624 "xn--mgba3a4f16a", // ایران Institute for Research in Fundamental Sciences (IPM)
1625 "xn--mgbaam7a8h", // امارات Telecommunications Regulatory Authority (TRA)
1626 "xn--mgbayh7gpa", // الاردن National Information Technology Center (NITC)
1627 "xn--mgbbh1a71e", // بھارت National Internet Exchange of India
1628 "xn--mgbc0a9azcg", // المغرب Agence Nationale de Réglementation des Télécommunications (ANRT)
1629 "xn--mgberp4a5d4ar", // السعودية Communications and Information Technology Commission
1630 "xn--mgbpl2fh", // ????? Sudan Internet Society
1631 "xn--mgbtx2b", // عراق Communications and Media Commission (CMC)
1632 "xn--mgbx4cd0ab", // مليسيا MYNIC Berhad
1633 "xn--mix891f", // 澳門 Bureau of Telecommunications Regulation (DSRT)
1634 "xn--node", // გე Information Technologies Development Center (ITDC)
1635 "xn--o3cw4h", // ไทย Thai Network Information Center Foundation
1636 "xn--ogbpf8fl", // سورية National Agency for Network Services (NANS)
1637 "xn--p1ai", // рф Coordination Center for TLD RU
1638 "xn--pgbs0dh", // تونس Agence Tunisienne d&#39;Internet
1639 "xn--qxam", // ελ ICS-FORTH GR
1640 "xn--s9brj9c", // ਭਾਰਤ National Internet Exchange of India
1641 "xn--wgbh1c", // مصر National Telecommunication Regulatory Authority - NTRA
1642 "xn--wgbl6a", // قطر Communications Regulatory Authority
1643 "xn--xkc2al3hye2a", // இலங்கை LK Domain Registry
1644 "xn--xkc2dl3a5ee0h", // இந்தியா National Internet Exchange of India
1645 "xn--y9a3aq", // ??? Internet Society
1646 "xn--yfro4i67o", // 新加坡 Singapore Network Information Centre (SGNIC) Pte Ltd
1647 "xn--ygbi2ammx", // فلسطين Ministry of Telecom &amp; Information Technology (MTIT)
1648 "ye", // Yemen
1649 "yt", // Mayotte
1650 "za", // South Africa
1651 "zm", // Zambia
1652 "zw", // Zimbabwe
1653 };
1654
1655 // WARNING: this array MUST be sorted, otherwise it cannot be searched reliably using binary search
1656 private static final String[] LOCAL_TLDS = new String[] {
1657 "localdomain", // Also widely used as localhost.localdomain
1658 "localhost", // RFC2606 defined
1659 };
1660
1661 // Additional arrays to supplement or override the built in ones.
1662 // The PLUS arrays are valid keys, the MINUS arrays are invalid keys
1663
1664 /*
1665 * This field is used to detect whether the getInstance has been called.
1666 * After this, the method updateTLDOverride is not allowed to be called.
1667 * This field does not need to be volatile since it is only accessed from
1668 * synchronized methods.
1669 */
1670 private static boolean inUse;
1671
1672 /*
1673 * These arrays are mutable, but they don't need to be volatile.
1674 * They can only be updated by the updateTLDOverride method, and any readers must get an instance
1675 * using the getInstance methods which are all (now) synchronised.
1676 */
1677 // WARNING: this array MUST be sorted, otherwise it cannot be searched reliably using binary search
1678 private static volatile String[] countryCodeTLDsPlus = EMPTY_STRING_ARRAY;
1679
1680 // WARNING: this array MUST be sorted, otherwise it cannot be searched reliably using binary search
1681 private static volatile String[] genericTLDsPlus = EMPTY_STRING_ARRAY;
1682
1683 // WARNING: this array MUST be sorted, otherwise it cannot be searched reliably using binary search
1684 private static volatile String[] countryCodeTLDsMinus = EMPTY_STRING_ARRAY;
1685
1686 // WARNING: this array MUST be sorted, otherwise it cannot be searched reliably using binary search
1687 private static volatile String[] genericTLDsMinus = EMPTY_STRING_ARRAY;
1688
1689 /**
1690 * enum used by {@link DomainValidator#updateTLDOverride(ArrayType, String[])}
1691 * to determine which override array to update / fetch
1692 * @since 1.5.0
1693 * @since 1.5.1 made public and added read-only array references
1694 */
1695 public enum ArrayType {
1696 /** Update (or get a copy of) the GENERIC_TLDS_PLUS table containing additonal generic TLDs */
1697 GENERIC_PLUS,
1698 /** Update (or get a copy of) the GENERIC_TLDS_MINUS table containing deleted generic TLDs */
1699 GENERIC_MINUS,
1700 /** Update (or get a copy of) the COUNTRY_CODE_TLDS_PLUS table containing additonal country code TLDs */
1701 COUNTRY_CODE_PLUS,
1702 /** Update (or get a copy of) the COUNTRY_CODE_TLDS_MINUS table containing deleted country code TLDs */
1703 COUNTRY_CODE_MINUS,
1704 /** Get a copy of the generic TLDS table */
1705 GENERIC_RO,
1706 /** Get a copy of the country code table */
1707 COUNTRY_CODE_RO,
1708 /** Get a copy of the infrastructure table */
1709 INFRASTRUCTURE_RO,
1710 /** Get a copy of the local table */
1711 LOCAL_RO
1712 }
1713
1714 // For use by unit test code only
1715 static synchronized void clearTLDOverrides() {
1716 inUse = false;
1717 countryCodeTLDsPlus = EMPTY_STRING_ARRAY;
1718 countryCodeTLDsMinus = EMPTY_STRING_ARRAY;
1719 genericTLDsPlus = EMPTY_STRING_ARRAY;
1720 genericTLDsMinus = EMPTY_STRING_ARRAY;
1721 }
1722
1723 /**
1724 * Update one of the TLD override arrays.
1725 * This must only be done at program startup, before any instances are accessed using getInstance.
1726 * <p>
1727 * For example:
1728 * <p>
1729 * <code>DomainValidator.updateTLDOverride(ArrayType.GENERIC_PLUS, new String[]{"apache"})}</code>
1730 * <p>
1731 * To clear an override array, provide an empty array.
1732 *
1733 * @param table the table to update, see {@link DomainValidator.ArrayType}
1734 * Must be one of the following
1735 * <ul>
1736 * <li>COUNTRY_CODE_MINUS</li>
1737 * <li>COUNTRY_CODE_PLUS</li>
1738 * <li>GENERIC_MINUS</li>
1739 * <li>GENERIC_PLUS</li>
1740 * </ul>
1741 * @param tlds the array of TLDs, must not be null
1742 * @throws IllegalStateException if the method is called after getInstance
1743 * @throws IllegalArgumentException if one of the read-only tables is requested
1744 * @since 1.5.0
1745 */
1746 public static synchronized void updateTLDOverride(ArrayType table, String[] tlds) {
1747 if (inUse) {
1748 throw new IllegalStateException("Can only invoke this method before calling getInstance");
1749 }
1750 String[] copy = new String[tlds.length];
1751 // Comparisons are always done with lower-case entries
1752 for (int i = 0; i < tlds.length; i++) {
1753 copy[i] = tlds[i].toLowerCase(Locale.ENGLISH);
1754 }
1755 Arrays.sort(copy);
1756 switch(table) {
1757 case COUNTRY_CODE_MINUS:
1758 countryCodeTLDsMinus = copy;
1759 break;
1760 case COUNTRY_CODE_PLUS:
1761 countryCodeTLDsPlus = copy;
1762 break;
1763 case GENERIC_MINUS:
1764 genericTLDsMinus = copy;
1765 break;
1766 case GENERIC_PLUS:
1767 genericTLDsPlus = copy;
1768 break;
1769 case COUNTRY_CODE_RO:
1770 case GENERIC_RO:
1771 case INFRASTRUCTURE_RO:
1772 case LOCAL_RO:
1773 throw new IllegalArgumentException("Cannot update the table: " + table);
1774 default:
1775 throw new IllegalArgumentException("Unexpected enum value: " + table);
1776 }
1777 }
1778
1779 /**
1780 * Get a copy of the internal array.
1781 * @param table the array type (any of the enum values)
1782 * @return a copy of the array
1783 * @throws IllegalArgumentException if the table type is unexpected (should not happen)
1784 * @since 1.5.1
1785 */
1786 public static String[] getTLDEntries(ArrayType table) {
1787 final String[] array;
1788 switch(table) {
1789 case COUNTRY_CODE_MINUS:
1790 array = countryCodeTLDsMinus;
1791 break;
1792 case COUNTRY_CODE_PLUS:
1793 array = countryCodeTLDsPlus;
1794 break;
1795 case GENERIC_MINUS:
1796 array = genericTLDsMinus;
1797 break;
1798 case GENERIC_PLUS:
1799 array = genericTLDsPlus;
1800 break;
1801 case GENERIC_RO:
1802 array = GENERIC_TLDS;
1803 break;
1804 case COUNTRY_CODE_RO:
1805 array = COUNTRY_CODE_TLDS;
1806 break;
1807 case INFRASTRUCTURE_RO:
1808 array = INFRASTRUCTURE_TLDS;
1809 break;
1810 case LOCAL_RO:
1811 array = LOCAL_TLDS;
1812 break;
1813 default:
1814 throw new IllegalArgumentException("Unexpected enum value: " + table);
1815 }
1816 return Arrays.copyOf(array, array.length); // clone the array
1817 }
1818
1819 /**
1820 * Converts potentially Unicode input to punycode.
1821 * If conversion fails, returns the original input.
1822 *
1823 * @param input the string to convert, not null
1824 * @return converted input, or original input if conversion fails
1825 */
1826 // Needed by UrlValidator
1827 static String unicodeToASCII(String input) {
1828 if (isOnlyASCII(input)) { // skip possibly expensive processing
1829 return input;
1830 }
1831 try {
1832 final String ascii = IDN.toASCII(input);
1833 if (IDNBUGHOLDER.IDN_TOASCII_PRESERVES_TRAILING_DOTS) {
1834 return ascii;
1835 }
1836 final int length = input.length();
1837 if (length == 0) { // check there is a last character
1838 return input;
1839 }
1840 // RFC3490 3.1. 1)
1841 // Whenever dots are used as label separators, the following
1842 // characters MUST be recognized as dots: U+002E (full stop), U+3002
1843 // (ideographic full stop), U+FF0E (fullwidth full stop), U+FF61
1844 // (halfwidth ideographic full stop).
1845 char lastChar = input.charAt(length-1); // fetch original last char
1846 switch(lastChar) {
1847 case '\u002E': // "." full stop
1848 case '\u3002': // ideographic full stop
1849 case '\uFF0E': // fullwidth full stop
1850 case '\uFF61': // halfwidth ideographic full stop
1851 return ascii + '.'; // restore the missing stop
1852 default:
1853 return ascii;
1854 }
1855 } catch (IllegalArgumentException e) { // input is not valid
1856 Main.trace(e);
1857 return input;
1858 }
1859 }
1860
1861 private static class IDNBUGHOLDER {
1862 private static boolean keepsTrailingDot() {
1863 final String input = "a."; // must be a valid name
1864 return input.equals(IDN.toASCII(input));
1865 }
1866
1867 private static final boolean IDN_TOASCII_PRESERVES_TRAILING_DOTS = keepsTrailingDot();
1868 }
1869
1870 /*
1871 * Check if input contains only ASCII
1872 * Treats null as all ASCII
1873 */
1874 private static boolean isOnlyASCII(String input) {
1875 if (input == null) {
1876 return true;
1877 }
1878 for (int i = 0; i < input.length(); i++) {
1879 if (input.charAt(i) > 0x7F) { // CHECKSTYLE IGNORE MagicNumber
1880 return false;
1881 }
1882 }
1883 return true;
1884 }
1885
1886 /**
1887 * Check if a sorted array contains the specified key
1888 *
1889 * @param sortedArray the array to search
1890 * @param key the key to find
1891 * @return {@code true} if the array contains the key
1892 */
1893 private static boolean arrayContains(String[] sortedArray, String key) {
1894 return Arrays.binarySearch(sortedArray, key) >= 0;
1895 }
1896}
Note: See TracBrowser for help on using the repository browser.