-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathwhois.sql
1168 lines (1129 loc) · 67.1 KB
/
whois.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- phpMyAdmin SQL Dump
-- version 4.8.5
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Jun 02, 2019 at 07:36 AM
-- Server version: 5.7.24
-- PHP Version: 7.2.11
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `whois`
--
-- --------------------------------------------------------
--
-- Table structure for table `al_config`
--
CREATE TABLE `al_config` (
`id` int(1) NOT NULL COMMENT '主键',
`site_name` varchar(30) NOT NULL COMMENT '# 网站名字',
`domain` varchar(30) NOT NULL COMMENT '# 网站域名',
`keywords` varchar(255) NOT NULL COMMENT '# 关键字',
`description` varchar(255) NOT NULL COMMENT '# 描述',
`contact` text NOT NULL COMMENT '# 联系方式',
`is_auto` int(1) NOT NULL DEFAULT '0' COMMENT '# 是否自动适配whois服务器,1开启,0关闭',
`is_quest_cache` int(1) DEFAULT '0' COMMENT '#是否开启请求缓存本地(如果开启,那么查询了一次域名,在多少秒内再次查询的就是本地的缓存)1开启,0关闭',
`quest_time` int(10) NOT NULL DEFAULT '60'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='站点配置';
--
-- Dumping data for table `al_config`
--
INSERT INTO `al_config` (`id`, `site_name`, `domain`, `keywords`, `description`, `contact`, `is_auto`, `is_quest_cache`, `quest_time`) VALUES
(1, 'Whois查询', 'whois.in', 'whois,域名查询', 'whois', '<p >email:im#alone88.cn</p>', 1, 1, 60);
-- --------------------------------------------------------
--
-- Table structure for table `al_info`
--
CREATE TABLE `al_info` (
`id` int(10) NOT NULL COMMENT '主键',
`domain` varchar(255) NOT NULL COMMENT '域名',
`info` longtext COMMENT '域名信息',
`update_time` varchar(10) DEFAULT NULL COMMENT '更新时间'
) ENGINE=MyISAM DEFAULT CHARSET=utf8 CHECKSUM=1;
-- --------------------------------------------------------
--
-- Table structure for table `al_links`
--
CREATE TABLE `al_links` (
`id` int(4) NOT NULL COMMENT '主键',
`name` varchar(30) NOT NULL COMMENT '友链名',
`link` varchar(50) NOT NULL COMMENT '链接',
`desc` varchar(50) NOT NULL COMMENT '描述'
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='友情链接';
--
-- Dumping data for table `al_links`
--
INSERT INTO `al_links` (`id`, `name`, `link`, `desc`) VALUES
(4, 'Alone88', 'https://alone88.cn', 'Alone88'),
(5, 'ALAPI', 'https://www.alapi.cn', 'ALAPI'),
(6, 'Github', 'https://github.com/anhao', 'Alone88 \' Github');
-- --------------------------------------------------------
--
-- Table structure for table `al_server`
--
CREATE TABLE `al_server` (
`id` int(10) NOT NULL,
`tld` varchar(50) NOT NULL,
`server` varchar(100) NOT NULL,
`state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '#是否启用,1启用,0禁用',
`create_time` int(10) NOT NULL,
`update_time` int(10) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Dumping data for table `al_server`
--
INSERT INTO `al_server` (`id`, `tld`, `server`, `state`, `create_time`, `update_time`) VALUES
(196, 'ac.be', 'whois.dns.be', 1, 1559271858, 1559271858),
(197, 'ac.cn', 'whois.cnnic.net.cn', 1, 1559271858, 1559271858),
(198, 'ac.il', 'whois.isoc.org.il', 1, 1559271858, 1559271858),
(199, 'ac.in', 'whois.registry.in', 1, 1559271858, 1559286902),
(200, 'ac.jp', 'whois.nic.ad.jp', 1, 1559271858, 1559271858),
(201, 'ac.ke', 'whois.kenic.or.ke', 1, 1559271858, 1559271858),
(202, 'ac.kr', 'whois.nic.or.kr', 1, 1559271858, 1559271858),
(203, 'ac.nz', 'whois.srs.net.nz', 1, 1559271858, 1559271858),
(204, 'ac.th', 'whois.thnic.net', 1, 1559271858, 1559271858),
(205, 'ac.uk', 'whois.ja.net', 1, 1559271858, 1559271858),
(206, 'ac.za', 'whois.co.za', 1, 1559271858, 1559271858),
(207, 'academy', 'whois.donuts.co', 1, 1559271858, 1559271858),
(208, 'accountants', 'whois.donuts.co', 1, 1559271858, 1559271858),
(209, 'actor', 'whois.unitedtld.com', 1, 1559271858, 1559271858),
(210, 'ad', 'whois.ripe.net', 1, 1559271858, 1559271858),
(211, 'adm.br', 'whois.nic.br', 1, 1559271858, 1559271858),
(212, 'adult', 'whois.afilias-srs.net', 1, 1559271858, 1559271858),
(213, 'adv.br', 'whois.nic.br', 1, 1559271858, 1559271858),
(214, 'ae', 'whois-check.aeda.net.ae', 1, 1559271858, 1559271858),
(215, 'aero', 'whois.aero', 1, 1559271858, 1559271858),
(216, 'af', 'whois.netnames.net', 1, 1559271858, 1559271858),
(217, 'ag', 'whois.nic.ag', 1, 1559271858, 1559271858),
(218, 'agency', 'whois.donuts.co', 1, 1559271858, 1559271858),
(219, 'agro.pl', 'whois.dns.pl', 1, 1559271858, 1559271858),
(220, 'ah.cn', 'whois.cnnic.net.cn', 1, 1559271858, 1559271858),
(221, 'aid.pl', 'whois.dns.pl', 1, 1559271858, 1559271858),
(222, 'airforce', 'whois.unitedtld.com', 1, 1559271858, 1559271858),
(223, 'allfinanz', 'whois.ksregistry.net', 1, 1559271858, 1559271858),
(224, 'alsace', 'whois-alsace.nic.fr', 1, 1559271858, 1559271858),
(225, 'alt.za', 'whois.co.za', 1, 1559271858, 1559271858),
(226, 'am', 'whois.nic.am', 1, 1559271858, 1559271858),
(227, 'am.br', 'whois.nic.br', 1, 1559271858, 1559271858),
(228, 'android', 'domain-registry-whois.l.google.com', 1, 1559271858, 1559271858),
(229, 'apartments', 'whois.donuts.co', 1, 1559271858, 1559271858),
(230, 'aquarelle', 'whois-aquarelle.nic.fr', 1, 1559271858, 1559271858),
(231, 'archi', 'whois.ksregistry.net', 1, 1559271858, 1559271858),
(232, 'army', 'whois.rightside.co', 1, 1559271858, 1559271858),
(233, 'arq.br', 'whois.nic.br', 1, 1559271858, 1559271858),
(234, 'art.br', 'whois.nic.br', 1, 1559271858, 1559271858),
(235, 'arts.ro', 'whois.rotld.ro', 1, 1559271858, 1559271858),
(236, 'as', 'whois.nic.as', 1, 1559271858, 1559271858),
(237, 'asia', 'whois.nic.asia', 1, 1559271858, 1559271858),
(238, 'asn.au', 'whois.aunic.net', 1, 1559271858, 1559271858),
(239, 'asso.fr', 'whois.nic.fr', 1, 1559271858, 1559271858),
(240, 'asso.mc', 'whois.ripe.net', 1, 1559271858, 1559271858),
(241, 'associates', 'whois.donuts.co', 1, 1559271858, 1559271858),
(242, 'at', 'whois.nic.at', 1, 1559271858, 1559271858),
(243, 'atm.pl', 'whois.dns.pl', 1, 1559271858, 1559271858),
(244, 'attorney', 'whois.rightside.co', 1, 1559271858, 1559271858),
(245, 'au', 'whois.audns.net.au', 1, 1559271858, 1559271858),
(246, 'auction', 'whois.unitedtld.com', 1, 1559271858, 1559271858),
(247, 'audio', 'whois.uniregistry.net', 1, 1559271858, 1559271858),
(248, 'auto.pl', 'whois.dns.pl', 1, 1559271858, 1559271858),
(249, 'aw', 'whois.nic.aw', 1, 1559271858, 1559271858),
(250, 'ax', 'whois.ax', 1, 1559271858, 1559271858),
(251, 'band', 'whois.rightside.co', 1, 1559271858, 1559271858),
(252, 'bank', 'whois.nic.bank', 1, 1559271858, 1559271858),
(253, 'bar', 'whois.nic.bar', 1, 1559271858, 1559271858),
(254, 'barclaycard', 'whois.nic.barclaycard', 1, 1559271858, 1559271858),
(255, 'barclays', 'whois.nic.barclays', 1, 1559271858, 1559271858),
(256, 'bargains', 'whois.donuts.co', 1, 1559271858, 1559271858),
(257, 'bayern', 'whois-dub.mm-registry.com', 1, 1559271858, 1559271858),
(258, 'bbs.tr', 'whois.metu.edu.tr', 1, 1559271858, 1559271858),
(259, 'be', 'whois.dns.be', 1, 1559271858, 1559271858),
(260, 'beer', 'whois-dub.mm-registry.com', 1, 1559271859, 1559271859),
(261, 'berlin', 'whois.nic.berlin', 1, 1559271859, 1559271859),
(262, 'best', 'whois.nic.best', 1, 1559271859, 1559271859),
(263, 'bg', 'whois.register.bg', 1, 1559271859, 1559271859),
(264, 'bi', 'whois1.nic.bi', 1, 1559271859, 1559271859),
(265, 'bike', 'whois.donuts.co', 1, 1559271859, 1559271859),
(266, 'bingo', 'whois.donuts.co', 1, 1559271859, 1559271859),
(267, 'bio', 'whois.ksregistry.net', 1, 1559271859, 1559271859),
(268, 'bio.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(269, 'biz', 'whois.nic.biz', 1, 1559271859, 1559271859),
(270, 'biz.pl', 'whois.dns.pl', 1, 1559271859, 1559271859),
(271, 'bj', 'whois.nic.bj', 1, 1559271859, 1559271859),
(272, 'bj.cn', 'whois.cnnic.net.cn', 1, 1559271859, 1559271859),
(273, 'black', 'whois.afilias.net', 1, 1559271859, 1559271859),
(274, 'blackfriday', 'whois.uniregistry.net', 1, 1559271859, 1559271859),
(275, 'blue', 'whois.afilias.net', 1, 1559271859, 1559271859),
(276, 'bmw', 'whois.ksregistry.net', 1, 1559271859, 1559271859),
(277, 'bnpparibas', 'whois.afilias-srs.net', 1, 1559271859, 1559271859),
(278, 'boo', 'domain-registry-whois.l.google.com', 1, 1559271859, 1559271859),
(279, 'boutique', 'whois.donuts.co', 1, 1559271859, 1559271859),
(280, 'br', 'whois.nic.br', 1, 1559271859, 1559271859),
(281, 'br.com', 'whois.centralnic.com', 1, 1559271859, 1559271859),
(282, 'brussels', 'whois.nic.brussels', 1, 1559271859, 1559271859),
(283, 'budapest', 'whois-dub.mm-registry.com', 1, 1559271859, 1559271859),
(284, 'build', 'whois.nic.build ', 1, 1559271859, 1559271859),
(285, 'builders', 'whois.donuts.co', 1, 1559271859, 1559271859),
(286, 'business', 'whois.donuts.co', 1, 1559271859, 1559271859),
(287, 'bw', 'whois.nic.net.bw', 1, 1559271859, 1559271859),
(288, 'by', 'whois.cctld.by', 1, 1559271859, 1559271859),
(289, 'bz', 'whois.afilias-grs.info.', 1, 1559271859, 1559271859),
(290, 'bzh', 'whois-bzh.nic.fr', 1, 1559271859, 1559271859),
(291, 'ca', 'whois.cira.ca', 1, 1559271859, 1559271859),
(292, 'cab', 'whois.donuts.co', 1, 1559271859, 1559271859),
(293, 'cal', 'domain-registry-whois.l.google.com', 1, 1559271859, 1559271859),
(294, 'camera', 'whois.donuts.co', 1, 1559271859, 1559271859),
(295, 'camp', 'whois.donuts.co', 1, 1559271859, 1559271859),
(296, 'cancerresearch', 'whois.nic.cancerresearch', 1, 1559271859, 1559271859),
(297, 'canon', 'whois.nic.canon', 1, 1559271859, 1559271859),
(298, 'capetown', 'capetown-whois.registry.net.za', 1, 1559271859, 1559271859),
(299, 'capital', 'whois.donuts.co', 1, 1559271859, 1559271859),
(300, 'cards', 'whois.donuts.co', 1, 1559271859, 1559271859),
(301, 'care', 'whois.donuts.co', 1, 1559271859, 1559271859),
(302, 'career', 'whois.nic.career', 1, 1559271859, 1559271859),
(303, 'careers', 'whois.donuts.co', 1, 1559271859, 1559271859),
(304, 'casa', 'whois-dub.mm-registry.com', 1, 1559271859, 1559271859),
(305, 'cash', 'whois.donuts.co', 1, 1559271859, 1559271859),
(306, 'casino', 'whois.donuts.co', 1, 1559271859, 1559271859),
(307, 'cat', 'whois.cat', 1, 1559271859, 1559271859),
(308, 'catering', 'whois.donuts.co', 1, 1559271859, 1559271859),
(309, 'cc', 'whois.nic.cc', 1, 1559271859, 1559271859),
(310, 'cd', 'whois.cd', 1, 1559271859, 1559271859),
(311, 'center', 'whois.donuts.co', 1, 1559271859, 1559271859),
(312, 'ceo', 'whois.nic.ceo', 1, 1559271859, 1559271859),
(313, 'cern', 'whois.afilias-srs.net', 1, 1559271859, 1559271859),
(314, 'cf', 'whois.dot.cf', 1, 1559271859, 1559271859),
(315, 'ch', 'whois.nic.ch', 1, 1559271859, 1559271859),
(316, 'channel', 'domain-registry-whois.l.google.com', 1, 1559271859, 1559271859),
(317, 'chat', 'whois.donuts.co', 1, 1559271859, 1559271859),
(318, 'cheap', 'whois.donuts.co', 1, 1559271859, 1559271859),
(319, 'christmas', 'whois.uniregistry.net', 1, 1559271859, 1559271859),
(320, 'chrome', 'domain-registry-whois.l.google.com', 1, 1559271859, 1559271859),
(321, 'church', 'whois.donuts.co', 1, 1559271859, 1559271859),
(322, 'ci', 'whois.nic.ci', 1, 1559271859, 1559271859),
(323, 'city', 'whois.donuts.co', 1, 1559271859, 1559271859),
(324, 'cl', 'whois.nic.cl', 1, 1559271859, 1559271859),
(325, 'claims', 'whois.donuts.co', 1, 1559271859, 1559271859),
(326, 'cleaning', 'whois.donuts.co', 1, 1559271859, 1559271859),
(327, 'click', 'whois.uniregistry.net', 1, 1559271859, 1559271859),
(328, 'clinic', 'whois.donuts.co', 1, 1559271859, 1559271859),
(329, 'clothing', 'whois.donuts.co', 1, 1559271859, 1559271859),
(330, 'club', 'whois.nic.club', 1, 1559271859, 1559271859),
(331, 'cn', 'whois.cnnic.net.cn', 1, 1559271859, 1559271859),
(332, 'cn.com', 'whois.centralnic.com', 1, 1559271859, 1559271859),
(333, 'cng.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(334, 'cnt.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(335, 'co', 'whois.nic.co', 1, 1559271859, 1559271859),
(336, 'co.ac', 'whois.nic.ac', 1, 1559271859, 1559271859),
(337, 'co.at', 'whois.nic.at', 1, 1559271859, 1559271859),
(338, 'co.il', 'whois.isoc.org.il', 1, 1559271859, 1559271859),
(339, 'co.in', 'whois.inregistry.in', 1, 1559271859, 1559271859),
(340, 'co.jp', 'whois.nic.ad.jp', 1, 1559271859, 1559271859),
(341, 'co.ke', 'whois.kenic.or.ke', 1, 1559271859, 1559271859),
(342, 'co.kr', 'whois.nic.or.kr', 1, 1559271859, 1559271859),
(343, 'co.nz', 'whois.srs.net.nz', 1, 1559271859, 1559271859),
(344, 'co.rs', 'whois.rnids.rs', 1, 1559271859, 1559271859),
(345, 'co.th', 'whois.thnic.net', 1, 1559271859, 1559271859),
(346, 'co.uk', 'whois.nic.uk', 1, 1559271859, 1559271859),
(347, 'co.ve', 'whois.nic.ve', 1, 1559271859, 1559271859),
(348, 'co.za', 'http=>\\/\\/whois.registry.net.za\\/whois\\/whois.sh?Domain=', 1, 1559271859, 1559271859),
(349, 'coach', 'whois.donuts.co', 1, 1559271859, 1559271859),
(350, 'codes', 'whois.donuts.co', 1, 1559271859, 1559271859),
(351, 'coffee', 'whois.donuts.co', 1, 1559271859, 1559271859),
(352, 'college', 'whois.nic.college', 1, 1559271859, 1559271859),
(353, 'cologne', 'whois-fe1.pdt.cologne.tango.knipp.de', 1, 1559271859, 1559271859),
(354, 'com', 'whois.crsnic.net', 1, 1559271859, 1559271859),
(355, 'com.au', 'whois.aunic.net', 1, 1559271859, 1559271859),
(356, 'com.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(357, 'com.cn', 'whois.cnnic.net.cn', 1, 1559271859, 1559271859),
(358, 'com.co', 'whois.nic.co', 1, 1559271859, 1559271859),
(359, 'com.de', 'whois.centralnic.com', 1, 1559271859, 1559271859),
(360, 'com.ec', 'whois.lac.net', 1, 1559271859, 1559271859),
(361, 'com.fr', 'whois.nic.fr', 1, 1559271859, 1559272182),
(362, 'com.gr', 'http=>\\/\\/grwhois.ics.forth.gr=>800\\/plainwhois\\/plainWhois?domainName=', 1, 1559271859, 1559271859),
(363, 'com.gt', 'http=>\\/\\/www.gt\\/cgi-bin\\/whois.cgi?domain=', 1, 1559271859, 1559271859),
(364, 'com.hk', 'whois.hkdnr.net.hk', 1, 1559271859, 1559271859),
(365, 'com.mm', 'whois.nic.mm', 1, 1559271859, 1559271859),
(366, 'com.mx', 'whois.nic.mx', 1, 1559271859, 1559271859),
(367, 'com.my', 'whois.mynic.net.my', 1, 1559271859, 1559271859),
(368, 'com.ph', 'http=>\\/\\/www2.dot.ph\\/WhoIs.asp?Domain=', 1, 1559271859, 1559271859),
(369, 'com.pl', 'whois.dns.pl', 1, 1559271859, 1559271859),
(370, 'com.pt', 'whois.dns.pt', 1, 1559271859, 1559271859),
(371, 'com.ro', 'whois.rotld.ro', 1, 1559271859, 1559271859),
(372, 'com.ru', 'whois.ripn.net', 1, 1559271859, 1559271859),
(373, 'com.sg', 'whois.nic.net.sg', 1, 1559271859, 1559271859),
(374, 'com.tr', 'whois.metu.edu.tr', 1, 1559271859, 1559271859),
(375, 'com.tw', 'whois.twnic.net', 1, 1559271859, 1559271859),
(376, 'com.ua', 'whois.net.ua', 1, 1559271859, 1559271859),
(377, 'com.ve', 'whois.nic.ve', 1, 1559271859, 1559271859),
(378, 'community', 'whois.donuts.co', 1, 1559271859, 1559271859),
(379, 'company', 'whois.donuts.co', 1, 1559271859, 1559271859),
(380, 'computer', 'whois.donuts.co', 1, 1559271859, 1559271859),
(381, 'condos', 'whois.donuts.co', 1, 1559271859, 1559271859),
(382, 'construction', 'whois.donuts.co', 1, 1559271859, 1559271859),
(383, 'consulting', 'whois.unitedtld.com', 1, 1559271859, 1559271859),
(384, 'contractors', 'whois.donuts.co', 1, 1559271859, 1559271859),
(385, 'cooking', 'whois-dub.mm-registry.com', 1, 1559271859, 1559271859),
(386, 'cool', 'whois.donuts.co', 1, 1559271859, 1559271859),
(387, 'coop', 'whois.nic.coop', 1, 1559271859, 1559271859),
(388, 'country', 'whois-dub.mm-registry.com', 1, 1559271859, 1559271859),
(389, 'courses', 'whois.aridnrs.net.au', 1, 1559271859, 1559271859),
(390, 'cq.cn', 'whois.cnnic.net.cn', 1, 1559271859, 1559271859),
(391, 'credit', 'whois.donuts.co', 1, 1559271859, 1559271859),
(392, 'creditcard', 'whois.donuts.co', 1, 1559271859, 1559271859),
(393, 'cricket', 'whois.nic.cricket', 1, 1559271859, 1559271859),
(394, 'cruises', 'whois.donuts.co', 1, 1559271859, 1559271859),
(395, 'cuisinella', 'whois.nic.cuisinella', 1, 1559271859, 1559271859),
(396, 'cx', 'whois.nic.cx', 1, 1559271859, 1559271859),
(397, 'cymru', 'whois.nic.cymru', 1, 1559271859, 1559271859),
(398, 'cz', 'whois.nic.cz', 1, 1559271859, 1559271859),
(399, 'dad', 'domain-registry-whois.l.google.com', 1, 1559271859, 1559271859),
(400, 'dance', 'whois.unitedtld.com', 1, 1559271859, 1559271859),
(401, 'dating', 'whois.donuts.co', 1, 1559271859, 1559271859),
(402, 'datsun', 'whois.nic.gmo', 1, 1559271859, 1559271859),
(403, 'day', 'domain-registry-whois.l.google.com', 1, 1559271859, 1559271859),
(404, 'dclk', 'domain-registry-whois.l.google.com', 1, 1559271859, 1559271859),
(405, 'de', 'whois.denic.de', 1, 1559271859, 1559271859),
(406, 'deals', 'whois.donuts.co', 1, 1559271859, 1559271859),
(407, 'degree', 'whois.rightside.co', 1, 1559271859, 1559271859),
(408, 'delivery', 'whois.donuts.co', 1, 1559271859, 1559271859),
(409, 'democrat', 'whois.unitedtld.com', 1, 1559271859, 1559271859),
(410, 'dental', 'whois.donuts.co', 1, 1559271859, 1559271859),
(411, 'dentist', 'whois.rightside.co', 1, 1559271859, 1559271859),
(412, 'desi', 'whois.ksregistry.net', 1, 1559271859, 1559271859),
(413, 'design', 'whois.nic.design', 1, 1559271859, 1559271859),
(414, 'dev', 'domain-registry-whois.l.google.com', 1, 1559271859, 1559271859),
(415, 'diamonds', 'whois.donuts.co', 1, 1559271859, 1559271859),
(416, 'diet', 'whois.uniregistry.net', 1, 1559271859, 1559271859),
(417, 'digital', 'whois.donuts.co', 1, 1559271859, 1559271859),
(418, 'direct', 'whois.donuts.co', 1, 1559271859, 1559271859),
(419, 'directory', 'whois.donuts.co', 1, 1559271859, 1559271859),
(420, 'discount', 'whois.donuts.co', 1, 1559271859, 1559271859),
(421, 'dk', 'whois.dk-hostmaster.dk', 1, 1559271859, 1559271859),
(422, 'dm', 'whois.nic.dm', 1, 1559271859, 1559271859),
(423, 'dn.ua', 'whois.net.ua', 1, 1559271859, 1559271859),
(424, 'docs', 'domain-registry-whois.l.google.com', 1, 1559271859, 1559271859),
(425, 'domains', 'whois.donuts.co', 1, 1559271859, 1559271859),
(426, 'doosan', 'whois.nic.doosan', 1, 1559271859, 1559271859),
(427, 'durban', 'durban-whois.registry.net.za', 1, 1559271859, 1559271859),
(428, 'dvag', 'whois.ksregistry.net', 1, 1559271859, 1559271859),
(429, 'dz', 'whois.nic.dz', 1, 1559271859, 1559271859),
(430, 'eat', 'domain-registry-whois.l.google.com', 1, 1559271859, 1559271859),
(431, 'ec', 'whois.nic.ec', 1, 1559271859, 1559271859),
(432, 'ecn.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(433, 'edu', 'whois.internic.net', 1, 1559271859, 1559271859),
(434, 'edu.au', 'whois.aunic.net', 1, 1559271859, 1559271859),
(435, 'edu.cn', 'whois.cnnic.net.cn', 1, 1559271859, 1559271859),
(436, 'edu.gr', 'http=>\\/\\/grwhois.ics.forth.gr=>800\\/plainwhois\\/plainWhois?domainName=', 1, 1559271859, 1559271859),
(437, 'edu.gt', 'http=>\\/\\/www.gt\\/cgi-bin\\/whois.cgi?domain=', 1, 1559271859, 1559271859),
(438, 'edu.hk', 'whois.hkdnr.net.hk', 1, 1559271859, 1559271859),
(439, 'edu.mm', 'whois.nic.mm', 1, 1559271859, 1559271859),
(440, 'edu.mx', 'whois.nic.mx', 1, 1559271859, 1559271859),
(441, 'edu.my', 'whois.mynic.net.my', 1, 1559271859, 1559271859),
(442, 'edu.pl', 'whois.dns.pl', 1, 1559271859, 1559271859),
(443, 'edu.pt', 'whois.dns.pt', 1, 1559271859, 1559271859),
(444, 'edu.rs', 'whois.rnids.rs', 1, 1559271859, 1559271859),
(445, 'edu.sg', 'whois.nic.net.sg', 1, 1559271859, 1559271859),
(446, 'edu.tr', 'whois.metu.edu.tr', 1, 1559271859, 1559271859),
(447, 'edu.za', 'whois.co.za', 1, 1559271859, 1559271859),
(448, 'education', 'whois.donuts.co', 1, 1559271859, 1559271859),
(449, 'ee', 'whois.tld.ee', 1, 1559271859, 1559271859),
(450, 'email', 'whois.donuts.co', 1, 1559271859, 1559271859),
(451, 'emerck', 'whois.afilias-srs.net', 1, 1559271859, 1559271859),
(452, 'energy', 'whois.donuts.co', 1, 1559271859, 1559271859),
(453, 'eng.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(454, 'engineer', 'whois.rightside.co', 1, 1559271859, 1559271859),
(455, 'engineering', 'whois.donuts.co', 1, 1559271859, 1559271859),
(456, 'enterprises', 'whois.donuts.co', 1, 1559271859, 1559271859),
(457, 'epson', 'whois.aridnrs.net.au', 1, 1559271859, 1559271859),
(458, 'equipment', 'whois.donuts.co', 1, 1559271859, 1559271859),
(459, 'ernet.in', 'whois.registry.in', 1, 1559271859, 1559286927),
(460, 'es', 'whois.nic.es', 1, 1559271859, 1559271859),
(461, 'esp.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(462, 'esq', 'domain-registry-whois.l.google.com', 1, 1559271859, 1559271859),
(463, 'estate', 'whois.donuts.co', 1, 1559271859, 1559271859),
(464, 'etc.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(465, 'eti.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(466, 'eu', 'whois.eu', 1, 1559271859, 1559271859),
(467, 'eu.com', 'whois.centralnic.com', 1, 1559271859, 1559271859),
(468, 'eu.lv', 'whois.biz', 1, 1559271859, 1559271859),
(469, 'eurovision', 'whois.nic.eurovision', 1, 1559271859, 1559271859),
(470, 'eus', 'whois.eus.coreregistry.net', 1, 1559271859, 1559271859),
(471, 'events', 'whois.donuts.co', 1, 1559271859, 1559271859),
(472, 'exchange', 'whois.donuts.co', 1, 1559271859, 1559271859),
(473, 'expert', 'whois.donuts.co', 1, 1559271859, 1559271859),
(474, 'exposed', 'whois.donuts.co', 1, 1559271859, 1559271859),
(475, 'fail', 'whois.donuts.co', 1, 1559271859, 1559271859),
(476, 'fans', 'whois.nic.fans', 1, 1559271859, 1559271859),
(477, 'farm', 'whois.donuts.co', 1, 1559271859, 1559271859),
(478, 'fashion', 'whois-dub.mm-registry.com', 1, 1559271859, 1559271859),
(479, 'feedback', 'whois.centralnic.com', 1, 1559271859, 1559271859),
(480, 'fi', 'whois.ficora.fi', 1, 1559271859, 1559271859),
(481, 'fin.ec', 'whois.lac.net', 1, 1559271859, 1559271859),
(482, 'finance', 'whois.donuts.co', 1, 1559271859, 1559271859),
(483, 'financial', 'whois.donuts.co', 1, 1559271859, 1559271859),
(484, 'firm.ro', 'whois.rotld.ro', 1, 1559271859, 1559271859),
(485, 'firmdale', 'whois.nic.firmdale', 1, 1559271859, 1559271859),
(486, 'fish', 'whois.donuts.co', 1, 1559271859, 1559271859),
(487, 'fishing', 'whois-dub.mm-registry.com', 1, 1559271859, 1559271859),
(488, 'fit', 'whois-dub.mm-registry.com', 1, 1559271859, 1559271859),
(489, 'fitness', 'whois.donuts.co', 1, 1559271859, 1559271859),
(490, 'flights', 'whois.donuts.co', 1, 1559271859, 1559271859),
(491, 'florist', 'whois.donuts.co', 1, 1559271859, 1559271859),
(492, 'flowers', 'whois.uniregistry.net', 1, 1559271859, 1559271859),
(493, 'flsmidth', 'whois.ksregistry.net', 1, 1559271859, 1559271859),
(494, 'fly', 'domain-registry-whois.l.google.com', 1, 1559271859, 1559271859),
(495, 'fm', 'whois.nic.fm', 1, 1559271859, 1559271859),
(496, 'fm.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(497, 'fo', 'whois.nic.fo', 1, 1559271859, 1559271859),
(498, 'foo', 'domain-registry-whois.l.google.com', 1, 1559271859, 1559271859),
(499, 'football', 'whois.donuts.co', 1, 1559271859, 1559271859),
(500, 'forsale', 'whois.unitedtld.com', 1, 1559271859, 1559271859),
(501, 'fot.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(502, 'foundation', 'whois.donuts.co', 1, 1559271859, 1559271859),
(503, 'fr', 'whois.nic.fr', 1, 1559271859, 1559271859),
(504, 'frl', 'whois.nic.frl', 1, 1559271859, 1559271859),
(505, 'frogans', 'whois-frogans.nic.fr', 1, 1559271859, 1559271859),
(506, 'fst.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(507, 'fund', 'whois.donuts.co', 1, 1559271859, 1559271859),
(508, 'furniture', 'whois.donuts.co', 1, 1559271859, 1559271859),
(509, 'futbol', 'whois.unitedtld.com', 1, 1559271859, 1559271859),
(510, 'g12.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(511, 'gal', 'whois.gal.coreregistry.net', 1, 1559271859, 1559271859),
(512, 'gallery', 'whois.donuts.co', 1, 1559271859, 1559271859),
(513, 'garden', 'whois-dub.mm-registry.com', 1, 1559271859, 1559271859),
(514, 'gb.com', 'whois.centralnic.com', 1, 1559271859, 1559271859),
(515, 'gb.net', 'whois.centralnic.com', 1, 1559271859, 1559271859),
(516, 'gbiz', 'domain-registry-whois.l.google.com', 1, 1559271859, 1559271859),
(517, 'gd', 'whois.nic.gd', 1, 1559271859, 1559271859),
(518, 'gd.cn', 'whois.cnnic.net.cn', 1, 1559271859, 1559271859),
(519, 'gdn', 'whois.gdnregistry.com', 1, 1559271859, 1559271859),
(520, 'geek.nz', 'whois.srs.net.nz', 1, 1559271859, 1559271859),
(521, 'gen.nz', 'whois.srs.net.nz', 1, 1559271859, 1559271859),
(522, 'gent', 'whois.nic.gent', 1, 1559271859, 1559271859),
(523, 'gf', 'whois.nplus.gf', 1, 1559271859, 1559271859),
(524, 'gg', 'whois.gg', 1, 1559271859, 1559271859),
(525, 'ggee', 'whois.nic.ggee', 1, 1559271859, 1559271859),
(526, 'gi', 'whois2.afilias-grs.net', 1, 1559271859, 1559271859),
(527, 'gift', 'whois.uniregistry.net', 1, 1559271859, 1559271859),
(528, 'gifts', 'whois.donuts.co', 1, 1559271859, 1559271859),
(529, 'gives', 'whois.rightside.co', 1, 1559271859, 1559271859),
(530, 'gl', 'whois.nic.gl', 1, 1559271859, 1559271859),
(531, 'glass', 'whois.donuts.co', 1, 1559271859, 1559271859),
(532, 'gle', 'domain-registry-whois.l.google.com', 1, 1559271859, 1559271859),
(533, 'global', 'whois.nic.global', 1, 1559271859, 1559271859),
(534, 'globo', 'whois.gtlds.nic.br', 1, 1559271859, 1559271859),
(535, 'gmail', 'domain-registry-whois.l.google.com', 1, 1559271859, 1559271859),
(536, 'gmina.pl', 'whois.dns.pl', 1, 1559271859, 1559271859),
(537, 'gmx', 'whois-fe1.gmx.tango.knipp.de', 1, 1559271859, 1559271859),
(538, 'go.id', 'whois.idnic.net.id', 1, 1559271859, 1559271859),
(539, 'go.jp', 'whois.nic.ad.jp', 1, 1559271859, 1559271859),
(540, 'go.kr', 'whois.nic.or.kr', 1, 1559271859, 1559271859),
(541, 'go.th', 'whois.thnic.net', 1, 1559271859, 1559271859),
(542, 'gob.gt', 'http=>\\/\\/www.gt\\/cgi-bin\\/whois.cgi?domain=', 1, 1559271859, 1559271859),
(543, 'gob.mx', 'whois.nic.mx', 1, 1559271859, 1559271859),
(544, 'goldpoint', 'whois.nic.goldpoint', 1, 1559271859, 1559271859),
(545, 'goo', 'whois.nic.gmo', 1, 1559271859, 1559271859),
(546, 'goog', 'domain-registry-whois.l.google.com', 1, 1559271859, 1559271859),
(547, 'google', 'domain-registry-whois.l.google.com', 1, 1559271859, 1559271859),
(548, 'gop', 'whois-cl01.mm-registry.com', 1, 1559271859, 1559271859),
(549, 'gov', 'whois.nic.gov', 1, 1559271859, 1559271859),
(550, 'gov.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(551, 'gov.cn', 'whois.cnnic.net.cn', 1, 1559271859, 1559271859),
(552, 'gov.ec', 'whois.lac.net', 1, 1559271859, 1559271859),
(553, 'gov.gr', 'http=>\\/\\/grwhois.ics.forth.gr=>800\\/plainwhois\\/plainWhois?domainName=', 1, 1559271859, 1559271859),
(554, 'gov.il', 'whois.isoc.org.il', 1, 1559271859, 1559271859),
(555, 'gov.in', 'whois.registry.in', 1, 1559271859, 1559286944),
(556, 'gov.mm', 'whois.nic.mm', 1, 1559271859, 1559271859),
(557, 'gov.mx', 'whois.nic.mx', 1, 1559271859, 1559271859),
(558, 'gov.my', 'whois.mynic.net.my', 1, 1559271859, 1559271859),
(559, 'gov.sg', 'whois.nic.net.sg', 1, 1559271859, 1559271859),
(560, 'gov.tr', 'whois.metu.edu.tr', 1, 1559271859, 1559271859),
(561, 'gov.za', 'whois.co.za', 1, 1559271859, 1559271859),
(562, 'gq', 'whois.dominio.gq', 1, 1559271859, 1559271859),
(563, 'gr', 'http=>\\/\\/grwhois.ics.forth.gr=>800\\/plainwhois\\/plainWhois?domainName=', 1, 1559271859, 1559271859),
(564, 'graphics', 'whois.donuts.co', 1, 1559271859, 1559271859),
(565, 'gratis', 'whois.donuts.co', 1, 1559271859, 1559271859),
(566, 'green', 'whois.afilias.net', 1, 1559271859, 1559271859),
(567, 'gripe', 'whois.donuts.co', 1, 1559271859, 1559271859),
(568, 'gs', 'whois.nic.gs', 1, 1559271859, 1559271859),
(569, 'gs.cn', 'whois.cnnic.net.cn', 1, 1559271859, 1559271859),
(570, 'gsm.pl', 'whois.dns.pl', 1, 1559271859, 1559271859),
(571, 'guide', 'whois.donuts.co', 1, 1559271859, 1559271859),
(572, 'guitars', 'whois.uniregistry.net', 1, 1559271859, 1559271859),
(573, 'guru', 'whois.donuts.co', 1, 1559271859, 1559271859),
(574, 'gv.ac', 'whois.nic.ac', 1, 1559271859, 1559271859),
(575, 'gv.at', 'whois.nic.at', 1, 1559271859, 1559271859),
(576, 'gx.cn', 'whois.cnnic.net.cn', 1, 1559271859, 1559271859),
(577, 'gy', 'whois.registry.gy', 1, 1559271859, 1559271859),
(578, 'gz.cn', 'whois.cnnic.net.cn', 1, 1559271859, 1559271859),
(579, 'hamburg', 'whois.nic.hamburg', 1, 1559271859, 1559271859),
(580, 'hangout', 'domain-registry-whois.l.google.com', 1, 1559271859, 1559271859),
(581, 'haus', 'whois.unitedtld.com', 1, 1559271859, 1559271859),
(582, 'hb.cn', 'whois.cnnic.net.cn', 1, 1559271859, 1559271859),
(583, 'he.cn', 'whois.cnnic.net.cn', 1, 1559271859, 1559271859),
(584, 'healthcare', 'whois.donuts.co', 1, 1559271859, 1559271859),
(585, 'help', 'whois.uniregistry.net', 1, 1559271859, 1559271859),
(586, 'here', 'domain-registry-whois.l.google.com', 1, 1559271859, 1559271859),
(587, 'hi.cn', 'whois.cnnic.net.cn', 1, 1559271859, 1559271859),
(588, 'hiphop', 'whois.uniregistry.net', 1, 1559271859, 1559271859),
(589, 'hiv', 'whois.afilias-srs.net', 1, 1559271859, 1559271859),
(590, 'hk', 'whois.hkirc.hk', 1, 1559271859, 1559271859),
(591, 'hk.cn', 'whois.cnnic.net.cn', 1, 1559271859, 1559271859),
(592, 'hl.cn', 'whois.cnnic.net.cn', 1, 1559271859, 1559271859),
(593, 'hn', 'whois.nic.hn', 1, 1559271859, 1559271859),
(594, 'hn.cn', 'whois.cnnic.net.cn', 1, 1559271859, 1559271859),
(595, 'holdings', 'whois.donuts.co', 1, 1559271859, 1559271859),
(596, 'holiday', 'whois.donuts.co', 1, 1559271859, 1559271859),
(597, 'horse', 'whois-dub.mm-registry.com', 1, 1559271859, 1559271859),
(598, 'host', 'whois.nic.host', 1, 1559271859, 1559271859),
(599, 'hosting', 'whois.uniregistry.net', 1, 1559271859, 1559271859),
(600, 'house', 'whois.donuts.co', 1, 1559271859, 1559271859),
(601, 'how', 'domain-registry-whois.l.google.com', 1, 1559271859, 1559271859),
(602, 'hr', 'http=>\\/\\/dns.hr\\/?only_mod_instance=300_612_0&clean_tpl=true&ds_domena=', 1, 1559271859, 1559271859),
(603, 'ht', 'whois.nic.ht', 1, 1559271859, 1559271859),
(604, 'hu', 'whois.nic.hu', 1, 1559271859, 1559271859),
(605, 'hu.com', 'whois.centralnic.com', 1, 1559271859, 1559271859),
(606, 'ibm', 'whois.nic.ibm', 1, 1559271859, 1559271859),
(607, 'id', 'whois.pandi.or.id', 1, 1559271859, 1559271859),
(608, 'id.au', 'whois.aunic.net', 1, 1559271859, 1559271859),
(609, 'ie', 'whois.domainregistry.ie', 1, 1559271859, 1559271859),
(610, 'ifm', 'whois.nic.ifm', 1, 1559271859, 1559271859),
(611, 'il', 'whois.isoc.org.il', 1, 1559271859, 1559271859),
(612, 'im', 'whois.nic.im', 1, 1559271859, 1559271859),
(613, 'immo', 'whois.donuts.co', 1, 1559271859, 1559271859),
(614, 'immobilien', 'whois.unitedtld.com', 1, 1559271859, 1559271859),
(615, 'in', 'whois.registry.in', 1, 1559271859, 1559286870),
(616, 'in.rs', 'whois.rnids.rs', 1, 1559271859, 1559271859),
(617, 'in.th', 'whois.thnic.net', 1, 1559271859, 1559271859),
(618, 'ind.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(619, 'ind.gt', 'http=>\\/\\/www.gt\\/cgi-bin\\/whois.cgi?domain=', 1, 1559271859, 1559271859),
(620, 'industries', 'whois.donuts.co', 1, 1559271859, 1559271859),
(621, 'inf.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(622, 'infiniti', 'whois.nic.gmo', 1, 1559271859, 1559271859),
(623, 'info', 'whois.afilias.net', 1, 1559271859, 1559271859),
(624, 'info.pl', 'whois.dns.pl', 1, 1559271859, 1559271859),
(625, 'info.ro', 'whois.rotld.ro', 1, 1559271859, 1559271859),
(626, 'info.ve', 'whois.nic.ve', 1, 1559271859, 1559271859),
(627, 'ing', 'domain-registry-whois.l.google.com', 1, 1559271859, 1559271859),
(628, 'ink', 'whois.donuts.co', 1, 1559271859, 1559271859),
(629, 'institute', 'whois.donuts.co', 1, 1559271859, 1559271859),
(630, 'insure', 'whois.donuts.co', 1, 1559271859, 1559271859),
(631, 'int', 'whois.iana.org', 1, 1559271859, 1559271859),
(632, 'international', 'whois.donuts.co', 1, 1559271859, 1559271859),
(633, 'investments', 'whois.donuts.co', 1, 1559271859, 1559271859),
(634, 'io', 'whois.nic.io', 1, 1559271859, 1559271859),
(635, 'iq', 'whois.cmc.iq', 1, 1559271859, 1559271859),
(636, 'ir', 'whois.nic.ir', 1, 1559271859, 1559271859),
(637, 'is', 'whois.isnic.is', 1, 1559271859, 1559271859),
(638, 'it', 'whois.nic.it', 1, 1559271859, 1559271859),
(639, 'iwi.nz', 'whois.srs.net.nz', 1, 1559271859, 1559271859),
(640, 'java', 'whois.nic.java', 1, 1559271859, 1559271859),
(641, 'jcb', 'whois.nic.gmo', 1, 1559271859, 1559271859),
(642, 'je', 'whois.je', 1, 1559271859, 1559271859),
(643, 'jl.cn', 'whois.cnnic.net.cn', 1, 1559271859, 1559271859),
(644, 'jobs', 'jobswhois.verisign-grs.com', 1, 1559271859, 1559271859),
(645, 'joburg', 'joburg-whois.registry.net.za', 1, 1559271859, 1559271859),
(646, 'jor.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(647, 'jp', 'whois.jprs.jp', 1, 1559271859, 1559271859),
(648, 'js.cn', 'whois.cnnic.net.cn', 1, 1559271859, 1559271859),
(649, 'juegos', 'whois.uniregistry.net', 1, 1559271859, 1559271859),
(650, 'k12.il', 'whois.isoc.org.il', 1, 1559271859, 1559271859),
(651, 'k12.tr', 'whois.metu.edu.tr', 1, 1559271859, 1559271859),
(652, 'kaufen', 'whois.unitedtld.com', 1, 1559271859, 1559271859),
(653, 'kddi', 'whois.nic.kddi', 1, 1559271859, 1559271859),
(654, 'ke', 'whois.kenic.or.ke', 1, 1559271859, 1559271859),
(655, 'kg', 'whois.domain.kg', 1, 1559271859, 1559271859),
(656, 'kh.ua', 'whois.net.ua', 1, 1559271859, 1559271859),
(657, 'ki', 'whois.nic.ki', 1, 1559271859, 1559271859),
(658, 'kiev.ua', 'whois.net.ua', 1, 1559271859, 1559271859),
(659, 'kim', 'whois.afilias.net', 1, 1559271859, 1559271859),
(660, 'kitchen', 'whois.donuts.co', 1, 1559271859, 1559271859),
(661, 'kiwi', 'whois.nic.kiwi', 1, 1559271859, 1559271859),
(662, 'kiwi.nz', 'whois.srs.net.nz', 1, 1559271859, 1559271859),
(663, 'koeln', 'whois-fe1.pdt.koeln.tango.knipp.de', 1, 1559271859, 1559271859),
(664, 'kr', 'whois.kr', 1, 1559271859, 1559271859),
(665, 'krd', 'whois.aridnrs.net.au', 1, 1559271859, 1559271859),
(666, 'ky', 'whois.kyregistry.ky', 1, 1559271859, 1559271859),
(667, 'kyoto', 'whois.nic.kyoto', 1, 1559271859, 1559271859),
(668, 'kz', 'whois.nic.kz', 1, 1559271859, 1559271859),
(669, 'la', 'whois.nic.la', 1, 1559271859, 1559271859),
(670, 'lacaixa', 'whois.nic.lacaixa', 1, 1559271859, 1559271859),
(671, 'land', 'whois.donuts.co', 1, 1559271859, 1559271859),
(672, 'lat', 'whois.nic.lat', 1, 1559271859, 1559271859),
(673, 'latrobe', 'whois.nic.latrobe', 1, 1559271859, 1559271859),
(674, 'lawyer', 'whois.rightside.co', 1, 1559271859, 1559271859),
(675, 'lc', 'whois2.afilias-grs.net', 1, 1559271859, 1559271859),
(676, 'lease', 'whois.donuts.co', 1, 1559271859, 1559271859),
(677, 'leclerc', 'whois-leclerc.nic.fr', 1, 1559271859, 1559271859),
(678, 'legal', 'whois.donuts.co', 1, 1559271859, 1559271859),
(679, 'lel.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(680, 'lg.ua', 'whois.net.ua', 1, 1559271859, 1559271859),
(681, 'lgbt', 'whois.afilias.net', 1, 1559271859, 1559271859),
(682, 'li', 'whois.nic.li', 1, 1559271859, 1559271859),
(683, 'life', 'whois.donuts.co', 1, 1559271859, 1559271859),
(684, 'lighting', 'whois.donuts.co', 1, 1559271859, 1559271859),
(685, 'limited', 'whois.donuts.co', 1, 1559271859, 1559271859),
(686, 'limo', 'whois.donuts.co', 1, 1559271859, 1559271859),
(687, 'link', 'whois.uniregistry.net', 1, 1559271859, 1559271859),
(688, 'ln.cn', 'whois.cnnic.net.cn', 1, 1559271859, 1559271859),
(689, 'loans', 'whois.donuts.co', 1, 1559271859, 1559271859),
(690, 'london', 'whois-lon.mm-registry.com', 1, 1559271859, 1559271859),
(691, 'lotte', 'whois.nic.lotte', 1, 1559271859, 1559271859),
(692, 'lt', 'whois.domreg.lt', 1, 1559271859, 1559271859),
(693, 'ltd.uk', 'whois.nic.uk', 1, 1559271859, 1559271859),
(694, 'ltda', 'whois.afilias-srs.net', 1, 1559271859, 1559271859),
(695, 'lu', 'whois.dns.lu', 1, 1559271859, 1559271859),
(696, 'luxe', 'whois-dub.mm-registry.com', 1, 1559271859, 1559271859),
(697, 'luxury', 'whois.donuts.co', 1, 1559271859, 1559271859),
(698, 'lv', 'whois.nic.lv', 1, 1559271859, 1559271859),
(699, 'lviv.ua', 'whois.net.ua', 1, 1559271859, 1559271859),
(700, 'ly', 'whois.nic.ly', 1, 1559271859, 1559271859),
(701, 'ma', 'whois.iam.net.ma', 1, 1559271859, 1559271859),
(702, 'madrid', 'whois.madrid.rs.corenic.net', 1, 1559271859, 1559271859),
(703, 'mail.pl', 'whois.dns.pl', 1, 1559271859, 1559271859),
(704, 'maison', 'whois.donuts.co', 1, 1559271859, 1559271859),
(705, 'management', 'whois.donuts.co', 1, 1559271859, 1559271859),
(706, 'mango', 'whois.mango.coreregistry.net', 1, 1559271859, 1559271859),
(707, 'maori.nz', 'whois.srs.net.nz', 1, 1559271859, 1559271859),
(708, 'market', 'whois.rightside.co', 1, 1559271859, 1559271859),
(709, 'marketing', 'whois.donuts.co', 1, 1559271859, 1559271859),
(710, 'md', 'whois.nic.md', 1, 1559271859, 1559271859),
(711, 'me', 'whois.meregistry.net', 1, 1559271859, 1559271859),
(712, 'me.uk', 'whois.nic.uk', 1, 1559271859, 1559271859),
(713, 'med.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(714, 'med.ec', 'whois.lac.net', 1, 1559271859, 1559271859),
(715, 'media', 'whois.donuts.co', 1, 1559271859, 1559271859),
(716, 'media.pl', 'whois.dns.pl', 1, 1559271859, 1559271859),
(717, 'melbourne', 'whois.aridnrs.net.au', 1, 1559271859, 1559271859),
(718, 'meme', 'domain-registry-whois.l.google.com', 1, 1559271859, 1559271859),
(719, 'memorial', 'whois.donuts.co', 1, 1559271859, 1559271859),
(720, 'menu', 'whois.nic.menu', 1, 1559271859, 1559271859),
(721, 'mg', 'whois.nic.mg', 1, 1559271859, 1559271859),
(722, 'mi.th', 'whois.thnic.net', 1, 1559271859, 1559271859),
(723, 'miami', 'whois-dub.mm-registry.com', 1, 1559271859, 1559271859),
(724, 'miasta.pl', 'whois.dns.pl', 1, 1559271859, 1559271859),
(725, 'mil', 'whois.internic.net', 1, 1559271859, 1559271859),
(726, 'mil.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(727, 'mil.ec', 'whois.lac.net', 1, 1559271859, 1559271859),
(728, 'mil.gt', 'http=>\\/\\/www.gt\\/cgi-bin\\/whois.cgi?domain=', 1, 1559271859, 1559271859),
(729, 'mil.id', 'whois.idnic.net.id', 1, 1559271859, 1559271859),
(730, 'mil.pl', 'whois.dns.pl', 1, 1559271859, 1559271859),
(731, 'mil.tr', 'whois.metu.edu.tr', 1, 1559271859, 1559271859),
(732, 'mil.za', 'whois.co.za', 1, 1559271859, 1559271859),
(733, 'mini', 'whois.ksregistry.net', 1, 1559271859, 1559271859),
(734, 'mk', 'whois.marnet.mk', 1, 1559271859, 1559271859),
(735, 'ml', 'whois.dot.ml', 1, 1559271859, 1559271859),
(736, 'mn', 'whois.afilias-grs.info', 1, 1559271859, 1559271859),
(737, 'mo', 'whois.monic.mo', 1, 1559271859, 1559271859),
(738, 'mo.cn', 'whois.cnnic.net.cn', 1, 1559271859, 1559271859),
(739, 'mobi', 'whois.dotmobiregistry.net', 1, 1559271859, 1559271859),
(740, 'moda', 'whois.unitedtld.com', 1, 1559271859, 1559271859),
(741, 'monash', 'whois.nic.monash', 1, 1559271859, 1559271859),
(742, 'money', 'whois.donuts.co', 1, 1559271859, 1559271859),
(743, 'mortgage', 'whois.rightside.co', 1, 1559271859, 1559271859),
(744, 'moscow', 'whois.nic.moscow', 1, 1559271859, 1559271859),
(745, 'mov', 'domain-registry-whois.l.google.com', 1, 1559271859, 1559271859),
(746, 'ms', 'whois.nic.ms', 1, 1559271859, 1559271859),
(747, 'msk.ru', 'whois.nic.ru', 1, 1559271859, 1559271859),
(748, 'mtpc', 'whois.nic.gmo', 1, 1559271859, 1559271859),
(749, 'mu', 'whois.nic.mu', 1, 1559271859, 1559271859),
(750, 'muni.il', 'whois.isoc.org.il', 1, 1559271859, 1559271859),
(751, 'museum', 'whois.museum', 1, 1559271859, 1559271859),
(752, 'mx', 'whois.nic.mx', 1, 1559271859, 1559271859),
(753, 'my', 'whois.mynic.net.my', 1, 1559271859, 1559271859),
(754, 'mz', 'whois.nic.mz', 1, 1559271859, 1559271859),
(755, 'na', 'whois.na-nic.com.na', 1, 1559271859, 1559271859),
(756, 'name', 'whois.nic.name', 1, 1559271859, 1559271859),
(757, 'navy', 'whois.rightside.co', 1, 1559271859, 1559271859),
(758, 'nc', 'whois.nc', 1, 1559271859, 1559271859),
(759, 'ne.jp', 'whois.nic.ad.jp', 1, 1559271859, 1559271859),
(760, 'ne.kr', 'whois.nic.or.kr', 1, 1559271859, 1559271859),
(761, 'net', 'whois.crsnic.net', 1, 1559271859, 1559271859),
(762, 'net.au', 'whois.aunic.net', 1, 1559271859, 1559271859),
(763, 'net.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(764, 'net.cn', 'whois.cnnic.net.cn', 1, 1559271859, 1559271859),
(765, 'net.co', 'whois.nic.co', 1, 1559271859, 1559271859),
(766, 'net.ec', 'whois.lac.net', 1, 1559271859, 1559271859),
(767, 'net.gr', 'http=>\\/\\/grwhois.ics.forth.gr=>800\\/plainwhois\\/plainWhois?domainName=', 1, 1559271859, 1559271859),
(768, 'net.gt', 'http=>\\/\\/www.gt\\/cgi-bin\\/whois.cgi?domain=', 1, 1559271859, 1559271859),
(769, 'net.hk', 'whois.hkdnr.net.hk', 1, 1559271859, 1559271859),
(770, 'net.il', 'whois.isoc.org.il', 1, 1559271859, 1559271859),
(771, 'net.in', 'whois.inregistry.in', 1, 1559271859, 1559271859),
(772, 'net.mm', 'whois.nic.mm', 1, 1559271859, 1559271859),
(773, 'net.mx', 'whois.nic.mx', 1, 1559271859, 1559271859),
(774, 'net.my', 'whois.mynic.net.my', 1, 1559271859, 1559271859),
(775, 'net.nz', 'whois.srs.net.nz', 1, 1559271859, 1559271859),
(776, 'net.ph', 'http=>\\/\\/www2.dot.ph\\/WhoIs.asp?Domain=', 1, 1559271859, 1559271859),
(777, 'net.pl', 'whois.dns.pl', 1, 1559271859, 1559271859),
(778, 'net.ru', 'whois.ripn.net', 1, 1559271859, 1559271859),
(779, 'net.sg', 'whois.nic.net.sg', 1, 1559271859, 1559271859),
(780, 'net.th', 'whois.thnic.net', 1, 1559271859, 1559271859),
(781, 'net.tr', 'whois.metu.edu.tr', 1, 1559271859, 1559271859),
(782, 'net.tw', 'whois.twnic.net', 1, 1559271859, 1559271859),
(783, 'net.ua', 'whois.net.ua', 1, 1559271859, 1559271859),
(784, 'net.uk', 'whois.nic.uk', 1, 1559271859, 1559271859),
(785, 'net.ve', 'whois.nic.ve', 1, 1559271859, 1559271859),
(786, 'net.za', 'whois.co.za', 1, 1559271859, 1559271859),
(787, 'network', 'whois.donuts.co', 1, 1559271859, 1559271859),
(788, 'new', 'domain-registry-whois.l.google.com', 1, 1559271859, 1559271859),
(789, 'nexus', 'domain-registry-whois.l.google.com', 1, 1559271859, 1559271859),
(790, 'nf', 'whois.nic.nf', 1, 1559271859, 1559271859),
(791, 'ng', 'whois.nic.net.ng', 1, 1559271859, 1559271859),
(792, 'ngo', 'whois.publicinterestregistry.net', 1, 1559271859, 1559271859),
(793, 'ngo.za', 'whois.co.za', 1, 1559271859, 1559271859),
(794, 'nico', 'whois.nic.nico', 1, 1559271859, 1559271859),
(795, 'ninja', 'whois.donuts.co', 1, 1559271859, 1559271859),
(796, 'nissan', 'whois.nic.gmo', 1, 1559271859, 1559271859),
(797, 'nl', 'whois.domain-registry.nl', 1, 1559271859, 1559271859),
(798, 'nm.cn', 'whois.cnnic.net.cn', 1, 1559271859, 1559271859),
(799, 'nm.kr', 'whois.nic.or.kr', 1, 1559271859, 1559271859),
(800, 'no', 'whois.norid.no', 1, 1559271859, 1559271859),
(801, 'no.com', 'whois.centralnic.com', 1, 1559271859, 1559271859),
(802, 'nom.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(803, 'nom.co', 'whois.nic.co', 1, 1559271859, 1559271859),
(804, 'nom.pl', 'whois.dns.pl', 1, 1559271859, 1559271859),
(805, 'nom.ro', 'whois.rotld.ro', 1, 1559271859, 1559271859),
(806, 'nom.za', 'whois.co.za', 1, 1559271859, 1559271859),
(807, 'nra', 'whois.afilias-srs.net', 1, 1559271859, 1559271859),
(808, 'nrw', 'whois.nic.nrw', 1, 1559271859, 1559271859),
(809, 'nt.ro', 'whois.rotld.ro', 1, 1559271859, 1559271859),
(810, 'ntr.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(811, 'nu', 'whois.nic.nu', 1, 1559271859, 1559271859),
(812, 'nx.cn', 'whois.cnnic.net.cn', 1, 1559271859, 1559271859),
(813, 'nz', 'whois.srs.net.nz', 1, 1559271859, 1559271859),
(814, 'odo.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(815, 'om', 'whois.registry.om', 1, 1559271859, 1559271859),
(816, 'one', 'whois.nic.one', 1, 1559271859, 1559271859),
(817, 'ong', 'whois.publicinterestregistry.net', 1, 1559271859, 1559271859),
(818, 'onl', 'whois.afilias-srs.net', 1, 1559271859, 1559271859),
(819, 'ooo', 'whois.nic.ooo', 1, 1559271859, 1559271859),
(820, 'or.ac', 'whois.nic.ac', 1, 1559271859, 1559271859),
(821, 'or.at', 'whois.nic.at', 1, 1559271859, 1559271859),
(822, 'or.jp', 'whois.nic.ad.jp', 1, 1559271859, 1559271859),
(823, 'or.kr', 'whois.nic.or.kr', 1, 1559271859, 1559271859),
(824, 'or.th', 'whois.thnic.net', 1, 1559271859, 1559271859),
(825, 'org', 'whois.publicinterestregistry.net', 1, 1559271859, 1559271859),
(826, 'org.au', 'whois.aunic.net', 1, 1559271859, 1559271859),
(827, 'org.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(828, 'org.cn', 'whois.cnnic.net.cn', 1, 1559271859, 1559271859),
(829, 'org.ec', 'whois.lac.net', 1, 1559271859, 1559271859),
(830, 'org.gr', 'http=>\\/\\/grwhois.ics.forth.gr=>800\\/plainwhois\\/plainWhois?domainName=', 1, 1559271859, 1559271859),
(831, 'org.gt', 'http=>\\/\\/www.gt\\/cgi-bin\\/whois.cgi?domain=', 1, 1559271859, 1559271859),
(832, 'org.hk', 'whois.hkdnr.net.hk', 1, 1559271859, 1559271859),
(833, 'org.il', 'whois.isoc.org.il', 1, 1559271859, 1559271859),
(834, 'org.in', 'whois.inregistry.in', 1, 1559271859, 1559271859),
(835, 'org.mm', 'whois.nic.mm', 1, 1559271859, 1559271859),
(836, 'org.mx', 'whois.nic.mx', 1, 1559271859, 1559271859),
(837, 'org.my', 'whois.mynic.net.my', 1, 1559271859, 1559271859),
(838, 'org.nz', 'whois.srs.net.nz', 1, 1559271859, 1559271859),
(839, 'org.ph', 'http=>\\/\\/www2.dot.ph\\/WhoIs.asp?Domain=', 1, 1559271859, 1559271859),
(840, 'org.pl', 'whois.dns.pl', 1, 1559271859, 1559271859),
(841, 'org.ro', 'whois.rotld.ro', 1, 1559271859, 1559271859),
(842, 'org.rs', 'whois.rnids.rs', 1, 1559271859, 1559271859),
(843, 'org.ru', 'whois.nic.ru', 1, 1559271859, 1559271859),
(844, 'org.sg', 'whois.nic.net.sg', 1, 1559271859, 1559271859),
(845, 'org.tr', 'whois.metu.edu.tr', 1, 1559271859, 1559271859),
(846, 'org.tw', 'whois.twnic.net', 1, 1559271859, 1559271859),
(847, 'org.ua', 'whois.net.ua', 1, 1559271859, 1559271859),
(848, 'org.uk', 'whois.nic.uk', 1, 1559271859, 1559271859),
(849, 'org.ve', 'whois.nic.ve', 1, 1559271859, 1559271859),
(850, 'org.za', 'http=>\\/\\/org.za\\/cgi-bin\\/rwhois?format=full&domain=', 1, 1559271859, 1559271859),
(851, 'organic', 'whois.afilias.net', 1, 1559271859, 1559271859),
(852, 'ovh', 'whois-ovh.nic.fr', 1, 1559271859, 1559271859),
(853, 'paris', 'whois-paris.nic.fr', 1, 1559271859, 1559271859),
(854, 'partners', 'whois.donuts.co', 1, 1559271859, 1559271859),
(855, 'parts', 'whois.donuts.co', 1, 1559271859, 1559271859),
(856, 'pc.pl', 'whois.dns.pl', 1, 1559271859, 1559271859),
(857, 'pe', 'kero.yachay.pe', 1, 1559271859, 1559271859),
(858, 'pf', 'whois.registry.pf', 1, 1559271859, 1559271859),
(859, 'ph', 'http=>\\/\\/www2.dot.ph\\/WhoIs.asp?Domain=', 1, 1559271859, 1559271859),
(860, 'photo', 'whois.uniregistry.net', 1, 1559271859, 1559271859),
(861, 'photography', 'whois.donuts.co', 1, 1559271859, 1559271859),
(862, 'photos', 'whois.donuts.co', 1, 1559271859, 1559271859),
(863, 'physio', 'whois.nic.physio', 1, 1559271859, 1559271859),
(864, 'pics', 'whois.uniregistry.net', 1, 1559271859, 1559271859),
(865, 'pictures', 'whois.donuts.co', 1, 1559271859, 1559271859),
(866, 'pink', 'whois.donuts.co', 1, 1559271859, 1559271859),
(867, 'pizza', 'whois.donuts.co', 1, 1559271859, 1559271859),
(868, 'pl', 'whois.dns.pl', 1, 1559271859, 1559271859),
(869, 'place', 'whois.donuts.co', 1, 1559271859, 1559271859),
(870, 'plc.uk', 'whois.nic.uk', 1, 1559271859, 1559271859),
(871, 'plumbing', 'whois.donuts.co', 1, 1559271859, 1559271859),
(872, 'pm', 'whois.nic.pm', 1, 1559271859, 1559271859),
(873, 'pohl', 'whois.ksregistry.net', 1, 1559271859, 1559271859),
(874, 'poker', 'whois.afilias.net', 1, 1559271859, 1559271859),
(875, 'porn', 'whois.afilias-srs.net', 1, 1559271859, 1559271859),
(876, 'post', 'whois.dotpostregistry.net', 1, 1559271859, 1559271859),
(877, 'pp.ru', 'whois.nic.ru', 1, 1559271859, 1559271859),
(878, 'ppg.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(879, 'pr', 'whois.nic.pr', 1, 1559271859, 1559271859),
(880, 'press', 'whois.nic.press', 1, 1559271859, 1559271859),
(881, 'presse.fr', 'whois.nic.fr', 1, 1559271859, 1559271859),
(882, 'priv.pl', 'whois.dns.pl', 1, 1559271859, 1559271859),
(883, 'pro', 'whois.registrypro.pro', 1, 1559271859, 1559271859),
(884, 'pro.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(885, 'prod', 'domain-registry-whois.l.google.com', 1, 1559271859, 1559271859),
(886, 'productions', 'whois.donuts.co', 1, 1559271859, 1559271859),
(887, 'prof', 'domain-registry-whois.l.google.com', 1, 1559271859, 1559271859),
(888, 'properties', 'whois.donuts.co', 1, 1559271859, 1559271859),
(889, 'property', 'whois.uniregistry.net', 1, 1559271859, 1559271859),
(890, 'psc.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(891, 'psi.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(892, 'pt', 'whois.dns.pt', 1, 1559271859, 1559271859),
(893, 'pub', 'whois.unitedtld.com', 1, 1559271859, 1559271859),
(894, 'pw', 'whois.nic.pw', 1, 1559271859, 1559271859),
(895, 'qa', 'whois.registry.qa', 1, 1559271859, 1559271859),
(896, 'qc.com', 'whois.centralnic.com', 1, 1559271859, 1559271859),
(897, 'qh.cn', 'whois.cnnic.net.cn', 1, 1559271859, 1559271859),
(898, 'quebec', 'whois.nic.quebec', 1, 1559271859, 1559271859),
(899, 're', 'whois.nic.re', 1, 1559271859, 1559271859),
(900, 're.kr', 'whois.nic.or.kr', 1, 1559271859, 1559271859),
(901, 'realestate.pl', 'whois.dns.pl', 1, 1559271859, 1559271859),
(902, 'rec.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(903, 'rec.ro', 'whois.rotld.ro', 1, 1559271859, 1559271859),
(904, 'recipes', 'whois.donuts.co', 1, 1559271859, 1559271859),
(905, 'red', 'whois.afilias.net', 1, 1559271859, 1559271859),
(906, 'rehab', 'whois.rightside.co', 1, 1559271859, 1559271859),
(907, 'reise', 'whois.nic.reise', 1, 1559271859, 1559271859),
(908, 'reisen', 'whois.donuts.co', 1, 1559271859, 1559271859),
(909, 'reit', 'whois.nic.reit', 1, 1559271859, 1559271859),
(910, 'rel.pl', 'whois.dns.pl', 1, 1559271859, 1559271859),
(911, 'rentals', 'whois.donuts.co', 1, 1559271859, 1559271859),
(912, 'repair', 'whois.donuts.co', 1, 1559271859, 1559271859),
(913, 'report', 'whois.donuts.co', 1, 1559271859, 1559271859),
(914, 'republican', 'whois.rightside.co', 1, 1559271859, 1559271859),
(915, 'res.in', 'whois.inregistry.in', 1, 1559271859, 1559271859),
(916, 'rest', 'whois.centralnic.com', 1, 1559271859, 1559271859),
(917, 'restaurant', 'whois.donuts.co', 1, 1559271859, 1559271859),
(918, 'reviews', 'whois.unitedtld.com', 1, 1559271859, 1559271859),
(919, 'rich', 'whois.afilias-srs.net', 1, 1559271859, 1559271859),
(920, 'rio', 'whois.gtlds.nic.br', 1, 1559271859, 1559271859),
(921, 'rip', 'whois.rightside.co', 1, 1559271859, 1559271859),
(922, 'ro', 'whois.rotld.ro', 1, 1559271859, 1559271859),
(923, 'rocks', 'whois.unitedtld.com', 1, 1559271859, 1559271859),
(924, 'rodeo', 'whois-dub.mm-registry.com', 1, 1559271859, 1559271859),
(925, 'rs', 'whois.rnids.rs', 1, 1559271859, 1559271859),
(926, 'rsvp', 'domain-registry-whois.l.google.com', 1, 1559271859, 1559271859),
(927, 'ru', 'whois.ripn.net', 1, 1559271859, 1559271859),
(928, 'ruhr', 'whois.nic.ruhr', 1, 1559271859, 1559271859),
(929, 'sa', 'whois.nic.net.sa', 1, 1559271859, 1559271859),
(930, 'sa.com', 'whois.centralnic.com', 1, 1559271859, 1559271859),
(931, 'saarland', 'whois.ksregistry.net', 1, 1559271859, 1559271859),
(932, 'sale', 'whois.rightside.co', 1, 1559271859, 1559271859),
(933, 'samsung', 'whois.nic.samsung', 1, 1559271859, 1559271859),
(934, 'sarl', 'whois.donuts.co', 1, 1559271859, 1559271859),
(935, 'saxo', 'whois.aridnrs.net.au', 1, 1559271859, 1559271859),
(936, 'sb', 'whois.nic.net.sb', 1, 1559271859, 1559271859),
(937, 'sc', 'wawa.eahd.or.ug', 1, 1559271859, 1559271859),
(938, 'sc.cn', 'whois.cnnic.net.cn', 1, 1559271859, 1559271859),
(939, 'sca', 'whois.nic.sca', 1, 1559271859, 1559271859),
(940, 'scb', 'whois.nic.scb', 1, 1559271859, 1559271859),
(941, 'schmidt', 'whois.nic.schmidt', 1, 1559271859, 1559271859),
(942, 'school', 'whois.donuts.co', 1, 1559271859, 1559271859),
(943, 'school.nz', 'whois.srs.net.nz', 1, 1559271859, 1559271859),
(944, 'school.za', 'whois.co.za', 1, 1559271859, 1559271859),
(945, 'schule', 'whois.donuts.co', 1, 1559271859, 1559271859),
(946, 'scot', 'whois.scot.coreregistry.net', 1, 1559271859, 1559271859),
(947, 'se', 'whois.iis.se', 1, 1559271859, 1559271859),
(948, 'se.com', 'whois.centralnic.com', 1, 1559271859, 1559271859),
(949, 'se.net', 'whois.centralnic.com', 1, 1559271859, 1559271859),
(950, 'services', 'whois.donuts.co', 1, 1559271859, 1559271859),
(951, 'sexy', 'whois.uniregistry.net', 1, 1559271859, 1559271859),
(952, 'sg', 'whois.nic.net.sg', 1, 1559271859, 1559271859),
(953, 'sh', 'whois.nic.sh', 1, 1559271859, 1559271859),
(954, 'sh.cn', 'whois.cnnic.net.cn', 1, 1559271859, 1559271859),
(955, 'shiksha', 'whois.afilias.net', 1, 1559271859, 1559271859),
(956, 'shoes', 'whois.donuts.co', 1, 1559271859, 1559271859),
(957, 'shop.pl', 'whois.dns.pl', 1, 1559271859, 1559271859),
(958, 'si', 'whois.arnes.si', 1, 1559271859, 1559271859),
(959, 'singles', 'whois.donuts.co', 1, 1559271859, 1559271859),
(960, 'sk', 'whois.sk-nic.sk', 1, 1559271859, 1559271859),
(961, 'sklep.pl', 'whois.dns.pl', 1, 1559271859, 1559271859),
(962, 'sky', 'whois.nic.sky', 1, 1559271859, 1559271859),
(963, 'slg.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(964, 'sm', 'whois.nic.sm', 1, 1559271859, 1559271859),
(965, 'sn', 'whois.nic.sn', 1, 1559271859, 1559271859),
(966, 'sn.cn', 'whois.cnnic.net.cn', 1, 1559271859, 1559271859),
(967, 'so', 'whois.nic.so', 1, 1559271859, 1559271859),
(968, 'sochi.su', 'whois.nic.ru', 1, 1559271859, 1559271859),
(969, 'social', 'whois.unitedtld.com', 1, 1559271859, 1559271859),
(970, 'software', 'whois.rightside.co', 1, 1559271859, 1559271859),
(971, 'solar', 'whois.donuts.co', 1, 1559271859, 1559271859),
(972, 'solutions', 'whois.donuts.co', 1, 1559271859, 1559271859),
(973, 'sos.pl', 'whois.dns.pl', 1, 1559271859, 1559271859),
(974, 'soy', 'domain-registry-whois.l.google.com', 1, 1559271859, 1559271859),
(975, 'space', 'whois.nic.space', 1, 1559271859, 1559271859),
(976, 'spb.ru', 'whois.nic.ru', 1, 1559271859, 1559271859),
(977, 'spiegel', 'whois.ksregistry.net', 1, 1559271859, 1559271859),
(978, 'st', 'whois.nic.st', 1, 1559271859, 1559271859),
(979, 'store.ro', 'whois.rotld.ro', 1, 1559271859, 1559271859),
(980, 'study', 'whois.nic.study', 1, 1559271859, 1559271859),
(981, 'style', 'whois.donuts.co', 1, 1559271859, 1559271859),
(982, 'su', 'whois.ripn.net', 1, 1559271859, 1559271859),
(983, 'sucks', 'whois.nic.sucks', 1, 1559271859, 1559271859),
(984, 'supplies', 'whois.donuts.co', 1, 1559271859, 1559271859),
(985, 'supply', 'whois.donuts.co', 1, 1559271859, 1559271859),
(986, 'support', 'whois.donuts.co', 1, 1559271859, 1559271859),
(987, 'surf', 'whois-dub.mm-registry.com', 1, 1559271859, 1559271859),
(988, 'surgery', 'whois.donuts.co', 1, 1559271859, 1559271859),
(989, 'sx', 'whois.sx', 1, 1559271859, 1559271859),
(990, 'sy', 'whois.tld.sy', 1, 1559271859, 1559271859),
(991, 'sydney', 'whois.nic.sydney', 1, 1559271859, 1559271859);
INSERT INTO `al_server` (`id`, `tld`, `server`, `state`, `create_time`, `update_time`) VALUES
(992, 'systems', 'whois.donuts.co', 1, 1559271859, 1559271859),
(993, 'taipei', 'whois.nic.taipei', 1, 1559271859, 1559271859),
(994, 'targi.pl', 'whois.dns.pl', 1, 1559271859, 1559271859),
(995, 'tatar', 'whois.nic.tatar', 1, 1559271859, 1559271859),
(996, 'tattoo', 'whois.uniregistry.net', 1, 1559271859, 1559271859),
(997, 'tax', 'whois.donuts.co', 1, 1559271859, 1559271859),
(998, 'tc', 'whois.adamsnames.tc', 1, 1559271859, 1559271859),
(999, 'technology', 'whois.donuts.co', 1, 1559271859, 1559271859),
(1000, 'tel', 'whois.nic.tel', 1, 1559271859, 1559271859),
(1001, 'tennis', 'whois.donuts.co', 1, 1559271859, 1559271859),
(1002, 'tf', 'whois.nic.tf', 1, 1559271859, 1559271859),
(1003, 'th', 'whois.thnic.co.th', 1, 1559271859, 1559271859),
(1004, 'tienda', 'whois.donuts.co', 1, 1559271859, 1559271859),
(1005, 'tips', 'whois.donuts.co', 1, 1559271859, 1559271859),
(1006, 'tires', 'whois.donuts.co', 1, 1559271859, 1559271859),
(1007, 'tirol', 'whois.nic.tirol', 1, 1559271859, 1559271859),
(1008, 'tj', 'whois.nic.tj', 1, 1559271859, 1559271859),
(1009, 'tj.cn', 'whois.cnnic.net.cn', 1, 1559271859, 1559271859),
(1010, 'tk', 'https=>\\/\\/partners.nic.tk\\/cgi-bin\\/whmcs-whois.taloha?d=', 1, 1559271859, 1559271859),
(1011, 'tl', 'whois.nic.tl', 1, 1559271859, 1559271859),
(1012, 'tm', 'whois.nic.tm', 1, 1559271859, 1559271859),
(1013, 'tm.fr', 'whois.nic.fr', 1, 1559271859, 1559271859),
(1014, 'tm.mc', 'whois.ripe.net', 1, 1559271859, 1559271859),
(1015, 'tm.pl', 'whois.dns.pl', 1, 1559271859, 1559271859),
(1016, 'tm.ro', 'whois.rotld.ro', 1, 1559271859, 1559271859),
(1017, 'tm.za', 'whois.co.za', 1, 1559271859, 1559271859),
(1018, 'tmp.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(1019, 'tn', 'whois.ati.tn', 1, 1559271859, 1559271859),
(1020, 'to', 'monarch.tonic.to', 1, 1559271859, 1559271859),
(1021, 'today', 'whois.donuts.co', 1, 1559271859, 1559271859),
(1022, 'tools', 'whois.donuts.co', 1, 1559271859, 1559271859),
(1023, 'top', 'whois.nic.top', 1, 1559271859, 1559271859),
(1024, 'toshiba', 'whois.nic.toshiba', 1, 1559271859, 1559271859),
(1025, 'tourism.pl', 'whois.dns.pl', 1, 1559271859, 1559271859),
(1026, 'town', 'whois.donuts.co', 1, 1559271859, 1559271859),
(1027, 'toys', 'whois.donuts.co', 1, 1559271859, 1559271859),
(1028, 'training', 'whois.donuts.co', 1, 1559271859, 1559271859),
(1029, 'travel', 'whois.nic.travel', 1, 1559271859, 1559271859),
(1030, 'travel.pl', 'whois.dns.pl', 1, 1559271859, 1559271859),
(1031, 'trust', 'whois.nic.trust', 1, 1559271859, 1559271859),
(1032, 'tt', 'https=>\\/\\/www.nic.tt\\/cgi-bin\\/search.pl?name=', 1, 1559271859, 1559271859),
(1033, 'tui', 'whois.ksregistry.net', 1, 1559271859, 1559271859),
(1034, 'tur.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(1035, 'turystyka.pl', 'whois.dns.pl', 1, 1559271859, 1559271859),
(1036, 'tv', 'whois.nic.tv', 1, 1559271859, 1559271859),
(1037, 'tv.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(1038, 'tw', 'whois.twnic.net.tw', 1, 1559271859, 1559271859),
(1039, 'tw.cn', 'whois.cnnic.net.cn', 1, 1559271859, 1559271859),
(1040, 'tz', 'whois.tznic.or.tz', 1, 1559271859, 1559271859),
(1041, 'ua', 'whois.net.ua', 1, 1559271859, 1559271859),
(1042, 'ug', 'whois.co.ug', 1, 1559271859, 1559271859),
(1043, 'uk', 'whois.nic.uk', 1, 1559271859, 1559271859),
(1044, 'uk.co', 'whois.uk.co', 1, 1559271859, 1559271859),
(1045, 'uk.com', 'whois.centralnic.com', 1, 1559271859, 1559271859),
(1046, 'uk.net', 'whois.centralnic.com', 1, 1559271859, 1559271859),
(1047, 'university', 'whois.donuts.co', 1, 1559271859, 1559271859),
(1048, 'uno', 'whois.uno.nic', 1, 1559271859, 1559271859),
(1049, 'uol', 'whois.gtlds.nic.br', 1, 1559271859, 1559271859),
(1050, 'us', 'whois.nic.us', 1, 1559271859, 1559271859),
(1051, 'us.com', 'whois.centralnic.com', 1, 1559271859, 1559271859),
(1052, 'uy', 'whois.nic.org.uy', 1, 1559271859, 1559271859),
(1053, 'uy.com', 'whois.centralnic.com', 1, 1559271859, 1559271859),
(1054, 'uz', 'whois.cctld.uz', 1, 1559271859, 1559271859),
(1055, 'vacations', 'whois.donuts.co', 1, 1559271859, 1559271859),
(1056, 'vc', 'whois.adamsnames.tc', 1, 1559271859, 1559271859),
(1057, 've', 'whois.nic.ve', 1, 1559271859, 1559271859),
(1058, 'vegas', 'whois.afilias-srs.net', 1, 1559271859, 1559271859),
(1059, 'ventures', 'whois.donuts.co', 1, 1559271859, 1559271859),
(1060, 'versicherung', 'whois.nic.versicherung', 1, 1559271859, 1559271859),
(1061, 'vet', 'whois.rightside.co', 1, 1559271859, 1559271859),
(1062, 'vet.br', 'whois.nic.br', 1, 1559271859, 1559271859),
(1063, 'vg', 'whois.adamsnames.tc', 1, 1559271859, 1559271859),
(1064, 'viajes', 'whois.donuts.co', 1, 1559271859, 1559271859),
(1065, 'video', 'whois.rightside.co', 1, 1559271859, 1559271859),
(1066, 'villas', 'whois.donuts.co', 1, 1559271859, 1559271859),
(1067, 'vision', 'whois.donuts.co', 1, 1559271859, 1559271859),
(1068, 'vlaanderen', 'whois.nic.vlaanderen', 1, 1559271859, 1559271859),
(1069, 'vodka', 'whois-dub.mm-registry.com', 1, 1559271859, 1559271859),
(1070, 'vote', 'whois.afilias.net', 1, 1559271859, 1559271859),
(1071, 'voting', 'whois.voting.tld-box.at', 1, 1559271859, 1559271859),
(1072, 'voto', 'whois.afilias.net', 1, 1559271859, 1559271859),
(1073, 'voyage', 'whois.donuts.co', 1, 1559271859, 1559271859),
(1074, 'vu', 'vunic.vu', 1, 1559271859, 1559271859),
(1075, 'wales', 'whois.nic.wales', 1, 1559271859, 1559271859),
(1076, 'wang', 'whois.gtld.knet.cn', 1, 1559271859, 1559271859),
(1077, 'watch', 'whois.donuts.co', 1, 1559271859, 1559271859),
(1078, 'web.ve', 'whois.nic.ve', 1, 1559271859, 1559271859),
(1079, 'web.za', 'whois.co.za', 1, 1559271859, 1559271859),
(1080, 'website', 'whois.nic.website', 1, 1559271859, 1559271859),
(1081, 'wed', 'whois.nic.wed', 1, 1559271859, 1559271859),
(1082, 'wedding', 'whois-dub.mm-registry.com', 1, 1559271859, 1559271859),
(1083, 'wf', 'whois.nic.wf', 1, 1559271859, 1559271859),
(1084, 'whoswho', 'whois.nic.whoswho', 1, 1559271859, 1559271859),
(1085, 'wien', 'whois.nic.wien', 1, 1559271859, 1559271859),
(1086, 'wiki', 'whois.nic.wiki', 1, 1559271859, 1559271859),
(1087, 'wme', 'whois.nic.wme', 1, 1559271859, 1559271859),
(1088, 'work', 'whois-dub.mm-registry.com', 1, 1559271859, 1559271859),
(1089, 'works', 'whois.donuts.co', 1, 1559271859, 1559271859),
(1090, 'world', 'whois.donuts.co', 1, 1559271859, 1559271859),