-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfor_randomization_170426.csv
We can't make this file beautiful and searchable because it's too large.
1274 lines (1274 loc) · 536 KB
/
for_randomization_170426.csv
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
,DossierID,org,IsChinese,hsic,Industry Description,Country,hasFacebook,hasTwitter,hasWeibo,hasWeChat,hasTencentWeibo,ip201512,ip201601,ip201602,ip201603,ip201604,ip201605,ip201606,ip201607,ip201608,ip201609,ip201610,ip201611,ip201612,ip201701,ip201702,ip201703,as201512,as201601,as201602,as201603,as201604,as201605,as201606,as201607,as201608,as201609,as201610,as201611,as201612,as201701,as201702,as201703,nb201512,nb201601,nb201602,nb201603,nb201604,nb201605,nb201606,nb201607,nb201608,nb201609,nb201610,nb201611,nb201612,nb201701,nb201702,nb201703,ph201512,ph201601,ph201602,ph201603,ph201604,ph201605,ph201606,ph201607,ph201608,ph201609,ph201610,ph201611,ph201612,ph201701,ph201702,ph201703,ov201512,ov201601,ov201602,ov201603,ov201604,ov201605,ov201606,ov201607,ov201608,ov201609,ov201610,ov201611,ov201612,ov201701,ov201702,ov201703,av201512,av201601,av201602,av201603,av201604,av201605,av201606,av201607,av201608,av201609,av201610,av201611,av201612,av201701,av201702,av201703,cv201512,cv201601,cv201602,cv201603,cv201604,cv201605,cv201606,cv201607,cv201608,cv201609,cv201610,cv201611,cv201612,cv201701,cv201702,cv201703,pv201512,pv201601,pv201602,pv201603,pv201604,pv201605,pv201606,pv201607,pv201608,pv201609,pv201610,pv201611,pv201612,pv201701,pv201702,pv201703
0,1001,LiaoHe Oilfield Telecommunication Company,Y,631200,Web portals,CN,0,0,0,1,0,0,507904,458752,507904,491520,491520,327680,0,245760,491520,507904,491520,507904,507904,458752,507904,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,67,42,33,28,31,31,30,44,60,62,62,71,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
1,1002,Beijing Expo Cloud Technology Co Ltd,Y,631100,"data processing, hosting and related activities",CN,0,0,0,0,0,0,15872,14336,40704,22272,22272,10240,0,7680,18176,23808,23040,23808,23808,21504,23808,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,66,54,51,40,0,30,71,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11911,31,30,34,93,33,64,34,26,19,244,261,54,62,0,0,0,0,0,0,0,0,0,0,0,2,6,0,0,0
2,1003,Shenzhen Aosida Communication Co Ltd,Y,611000,Telecommunications network operation ,CN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
3,1004,Magna Automotive Technology and Service(Shanghai)Co Ltd,Y,290000,Body assembly of motor vehicles ,CN,0,0,1,1,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
4,1005,Guizhou Wing Cloud High Technology Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
5,1006,China National Petroleum Corporation,Y,60000,Extraction of crude petroleum and natural gas,CN,0,0,1,1,0,0,13586432,12271616,13586432,13148160,13148160,8765440,0,6574080,13148160,13586432,13148160,13586432,13504512,12156928,13459456,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1395,1260,1395,1350,1350,900,0,675,1350,1395,1350,1395,1375,1232,1364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,1736,1734,4390,3434,5345,5103,2914,1996,1200,599,861,800,709,868,0,0,0,13,35,45,0,0,9,5,0,0,1,0,0,0
6,1007,Beijing Shidaihongyuan Network Communication Co Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,0,0,0,0,147384576,115472128,134188032,125453568,124329728,83559168,0,59776512,119797760,122231808,119182080,123430400,124395264,112411136,125028352,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,9018,7603,8872,8460,8337,5556,0,4225,8483,8313,8149,8385,8858,7962,8734,3,2,1,9,64,3,6,0,0,0,0,0,0,0,0,0,7,1,0,0,1,2,0,0,0,0,0,0,0,0,0,0,1,2,1,10,67,3,6,0,0,0,0,0,0,0,0,0,0,35,17682,117465,36482,24701,603255,186043,66366,9894,1332,1057,1872,1471,2458,4154,0,0,54,1756,858,214,182,0,69,184,41,143,69,30,60,88
7,1010,Founder Group,Y,642000,Investment and holding companies,CN,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
8,1011,CYPRESS TELECOM (CHINA) LIMITED,N,631100,"Data processing, hosting and related activities",CN,0,0,0,0,0,0,39680,35840,39680,37632,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,87,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,11,28,26,29,2,0,15,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
9,1012,Beijing Digiland media technology Co Ltd,Y,751200,"Multi-media, visual and graphic design activities ",CN,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
10,1013,NewMedia Express Pte Ltd,N,631100,"Data processing, hosting and related activities",SG,0,0,0,0,0,0,650496,611840,719360,685824,683520,456704,0,361984,727040,759296,752640,777728,839424,766976,853248,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1839,1714,1942,1839,1833,1224,0,972,1970,2067,2070,2139,2293,2100,2341,540,5,13,8,54,22,39,5,6,0,0,0,0,1,0,0,7,0,2,4,86,5,37,8,6,1,1,0,6,3,1,0,631,5,13,6,97,27,33,3,6,0,0,0,0,0,9,2,0,28,1511,16545,2062,2158,4028,1700,2338,553,2492,1331,468,750,191,217,0,0,105,17,218,877,9,0,0,1,3,13,12,1,2,68
11,1015,BEIJING CBD TELECOM Co Ltd,N,611000,Telecommunications network operation ,CN,0,0,0,0,0,0,1089792,989184,1095168,1059840,1059840,706560,0,529920,1059840,1095168,1059840,1095168,1102592,996352,1103104,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,785,728,806,780,780,520,0,390,780,806,780,806,835,756,837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,75,113,120,148,139,108,40,83,130,143,60,70,53,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
12,1016,YunGang Technology Co Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
13,1017,Beijing Baidu Netcom Science and Technology Co Ltd,y,631200,Web portals,CN,0,0,1,1,1,0,4390912,3954432,4390400,4247040,3747584,1553152,0,1167616,2072576,2176512,2135040,2206208,2458880,2236416,2742272,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,505,474,503,480,569,409,0,308,693,1151,1170,1209,1761,1624,1814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2159,20366,21359,27484,96619,64468,21468,20923,20565,20208,21635,22203,22117,42188,36425,0,0,27,127,224,84,126,0,13,24,5,43,13,2,11,25
14,1021,Beijing Capital Public Information Platform,Y,631100,"Data processing, hosting and related activities",CN,0,0,0,0,0,0,2539520,2293760,2539520,2498560,2703360,1802240,0,1351680,2703360,2793472,2703360,2793472,2793472,2523136,2924544,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,341,308,341,340,390,260,0,195,390,403,390,403,403,364,435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,1712,18947,5495,353,149083,68599,15461,6321,2241,1830,3219,2759,2922,3534,0,0,0,12,2,6,14,0,1,30,0,3,1,0,12,40
15,1023,Changhong IT information Products Co Ltd,Y,261900,Manufacture of electronic parts and components n.e.c. ,CN,0,0,1,1,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
16,1024,Beijing Kuanjie Net communication technology Ltd,Y,620200,Information technology consultancy activities and computer facilities management activities,CN,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
17,1025,Beijing Swifton inc,Y,611000,Telecommunications network operation ,CN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
18,1026,Beijing JingTian Technology Co Ltd,Y,620200,Information technology consultancy activities and computer facilities management activities,CN,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
19,1027,LONGTEL NETWORKS & TECHNOLOGIES LTD,Y,620200,Information technology consultancy activities and computer facilities management activities,CN,0,0,1,1,0,0,151808,143360,158720,153600,153600,104448,0,80640,161280,166656,161280,166656,166656,150528,166656,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,97,112,124,120,120,88,0,75,150,155,150,155,155,140,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,7,9,2,7,17,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
20,1028,Beijing Haves Cinda Sci-Tech Development Co Ltd,Y,619100,Internet access services ,CN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
21,1030,Beijing University of Chemical Technology,Y,853000,Universities and colleges providing post-secondary courses,CN,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
22,1031,Beijing SHUXUNDA Communicate Technology,Y,611000,Telecommunications network operation ,CN,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
23,1032,Beijing Topnew Info&Tech Co Ltd,Y,619100,Internet access services ,CN,0,0,0,0,0,0,0,0,98816,237568,255232,173056,0,101120,176896,0,0,0,7680,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,86,202,220,150,0,86,148,0,0,0,30,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,999,191,137,166,1640,126,0,0,0,0,0,0,0,0,0,1,14,8,10,0,0,1,0,0,0,0,0,0
24,1033,Beijing Sinnet Technology Co Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,0,1,0,0,1730048,1562368,2845184,4582400,4754688,2986240,0,1723904,3052544,2270208,3672064,3777536,3744512,3411968,2655232,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,0,310,279,759,1353,1353,859,0,520,974,380,391,403,401,364,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,193,922,24054,502,71143,29275,10370,7811,231,228,127,125,128,93,0,0,0,57,444,40,45,0,21,44,0,8,39,5,2,10
25,1038,BeiJing Shocom Telecom Co Ltd,Y,631100,"Data processing, hosting and related activities ",CN,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
26,1039,Capitalonline Data Service Co Ltd,Y,631100,"Data processing, hosting and related activities ",CN,0,0,1,1,1,0,0,0,0,0,53248,376832,0,0,0,0,0,0,1069056,1032192,1142784,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,6,43,0,0,0,0,0,0,116,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
27,1041,United e-Communicaiton (Beijing) S&T Ltd,Y,620199,Development of other softwares and programming activities,CN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
28,1042,Beijing Kaixinren Information Technology Company,Y,631200,Web portals,CN,0,0,1,0,1,0,0,0,0,0,0,0,0,0,16384,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
29,1043,HangTian Info Network Ltd,Y,620200,Information technology consultancy activities and computer facilities management activities,CN,0,0,1,1,0,0,0,0,26624,168960,278528,293888,0,112640,401408,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,19,82,116,105,0,35,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40371,10356,4206,7248,91,148,274,0,0,0,0,0,0,0,0,0,0,0,6,2,0,8,2,0,0,0,0,0,0
30,1044,Union Life Insurance Co Ltd,Y,651100,Life insurance underwriting,CN,0,0,1,1,0,0,126976,114688,126976,122880,122880,81920,0,61440,122880,126976,122880,126976,126976,114688,126976,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
31,1045,BEIJING ZHONGGUANCUN SOFTWARE PARK DEVELOPMENT Co Ltd,Y,620199,Development of other softwares and programming activities,CN,0,0,1,1,1,0,0,0,24576,59392,61440,38912,0,61440,137216,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,24,58,60,38,0,60,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,205,211,186,1017,810,238,0,0,0,0,0,0,0,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0
32,1046,CHINA HUADIAN CORPORTATION,Y,351000,"Electric power generation, transmission and distribution",CN,0,0,0,1,0,0,257024,229376,253952,245760,245760,163840,0,122880,245760,253952,245760,253952,253952,229376,253952,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,495,364,403,390,390,260,0,195,390,403,390,403,403,364,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,31069,35015,19458,53329,35761,47234,33374,43766,33237,31883,40621,233,6780,93,0,0,0,0,0,0,0,0,0,0,0,0,1,4,1,0
33,1047,BEIJING SHENZHOU GREATWALL COMMUNICATION,Y,619100,Internet access services ,CN,0,0,1,1,0,0,24696832,22298624,24696832,23900160,23900160,15933440,0,11950080,23900160,24696832,23900160,24696832,24696832,22306816,24696832,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,465,418,465,450,450,300,0,225,450,465,450,465,465,420,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,2,28,14,0,15,23,0,0,20,0,10,15,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
34,1048,Chinese Academy of Social Sciences,Y,722000,Research and development on social sciences and humanities,CN,0,0,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,19,14,27,33,0,22,26,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
35,1049,Beijing ShuJuJia Technology Co Ltd,Y,619100,Internet access services ,CN,0,0,1,1,0,0,2031616,1835008,2186240,2396672,2387968,1526272,0,1132032,2219520,2061056,1973760,2039552,2039552,1842176,2039552,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,122,281,301,160,0,99,171,74,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,321,543,5889,5108,280,132,86,14,17,0,0,0,0,0,0,0,2,10,37,14,0,1,0,0,0,0,0,0,0
36,1050,Beijing Qi Shang Online Data Communication Technology Co Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
37,1051,Beijing CE Huatong Information Technology Co Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
38,1053,Pacnet Business Solutions LTD,Y,619100,Internet access services ,CN,0,0,0,0,0,0,2098176,1903872,2108416,2059264,2063616,1376256,0,1067520,2132480,2195968,2127360,2198272,2200320,1978368,2165760,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,2083,1893,2061,2003,2005,1339,0,1080,2152,2195,2130,2201,2228,2016,2184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,204,33,57,46,87,83,72,160,72,91,31,135,170,186,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0
39,1055,Chinese Academy of Forestry,Y,721000,Research and development on natural sciences and engineering,CN,0,0,1,1,0,0,253952,229376,253952,245760,245760,163840,0,122880,245760,253952,245760,253952,253952,229376,253952,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,124,120,120,80,0,60,120,124,120,124,124,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,54,0,36,7,28,6,0,14,3,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
40,1056,Xirang.com,Y,631100,"Data processing, hosting and related activities",CN,0,0,1,1,1,0,33190912,26980352,25522176,24698880,24692480,16460800,0,12345600,24934144,25880064,25148672,25887232,25991680,23468032,25982464,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1128,1151,1209,1170,1145,760,0,570,1157,1195,1190,1209,1276,1148,1271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,38,5314,690,217,50170,28751,7297,240,55231,414628,142,205,128,124,0,0,0,0,0,0,7,0,3,2,7,0,1,0,0,0
41,1057,Hanwin Technology,Y,631100,"Data processing, hosting and related activities",CN,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
42,1058,LinkData,Y,421000,Construction of civil engineering projects,CN,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
43,1059,CITIC Ltd,Y,644000,"Trusts, funds and similar financial entities",CN,0,0,1,1,1,0,126976,114688,126976,122880,122880,81920,0,61440,122880,126976,122880,126976,126976,114688,126976,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,13,0,6,23,49,40,51,85,61,38,49,31,38,62,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0
44,1062,GDS CHANGAN SERVICES Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,1,1,0,0,2158592,1955840,2174464,2104320,2104320,1402880,0,1052160,2104320,2174464,2104320,2174464,2174464,1964032,2174464,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,80,124,120,120,80,0,60,120,124,120,124,124,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,8,0,0,0,0,316,8,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0
45,1063,Bosch (China) Investment Ltd,Y,290000,Body assembly of motor vehicles,CN,0,0,1,1,0,0,126976,114688,126976,122880,122880,81920,0,61440,122880,126976,122880,126976,126976,114688,126976,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
46,1064,China Economic Information Network Corporation,Y,620200,Information technology consultancy activities and computer facilities management activities,CN,0,0,0,0,0,0,126976,114688,126976,122880,122880,81920,0,61440,122880,126976,122880,126976,126976,114688,126976,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,93,84,93,90,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,70,140,201,170,211,277,222,295,166,97,129,91,51,31,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,1
47,1068,China Networks Inter-Exchange,N,611000,Telecommunications network operation ,CN,0,0,0,0,0,0,224771328,220574720,244379136,247248384,249515776,164165632,0,127383296,264188160,270167040,259401216,269533952,263528960,236550656,258459136,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,21610,20566,22924,22469,22099,14926,0,11874,24436,24572,23560,24502,23681,20932,23001,0,0,0,0,3,1,0,1,4,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,1,0,1,4,0,0,6,0,0,0,0,0,703,755302,133288,97901,431613,2445693,819583,205704,52926,22070,76677,30087,78663,163205,34038,0,0,315,744,960,1606,970,0,713,752,234,2552,669,1209,1267,523
48,1069,Guangdong Hutong Broadband Network Co Ltd,Y,619100,Internet access services ,CN,0,0,1,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,30720,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,30,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
49,1070,CNET,N,639900,Other information service activities n.e.c.,CN,0,0,1,1,1,0,166656,150528,166656,161280,161280,107520,0,80640,161280,166656,161280,166656,10752,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,155,140,155,150,150,100,0,75,150,155,150,155,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
50,1071,BeiJing Sincerity-times Network Technology Project Ltd,N,611000,Telecommunications network operation ,CN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
51,1072,Beijing JiuZhou Future Technology Co Ltd,Y,620199,Development of other softwares and programming activities,CN,0,0,0,1,0,0,0,0,0,0,1343488,1114112,0,1105920,3579904,5586944,5357568,5586944,4554752,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,118,78,0,75,221,341,327,341,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
52,1073,Beijing Teletron Telecom Engineering Co Ltd,Y,611000,Telecommunications network operation ,CN,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
53,1074,Dnion,Y,631100,"Data processing, hosting and related activities",CN,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
54,1075,China Securities Co Ltd,Y,644000,"Trusts, funds and similar financial entities",CN,0,0,1,1,1,0,0,0,0,0,0,0,0,0,3072,7936,7680,7936,7936,7168,3840,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,12,31,30,31,31,28,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
55,1077,Beijing Founder Broadband Network Technology Co Ltd,Y,611000,Telecommunications network operation ,CN,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
56,1078,Shanghai Highway Information Technology Co Ltd,Y,620199,Development of other softwares and programming activities,CN,0,0,0,0,0,0,388864,343552,390912,338688,322560,252928,0,161280,321792,336128,327936,333312,333312,301056,349696,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,682,604,684,609,600,454,0,300,597,598,627,682,682,616,698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,141,254,394,232,102,117,155,110,192,131,100,175,93,93,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,4
57,1079,FoShan RuiJiang Science and Tech Ltd,Y,620200,Information technology consultancy activities and computer facilities management activities,CN,0,0,0,0,0,0,1321984,1093120,1323520,1613568,1823488,1335552,0,1018368,2969600,3436032,3320832,3425280,3399936,3085824,2222592,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,407,346,334,384,401,341,0,258,625,521,497,495,462,434,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,33,2172,1134,633,7361,2576,978,3051,33,211,1534,170,85,62,0,0,0,943,23,395,26,0,46,159,0,19,74,0,0,0
58,1080,FuJian Internet Communications Co Ltd,Y,611000,Telecommunications network operation ,CN,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
59,1081,21CN,N,631100,"Data processing, hosting and related activities",CN,0,0,1,0,1,0,45056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
60,1083,Guangdong Cable Corporation Limited,Y,602000,Television programming and broadcasting activities,CN,0,0,0,1,0,0,2816,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,11,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
61,1084,NetEase Inc,Y,620199,Development of other softwares and programming activities,CN,0,0,1,1,1,0,317440,286720,317440,307200,337920,245760,0,184320,368640,380928,368640,380928,380928,344064,380928,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,155,140,155,150,180,140,0,105,210,217,210,217,217,196,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,4945,605,78820,55393,89141,89981,32139,6661,3418,1771,1715,2676,1457,775,0,0,465,76,5945,4098,2457,0,108,67,41,111,125,21,84,62
62,1086,Aliyun Computing Co Ltd,Y,620199,Development of other softwares and programming activities,CN,0,0,1,1,0,0,71424,64512,71424,69120,69120,46080,0,34560,69120,71424,69120,71424,71424,64512,70912,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,279,252,279,270,270,180,0,135,270,279,270,279,279,252,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
63,1087,Hangzhou Netbank Technologies Co Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
64,1088,Zhengzhou Yifang Technology Trade Co Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
65,1089,Henan Telcom Union Technology Co Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,1,1,0,0,2071296,1870848,2071296,2004480,2004480,1336320,0,1002240,2004480,2071296,2004480,2071296,2071296,1870848,2071296,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,124,120,120,80,0,60,120,124,120,124,124,112,124,0,0,2,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,4,2,3,6,0,12,8,5,6,8,6,2,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,20,3910,3663,3880,55075,24000,16768,8457,138,136,416,328,824,180,248,0,0,25,10,13,89,5,0,21,4,2,69,16,1,19,18
66,1090,Intel (China) Ltd,Y,261100,Manufacture of electronic parts and components for computer and telecommunications equipment ,CN,0,0,1,1,1,0,95232,86016,89088,30720,30720,37376,0,38400,76800,79360,76800,79360,84992,71680,79616,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,155,140,143,30,30,42,0,45,90,93,90,93,115,84,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,30,0,17,60,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
67,1091,Internet Systems Consortium (Beijing China),N,620199,Development of other softwares and programming activities,US,0,0,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
68,1093,CONAC (China Organizational Name Administration Center),Y,631100,"Data processing, hosting and related activities",CN,0,0,1,1,0,0,15872,14336,15872,15360,15360,10240,0,14848,30720,31744,30720,31744,31744,28672,31744,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,62,56,62,60,60,40,0,58,120,124,120,124,124,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
69,1096,CHINA STATE POST BUREAU,Y,531000,Postal activities,CN,0,0,0,1,0,0,1269760,1146880,1269760,1228800,1228800,819200,0,622592,1228800,1269760,1228800,1269760,1269760,1146880,1269760,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1023,924,1023,990,990,660,0,496,990,1023,990,1023,1023,924,1023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,28,31,2,0,0,0,0,0,0,0,12,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
70,1097,Jiangxi Broadcasting and TV information Network,Y,602000,Television programming and broadcasting activities,CN,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
71,1098,University of Science and Technology of China,Y,853000,Universities and colleges providing post-secondary courses,CN,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
72,1099,HeNan Ping Coal Group,Y,50000,Mining of coal and lignite ,CN,0,0,1,1,0,0,2095104,1892352,2095104,2027520,2027520,1351680,0,1013760,2027520,2095104,2027520,2095104,2095104,1892352,2095104,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,186,168,186,180,180,120,0,90,180,186,180,186,186,168,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,345,207,92,175,791,154,261,3893,3404,2435,354,246,68,678,589,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0
73,1101,PGi,N,611000,Telecommunications network operation,US,0,0,0,0,0,0,163840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
74,1102,Royal Network Technology Co Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,1,1,1,0,483584,601600,571904,725248,825600,605184,0,682240,1382912,1366272,1131008,1164032,1092096,1105664,772352,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,471,521,476,635,793,598,0,670,1385,1413,1154,1173,1134,1248,976,1,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,8,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,194,24420,13577,693,18562,6936,9495,446,1173,2333,1075,446,214,62,0,0,4,20,3,3,390,0,2,9,4,253,33,0,5,4
75,1103,SAP APJ,N,620199,Development of other softwares and programming activities,CN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
76,1104,Zhengzhou longling technology Ltd,Y,620199,Development of other softwares and programming activities,CN,0,0,1,1,1,0,63488,57344,63488,61440,59392,40960,0,30720,61440,63488,61440,63488,66560,64512,71168,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,148,120,0,90,180,186,180,186,223,224,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
77,1105,Beijing Linkever Technology Co Ltd,Y,611000,Telecommunications network operation,CN,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
78,1106,INFORMATION CENTER OF BEIJING SCIENCE AND TECHNOLOGY COMMISION,Y,841000,Government administration; economic and social policy ,CN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
79,1107,Oriental Cable Network Co Ltd,Y,602000,Television programming and broadcasting activities,CN,0,0,1,1,0,0,105271552,90940416,100708608,97497600,97503744,65002496,0,48755456,95568384,98152448,94986240,98152448,98315520,88890368,98710016,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,4596,4088,4538,4410,4422,2957,0,2216,4225,4309,4170,4309,4338,3920,4340,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,16,42024,2739,10240,31506,495,1252,229,272,853,301,280,261,450,589,0,0,135,126,10,90,59,0,12,26,4,6,1,0,3,1
80,1109,Net-Infinity,Y,631100,"Data processing, hosting and related activities",CN,0,0,0,0,0,0,9142272,8257536,9142272,8847360,8847360,5901568,0,4423680,8835840,9126400,8832000,9126400,9126400,8243200,9112064,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1178,1064,1178,1140,1140,773,0,570,1095,1116,1080,1116,1116,1008,1123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,108,169,144,206,172,211,208,169,174,173,158,192,173,186,0,0,1,0,40,36,78,0,2,73,1,3,3,0,0,0
81,1110,Beijing Educational Information Network Service Center Co Ltd,Y,855000,Educational support services,CN,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
82,1112,China Broadcasting TV Net,Y,602000,Television programming and broadcasting activities,CN,0,0,1,0,1,0,38854656,35094528,38854656,37601280,37601280,25067520,0,18800640,37601280,38854656,37601280,38854656,38592512,35094528,38854656,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,248,224,248,240,240,160,0,120,240,248,240,248,247,224,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,341,334,266,264,228,308,372,366,310,313,308,173,211,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
83,1113,KGEC,N,631200,Web portals,CN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
84,1114,Shanghai HaoJin Technology Development Co Ltd,Y,619100,Internet access services ,CN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
85,1115,Beijing yiantianxia Network Science&Technology Co Ltd,Y,619100,Internet access services ,CN,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
86,1116,Qingdao Cable TV Network Center,Y,631200,Web portals,CN,0,0,0,0,0,0,126976,114688,126976,122880,122880,81920,0,61440,122880,126976,122880,126976,126976,114688,126976,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,33,4,0,0,5,31,28,31,0,0,0,0,0,5,1,0,9,0,0,0,0,0,0,2
87,1117,Beijing Fast Cloud Information Technology Co Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
88,1118,Development Research Center Of The State Council,Y,620200,Information technology consultancy activities and computer facilities management activities,CN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
89,1119,China Telecommunications Broadcast Satellite Corp,Y,602000,Television programming and broadcasting activities,CN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
90,1120,Data Management Centre National Bureau of Statistics of China,Y,841000,Government administration; economic and social policy ,CN,0,0,1,0,1,0,507904,458752,507904,376832,491520,327680,0,245760,491520,507904,491520,507904,507904,458752,507904,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,46,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
91,1121,BEIJING MARINE COMMUNICATION AND NAVIGATION Co,Y,522999,Other miscellaneous transportation support activities n.e.c.,CN,0,0,1,0,0,0,63488,57344,63488,61440,61440,40960,0,30720,61440,63488,61440,63488,63488,57344,63488,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,155,140,155,150,150,100,0,75,150,155,150,155,155,140,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
92,1122,State Power Information Net,N,841000,Government administration; economic and social policy ,CN,0,0,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,30720,55552,53760,55552,55552,50176,35072,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,120,217,210,217,217,196,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
93,1123,Beijing FibrLINK Networks Co Ltd,N,611000,Telecommunications network operation,CN,0,0,0,0,0,0,18308608,16502272,18220032,17636608,17640960,11760640,0,8808960,17623040,18197248,17616640,18213120,18242816,16478976,18367232,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,2140,1951,2166,2123,2130,1420,0,1055,2060,2077,2035,2139,2168,1959,2794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,134,242,491,953,114,88,113,187,84,49,236,88,182,31,0,0,2,63,2,5,2,0,1,49,0,7,0,0,0,1
94,1124,CCTV international network Co Ltd,Y,602000,Television programming and broadcasting activities,CN,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
95,1125,China South Locomotive And Rolling Stock Industry Company,Y,302000,Manufacture of railway locomotives and rolling stock,CN,0,0,1,1,0,0,63488,57344,63488,61440,61440,40960,0,30720,61440,63488,61440,63488,63488,57344,63488,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,29,31,30,30,23,31,26,21,0,11,0,0,0,0,0,0,0,2,0,0,1,0,0,9,3,4,3,1,4,40
96,1126,Beijing IT Industry Promotion Center,Y,620900,Other information technology service activities,CN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
97,1127,UniHUB Global Network,N,631100,"Data processing, hosting and related activities",CN,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
98,1128,China International Electronic Commerce Center,Y,631100,"Data processing, hosting and related activities",CN,0,0,1,0,0,0,3110912,2809856,3110912,3010560,3010560,2007040,0,1505280,3010560,3110912,3010560,3110912,3110912,2809856,3110912,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,155,140,155,150,150,100,0,75,150,155,150,155,155,140,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,646,1133,1344,977,1680,2477,2157,1662,1323,1109,1135,941,662,961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
99,1129,Taiyuan CATV Networks Ltd,Y,602000,Television programming and broadcasting activities,CN,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
100,1130,Fujian Southeast Radio & TV Network Co Ltd,Y,602000,Television programming and broadcasting activities,CN,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
101,1131,China Engineering Technology Informations Networks,Y,631200,Web portals,CN,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
102,1132,GUANGDONG HIGHWAY BROADBAND NETWORK SERVICE CENTE,Y,611000,Telecommunications network operation,CN,0,0,0,0,0,0,507904,458752,507904,491520,491520,327680,0,245760,491520,507904,491520,507904,507904,458752,507904,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
103,1133,Jinan Radio &TV Wellunited,Y,602000,Television programming and broadcasting activities,CN,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
104,1134,China Duty Free group,Y,941100,Activities of business and employers membership organisations,CN,0,0,1,1,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
105,1135,gnet Integrated Services Co,Y,631100,"Data processing, hosting and related activities",CN,0,0,1,1,1,0,507904,458752,507904,491520,491520,327680,0,245760,491520,507904,491520,507904,507904,458752,507904,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,28,46,30,14,23,40,51,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
106,1136,ChengDu Dr.Peng Telecom & Media Group Industry Co Ltd,Y,619100,Internet access services ,CN,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
107,1137,Sichuan aipu network Co Ltd,Y,619100,Internet access services ,CN,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
108,1138,China Science and Technology Museum,Y,910200,Museums activities and operation of historical sites,CN,0,0,1,1,0,0,126976,114688,126976,122880,122880,81920,0,61440,122880,53248,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
109,1139,Chengdu Information Harbor Co Ltd,Y,619100,Internet access services ,CN,0,0,0,1,0,0,507904,458752,507904,491520,491520,327680,0,245760,491520,507904,491520,507904,507904,458752,507904,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,29,31,30,31,28,31,52,18,0,3,0,0,0,0,0,0,1,2,1,7,1,0,0,0,0,0,0,0,0,0
110,1140,Chinese Academy of Governance,Y,853000,Universities and colleges providing post-secondary courses,CN,0,0,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,50,62,56,68,88,76,62,80,62,36,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0
111,1141,ShenZhen Topway Video Communication Co Ltd,Y,602000,Television programming and broadcasting activities,CN,0,0,1,1,0,0,37153536,33517568,37102848,35196160,33914880,22609920,0,16957440,33898496,35045376,33914880,35045376,35045376,31653888,35045376,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1188,1064,1155,1050,960,640,0,480,959,992,960,992,992,896,992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,292,2285,7709,1299,2663,3993,20771,6294,682,795,632,795,1837,1674,0,0,7,19,28,7,18,0,2,12,4,9,3,0,3,9
112,1142,Beijing Linktom Network Technology Co Ltd,Y,619100,Internet access services ,CN,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
113,1144,Li Ning (China) Sports Goods Co Ltd,Y,476300,Retail sale of sporting equipment ,CN,1,0,1,1,1,0,23808,21504,23808,23040,23040,15360,0,11520,23040,23808,23040,23808,23808,21504,23808,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
114,1145,SAMSUNG SDS CHINA,Y,263000,Manufacture of communication equipment,CN,1,0,1,1,1,0,119040,107520,119040,115200,115200,76800,0,57600,115200,119040,115200,119040,119040,107520,119040,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,465,420,465,450,450,300,0,225,450,465,450,465,465,420,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,29,31,30,31,28,31,31,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
115,1146,BTV company,Y,602000,Television programming and broadcasting activities,CN,0,0,1,1,1,0,55552,50176,55552,53760,53760,35840,0,26880,53760,55552,53760,55552,55552,50176,55552,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,217,196,217,210,210,140,0,105,210,217,210,217,217,196,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
116,1147,Beijing Sgather Telecom Engineering Co Ltd,N,611000,Telecommunications network operation,CN,0,0,0,0,0,0,3072000,2494464,4067328,4956160,5447680,3850240,0,167936,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,210,171,214,266,331,240,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
117,1148,Henan Guochao E-commerce Co Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
118,1149,Institute of High Energy Physics,Y,721000,Research and development on natural sciences and engineering,CN,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
119,1150,Nanjing Anlai Xinxi Tongxin Jishu Youxian Gongsi,N,631100,"Data processing, hosting and related activities",CN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
120,1151,Foshan Sihai Network Technology Co Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
121,1152,Beijing Network Video Communications Technology Co Ltd,N,631200,Web portals,CN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
122,1154,Etrunk Network Telecommunication Co Ltd,Y,619100,Internet access services ,CN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
123,1155,Freecomm Corporation,Y,611000,Telecommunications network operation ,CN,0,0,0,0,0,0,333312,301056,333312,322560,322560,215040,0,161280,322560,333312,322560,333312,333312,301056,333312,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1302,1176,1302,1260,1260,840,0,630,1260,1302,1260,1302,1302,1176,1302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,40,62,60,54,62,93,93,77,576,1243,257,62,56,62,0,0,0,1,0,0,0,0,0,0,1,6,0,0,1,1
124,1156,Cetron Network Technology Co Ltd,Y,611000,Telecommunications network operation,CN,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
125,1157,Shanghai Group Entropy IT Co Ltd,Y,631100,"Data processing, hosting and related activities",cN,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
126,1158,Jilin Gosun Technology Co Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,1,1,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
127,1159,Shanghai Overseas Chinese Communication Network Co Ltd,Y,611000,Telecommunications network operation,CN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
128,1160,Guangdong LITONG Network Technology Limited,Y,619100,Internet access services,CN,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
129,1161,CNLink Networks Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,0,1,1,0,1272064,1416960,1579264,1378048,2147072,1346304,0,1038080,2030592,2079232,2012160,2079232,2122240,1929216,2142720,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,579,529,589,550,559,379,0,290,549,558,540,558,579,529,589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,70,72,88,97,100,110,120,86,64,67,59,59,53,62,0,0,0,0,2,1,0,0,0,0,0,0,0,0,2,2
130,1164,China Netcom Broadband Corporation Ltd,Y,619100,Internet access services ,CN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
131,1166,CHINACOMM Communication Co Ltd ,Y,619100,Internet access services ,CN,0,0,0,0,0,0,1802240,14336,167936,315392,90112,92160,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,45,7,56,49,11,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,5,381,285,603,163,24,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0
132,1167,Guangdong Aofei Data Technology Co Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,0,1,0,0,539648,520192,609536,611072,730112,440576,0,319232,751104,925952,883200,912640,655872,604160,322560,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,496,480,578,647,812,321,0,218,546,703,630,651,422,394,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,17931,13929,8045,3392,4,18,13,17,2,9,3,30,48,31,0,0,5,0,1,0,0,0,0,0,0,0,0,0,0,0
133,1168,HLJ E-link Network Technology Services Co Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
134,1169,LianHongWeiYe Communication Technology Co Ltd,Y,611000,Telecommunications network operation,CN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
135,1170,ZhengZhou GIANT Computer Network Technology Co Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,1,1,1,0,3174400,2768896,3174400,3072000,3045376,2086912,0,2973696,5830656,3076096,3072000,3174400,3174400,2867200,3174400,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,93,82,93,90,109,79,0,133,249,91,90,93,93,84,93,5,1,0,1,3,20,11,2,8,0,1,0,0,1,1,1,6,2,4,2,0,5,6,0,21,6,3,8,116,1,10,5,4,0,0,1,3,17,8,2,8,0,1,0,0,0,0,2,0,36,1474,2841,1017,550,2218,5878,2715,1097,1962,1653,797,1248,1885,3813,0,0,380,311,46,41,26,0,32,96,25,133,57,11,76,63
136,1172,Guangzhou Tenmark Networks Technology Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,0,0,0,0,0,0,0,0,1396736,2211840,0,1781760,4636672,6254592,7299072,7237632,6045696,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,108,180,0,135,301,393,468,465,419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
137,1173,NOVA Technology Co Ltd,Y,631100,"data processing, hosting and related activities",CN,0,0,1,1,0,0,253952,229376,245760,519168,737280,491520,0,368640,740864,761856,737280,761856,761856,688128,765696,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,120,452,390,260,0,195,404,403,390,403,403,364,418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,28,22,23,9,43,62,60,54,52,26,10,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
138,1174,Easynet Global Services Asia,N,611000,Telecommunications network operation,CN,0,0,0,0,0,0,196608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
139,1175,Information Center of Shanghai Municipal Education Commission,Y,853000,Universities and colleges providing post-secondary courses,CN,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
140,1176,Shanghai Link-Net Communication Technology Co Ltd,Y,619100,Internet access services ,CN,0,0,1,1,0,0,126976,114688,126976,122880,122880,81920,0,61440,122880,126976,122880,178176,131072,114688,126976,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,56,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,29,38,30,31,28,31,31,30,47,40,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
141,1177,Shanghai Information Network Co Ltd,Y,611000,Telecommunications network operation,CN,0,0,0,0,0,0,872960,786944,871936,1190912,1244160,830464,0,660480,1327104,1380864,1400832,1650688,2096128,1921024,2126848,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,496,442,492,610,630,494,0,570,1164,1240,1235,1333,347,252,279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,58,103,95,5320,4698,820,5609,543,1072,961,1354,680,2001,2077,0,0,0,8,0,1,0,0,0,0,0,2,1,0,5,6
142,1178,Shanghai Telecom Haplink Network Co Ltd,Y,619100,Internet access services,CN,0,0,0,1,0,0,293632,265216,293632,284160,284160,189440,0,142080,284160,293632,284160,293632,293632,265216,293632,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,2,7,6,16,0,7,20,22,37,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
143,1179,SHANGHAI Guangdian Electronics Group Co Ltd,Y,261100,Manufacture of electronic parts and components for computer and telecommunications equipment,CN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
144,1180,ShenZhen Sunrise Technology Co Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,0,0,0,0,142848,129024,150784,144640,143616,97280,0,72960,88064,91136,95744,103168,103168,93184,103168,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,124,112,155,145,141,100,0,75,134,139,164,186,186,168,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,547,8,42,14,0,0,17,21,26,64,1255,43,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
145,1182,SaaSplaza International,N,631100,"data processing, hosting and related activities",CN,0,0,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
146,1183,Anlai,Y,611000,Telecommunications network operation,CN,0,0,0,0,0,0,4637184,4114432,4555264,4401408,4385280,2917376,0,2184960,4369920,4515584,4369920,4515584,4515584,4078592,4515584,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1444,1232,1364,1302,1260,839,0,630,1260,1302,1260,1302,1302,1176,1302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,30,31,95,1480,127,851,4031,1105,133,117,78,488,1177,2356,0,0,0,0,0,2,0,0,0,0,0,0,0,0,4,10
147,1184,NIU Telecommunications Inc,N,611000,Telecommunications network operation,CN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
148,1185,Fumeiti Technology Co,N,631100,"Data processing, hosting and related activities",POLAND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
149,1186,ONE-STOP Computer Science and Tech Ltd,Y,631100,"data processing, hosting and related activities",CN,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
150,1187,WebPower,Y,702200,Business management and consultancy services,CN,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
151,1188,Xiaomi Telecom Technology Co Ltd,Y,263000,Manufacture of communication equipment,CN,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
152,1190,WASU TV & Communication Holding Co Ltd,Y,602000,Television programming and broadcasting activities,CN,0,0,1,1,0,0,42663936,38535168,20480,41287680,41287680,27525120,0,20643840,41287680,42663936,41287680,42663936,42663936,38535168,42663936,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,2077,1876,10,2010,2010,1340,0,1005,2010,2077,2010,2077,2077,1876,2077,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,15288,90904,136293,569483,520192,314138,62609,63468,173365,157971,84115,4638,135027,91667,0,0,406,1588,2863,2794,1560,0,950,1776,463,1631,357,2,1295,814
153,1193,Shenzhen Municipal E-government Resources Center,Y,841000,Government administration; economic and social policy ,CN,0,0,0,0,0,0,507904,458752,507904,491520,491520,327680,0,245760,491520,507904,491520,507904,507904,458752,507904,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,29,31,30,31,44,31,31,30,41,54,40,46,35,31,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0
154,1194,Zhuhai Cable TV Network Co Ltd,Y,602000,Television programming and broadcasting activities,CN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
155,1195,Alcatel-Lucent,Y,611000,Telecommunications network operation,CN,0,0,1,1,1,0,134912,121856,113152,0,0,9984,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,52,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
156,1196,GOIP-AULA-LIMITED,N,611000,Telecommunications network operation,HK,0,0,0,0,1,0,150784,136192,151040,156416,161280,107520,0,80640,161280,166656,161280,166656,166656,150528,163072,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,527,476,528,551,570,380,0,285,570,589,570,589,589,532,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,152,262,1686,1479,116,89,68,78,106,263,72,76,71,93,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0
157,1197,Beijing Gao Hua Securities Company Limited,Y,661202,Securities brokerage ,CN,0,0,0,0,1,0,63488,57344,63488,61440,61440,40960,0,28928,61440,63488,61440,63488,63488,57344,59392,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,248,224,248,240,240,160,0,113,240,248,240,248,248,224,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
158,1198,Beijing Tian Wei Xin Tong technology corp limited,Y,631100,"Data processing, hosting and related activities",CN,0,0,0,0,0,0,269824,243712,294656,330240,330240,221184,0,182784,368640,408064,422400,436480,436480,394240,432384,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,434,392,465,510,510,341,0,279,570,641,690,713,713,644,697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,69,76,44,30,42,33,57,61,108,82,71,62,331,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0
159,1199,GOLD SEA COMMUNICATIONS Co Ltd,Y,611000,Telecommunications network operation,CN,0,0,1,0,0,0,43008,54272,63488,61440,61440,40960,0,30720,61440,63488,61440,63488,63488,57344,63488,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,42,53,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
160,1200,China eGovNet Information Center,Y,841000,Government administration; economic and social policy ,CN,0,0,1,0,1,0,2031616,1835008,2031616,1966080,1966080,1310720,0,983040,2621440,2031616,1966080,2031616,2031616,1835008,2031616,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,40,31,30,31,31,28,31,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,12,41,15,23,33,42,31,50,30,31,30,31,31,28,31,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0
161,1201,Beijing TONEK Information Technology Development Company,Y,452611,"Import for wholesale of machinery, equipment and supplies",CN,0,0,0,0,0,0,5683456,5103360,5642496,5383424,5453312,3502080,0,1927680,3855360,3983872,3855360,3983872,4459008,4057088,4491776,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,3976,3591,3968,3509,3312,2140,0,1140,2280,2356,2280,2356,2385,2156,2387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,160,198,112,32,30,36,52,38,55,31,31,40,46,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
162,1202,Chengdu West Dimension Digital Technology Co Ltd,Y,631100,"data processing, hosting and related activities",HK,0,0,1,1,1,0,876800,770304,516608,505344,479232,298752,0,231680,490752,512256,494080,512768,508416,458752,511488,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,481,525,499,504,486,307,0,215,450,482,460,484,467,420,479,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,1,1,2,5,15,2,2,4,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,50,4,51,79,300,45,107,177,312,256,224,489,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
163,1203,Travelsky Technology Limited,Y,510900,Air transport services n.e.c.,CN,0,0,0,0,0,0,2039552,1842176,2039552,1973760,1973760,1315840,0,986880,1973760,2039552,1973760,2039552,2039552,1842176,2039552,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
164,1204,Shaanxi Broadcast&Television Monitoring Center,Y,602000,Television programming and broadcasting activities,CN,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
165,1205,Xiamen Broadcasting & TV Network Transmit Co Ltd,Y,602000,Television programming and broadcasting activities,CN,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
166,1206,Shanxi Datong Coal Group Communication Co Ltd,Y,50000,Mining of coal and lignite ,CN,0,0,0,0,0,0,4063232,3670016,4063232,3932160,3932160,2621440,0,1966080,3932160,4063232,3932160,4063232,4063232,3670016,4063232,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,155,140,155,150,150,100,0,75,150,155,150,155,155,140,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,269,349,97,182,218,98,283,477,307,82,78,189,177,93,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5
167,1207,FoShan SHITONG Information Broadband Networks Co Ltd,Y,602000,Television programming and broadcasting activities,CN,0,0,0,1,0,0,1228800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
168,1208,Blackberry,Y,263000,Manufacture of communication equipment ,CN,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
169,1209,QY NETWORK MAOMING Co Ltd,Y,631100,"data processing, hosting and related activities",CN,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
170,1210,LETV-CN,Y,602000,Television programming and broadcasting activities,CN,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
171,1211,Bodis LLC,N,631100,"Data processing, hosting and related activities",US,0,0,0,0,0,0,31744,28672,28672,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,112,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
172,1212,Aiyun Technology Co Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
173,1215,Tiawan Academic Network (TANet) Information Center,Y,620200,Information technology consultancy activities and computer facilities management activities,TW,0,0,0,0,0,0,208064768,186620672,203753728,202104320,199694648,143083918,0,115643392,204143616,188019968,188512000,192111872,190523648,171655424,191313152,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,7683,6373,3839,3009,2169,9731,0,2564,3388,1486,1628,1785,1524,1307,1519,1,8,1,1,1,10,3,0,0,0,0,1,0,1,1,0,1,0,0,2,0,10,7,0,0,0,1,0,8,8,3,0,0,9,1,0,1,6,2,0,0,0,0,1,0,1,0,0,0,202,104888,83891,5347,49582,248197,64000,75649,28484,3039,923,2661,2021,11343,868,0,0,516,191,74,184,445,0,40,127,112,462,69,7,165,50
174,1216,Institute for Information Industry,Y,620200,Information technology consultancy activities and computer facilities management activities,TW,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
175,1217,The ChaYi Private Commercial High School,Y,853000,Universities and colleges providing post-secondary courses,TW,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
176,1218,GCNet (Reach & Range Inc),N,611000,Telecommunications network operation,TW,0,0,0,0,0,0,5586944,5046272,5586944,5406720,5406720,3604480,0,2703360,5406720,5586944,5406720,5586944,5586944,5046272,5586944,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,620,560,620,600,600,400,0,300,600,620,600,620,620,560,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,19890,13677,44334,88739,119815,42588,69541,15870,937,462,13572,8169,169,217,0,0,22,427,45,450,8,0,44,114,7,78,22,1,6,13
177,1219,Taiwan Fixed Network Co Ltd,Y,611000,Telecommunications network operation,TW,0,0,0,0,0,0,160567040,145034752,161038336,157255680,156950528,105387008,0,79123200,158236672,163425280,157292800,161480704,162238976,146542592,162251520,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,8980,8158,8996,8610,8642,5832,0,4590,9179,9443,9133,9520,9281,8316,9227,1,4,0,4,2,5,2,2,8,0,0,0,0,2,0,0,1,3,0,4,8,16,3,2,2,4,3,0,7,12,25,6,0,3,0,3,2,4,2,3,8,0,0,0,0,4,5,0,0,538,152261,303891,2025668,2813005,848376,393579,284337,140406,30888,5179,14946,25810,40023,4309,0,0,517,2230,217,1071,94,0,204,477,38,215,331,22,54,62
178,1222,Taiwan Mobile Co Ltd,Y,611000,Telecommunications network operation,TW,0,0,0,0,0,0,47831040,43212800,48081664,48760064,48825856,33817600,0,25363200,50726400,51598080,49743360,51401472,51401216,46427136,51401472,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,2358,2144,2462,2849,2852,1940,0,1455,2910,3057,2970,3069,3068,2772,3069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,223,6480,21575,61373,218619,61860,10497,3064,2745,2269,1693,18678,11196,19518,21607,0,0,77,409,122,528,13,0,63,133,9,79,49,17,6,9
179,1223, Far EasTone Telecommunications,Y,619100,Internet access services,TW,1,0,0,0,0,0,187505408,165679360,169500672,165306112,165228032,109587456,0,78554624,157121024,162363648,157129984,162373376,162401536,146699776,162566912,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,31664,26297,18383,17980,17924,12066,0,7829,15704,16248,15739,16286,16396,14866,17042,0,3,1,0,2,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,1,0,2,0,0,5,0,0,0,0,0,0,0,0,0,1450,1187478,364630,313805,1611691,480211,145200,720570,257550,45477,12307,28926,36285,1030088,2353582,0,0,542,1010,196,465,632,0,845,5992,243,511,253,17,259,154
180,1226,Chunghwa Telecom Co Ltd,Y,619100,Internet access services,TW,1,0,0,0,0,0,536308640,483415584,531944160,513005760,513739456,343162528,0,256282592,514241184,529117184,514967040,532117248,528458240,477244416,528252160,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,0,8774,9370,12665,12110,12229,7907,0,4307,8742,9034,8790,9079,9433,9152,9642,6,10,25,6,6,41,95,91,13,2,2,2,4,1,2,1,27,4,7,5,15,11,8,8,6,30,37,10,8,5,14,13,5,9,21,2,1,41,93,91,15,2,2,3,4,1,14,0,0,19426,32914708,27825215,8839403,39212762,13225582,5489500,3493440,1871967,296452,127335,132694,370627,3299007,5917001,0,0,8454,19540,6862,28060,3226,0,14481,79039,1883,5693,10443,19023,18558,13981
181,1237,Mackay Telecommunication Inc,Y,611000,Telecommunications network operation,TW,0,0,0,0,0,0,507904,458752,507904,491520,491520,327680,0,245760,491520,507904,491520,507904,507904,458752,507904,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
182,1238,Asia Pacific On-line Service Inc,Y,611000,Telecommunications network operation,TW,0,0,0,0,0,0,54999552,49514496,54393344,52900864,52638720,35092480,0,29022720,56472576,56427008,55206400,57241088,55895296,50398208,55798016,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,2219,1979,2170,2104,2100,1400,0,1170,2280,2407,2500,2630,2693,2436,2697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,9731,32439,81032,777340,507819,167434,7245,1207,2328,786,630,53887,177927,420019,0,0,3,64,12,12,5,0,90,82,17,218,56,0,15,5
183,1240,Taiwan Network Information Center,Y,611000,Telecommunications network operation,TW,0,0,0,0,0,0,15872,14336,15360,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,62,56,60,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
184,1244,Gamania Digital Entertainment Network,N,620101,Development of computer games,TW,1,0,0,0,0,0,605952,551936,618240,607232,590592,395264,0,303360,614656,650752,623104,634880,667136,602112,666624,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,631,588,679,692,627,417,0,330,691,775,724,713,752,672,744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,35,31,30,1325,167,31,33,44,31,39,34,23,3,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0
185,1248,Neto Corporation,N,619100,Internet access services,TW,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
186,1249,TISNET Technology Inc,Y,619100,Internet access services,TW,0,0,0,0,0,0,2618880,2365440,2618880,2534400,2534400,1689600,0,1267200,2534400,2618880,2534400,2618880,2618880,2365440,2618880,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,310,280,310,300,300,200,0,150,300,310,300,310,310,280,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,368,1599,214,53,53,53,33,16,31,18,11,10,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,1
187,1250,Price Waterhouse Taiwan,Y,661901,Investment advisory services,TW,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
188,1251,Seeder Computer Corporation Ltd,N,619100,Internet access services,TW,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
189,1252,TANet2,Y,721000,Research and development on natural sciences and engineering,TW,1,0,0,0,0,0,3342032,3035408,3174896,2957792,3028448,2011968,0,1763312,4882912,5884128,6356656,6454496,6520800,5856128,6302176,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,618,563,431,385,649,434,0,293,399,518,546,554,534,468,496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,90,152,78,172,106,107,253,167,222,79,29,48,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
190,1253,FIC Network Service Inc,N,619100,Internet access services,TW,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
191,1254,Nap Communication Inc,Y,619100,Internet access services,TW,0,0,0,0,0,0,2150656,1930240,2126592,2058240,2058240,1372160,0,1025280,2050560,2118912,2047232,2110976,2110976,1906688,2102784,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,775,652,681,660,660,440,0,315,630,651,617,620,620,560,588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,51,45,42,42,32,33,31,30,26,8,22,7,14,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
192,1260,PUNET Taiwan,Y,619100,Internet access services,TW,0,0,0,0,0,0,896768,809984,896768,867840,867840,578560,0,433920,867840,896768,867840,896768,896768,809984,896768,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,155,140,155,150,150,100,0,75,150,155,150,155,155,140,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,73,62,60,80,76,39,31,30,31,30,31,31,28,31,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0
193,1261,Symphox Information Co Ltd,Y,478299,Other retail sale not via stores and movable stalls,TW,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
194,1262,Diyixian.com (TW) Limited,Y,619100,Internet access services,TW,1,1,0,0,1,0,1420544,1283072,1457408,1436160,1436160,957440,0,718080,1436160,1484032,1436160,1484032,1484544,1340416,1484032,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,589,532,607,600,600,400,0,300,600,620,600,620,622,560,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,207,244,227,98,115,113,96,69,88,70,56,73,53,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
195,1264,Academic Sinica Network,Y,721000,Research and development on natural sciences and engineering,TW,0,0,0,0,0,0,2158592,1949696,2158592,2088960,2088960,1392640,0,1044480,2088960,2158592,2088960,2158592,2158592,1949696,2158592,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,13,669,2378,698,408,628,408,151,131,134,126,216,158,77,155,0,0,0,38,2,3,0,0,0,0,0,0,1,0,0,1
196,1266,Hitron Technologies Inc,Y,261100,Manufacture of electronic parts and components for computer and telecommunications equipment,TW,1,0,0,0,0,0,452352,408576,452352,442368,453120,302080,0,226560,459264,476160,460800,476160,476160,430080,504832,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1395,1260,1395,1368,1410,940,0,705,1434,1488,1440,1488,1488,1344,1600,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,862,1787,30,44,31,31,17,22,45,41,43,41,717,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0
197,1267,Chief Telecom Inc,Y,611000,Telecommunications network operation,TW,1,0,0,0,0,0,188160,465920,511744,364032,345600,227328,0,249600,461312,509696,499200,515840,515840,465920,515840,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,64,112,123,102,120,78,0,120,208,242,240,248,248,224,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,57,101,87,87,90,200,75,92,79,81,44,39,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
198,1270,ETWebs Taiwan Co Ltd,N,619100,Internet access services,TW,0,0,0,0,0,0,7343872,7003136,7753472,7503360,7503360,5002240,0,2031360,4062720,3697920,2987520,3087104,733696,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,533,504,558,540,540,360,0,210,420,339,210,217,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,2225,4886,902,4962,734,217,213,451,272,101,0,0,0,0,0,0,0,3,5,27,0,0,4,25,0,0,0,0,0,0
199,1271,KbTelecom,Y,619100,Internet access services,TW,0,0,0,0,0,0,87059968,79493888,89465344,86498048,87053824,58024960,0,42251008,76068096,88805120,85946368,88816384,88807936,80217088,88803584,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,0,2295,2115,2403,2359,2374,1565,0,1037,2094,2392,2338,2436,2403,2184,2398,2,0,1,42,36,13,71,64,4,0,4,0,0,0,0,0,4,0,2,40,23,2,0,21,0,2,4,1,1,0,0,0,0,0,0,40,38,13,91,60,5,0,4,0,0,0,1,0,0,275,133487,238947,1537798,2684381,821196,437259,1064176,540466,46423,4595,28951,26143,419340,964162,0,0,235,1465,245,935,60,0,189,516,67,387,411,67,59,47
200,1276,Taiwan Internet Gateway,Y,619100,Internet access services,TW,0,0,0,0,0,0,687616,616448,682496,673536,791040,527360,0,395520,791040,817408,791040,817408,817408,738304,821504,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,640,560,620,606,660,440,0,330,660,682,660,682,682,616,698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,100,98,90,80,1428,1614,62,61,47,30,31,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0
201,1277,Trade-Van Informaiton Services Co,Y,619100,Internet access services,TW,0,0,0,0,0,0,563456,508928,563456,545280,545280,361984,0,276480,552960,571392,552960,571392,578560,523264,577536,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,310,280,310,300,300,194,0,165,330,341,330,341,369,336,365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,29,31,30,31,30,31,20,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
202,1278,SaveCom Internation Inc,Y,611000,Telecommunications network operation,TW,0,0,0,0,0,0,11332608,10235904,11563264,11198720,11454464,7557120,0,5729280,11458560,11840512,11458560,12231680,12686336,11751424,13927424,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1302,1176,1698,1940,2484,1640,0,1020,2040,2108,2040,2270,2014,1856,2284,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,2,6,0,10,2,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,4,0,0,27,170749,27636,23803,164109,34737,37701,7324,831,477,274,588,13950,160359,414408,0,0,78,216,74,139,123,0,30,229,11,116,59,8,12,11
203,1279,Taiwan Telnet Corporation,N,611000,Telecommunications network operation,TW,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
204,1280,Taiwan Textile Research Institute,Y,721000,Research and development on natural sciences and engineering,TW,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
205,1281,IONET Taiwan Co Ltd,Y,619100,Internet access services,TW,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
206,1282,National Broadband Experiment Network,Y,619100,Internet access services,TW,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
207,1283,National Chiao Tung University,Y,853000,Universities and colleges providing post-secondary courses,TW,1,0,1,0,0,0,6094848,5505024,7995392,10868736,10007552,7602176,0,1376256,1968128,2031616,4325376,6094848,5177344,5505024,6094848,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,93,84,122,192,182,116,0,21,32,31,66,93,79,84,93,0,0,1,4,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,4,3,3,0,0,3,0,0,0,0,0,0,0,0,0,1,3,1,0,0,0,5,0,0,0,0,0,0,0,0,35,2808,9239,2027,3769,77392,24999,1155,5788,315,228,385,55428,165385,434837,0,0,7,6,31,28,43,0,2,127,0,0,2,21,2,4
208,1285,NETPOLY Telecom Inc,N,611000,Telecommunications network operation,TW,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
209,1286,KG Telecommunication Co Ltd,Y,619100,Internet access services,TW,0,0,0,0,0,0,9102592,8227840,9126400,8832000,8832000,5888000,0,4416000,8832000,9123328,8824320,9118464,9118464,8236032,9118464,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1953,1782,2015,1950,1950,1300,0,975,1950,2003,1920,1984,1984,1792,1984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,34,32,30,31,30,31,31,34,38,40,41,14,14,31,0,0,1,6,4,1471,3,0,2,3,1,3,3,0,6,1
210,1287,New Century InfoComm Tech Co Ltd,Y,611000,Telecommunications network operation,TW,0,0,0,0,0,0,97160192,87810304,97468416,94568448,95004928,63135488,0,47113728,94644224,98987776,94756608,97918208,97971968,88552448,99934208,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,13322,12163,14097,14027,15023,9872,0,6859,14575,15265,14773,15272,15285,13968,15087,4,47,23,0,1,0,2,2,0,0,1,1,3,1,1,1,2,39,5,0,5,0,23,16,0,1,0,0,0,0,2,36,3,54,25,0,0,0,1,2,0,0,1,1,3,6,0,0,0,93,54213,103231,1148687,848328,634878,256138,220644,43574,40577,9668,17061,15779,368149,1158780,0,0,88,282,107,267,48,0,32,182,33,144,148,1,19,21
211,1290,Atlas Internet & Life International Inc,N,619100,Internet access services,TW,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
212,1291,PCCW Hongkong Telecom Ltd Taiwan Branch,Y,611000,Telecommunications network operation,TW,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
213,1292,WorldCom Taiwan Co Ltd,Y,611000,Telecommunications network operation,TW,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
214,1293,Unigate Telcom Ltd,Y,611000,Telecommunications network operation,TW,0,0,0,0,0,0,452352,408576,495616,499200,499200,332800,0,249600,499200,515840,499200,515840,515840,465920,515840,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,341,308,425,480,480,320,0,240,480,496,480,496,496,448,496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,328,316,803,22995,862,243,19630,185,230,171,169,278,154,217,0,0,0,24,2,14,0,0,0,0,0,0,0,0,0,0
215,1294,EASPNET Inc,Y,619100,Internet access services,TW,1,0,0,0,0,0,507904,458752,507904,491520,491520,327680,0,245760,491520,507904,494848,515840,515840,465920,515840,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,248,224,248,240,240,160,0,120,240,248,253,279,279,252,279,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3,241,2690,72,286,6309,626,2891,419,224,181,112,50,28,31,0,0,0,3,14,1,5,0,0,0,1,1,1,0,2,1
216,1295,YAHOO! TAIWAN,Y,631200,Web portals,TW,1,0,0,0,0,0,4849392,4248992,4849392,4692960,4692960,3128640,0,2346480,4668384,4817648,4686816,4881136,4881136,4408768,4881136,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,744,669,744,720,720,480,0,360,696,713,702,744,744,672,744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1
217,1298,Suio Inc ADSL Internet Service Provider,N,619100,Internet access services,TW,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
218,1299,Trans World Communication Co Ltd,Y,619100,Internet access services,TW,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
219,1300,DWINS Digital Service Corp,Y,619100,Internet access services,TW,1,0,0,0,0,0,246016,222208,246016,238080,238080,158720,0,119040,238080,246016,238080,246016,253440,229376,253952,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,155,140,155,150,150,100,0,75,150,155,150,155,184,168,186,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,3,29,31,30,64,129,36,47,30,31,30,31,33,41,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
220,1301,TRANSASIA INFORMATION SERVICES Inc,N,619100,Internet access services,TW,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
221,1302,Acer CyberCenter Services Inc,Y,619100,Internet access services,TW,1,0,1,1,1,0,888832,802816,888832,860160,860160,573440,0,430080,860160,888832,860160,888832,888832,802816,888832,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,124,120,120,80,0,60,120,124,120,124,124,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,29,31,24,28,31,30,20,10,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0
222,1304,AboveNet Communications Taiwan / Chief Telecom,Y,611000,Telecommunications network operation,TW,0,0,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,39936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,45,90,93,90,93,93,84,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185770,24436,2,16,0,0,4,11,19,4,10,0,0,0,0,0,549,76,0,0,0,0,0,0,0,0,0,0,0
223,1305,Asia Pacific Telecom,Y,611000,Telecommunications network operation,TW,0,0,0,0,0,0,22476032,20306944,22494976,21765120,21765120,14510080,0,10890240,22763520,25046016,24240640,25053952,25756928,23568384,25946112,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,997,924,1041,930,930,620,0,495,1014,1085,1060,1116,1132,1036,1138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,104,187,247,128,71,172,188,88,110,147,222,166,157,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
224,1306,President Information Corp,Y,712000,Technical testing and analysis,TW,0,0,0,0,0,0,206336,186368,212480,208896,207360,137472,0,99840,199680,206336,199680,206336,206336,186368,206336,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,148,156,150,97,0,60,120,124,120,124,124,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1930,3219,36,31,34,31,38,30,37,32,34,31,28,31,0,0,21,56,0,0,0,0,0,0,0,0,0,0,0,0
225,1307,National Dong Hwa University,Y,853000,Universities and colleges providing post-secondary courses,TW,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
226,1308,National Chung Cheng University,Y,853000,Universities and colleges providing post-secondary courses,TW,1,0,0,0,0,0,0,0,3168256,7902208,7815168,4915200,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,59,150,135,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1275,701,5610,15991,0,0,0,0,0,0,0,0,0,0,0,0,4,10,1,1,0,0,0,0,0,0,0,0,0
227,1309,National Sun Yat-sen University,Y,853000,Universities and colleges providing post-secondary courses,TW,1,0,1,0,0,0,2031616,1835008,5265408,9256960,8083456,4474880,0,1447936,2373632,2031616,3497984,2031616,2031616,1835008,2031616,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,91,180,179,84,0,28,50,31,69,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,78,7327,603,373,426,93,104,53,52,72,2595,2861,19546,31,0,0,0,3,2,5,1,0,0,0,0,3,1,0,1,1
228,1310,National Taiwan University,Y,853000,Universities and colleges providing post-secondary courses,TW,1,0,1,0,0,0,2380800,2150400,6028288,10110976,9906176,7498752,0,1569792,2762752,2380800,3444736,2380800,2380800,2150400,2380800,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,247,407,377,258,0,69,127,124,184,124,124,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,2306,8950,4692,3846,3755,2925,1868,2360,2886,2804,91,148,269,155,0,0,0,10,24,69,17,0,6,1,0,3,0,0,0,0
229,1311,Ministry of Education Computer Center Taipei Taiwan,Y,853000,Universities and colleges providing post-secondary courses,TW,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
230,1312,Veetime,Y,619100,Internet access services,TW,1,0,0,0,0,0,11626496,10723328,11872256,11485184,11489280,7659520,0,5744640,11489280,11872256,11489280,11872256,11879680,10730496,11876096,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1676,1568,1736,1678,1680,1120,0,840,1680,1736,1680,1736,1765,1596,1751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,15585,27118,16170,119074,20557,35988,134523,51775,21512,4394,1816,4468,23716,341,0,0,24,82,9,15,6,0,1,4,0,33,61,4,6,19
231,1314,Mobitai ISP Network Information Center,N,611000,Telecommunications network operation,TW,0,0,0,0,0,0,172032,114688,126976,122880,122880,81920,0,61440,122880,126976,122880,126976,126976,114688,126976,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,42,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
232,1315,GETOP Automatic System Inc,Y,264000,Manufacture of audio and video equipment,TW,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
233,1316,King-Net Info Tech Co Ltd,Y,619100,Internet access services,TW,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
234,1317,SinoPac Holdings Corporate Network,Y,661999,Other miscellaneous activities auxiliary to financial service activities n.e.c.,TW,1,0,0,0,0,0,95232,86016,95232,92160,92160,61440,0,46080,92160,99328,99840,103168,103168,93184,103168,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,372,336,372,360,360,240,0,180,360,388,390,403,403,364,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,30,29,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
235,1318,DongFong Technology Co Ltd,Y,619100,Internet access services,TW,0,0,0,0,0,0,1983488,1784576,2177536,2287104,2033920,1740288,0,1401856,2900992,3017728,2891776,2980864,2806272,2707968,2528768,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,881,809,987,1139,959,681,0,548,1164,1209,1170,1259,1383,1310,1265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,163,795,725,6078,10817,230,4376,261,128,64,125,346,18039,155,0,0,2,100,24,45,3,0,0,4,0,0,3,0,4,7
236,1319,National Tsing-Hua University,Y,853000,Universities and colleges providing post-secondary courses,TW,1,0,1,0,0,0,2031616,1835008,2031616,1966080,1966080,1310720,0,983040,1966080,2031616,1966080,2031616,2269184,2064384,2285568,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,60,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,3918,494,74,4664,73,63,12549,11572,120,135,76,85,225,155,0,0,0,1,3,0,0,0,0,34,78,93,0,0,0,0
237,1320,Taiwan Infrastructure Network Technologie,Y,619100,Internet access services,TW,0,0,0,0,0,0,10556416,9626624,10948608,13995008,14010624,9333760,0,4642560,9291264,9602560,9292800,9602560,9607424,8680448,10164992,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,3411,3332,3777,4193,4269,2820,0,1050,2124,2201,2130,2201,2220,2016,2366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,38518,59857,100068,62382,9050,1072,49224,66791,1814,755,367,1398,77288,165292,0,0,116,678,112,10479,6,0,21,59,1,56,57,8,14,10
238,1321,National Cheng Kung University,Y,853000,Universities and colleges providing post-secondary courses,TW,1,0,1,0,0,0,0,1769472,3206144,6551552,6633472,3769344,0,236544,28672,0,1928192,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,27,131,266,247,159,0,12,7,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,1561,643,6298,698,0,12,14,0,28,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0,0,0
239,1322,AT&T,N,611000,Telecommunications network operation,TW,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
240,1323,MiTAC Inc,Y,619100,Internet access services,TW,1,0,0,0,0,0,126976,114688,126976,122880,122880,81920,0,61440,122880,126976,122880,126976,126976,114688,126976,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,29,31,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
241,1324,1111 Job Bank,Y,619100,Internet access services,TW,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
242,1325,National Health Research Institutes,Y,721000,Research and development on natural sciences and engineering,TW,1,0,0,0,0,0,190464,172032,190464,184320,184320,122880,0,92160,184320,190464,184320,190464,249856,229376,253952,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,91,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,52,848,327,2398,52,51,59,106,53,45,51,56,48,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
243,1326,Sony Network Taiwan Limited,Y,619100,Internet access services,TW,1,0,0,0,0,0,22855680,20643840,23347200,23347200,23339008,15736832,0,15228928,30490624,32063488,30973952,31997952,31784192,28670976,32005888,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1023,924,1083,1140,1139,781,0,1004,2012,2147,2071,2139,2141,1931,2170,2,0,0,2,0,0,0,0,1,0,0,0,1,1,0,0,1,0,0,4,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,1,0,0,0,1,2,0,0,0,560,314384,407294,218429,1149131,278852,33071,92982,91509,24620,3567,6682,5293,23375,14477,0,0,58,180,105,222,788,0,1972,5951,9,19,56,7,14,21
244,1327,National Center for Research on Earthquake Engineering,Y,721000,Research and development on natural sciences and engineering,TW,0,0,0,0,0,0,230144,207872,230144,222720,222720,148480,0,111360,222720,230144,222720,230144,230144,207872,230144,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,124,120,120,80,0,60,120,124,120,124,124,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
245,1328,Mediaring Network Services Pte Ltd,N,619100,Internet access services,SG,0,0,0,0,0,0,1547776,1505280,1655552,1595648,1644800,2053120,0,1597440,1716224,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1396,1680,1835,1763,1955,1464,0,885,992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,169,200,142,562,200,165,610,69,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0
246,1329,104 Information Technology Co Ltd,Y,781000,Activities of employment placement agencies,TW,1,0,1,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,1024,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
247,1330,EDT Network Services Limited Co Ltd,Y,619100,Internet access services,TW,1,0,0,0,0,0,261888,236544,261888,253440,253440,168960,0,142080,284160,293632,284160,293632,256512,229376,253952,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,105,210,217,210,217,72,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,29,31,30,31,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
248,1331,Great Taipei Broadband Company Ltd,Y,619100,Internet access services,TW,0,0,0,0,0,0,1269760,1146880,1269760,1228800,1228800,819200,0,614400,1228800,1269760,1228800,1269760,1269760,1146880,1269760,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,310,280,310,300,300,200,0,150,300,310,300,310,310,280,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,298,45,34,31,40,54,62,60,46,39,36,38,36,31,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0
249,1332,National Center for High-performance Computing,Y,619100,Internet access services,TW,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
250,1333,B-WIZ Technology,Y,620200,Information technology consultancy activities and computer facilities management activities,TW,0,0,0,0,0,0,239872,164864,221440,182784,191488,133120,0,99840,199936,206336,199680,206336,206336,186368,206336,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,343,196,305,211,268,200,0,150,301,310,300,310,310,280,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,29,31,30,48,28,31,25,32,57,30,45,37,39,62,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0
251,1334,Genmart Tech Co lmt,Y,266000,"Manufacture of irradiation, electromedical and electrotherapeutic equipment",TW,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
252,1335,National Central University,Y,853000,Universities and colleges providing post-secondary courses,TW,1,0,1,0,0,0,2031616,1835008,2031616,1966080,1966080,1310720,0,983040,1966080,2031616,1966080,2031616,2031616,1835008,2031616,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,9,288,116,222,802,186,221,150,218,156,179,251,164,6161,62,0,0,0,2,3,15,1,0,0,0,3,10,8,0,7,6
253,1336,Taishin International Bank,Y,641201,Licensed banks,TW,0,0,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
254,1337,Industrial Technology Research Institute,Y,721000,Research and development on natural sciences and engineering,TW,1,0,0,0,0,0,6991616,6315008,6991616,6766080,6766080,4510720,0,3383040,6766080,6991616,6766080,6991616,6991616,6315008,6991616,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,806,728,806,780,780,520,0,390,780,806,780,806,806,728,806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,23,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
255,1338,CHUNGHWA WIDEBAND BEST NETWORK Co Ltd,Y,619100,Internet access services,TW,0,0,0,0,0,0,253952,229376,245760,245760,229376,163840,0,122880,245760,253952,245760,253952,253952,229376,253952,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,60,60,56,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
256,1339,NTT Taiwan Ltd,N,721000,Research and development on natural sciences and engineering,TW,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
257,1340,National Applied Research Laboratories,Y,721000,Research and development on natural sciences and engineering,TW,1,0,0,0,0,0,63488,57600,63488,61440,61440,40960,0,30720,61440,67584,61440,63488,63488,57344,63488,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,29,31,30,30,20,0,15,30,47,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
258,1341,PChome Online,Y,478201,Retail sale via mail order or internet,TW,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
259,1342,China United Telecom Corp,Y,611000,Telecommunications network operation,TW,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
260,1343,Taiwan Semiconductor Manufactoring Company Ltd,Y,261100,Manufacture of electronic parts and components for computer and telecommunications equipment,TW,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
261,1344,Digicell Entertainment Co Ltd,Y,620101,Development of computer games,TW,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
262,1345,Asia Pacific Broadband Fixed Lines Co Ltd,Y,619100,Internet access services,TW,0,0,0,0,0,0,3188224,2852864,3174400,3087360,3088384,2068224,0,1551360,3107328,3227392,3125760,3229952,3250432,2938880,3257856,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1951,1680,1891,1860,1864,1279,0,960,1938,2067,2010,2077,2157,1960,2186,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,897,3045,1111,909,806,864,428,467,156,181,264,447,1991,186,0,0,2,4,4,8,0,0,1,1,0,5,0,0,1,0
263,1347,Sony Taiwan Limited,Y,275000,Manufacture of domestic electric appliances,TW,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
264,1348,Vibo Telecom Inc,Y,611000,Telecommunications network operation,TW,1,0,0,0,0,0,12824576,11583488,12825600,12418560,12418560,8348672,0,6854400,13731328,14274304,13807104,14233344,14193152,12787712,14157824,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1922,1736,1926,1890,1890,1294,0,1260,2531,2657,2568,2637,2592,2324,2573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,1578,3343,27566,222512,105459,128271,1037,1603,861,733,4279,3180,7060,9455,0,0,48,281,46,187,0,0,33,41,10,40,12,0,0,0
265,1349,Tong Ya Cable T.V. Co Ltd,Y,602000,Television programming and broadcasting activities,TW,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
266,1350,Chi Mei Corporation,Y,222999,"Manufacture of miscellaneous plastics products n.e.c. (except furniture, toys, sports goods and stationery)",TW,0,0,0,0,0,0,126976,114688,126976,122880,122880,81920,0,61440,122880,126976,122880,126976,126976,114688,126976,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
267,1351,Lanwin Communication Co Ltd,Y,611000,Telecommunications network operation,TW,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
268,1352,UNION BROADBAND NETWORK,Y,611000,Telecommunications network operation,TW,0,0,0,0,0,0,2031616,1835008,2031616,1969664,1966592,1315584,0,983040,1966080,2031616,1966080,2031616,2031616,1835008,2031616,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,44,32,39,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,2344,39554,15218,18704,489,236,3644,627,2871,176,174,209,11993,310,0,0,2,74,18,28,0,0,0,0,0,22,14,0,3,1
269,1353,YEONG JIA LEH CABLE TV Co Ltd,Y,602000,Television programming and broadcasting activities,TW,0,0,0,0,0,0,6793216,6135808,6798592,6589440,6589184,4395264,0,3287040,6574080,6793216,6574080,6793216,6793216,6135808,6793216,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,341,308,362,390,389,269,0,165,330,341,330,341,341,308,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,13910,37006,55820,332100,42728,2941,18534,37447,1678,865,971,746,8531,558,0,0,177,685,92,565,61,0,193,359,44,254,129,3,11,19
270,1354,PHOENIX CATV Co Ltd,Y,602000,Television programming and broadcasting activities,TW,0,0,0,0,0,0,507904,458752,507904,495360,497152,327680,0,245760,491520,507904,491520,507904,507904,458752,507904,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,45,52,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,67344,6954,14295,8813,269,165,76838,14045,150,118,3106,8756,65,62,0,0,41,144,13,6,1,0,1,0,0,0,1,0,6,0
271,1355,Grand Tainan Technology Co Ltd,Y,602000,Television programming and broadcasting activities,TW,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
272,1356,Academia Sinica Grid Computing Center,Y,853000,Universities and colleges providing post-secondary courses,TW,1,0,0,0,0,0,428544,386816,428544,414720,414720,276480,0,207360,414720,428544,414720,428544,428544,387072,428544,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,155,139,155,150,150,100,0,75,150,155,150,155,155,140,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
273,1357,WIS Internet Inc,Y,329600,"Manufacture of advertising displays (except electric, neon and illuminated signs)",TW,1,1,0,0,0,0,126976,111616,126976,122880,122880,81920,0,61440,122880,126976,122880,126976,126976,114688,126976,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,81,93,90,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
274,1358,Chuan Chan Co Ltd,Y,460741,Wholesale of chemicals and allied products,TW,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
275,1359,CNLink,Y,620200,Information technology consultancy activities and computer facilities management activities,TW,0,0,0,1,0,0,134912,121856,134912,130560,130560,87040,0,65280,130560,134912,130560,134912,134912,121856,134912,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,527,476,527,510,510,340,0,255,510,527,510,527,527,476,527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
276,1360,AION TECHNOLOGIES Inc,Y,620199,Development of other softwares and programming activities,TW,1,0,0,0,0,0,39680,35840,39680,38400,38400,25600,0,19200,38400,39680,38400,39680,39680,35840,39680,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,155,140,155,150,150,100,0,75,150,155,150,155,155,140,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
277,1361,KE-ing Co Ltd,Y,602000,Television programming and broadcasting activities,TW,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
278,1362,Tatung InfoComm Co Ltd,Y,611000,Telecommunications network operation,TW,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
279,1363,VMAX Telecom Co Ltd,Y,611000,Telecommunications network operation,TW,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
280,1364,Global Mobile Corp,Y,611000,Telecommunications network operation,TW,1,0,0,0,0,0,2603008,2351104,2519040,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
281,1365,PUMO NETWORK DIGITAL TECHNOLOGY Co Ltd,Y,619100,Internet access services,TW,0,0,0,0,0,0,1182464,1068032,1182464,1144320,1144320,762880,0,572160,1119744,1182464,1144320,1182464,1182464,1068032,1182464,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1705,1540,1705,1650,1650,1100,0,825,1610,1705,1650,1705,1705,1540,1705,0,1,2,0,1,8,0,1,6,0,1,1,3,0,0,0,0,4,0,0,1,15,3,0,2,0,3,1,1,0,0,0,0,0,2,0,0,7,0,1,6,0,1,1,3,0,0,0,0,44,3133,90877,2244,403,340,293,582,436,545,754,377,547,449,527,0,0,9,2,2,0,1,0,1,1,0,28,5,2,15452,1045
282,1367,National Taiwan Normal University,Y,853000,Universities and colleges providing post-secondary courses,TW,1,1,1,0,0,0,2055424,1856512,2055424,1989120,1989120,1326080,0,994560,1989120,2055424,2218496,3071232,3071232,2774016,3071232,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,124,120,120,80,0,60,120,124,127,155,155,140,155,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,25,220,159,232,59,186,100,96,168,154,58,35,63,62,0,0,0,16,10,0,0,0,42,0,0,7,0,0,0,2
283,1368,Fu Jen Catholic University,Y,853000,Universities and colleges providing post-secondary courses,TW,1,0,1,0,0,0,2031616,1835008,2031616,1966080,1966080,1310720,0,983040,1966080,2031616,1966080,2031616,2031616,1835008,2031616,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,315,39,35,181,206,54,44,89,249,102,88,61,16,31,0,0,1,0,0,0,0,0,0,0,1,0,0,3,0,4
284,1369,National Chung Hsing University,Y,853000,Universities and colleges providing post-secondary courses,TW,1,0,0,0,0,0,1523712,1376256,1523712,1474560,1474560,983040,0,737280,1474560,1523712,1474560,1523712,1523712,1376256,1523712,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,186,168,186,180,180,120,0,90,180,186,180,186,186,168,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,26,31,44,54,27,35,31,2,46,30,40,44,30,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
285,1370,National Yang-Ming University,Y,853000,Universities and colleges providing post-secondary courses,TW,1,0,1,0,0,0,634880,573440,634880,614400,614400,409600,0,307200,614400,634880,614400,634880,634880,573440,634880,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,57,83,67,76,108,96,80,72,104,76,40,30,12,0,0,0,1,0,1,0,2,0,8,0,0,0,0,0,0,0
286,1371,Taiwan International Gateway Corporation,Y,611000,Internet access services,TW,0,0,0,0,0,0,79360,71680,79360,46592,30720,20480,0,11520,46080,47616,46080,47616,32768,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,124,77,30,20,0,45,111,93,90,93,35,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
287,1372,Vocom International Telecommunications Inc Taiwan,Y,611000,Internet access services,TW,0,0,0,0,0,0,263936,241408,269824,261120,263936,181760,0,134400,275200,291584,269312,269824,269824,243712,275456,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,690,635,713,690,701,490,0,360,745,798,722,713,713,644,735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,14,30,16,41,0,9,30,31,18,10,0,11,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
288,1373,Neurv Communications Limited,N,611000,Internet access services,TW,0,0,0,0,0,0,31744,28672,31744,38400,38400,23552,0,15360,30720,31744,30720,31744,31744,28672,15360,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,60,60,32,0,15,30,31,30,31,31,28,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
289,1374,QUICKEN SCIENCE LTD,N,620199,Development of other softwares and programming activities,US,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
290,1375,TWIDC,Y,631100,"Data processing, hosting and related activities",TW,0,0,0,0,0,0,39680,33792,31744,30976,30720,20480,0,15104,30720,31744,34048,39680,39680,35840,35584,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,155,132,124,121,120,80,0,59,120,124,133,155,155,140,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,12,8,11,63,66,72,131,72,91,35,65,49,93,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
291,1376,AUSTRALIA AND NEW ZEALAND BANKING GROUP LIMITED,Y,641201,Licensed banks,TW,1,1,0,1,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
292,1377,NameCentral,N,631100,"Data processing, hosting and related activities",US,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
293,1378,TWT Network Technology Inc,Y,602000,Television programming and broadcasting activities,TW,1,0,0,0,0,0,158720,143360,158720,153600,153600,102400,0,76800,153600,158720,153600,158720,158720,143360,158720,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,338,255,551,157,223,208,47,75,226,103,180,60,62,0,0,0,34,20,74,0,0,25,17,24,76,12,0,0,0
294,1379,China Trust Commercial Bank,Y,641201,Licensed banks,TW,1,0,0,0,0,0,253952,229376,253952,245760,245760,163584,0,122880,245760,253952,245760,253952,253952,229376,253952,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,465,420,465,450,450,299,0,225,450,465,450,465,465,420,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
295,1380,ASUSTek COMPUTER Inc,Y,262000,Manufacture of computers and peripheral equipment,TW,1,1,1,1,1,0,63488,57344,63488,61440,61440,40960,0,30720,61440,63488,61440,63488,63488,57344,63488,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,155,140,155,150,150,100,0,75,150,155,150,155,155,140,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
296,1381,Chang Gung University,Y,853000,Universities and colleges providing post-secondary courses,TW,1,0,1,0,0,0,960256,853248,960256,929280,929280,619520,0,464640,550144,61696,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,682,607,682,660,660,440,0,330,375,36,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,247,818,1442,1474,2184,997,419,200,20,0,0,0,0,0,0,0,6,0,0,1,6,0,0,0,0,0,0,0,0,0
297,1382,Bank of Taiwan,Y,641201,Licensed banks,TW,1,0,1,0,0,0,95232,86016,95232,92160,92160,61440,0,46080,86016,95232,92160,95232,35840,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,217,196,217,210,210,140,0,105,196,217,210,217,130,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,26,45,30,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
298,1383,Yuan-Jhen Info Co Ltd,Y,611000,Telecommunications network operation,TW,1,0,0,0,0,0,168448,131840,150784,145920,145920,93952,0,92160,184320,190464,184320,190464,220160,200704,222208,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,273,235,279,270,270,167,0,150,300,310,300,310,368,336,372,1,0,0,3,2,1,0,0,0,0,0,0,0,0,0,1,7,0,0,14,5,1,14,0,3,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,29,14202,425,31,30,31,31,30,37,34,36,23,13,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
299,1384,Education Bureau Kaohsiung City Government Taiwan,Y,853000,Universities and colleges providing post-secondary courses,TW,0,0,0,0,0,0,269824,243712,252928,245760,245760,173568,0,130560,261120,269824,261120,269824,243200,186368,206336,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,310,280,286,240,240,179,0,135,270,279,270,279,253,196,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,22,77,47,38,30,1914,3544,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0
300,1385,NCSoft,Y,620101,Development of computer games,TW,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
301,1386,Sinotech,Y,620200,Information technology consultancy activities and computer facilities management activities,TW,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
302,1387,Taiwan Intelligent Fiber Optic Network Co Ltd,Y,611000,Internet access services,TW,0,0,0,0,0,0,158720,143360,158720,172032,1034240,1781760,0,1336320,2680832,2888704,2795520,2898944,2893824,2614272,2888704,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,124,129,170,140,0,105,212,248,240,258,253,229,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,96,85,76,136,153,126,165,103,63,110,176,137,130,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
303,1388,Mega International Commercial Bank,Y,641201,Licensed banks,TW,0,0,0,0,0,0,39680,35840,39680,38400,41984,35840,0,26880,53760,55552,53760,55552,55552,50176,55552,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,74,80,0,60,120,124,120,124,124,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
304,1389,Financial Information Service Co Ltd,Y,829900,Other miscellaneous business support service activities n.e.c.,TW,0,0,0,0,0,0,23808,21504,23808,23040,23040,15360,0,11520,23040,23808,23040,23808,23808,21504,23808,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
305,1390,Foxconn Technology Group,Y,729000,General and miscellaneous research and development services,TW,1,0,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1196,5530,50660,4232,1721,386,406,540,385,1590,1113,174,386,465,0,0,1,3,0,0,0,0,20,61,9,38,30,0,1,0
306,1392,Taiwan Cooperative Bank,Y,641201,Licensed banks,TW,1,0,0,0,0,0,63488,57344,63488,61440,61440,40960,0,30720,60928,63488,61440,63488,63488,57344,63488,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,124,120,120,80,0,60,119,124,120,124,124,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
307,1393,PEGATRON,Y,751400,Industrial design services,TW,1,0,0,0,0,0,63488,57344,63488,61440,61440,40960,0,30720,61440,63488,61440,63488,63488,57344,63488,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,155,140,155,150,150,100,0,75,150,155,150,155,155,140,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
308,1394,NetWave CATV Corporation,Y,602000,Television programming and broadcasting activities,TW,1,0,0,0,0,0,0,65280,134912,327168,555776,653568,0,600576,1139712,1378816,1251840,1078016,1087488,965632,1059328,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,30,62,214,313,303,0,272,494,653,610,538,569,481,511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,119870,67143,274,445,413,350,301,156,65,131,78,124,0,0,0,0,50,3,0,0,1,4,0,0,0,0,3,18
309,1395,Shih-Hsin Cable Television Corporation,Y,602000,Television programming and broadcasting activities,TW,0,0,0,0,0,0,0,0,0,0,0,0,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
310,1396,WELL-POWER Tech Corp,Y,631100,"Data processing, hosting and related activities",TW,0,0,0,0,0,0,23808,21504,23808,23040,27648,20480,0,15360,30720,31488,30720,31744,31744,28672,35840,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,108,80,0,60,120,123,120,124,124,112,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
311,1397,CHUAN KAI INTERNATIONAL Co Ltd,Y,631100,"Data processing, hosting and related activities",TW,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
312,1398,iPerform Inc,Y,631100,"Data processing, hosting and related activities",TW,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
313,1399,Serverfield Limited,N,611000,Internet access services,UK,0,1,0,0,0,0,55552,50176,55552,53760,53760,35840,0,26880,53760,55552,30464,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,217,196,217,210,210,140,0,105,210,217,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,31,26,9,0,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
314,1400,Blackboard (Australia) Pty Limited,N,855000,Educational support services,SG,1,1,0,1,0,0,7936,7168,7936,7680,7168,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,28,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
315,1401,LinkedIn,N,639900, Other information service activities n.e.c.,US,1,1,1,1,1,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
316,1403,SimplerCloud Pte Ltd,N,631100,"Data processing, hosting and related activities",SG,1,1,0,0,0,0,63488,57344,63488,61440,61440,40960,0,30720,61440,63488,61440,63488,63488,57344,63488,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,96,1590,261,88,121,146,74,130,45,30,46,39,29,0,0,0,0,2,4,2,0,0,2,2,0,0,1,0,0,0
317,1404,WIZ TECHNOLOGIES (S) PTE LTD,N,631100,"Data processing, hosting and related activities",SG,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
318,1405,Scaffnet Pte Ltd,N,619900,Other miscellaneous telecommunications activities n.e.c.,SG,1,1,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
319,1406,Macarius Global Services Pte Ltd,N,721000,Research and development on natural sciences and engineering,SG,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
320,1407,Agora Communications Pte Ltd,N,619000,Internet access services,SG,1,0,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,5,4,14,0,624,1189,1968,4216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0
321,1408,Texas Instruments Inc,N,268000,Manufacture of magnetic and optical media,SG,1,1,0,0,1,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
322,1409,OneAsiaHost,N,631100,"Data processing, hosting and related activities",SG,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
323,1410,CLOUD TELECOM,N,619900,Other miscellaneous telecommunications activities n.e.c.,SG,0,0,0,0,0,0,38400,28672,31744,35328,38400,25600,0,3840,7680,7936,7680,7936,128000,143616,192512,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,119,84,93,108,120,80,0,15,30,31,30,31,500,561,752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
324,1412,DataPipe,N,631100,"Data processing, hosting and related activities",SG,1,1,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
325,1413,PhoenixNAP,N,639900, Other information service activities n.e.c.,SG,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29696,28672,105472,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,29,28,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
326,1414,BLUE JEANS NETWORK,N,591100,"Motion picture, video and television programme production activities",SG,1,1,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
327,1415,GMO INTERNET PTE LTD,N,619100,Internet access services,SG,1,1,0,0,0,0,539648,487424,539648,522240,522240,348160,0,261120,522240,539648,522240,539648,539648,487424,539648,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,45,90,93,90,93,93,84,93,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,9,180,3590,121,201,963,218,286,65,43,149,115,288,242,310,0,0,2,13,17,40,2,0,3,0,2,2,0,0,2,1
328,1416,BBIX SINGAPORE Pte Ltd,N,639900,Other information service activities n.e.c,SG,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
329,1417,Basic Brix LLP,N,631100,"Data processing, hosting and related activities",SG,1,1,0,0,0,0,39680,35840,39680,38400,38400,25600,0,19200,38400,39680,38400,39680,39680,35840,39680,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
330,1418,Megaport Singapore Pte Limited,N,261100,Manufacture of electronic parts and components for computer and telecommunications equipment,SG,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
331,1419,1-Net Singapore Pte Ltd,N,631100,"Data processing, hosting and related activities",SG,1,1,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
332,1421,DBS Asia Hub,N,649299,"Personal loan, mortgage, instalment credit and other credit granting",SG,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
333,1422,AbbVie Inc,N,477202,Retail sale of medicines and health supplements (with or without selling cosmetics and personal care products),SG,1,1,0,1,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,27,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
334,1423,THE ROYAL BANK OF SCOTLAND PLC,N,661201,Investment banking activities,SG,1,1,0,0,1,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
335,1424,ESSEC Business School,N,855000,Educational support services,SG,1,1,1,1,1,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7680,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,30,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
336,1425,McKinsey & Company,Y,702200,Business management and consultancy services,HK,1,1,1,1,0,0,73728,71680,79360,76800,87552,61440,0,46080,92160,95232,92160,95232,95232,86016,95232,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,288,280,310,300,321,220,0,165,330,341,330,341,341,308,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
337,1428,Telecom Italia Sparkle Singapore Pte Ltd,N,432106,"Telecommunications equipment, installation and maintenance",SG,1,1,0,0,0,0,7936,7168,7936,7680,4096,5120,0,3840,1792,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,16,20,0,15,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
338,1429,MediaCorp Pte Ltd,N,460437,"Wholesale of recorded audio and video tapes, CDs, DVDs and similar media",SG,1,1,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
339,1430,Bayer South East Asia Pte Ltd,N,211200,"Manufacture of western medicine, diagnostic and therapeutic medicaments, and medical and nursing preparations",SG,1,1,1,1,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
340,1432,Mundipharma IT Services GmbH,N,869900,Miscellaneous human health services n.e.c.,SG,1,1,1,1,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
341,1433,UBER SINGAPORE TECHNOLOGY PTE LTD,N,522999,Other miscellaneous transportation support activities n.e.c.,SG,1,1,1,0,0,0,55552,50176,55552,53760,53760,35840,0,30720,61440,63488,61440,63488,4096,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,155,140,155,150,150,100,0,90,180,186,180,186,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
342,1435,General Motors Asia Pacific Singapore,N,259999,Manufacture of other miscellaneous fabricated metal products n.e.c.,SG,1,1,1,1,1,0,142848,129024,142848,138240,138240,92160,0,69120,138240,142848,138240,142848,142848,129024,142848,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,155,140,155,150,150,100,0,75,150,155,150,155,155,140,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
343,1436,GENERAL MOTORS OVERSEAS DISTRIBUTION LLC,N,259999,Manufacture of other miscellaneous fabricated metal products n.e.c.,SG,1,1,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
344,1437,General Motors Korea,N,259999,Manufacture of other miscellaneous fabricated metal products n.e.c.,KR,1,1,0,0,0,0,63488,57344,63488,61440,61440,40960,0,30720,61440,63488,61440,63488,63488,57344,63488,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
345,1438,General Motors Tech Center India Bangalore,N,259999,Manufacture of other miscellaneous fabricated metal products n.e.c.,IN,0,1,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
346,1439,InMobi Pte Ltd,N,741900,Advertising services n.e.c.,SG,1,1,1,0,0,0,15872,14336,15104,15360,8448,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,59,60,33,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
347,1440,Starwood Asia Pacific Hotels & Resorts Pte Ltd,N,550100,Hotels,SG,1,1,1,0,1,0,31744,28672,31744,30464,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,124,112,124,119,120,80,0,60,120,124,120,124,124,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
348,1442,Digital Ocean Inc,N,631100,"Data processing, hosting and related activities",SG,1,1,0,0,0,0,2106368,1970176,2288640,2334720,2334720,1564672,0,1182720,2365440,2455552,2396160,2480128,2603008,2351104,2668544,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,290,292,351,390,390,268,0,210,420,445,450,466,496,448,512,1,1,2,4,0,2,2,0,0,0,0,0,0,0,1,1,1,1,3,9,0,4,2,0,6,1,4,3,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,748,66140,76370,19728,59701,175533,38372,19396,20781,9412,4518,8139,13394,37950,55118,0,0,272,839,724,1066,1736,0,208,1098,141,1220,899,27,104,231
349,1443,EN Technologies Pte Ltd,N,631200,Web portals,SG,1,1,0,0,0,0,0,0,6912,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,27,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,19,16,24,8,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
350,1444,Airbnb Inc,N,791000,Travel agency activities,SG,1,1,1,1,0,0,0,0,0,0,0,0,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
351,1445,PEPSICO,N,561199,Restaurants n.e.c.,SG,1,1,1,0,1,0,190464,172032,190464,184320,184320,122880,0,92160,183296,190464,184320,190464,190464,172032,190464,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,279,252,279,270,270,180,0,135,268,279,270,279,279,252,279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,50,53,107,87,78,62,23,0,0,46,0,21,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
352,1446,DSI Singapore,N,702200,Business management and consultancy services,SG,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
353,1447,ID.Safe Pte Ltd,N,620200,Information technology consultancy activities and computer facilities management activities,SG,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
354,1448,SAP Asia Pte Ltd,N,702200,Business management and consultancy services,SG,1,1,1,1,0,0,126976,114688,126976,122880,122880,81920,0,61440,122880,126976,122880,126976,126976,114688,126976,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,51,17,25,8,14,2,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
355,1449,Internet Systems Consortium,N,620200,Information technology consultancy activities and computer facilities management activities,US,1,1,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
356,1450,Internet2 ,N,620200,Information technology consultancy activities and computer facilities management activities,US,1,1,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
357,1451,Pacific Internet Malaysia,N,620200,Information technology consultancy activities and computer facilities management activities,MY ,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
358,1453,Neo Soon Keat,N,631100,"Data processing, hosting and related activities",SG,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
359,1454,Woo Huiren,N,620199,Development of other softwares and programming activities,SG,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
360,1455,JPMorgan Singapore,N,661201,Investment banking activities,SG,1,1,0,0,1,0,31744,28672,31744,30720,30720,20480,0,15360,29696,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,29,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
361,1456,SUPERPET.COM PTE LTD,N,201300,Manufacture of plastics and synthetic rubber in primary forms,SG,0,0,0,0,0,0,31744,28672,31744,30720,30720,20480,0,9216,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
362,1457,Over The Top TV,N,619900,Other miscellaneous telecommunications activities n.e.c.,SG,0,0,0,0,0,0,0,0,0,0,0,0,0,3840,15104,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,15,59,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
363,1458,Monkey Telecom,N,619900,Other miscellaneous telecommunications activities n.e.c.,SG,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
364,1459,Mootech Pte Ltd,N,619900,Other miscellaneous telecommunications activities n.e.c.,SG,1,0,0,0,1,0,7936,5120,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
365,1460,CITYLINK SOLUTIONS Pte Ltd,N,620200,Information technology consultancy activities and computer facilities management activities,SG,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
366,1461,SetClear Pte Ltd,N,702200,Business management and consultancy services,SG,1,0,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
367,1462,DCS1 Pte Ltd,N,639900,Other information service activities n.e.c.,SG,0,0,0,0,0,0,79360,71168,79360,76800,66560,40960,0,30720,61440,63488,61440,63488,63488,57344,63488,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,82,93,90,50,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
368,1463,AP TRANSIT PTE LTD,N,619900,Other miscellaneous telecommunications activities n.e.c.,SG,0,0,0,0,0,0,79360,71680,79360,76800,76800,51200,0,38400,76800,79360,76800,79360,79360,71680,79360,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,310,280,310,300,300,200,0,150,300,310,300,310,310,280,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,29,99,126,54,31,7,16,13,3,0,7,31,28,31,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1
369,1464,QMax Communications Pte Ltd,N,619900,Other miscellaneous telecommunications activities n.e.c.,SG,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
370,1465,ReadySpace (SG) Pte Ltd,N,639900,Other information service activities n.e.c.,SG,1,1,0,0,0,0,87296,78848,87296,84480,84480,56320,0,42240,84480,87296,84480,87296,86784,78848,87296,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,341,308,341,330,330,220,0,165,330,341,330,341,339,308,341,0,1,0,0,0,0,0,9,0,0,2,0,0,0,0,0,0,78,0,0,0,0,0,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,2,0,0,1,0,0,0,15,144,6432,520,8841,275,83,62,81,61,39,177,104,46,31,0,0,3,6,3,1,1,0,1,2,0,2,0,1,2,3
371,1466,Webex Communications Inc,N,639900,Other information service activities n.e.c.,US,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
372,1467,Sunflower Ltd,N,619900,Other miscellaneous telecommunications activities n.e.c.,SG,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
373,1468,T-Systems International GmbH,N,639900,Other information service activities n.e.c.,SG,1,1,0,0,0,0,380928,353280,396800,384000,384000,256000,0,192000,388096,396800,384000,396800,396800,358400,462336,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,186,186,217,210,210,140,0,105,226,217,210,217,217,196,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,31,30,31,30,0,16,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
374,1470,Dell AP-Online,N,261100,Manufacture of electronic parts and components for computer and telecommunications equipment,SG,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
375,1471,BNP Paribas,N,661201,Investment banking activities,SG,1,1,1,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
376,1472,Sony Asia Pacific,N,261100,Manufacture of electronic parts and components for computer and telecommunications equipment,SG,1,1,1,1,0,0,222208,200704,222208,215040,215040,143360,0,107520,215040,222208,215040,222208,222208,200704,222208,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
377,1473,Usonyx Pte Ltd,N,631100,"Data processing, hosting and related activities",SG,1,1,0,0,0,0,359424,320000,366080,376320,376320,250880,0,188160,376320,395776,391680,404736,397312,361472,404736,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,310,298,352,360,360,240,0,180,360,399,420,434,405,376,434,5,13,14,66,56,45,30,5,4,1,0,1,2,1,1,0,7,12,8,0,16,15,5,0,0,11,13,0,2,5,2,0,5,11,13,67,55,44,34,5,4,1,0,1,2,2,4,0,0,14,234,6459,394,2676,5853,1150,110,129,137,139,2283,2105,2800,3875,0,0,0,2,1,6,19,0,3,4,3,29,64,9,15,6
378,1475,Apollo Management LP Asia AS,N,661201,Investment banking activities,SG,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
379,1476,Genentech,N,721000,Research and development on natural sciences and engineering,SG,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
380,1477,L'oreal,N,960299,Other beauty and body prettifying treatment,SG,1,1,1,1,1,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,124,120,120,80,0,60,120,124,120,124,124,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
381,1478,NetroNext Pte Ltd,N,829900,Other miscellaneous business support service activities n.e.c.,SG,0,0,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,16896,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,60,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,48,31,30,31,29,26,31,30,31,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
382,1479,United Techinologies Corp,N,421000,Construction of civil engineering projects,US,0,1,0,0,1,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
383,1480,1Asia Alliance Communication Limited,N,639900,Other information service activities n.e.c.,SG,1,0,0,0,0,0,214272,193536,214272,207360,202240,138240,0,103680,207360,192000,184320,191488,153856,136192,147712,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,403,364,403,390,386,260,0,195,390,345,330,345,314,280,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,80,407,6405,83637,48345,8784,5779,2724,226,222,3252,4502,1888,31,0,0,0,14,93,355,140,0,63,107,53,491,254,39,17,27
384,1481,AxoGen Inc,N,869900,Miscellaneous human health services n.e.c,SG,1,1,0,0,0,0,7936,6400,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
385,1482,Merrill Lynch & Co Inc,N,661201,Investment banking activities,SG,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
386,1483,PARAGON INTERNET GROUP LIMITED,N,631100,"Data processing, hosting and related activities",SG,1,0,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
387,1484,Atlantic.Net Inc,N,631100,"Data processing, hosting and related activities",SG,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
388,1485,Tesonet UAB,N,702200,Business management and consultancy services,SG,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
389,1486,Instart Logic Inc,N,629000,Development of other softwares and programming activities,SG,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
390,1487,Delta Software and Networks Limited,N,639900,Other information service activities n.e.c.,SG,1,1,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,26624,0,0,0,29696,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,26,0,0,0,29,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
391,1488,ACTELION PHARMACEUTICALS SINGAPORE,N,460428,Wholesale of drugs and pharmaceuticals,SG,0,0,0,0,0,0,0,0,0,0,2816,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,11,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
392,1489,Wargaming Interactive GmbH,N,639900,Other information service activities n.e.c.,SG,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
393,1490,SuperInternet ACCESS Pte Ltd,N,639900, Other information service activities n.e.c.,SG,1,0,0,0,0,0,261888,236544,531968,499200,499200,332800,0,249600,499200,515840,499200,515840,515840,465920,515840,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,173,120,120,80,0,60,120,124,120,124,124,112,124,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,93,98,115,92,82,93,113,90,93,74,90,101,74,93,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0
394,1491,Deutsche Bank,N,661201,Investment banking activities,SG,1,1,0,0,0,0,206336,186368,206336,199680,199680,133120,0,99840,199680,206336,199680,206336,206336,186368,206336,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,527,476,527,510,510,340,0,255,510,527,510,527,527,476,527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
395,1492,BP Pte Limited,N,451702,Export trading of oil fuels and lubricants,SG,1,1,1,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
396,1494,Lucasfilm Animation Co Singapore,N,591100,"Motion picture, video and television programme production activities",SG,1,1,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7680,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
397,1495,UBS ,N,661201,Investment banking activities,SG,1,1,1,0,0,0,4467968,4035584,4467968,4323840,4323840,2882304,0,2161920,4323840,4467968,4323840,4467968,4467968,4035584,4476160,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,217,196,217,210,210,139,0,105,210,217,210,217,217,196,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
398,1496,Orange Business Services,N,702200,Business management and consultancy services,SG,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
399,1497,Symbio Networks Pty Ltd,N,592000,Sound recording and music publishing activities,AU,0,0,1,1,0,0,23808,21504,23808,23040,23040,15360,0,11520,23040,23808,23040,23808,23808,21504,23808,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
400,1498,SIX Financial Information Singapore,N,661201,Investment banking activities,SG,1,1,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
401,1499,Sanofi-aventis Singapore Pte Ltd,N,869900,Miscellaneous human health services n.e.c.,SG,1,1,1,0,0,0,2047488,1849344,2047488,1981440,1981440,1320960,0,990720,1981440,2047488,1981440,2047488,2047488,1849344,2047488,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
402,1500,Gemalto Pte Ltd,N,639900, Other information service activities n.e.c.,SG,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
403,1501,China Unicom (Singapore) Operations Pte Ltd,N,611000,Telecommunications network operation,SG,1,1,1,1,1,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
404,1502,Qualcomm,Y,729000,General and miscellaneous research and development services,US,1,1,1,1,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
405,1504,Hewlett Packard Singapore,N,702200,Business management and consultancy services,SG,1,1,1,1,1,0,7936,7168,7936,7680,7680,5120,0,3840,7680,4096,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
406,1505, STANDARD CHARTERED BANK,N,661201,Investment banking activities,SG,1,1,1,1,1,0,0,1179648,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
407,1506,Microsoft Corp,N,460602,Wholesale of computer software,SG,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
408,1507,Microsoft Global Enterprise Services,N,460602,Wholesale of computer software,US,1,1,1,1,0,0,12241152,11059200,13863168,17251072,17250048,11501312,0,8627200,17253120,17837824,17277184,17840640,17846016,16117248,20985600,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,418,388,463,547,543,367,0,280,555,611,649,622,643,574,667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,217,73,105,273,1059,31,62,342,729,70,162,569,116686,403,0,0,3,11,12,4,3,0,6,17,1,1,3,0,36,58
409,1508,Genworx Pte Ltd,N,712000,Technical testing and analysis,SG,0,1,0,0,0,0,63488,57344,63488,61440,61440,40960,0,30720,61440,63488,61440,63488,63488,57344,63488,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
410,1509,Electronic Arts Asia Pacific Pte Ltd,N,939900,Other miscellaneous entertainment activities n.e.c.,SG,1,1,1,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
411,1510,Blizzard Entertainment,N,620101,Development of computer games,SG,1,1,0,1,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
412,1511,Singapore Advanced Research and Education Network (SingAREN),N,639900, Other information service activities n.e.c.,SG,0,0,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,32256,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
413,1513,GARENA ONLINE PTE LTD,N,263000,Manufacture of communication equipment,SG,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
414,1514,BLUEBERRY TELECOM GLOBAL PTE LTD,N,263000,Manufacture of communication equipment,SG,1,1,0,0,1,0,0,0,0,0,6144,10240,0,5376,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,24,40,0,21,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
415,1515,Si2i Ltd,N,619900,Other miscellaneous telecommunications activities n.e.c.,SG,1,1,0,0,0,0,166656,150528,174592,177152,184320,122880,0,92160,184320,190464,181760,182528,182528,164864,182528,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,186,168,217,242,270,180,0,135,270,279,260,248,248,224,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0
416,1518,Metlife Taiwan Taipei,N,662200,Activities of insurance agents and brokers,TW,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
417,1519,Amazon Asia-Pacific Resources Private Limited,N,460602,Wholesale of computer software,SG,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
418,1520,HOTSPEED INTERNET PTE LTD,N,619900,Other miscellaneous telecommunications activities n.e.c.,SG,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
419,1521,Clear Data Voice Pte Ltd,N,631100,"Data processing, hosting and related activities",SG,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
420,1522,eSys Technologies Pte Ltd,N,639900, Other information service activities n.e.c.,SG,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
421,1523,Exabytes Network (Singapore) Pte Ltd,N,631100,"Data processing, hosting and related activities",SG,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,3,4,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
422,1524,National University of Singapore,N,853000,Universities and colleges providing post-secondary courses,SG,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
423,1525,Singtel,Y,611000,Telecommunications network operation,SG,1,1,0,1,1,0,21818368,19667712,21780736,21199872,21225472,14164224,0,10648320,26250240,27640832,27076608,27966464,26047488,23417856,25946880,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,0,7405,6491,7209,7476,7552,5096,0,3930,8025,8007,7562,7781,7908,7224,8076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,644,72581,101826,23511,59455,476825,163070,55448,13122,4882,4842,5920,4763,324529,804977,0,0,320,1570,549,2153,427,0,867,1595,135,978,1159,130,86,96
424,1540,SingTel Hong Kong Limited,Y,611000,Telecommunications network operation,HK,1,1,0,0,0,0,626944,563200,611072,591360,591360,394240,0,272640,545280,563456,545280,563456,461824,387072,428544,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1023,912,961,930,930,620,0,375,750,775,750,775,723,644,713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,60,185,52,361,796,37,43,55,34,17,37,31,32,62,0,0,2,11,7,7,4,0,0,0,0,0,0,0,2,0
425,1541,Pacnet Singapore,N,620200,Information technology consultancy activities and computer facilities management activities,SG,1,1,0,0,0,0,9594624,10459648,7650816,3145728,3188736,2160128,0,1804288,3646464,3771136,3605248,3650560,3650560,3297280,3704320,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,496,7294,11554,11785,11949,8038,0,6433,13014,13460,12839,12958,12958,11704,13047,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,448,774,639,4634,6765,11417,649,903,645,503,1430,82,35,31,0,0,25,157,18,113,0,0,31,61,84,10,82,0,0,0
426,1542,StarHub,N,620200,Information technology consultancy activities and computer facilities management activities,SG,1,1,0,1,0,0,14107648,12760832,14114560,13654016,13628416,9057280,0,6957568,14454784,14135040,13691648,14149888,14159616,12801024,14499072,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,15335,13923,15362,14846,14746,9788,0,7423,14914,15442,14993,15500,15538,14068,15841,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,2,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1443,266697,117309,128023,85509,147142,94067,342957,113456,22356,10172,31407,81179,1260352,2453619,0,0,411,3584,1696,6075,89,0,2171,5490,1177,4169,5657,373,97,240
427,1548,M1,N,619900,Other miscellaneous telecommunications activities n.e.c.,SG,1,1,0,0,1,0,23767552,21399552,23490560,22929408,23339008,15532032,0,11750400,27170816,29871104,23746560,24538112,24775936,22415616,24873984,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,2275,2054,2325,2274,2302,1533,0,1170,2347,2443,2340,2418,2448,2224,2480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1595,4342688,482343,57719,81377,230155,445646,3360977,899548,80052,10261,154967,247106,4659200,10102652,0,0,1067,2665,806,2267,108,0,1716,4565,771,2567,3066,436,167,526
428,1552,M1 Net Ltd,N,620200,Information technology consultancy activities and computer facilities management activities,SG,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
429,1554,Singapore Open Exchange,N,620200,Information technology consultancy activities and computer facilities management activities,SG,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
430,1555,NUS Computer Centre,N,620200,Information technology consultancy activities and computer facilities management activities,SG,1,0,0,0,0,0,4071168,3677184,4071168,3939840,3937280,2626304,0,1969920,3907072,4071168,3939840,4071168,4071168,3677184,4071168,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,124,120,110,79,0,60,119,124,120,124,124,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,6496,772,160,141,81,81,57,30,54,30,31,81,70,93,0,0,2,5,23,16,0,0,0,0,0,0,0,0,0,0
431,1556,NUS Gigapop,N,620200,Information technology consultancy activities and computer facilities management activities,SG,1,0,0,0,0,0,63488,57344,63488,61440,61440,40960,0,30720,61440,63488,61440,63488,63488,57344,63488,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
432,1557,INFOCOMM DEVELOPMENT AUTHORITY OF SINGAPORE,N,611000,Telecommunications network operation,SG,1,1,1,0,0,0,2198272,1985536,2198272,2127360,2127360,1418240,0,1063680,2127360,2198272,2127360,2198272,2198272,1985536,2198272,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,403,364,403,390,390,260,0,195,390,403,390,403,403,364,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
433,1573,SoHosting,N,620200,Information technology consultancy activities and computer facilities management activities,SG,0,0,0,0,0,0,126976,114688,126976,122880,122880,81920,0,65280,130560,134912,130560,134912,134912,121856,134912,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,341,308,341,330,330,220,0,180,360,372,360,372,372,336,372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,9,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0
434,1574,National Institute of Education,N,853000,Universities and colleges providing post-secondary courses,SG,1,0,0,0,0,0,0,8704,0,0,0,0,0,0,0,0,6144,14848,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,0,0,0,0,0,0,0,0,12,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
435,1575,Temasek Polytechnic,N,853000,Universities and colleges providing post-secondary courses,SG,1,1,1,0,0,0,2468096,2229248,2468096,2388480,2388480,1582848,0,1194240,2388480,2468096,2388480,2468096,2457856,2136064,2364928,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,496,448,496,480,480,308,0,240,480,496,480,496,531,504,558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,57,32,24,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
436,1576,Nanyang Technological University,N,853000,Universities and colleges providing post-secondary courses,SG,1,1,1,0,0,0,2309376,2077184,2309376,2234880,2234880,1489920,0,1117440,2234880,2309376,2228736,2294528,2309376,2085888,2309888,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,110,124,120,120,80,0,60,120,124,108,95,124,112,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,583,319,498,649,438,790,1538,1585,246,1368,223,1469,2017,2852,0,0,0,0,0,0,0,0,0,7,0,3,7,0,0,0
437,1577,MAGIX Software GmbH,N,620199,Development of other softwares and programming activities,SG,1,1,0,0,0,0,29069568,26256384,29151488,28377600,28399616,18938880,0,14196480,28390144,29822976,29368320,30347264,29872128,26951680,29839360,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1767,1596,1777,1740,1826,1240,0,900,1789,1844,1800,1860,1831,1652,1829,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2452,149223,283145,126017,197478,187968,85412,216536,50074,14882,11649,24449,37691,617764,1737798,0,0,1146,7025,3506,6782,178,0,4670,9733,2256,7812,8836,311,194,243
438,1578,ST Teleport Pte Ltd,N,619900,Other miscellaneous telecommunications activities n.e.c.,SG,0,0,0,0,0,0,253952,229376,253952,245760,245760,163840,0,122880,245760,253952,245760,253952,253952,229376,258048,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,589,532,589,570,570,380,0,285,570,589,570,589,589,532,605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,66,84,100,96,2393,765,904,490,53,49,84,69,64,93,0,0,0,7,0,0,1,0,0,6,0,0,21,0,0,2
439,1579,BlackBerry Singapore Pte Ltd,N,261100,Manufacture of electronic parts and components for computer and telecommunications equipment,SG,1,1,1,1,0,0,23808,13056,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
440,1580,Agilent Technologies,N,211200,"Manufacture of western medicine, diagnostic and therapeutic medicaments, and medical and nursing preparations",SG,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
441,1581,Ngee Ann Polytechnic,N,853000,Universities and colleges providing post-secondary courses,SG,1,1,0,1,0,0,2063360,1863680,2063360,1996800,1996800,1331200,0,994560,1992192,2063360,1996800,2063360,2063360,1863680,2063360,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,155,140,155,150,150,100,0,60,132,155,150,155,155,140,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,34,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
442,1582,Iconz-Webvisions Pte Ltd,N,620200,Information technology consultancy activities and computer facilities management activities,SG,1,1,0,0,0,0,71424,64512,71424,69120,69120,46080,0,34560,69120,71424,69120,71424,71424,64512,71424,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,0,186,168,186,180,180,120,0,90,180,186,180,186,186,168,186,0,0,9,4,17,1,0,0,0,3,0,0,0,0,0,0,0,0,0,4,75,5,12,0,0,0,0,0,3,7,2,0,0,0,10,3,16,0,0,0,0,5,0,0,0,0,0,0,0,22,7822,22403,1391,2367,458,173,158,218,270,269,4516,2636,1277,124,0,0,6,18,9,2,1,0,25,16,6,1,7,1,5,2
443,1587,Pacnet Hong Kong,N,620200,Information technology consultancy activities and computer facilities management activities,HK,1,1,1,0,0,0,103168,93184,103168,96768,92160,61440,0,46080,92160,95232,92160,95232,95232,86016,94208,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,403,364,403,378,360,240,0,180,360,372,360,372,372,336,368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
444,1588,Pacnet SG,N,620200,Information technology consultancy activities and computer facilities management activities,SG,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
445,1589,Pacnet Australia. Pacnet Internet (A) Pty Ltd,N,620200,Information technology consultancy activities and computer facilities management activities,AU,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
446,1590,Equinix Asia Pacific,N,620200,Information technology consultancy activities and computer facilities management activities,SG,1,1,0,1,0,0,468224,422912,464896,445440,445440,300800,0,226560,453120,468224,453120,468224,483072,437248,496384,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,372,336,359,330,330,235,0,180,360,372,360,372,401,364,435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,116284,492,1349,862,83014,6854,956,383,622,490,1080,824,552,248,0,0,0,20,17,5,9,0,1,4,0,0,5,0,1,2
447,1594,LGA Telecom Pte Ltd,N,620200,Information technology consultancy activities and computer facilities management activities,SG,1,1,0,0,0,0,879616,774144,860160,837120,841472,560896,0,422400,844800,872960,844800,876032,869376,763648,859904,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,739,588,663,660,677,451,0,345,690,713,690,725,699,547,662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,420,385,153,230,78,279,80,119,73,36,41,86,228,31,0,0,0,3,0,0,0,0,4,41,2,11,21,1,2,0
448,1595,WebSatMedia Pte Ltd,N,619900,Other miscellaneous telecommunications activities n.e.c.,SG,0,0,0,0,0,0,253952,229632,323584,368640,368640,245760,0,184320,368640,380928,368640,380928,380928,233472,319488,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,29,48,60,60,40,0,30,60,62,60,62,62,29,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,50,48,30,31,28,31,31,30,31,30,31,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
449,1596,iBasis Inc,N,619900,Other miscellaneous telecommunications activities n.e.c.,SG,0,1,0,0,0,0,39680,35840,39680,38400,38400,25600,0,19200,38400,39680,38400,39680,39680,35840,39680,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,155,140,155,150,150,100,0,75,150,155,150,155,155,140,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
450,1597,Viewqwest Singapore Pte Ltd,N,620200,Information technology consultancy activities and computer facilities management activities,SG,1,1,0,0,0,0,2721792,2241536,2507776,2401280,2355200,1590784,0,1229056,2513408,2581760,2498560,2587136,1991424,1551360,1722112,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,4700,4100,4774,4670,4715,3214,0,2506,5078,5156,4990,5177,2850,1608,1798,0,1,2,0,0,0,15,8,8,0,0,0,0,0,1,0,0,0,1,0,0,0,12,2,3,0,5,2,20,4,6,7,0,1,1,0,0,0,12,9,10,0,0,0,0,0,2,0,0,66,68152,53096,1603,10033,301167,120843,254042,62842,10793,1825,18683,20561,183396,371039,0,0,9,410,57,102,80,0,6,106,3412,14235,214,144,29,35
451,1599,IBM Singapore Pte Ltd,N,261100,Manufacture of electronic parts and components for computer and telecommunications equipment,SG,1,1,1,1,1,0,277760,185344,23808,23040,23040,15360,0,11520,23040,25088,30720,31744,24320,21504,23808,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,76,62,60,60,40,0,30,60,67,90,93,64,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,2,13,0,0,0,0,7,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
452,1600,Ford Motor Company,N,290000,Body assembly of motor vehicles,SG,1,1,1,1,1,0,158720,143360,158720,153600,153600,102400,0,76800,153600,158720,153600,158720,158720,143360,158720,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,30,13,0,0,12,44,0,0,57,0,28,31,0,0,0,11,26,0,0,0,1,6,0,0,0,0,0,0
453,1601,Yahoo! Singapore,N,639900,Other information service activities n.e.c.,SG,1,1,1,1,0,0,23808,21504,23808,22784,23040,15360,0,11520,23040,23808,23040,23808,23808,21504,23808,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,93,84,93,89,90,60,0,45,90,93,90,93,93,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
454,1603,Yahoo! India,N,639900,Other information service activities n.e.c.,ID,1,1,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
455,1604,YAHOO,N,639900,Other information service activities n.e.c.,SG,1,1,0,1,1,0,5089456,4465504,5089456,4925280,4925280,3283520,0,2462640,4925280,5089456,4925280,5089456,5089456,4596928,5089456,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,248,218,248,240,240,160,0,120,240,248,240,248,248,224,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,11,1,0,0,0,2,0,0,1,0,0,4
456,1605,ATOS Information Technology (Singapore) Pte Ltd,N,702200,Business management and consultancy services,SG,1,1,0,0,0,0,66304,64512,71424,69120,69120,46080,0,38400,76800,79360,76800,79360,79360,71680,79360,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,166,168,186,180,180,120,0,105,210,217,210,217,217,196,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
457,1608,NCS Pte Ltd,N,620200,Information technology consultancy activities and computer facilities management activities,SG,1,0,0,0,0,0,253952,229376,253952,245760,245760,163840,0,122880,245760,253952,245760,253952,253952,229376,253952,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
458,1612,Nanyang Polytechnic,N,853000,Universities and colleges providing post-secondary courses,SG,1,1,0,0,0,0,87296,78848,77056,64000,76288,35840,0,26880,53760,55552,52736,55552,55552,50176,55552,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,155,140,145,130,142,80,0,60,120,124,119,124,124,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,69,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
459,1613,NTT Singapore Pte Ltd,N,639900, Other information service activities n.e.c.,SG,1,1,0,0,0,0,3865824,3491680,3865824,3741120,3743168,2463360,0,1828320,3656640,3778528,3656640,3778528,3778528,3412864,3778528,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,713,643,713,690,698,406,0,270,540,558,540,558,558,504,558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,853,828,171,243,68354,17653,129,68,68,91,67,61,67,93,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0
460,1616,NTT SINGAPORE,N,619900,Other miscellaneous telecommunications activities n.e.c.,SG,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
461,1617,Singapore Management University,N,853000,Universities and colleges providing post-secondary courses,SG,1,1,1,0,0,0,507904,458752,507904,491520,491520,327680,0,245760,491520,507904,491520,507904,507904,458752,507904,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,89,386,425,1100,190,649,4421,1985,91,79,14,2,82,93,0,0,0,60,43,84,0,0,30,46,2,32,10,0,0,0
462,1618,Matrix Networks Pte Ltd,N,639900,Other information service activities n.e.c.,SG,1,0,0,0,0,0,71424,64512,71424,69120,69120,46080,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,20,31,44,18,32,72,0,20,31,0,0,0,0,0,0,0,0,3,0,1,0,8,0,0,0
463,1619,Pfizer Pte Ltd,N,211200,"Manufacture of western medicine, diagnostic and therapeutic medicaments, and medical and nursing preparations",SG,1,1,0,1,0,0,87296,85504,95232,92160,92160,61440,0,46080,92160,95232,92160,95232,95232,86016,95232,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,186,194,217,210,210,140,0,105,210,217,210,217,217,196,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
464,1620,CrimsonLogic Pte Ltd,N,639900,Other information service activities n.e.c.,SG,1,0,0,0,0,0,126976,114688,126976,122880,122880,81920,0,61440,122880,126976,122880,126976,126976,114688,126976,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0
465,1621,National Library Board,N,841000,Government administration; economic and social policy,SG,1,1,0,0,0,0,119040,107520,126976,122880,122880,81920,0,61440,122880,126976,122880,126976,126976,114688,126976,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,248,224,279,270,270,180,0,135,270,279,270,279,279,252,279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
466,1622,RigNet Inc,N,619900,Other miscellaneous telecommunications activities n.e.c.,SG,1,1,0,0,0,0,126976,114688,126976,122880,122880,81920,0,61440,122880,126976,122880,126976,126976,114688,126976,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2412,94620,90,308,47,202,58,32,27,80,23,26,0,0,0,0,0,62,2,4,0,0,0,0,0,5,0,0,0,0
467,1623,Republic Polytechnic,N,853000,Universities and colleges providing post-secondary courses,SG,1,1,0,1,1,0,31744,28672,31744,30720,30720,20480,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,28,31,30,31,28,31,31,30,26,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
468,1624,Agency for Science Technology and Research (A*STAR),N,721000,Research and development on natural sciences and engineering,SG,1,1,0,0,0,0,412672,372224,476160,460800,456704,307200,0,230400,460800,476160,460800,476160,476160,430080,476160,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,899,811,930,900,897,600,0,450,900,930,900,930,930,840,930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,51,84,91,71,71,62,62,60,61,46,61,43,28,31,0,0,4,10,7,36,0,0,12,45,0,0,0,0,0,0
469,1625,ezNetworking Solutions Pte Ltd,N,620200,Information technology consultancy activities and computer facilities management activities,SG,0,0,0,0,0,0,572160,702464,900608,1489920,1489920,993280,0,744960,1489920,1539584,1489920,1539584,1539584,1390592,1539584,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,2173,2688,2991,2970,2970,1980,0,1485,2970,3069,2970,3069,3069,2772,3069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
470,1629,Epsilon Telecommunications Ltd,N,620200,Information technology consultancy activities and computer facilities management activities,SG,0,1,0,0,0,0,142848,129024,142848,138240,138240,92160,0,69120,138240,142848,138240,142848,142848,129024,128000,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,217,196,217,210,210,140,0,105,210,217,210,217,217,196,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,23,15,16,12,0,0,0,0,12,6,27,17,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
471,1631,Schenker Singapore (Pte) Ltd,N,499000,Other land transport services,SG,1,1,0,0,0,0,79360,71680,79360,76800,76800,51200,0,38400,76800,79360,76800,79360,79360,71680,79360,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,124,120,120,80,0,60,120,124,120,124,124,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,2,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
472,1632,Fujitsu Asia Pte Ltd,N,261100,Manufacture of electronic parts and components for computer and telecommunications equipment,SG,1,0,1,1,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,346,62,34,26,134,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0
473,1634,Ministry of Education Singapore,N,841000,Government administration; economic and social policy,SG,1,1,0,0,0,0,39680,35840,39680,38400,38400,25600,0,19200,38400,39680,38400,39680,39680,35840,39680,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,155,140,155,150,150,100,0,75,150,155,150,155,155,140,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
474,1635,Virtela Technology Services Inc,N,619900,Other miscellaneous telecommunications activities n.e.c.,US,1,1,0,0,0,0,428544,387072,434944,414464,399360,266240,0,34560,69120,71424,69120,71424,64768,57344,67584,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,806,728,831,779,720,480,0,135,270,279,270,279,253,224,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,305,754,54,128,845,339,119,115,116,115,51,52,44,31,0,0,0,12,0,6,2,0,6,33,2,8,1,0,0,1
475,1636,Internap Network Services,N,631100,"Data processing, hosting and related activities",US,1,1,1,1,1,0,222208,200704,223232,228864,226304,153600,0,122880,252416,261632,253440,261888,262912,250880,277760,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,186,168,190,234,224,160,0,150,326,340,330,341,345,364,403,0,0,0,3,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,6,14820,94,104,5195,104,1811,3187,59,179,65,1129,628,128,124,0,0,4,878,9,18,0,0,3,1,0,0,0,0,0,0
476,1639,Akamai Technologies,N,620200,Information technology consultancy activities and computer facilities management activities,JP,1,1,0,1,0,0,7428608,6504704,7478016,7259136,7134208,4519424,0,3390976,6789120,7015424,6789120,7015424,7077120,6401024,7086848,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1727,1614,1900,1926,1966,1354,0,1021,2070,2139,2070,2139,2325,2128,2356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
477,1641,eBay Inc,N,639900,Other information service activities n.e.c.,US,1,1,1,1,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,124,120,120,80,0,60,120,124,120,124,124,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,16,22,20,27,0,0,0,0,0,15,31,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0
478,1642,Avago Technologies,N,267100,Manufacture of photographic equipment (optical and digital),SG,1,1,0,0,0,0,55552,51200,63488,61440,61440,40960,0,30720,63744,71424,69120,71424,68864,50176,47360,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,217,200,248,240,240,160,0,120,249,279,270,279,269,196,185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,33,31,2462,31,26,7,0,9,7,157,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0
479,1643,Hostiserver Ltd,N,620200,Information technology consultancy activities and computer facilities management activities,AI,1,0,0,0,0,0,103168,93184,103168,99840,99840,66560,0,65280,130570,134912,130560,134912,134912,121856,134912,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,124,120,120,80,0,90,190,186,180,186,186,168,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,90,1393,1020,82,578,240,8,32850,195324,129,25,25,16,31,0,0,0,0,0,0,22,0,2,3,0,2,0,0,0,0
480,1644,ACE Insurance Singapore,N,651100,Life insurance underwriting,SG,1,1,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,198,19,7,9,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0
481,1645,Institute of Molecular and Cell Biology,N,853000,Universities and colleges providing post-secondary courses,SG,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
482,1646,Newedge Financial Singapore Pte Ltd,N,644000,"Trusts, funds and similar financial entities",SG,1,0,0,0,0,0,15872,14336,15872,15360,15360,10240,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
483,1647,Heidmar Inc,N,501302,Ship owners of sea-going vessels for freight transport,SG,1,0,0,0,0,0,23808,21504,23808,22272,23040,15360,0,11520,23040,23808,23040,23808,23808,21504,23808,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,87,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
484,1648,DOCOMO interTouch - Headquarter,N,611000,Telecommunications network operation,SG,1,0,0,0,0,0,142848,129024,142848,138240,138240,92160,0,72960,145920,141568,130560,134912,134656,121856,134912,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,155,140,155,150,150,100,0,90,180,231,240,248,247,224,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,50,8,1,15,0,0,4,22,0,0,0,88,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0
485,1649,DOCOMO interTouch - Thailand Operation,N,611000,Telecommunications network operation,TH,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
486,1651,DOCOMO interTouch - Hong Kong Operation,N,611000,Telecommunications network operation,HK,0,0,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,9,0,0,2,0,0,0,0,0,0,0
487,1652,DOCOMO interTouch - Singapore Operation,N,611000,Telecommunications network operation,SG,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
488,1653,DOCOMO interTouch - Philippines Operation,N,611000,Telecommunications network operation,PH,1,0,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,7,26,0,7,3,0,10,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
489,1654,DOCOMO interTouch - Australia Operation,N,611000,Telecommunications network operation,AU,1,0,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
490,1655,DOCOMO interTouch - India Operation,N,611000,Telecommunications network operation,IN,1,0,0,0,0,0,15872,14336,15872,8960,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,3840,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,62,56,62,35,30,20,0,15,30,31,30,31,31,28,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,8,0,0,0,16,0,14,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
491,1659,WTP,N,310900,Manufacture of furniture and fixtures of other materials,SG,1,1,0,0,0,0,841216,759808,830976,635392,726016,586496,0,506880,1014016,1238528,1519360,1579264,1594368,1440768,1599232,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1798,1624,1792,1081,1272,1319,0,1095,2191,2616,3145,3286,3345,3024,3364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
492,1660,DBS Vickers Securities Online (Singapore) Pte Ltd,N,644000,"Trusts, funds and similar financial entities",SG,1,0,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
493,1661,Infocomm Asia Holdings Pte Ltd,N,620101,Development of computer games,SG,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
494,1663,University of NSW Asia,N,853000,Universities and colleges providing post-secondary courses,SG,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
495,1664,Limelight Networks Singapore,N,620200,Information technology consultancy activities and computer facilities management activities,SG,1,1,0,0,0,0,0,0,3584,7424,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,14,29,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
496,1665,TullettPrebon Singapore,N,649299,"Personal loan, mortgage, instalment credit and other credit granting",SG,1,0,0,0,0,0,47616,43008,47616,46080,45312,30720,0,23040,46080,47616,46080,47616,47616,43008,47616,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,186,168,186,180,177,120,0,90,180,186,180,186,186,168,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
497,1666,IP Mirror Pte Ltd,N,631100,"Data processing, hosting and related activities",SG,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
498,1667,Singapore Polytechnic,N,853000,Universities and colleges providing post-secondary courses,SG,1,1,0,0,0,0,2047488,1849344,2047488,1981440,1981440,1320960,0,990720,1981440,2047488,1981440,2047488,2047488,1849344,2047488,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,15,18,27,14,12,556,0,0,0,236,672,110,9,31,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0
499,1668,OSINet Communications Pte Ltd,N,620200,Information technology consultancy activities and computer facilities management activities,SG,1,1,0,0,0,0,460288,417536,286720,69120,69120,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1426,1295,852,150,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,22,181,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
500,1669,Autodesk Asia Pte Ltd,N,591400,Motion picture projection activities,SG,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
501,1670,Elsevier,N,620200,Information technology consultancy activities and computer facilities management activities,SG,1,1,1,1,0,0,374272,106496,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,144,74,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
502,1671,Continent 8 Technologies,N,620200,Information technology consultancy activities and computer facilities management activities,SG,1,1,0,0,0,0,0,0,39936,61440,61440,44288,0,34560,69120,71424,69120,71424,130816,121856,134912,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,47,90,90,73,0,60,120,124,120,124,211,196,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1863,449,47,55,79,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
503,1672,Salesforce.com Singapore Pte Ltd,N,620200,Information technology consultancy activities and computer facilities management activities,SG,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
504,1673,Abacus International Pte Ltd,N,791000,Travel agency activities,SG,1,1,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,124,120,120,80,0,60,120,124,120,124,124,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
505,1674,8 to Infinity Pte Ltd,N,620200,Information technology consultancy activities and computer facilities management activities,SG,1,0,0,0,0,0,365056,329728,365056,357376,360960,240640,0,172800,345600,344832,314880,325376,325376,293888,325376,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,651,588,651,646,660,440,0,300,600,608,570,589,589,532,589,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,56,3554,96,84,57,164,80,91,31,61,73,81,432,310,0,0,0,0,36,35,40,0,0,0,0,0,10,1,0,1
506,1675,Nepal Research and Education Network,N,722000,Research and development on social sciences and humanities,NP,1,0,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
507,1676,T-Global Pte Ltd,N,639900,Other information service activities n.e.c.,SG,0,0,0,0,0,0,31744,25600,23808,23040,23040,15360,0,11520,23040,23808,23040,23808,23808,21504,23808,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,100,93,90,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,26,25,13,20,7,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
508,1677,Sparkstation Pte Ltd,N,620200,Information technology consultancy activities and computer facilities management activities,SG,1,0,0,0,0,0,434176,387840,449024,452864,449536,269056,0,157440,287232,293632,284160,293632,293632,265216,293632,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1107,983,1165,1199,1186,698,0,420,732,744,720,744,744,672,744,2,2,0,9,4,2,2,1,11,0,0,0,2,1,0,1,3,0,0,8,0,0,1,2,0,0,0,0,3,4,0,13,1,2,0,6,4,4,1,1,11,0,0,0,2,1,0,0,0,21,375,8233,742,310,405,1684,132,116046,1177,4006,1046,1925,14319,279,0,0,0,4,9,2,0,0,1,828,7,88,30,1,8,19
509,1678,BGC Partners - Singapore,N,649299,"Personal loan, mortgage, instalment credit and other credit granting",SG,1,0,0,0,0,0,23808,19200,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
510,1679,Zermatt (S) Pte Ltd,N,631100,"Data processing, hosting and related activities",SG,1,0,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,29,31,30,31,28,31,31,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
511,1680,Nucleus Connect Pte Ltd,N,620200,Information technology consultancy activities and computer facilities management activities,SG,1,0,0,0,0,0,119040,107520,119040,115200,115200,76800,0,57600,115200,119040,115200,119040,119040,107520,119040,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,248,224,248,240,240,160,0,120,240,248,240,248,248,224,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
512,1681,Dimension Data AP Kaki Bukit Singapore,N,620200,Information technology consultancy activities and computer facilities management activities,SG,1,1,0,0,0,0,2118912,1913856,2118912,2050560,2050560,1367040,0,1028864,2061568,2124288,1264128,87296,1987840,1913856,2118912,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,372,336,372,360,360,240,0,194,403,393,348,341,370,336,372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
513,1682,Marina Bay Sands,N,791000,Travel agency activities,SG,1,1,0,0,1,0,38656,29184,35072,30720,34048,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,151,114,137,120,133,80,0,60,120,124,120,124,124,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,594,936,42,59,57,48,75,32,43,30,39,32,57,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
514,1683,Bangla Trac Communications limited,N,619900,Other miscellaneous telecommunications activities n.e.c.,BD,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
515,1684,Fci Asia Pte Ltd,N,631100,"Data processing, hosting and related activities",SG,1,0,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
516,1685,Global Foundries,N,268000,Manufacture of magnetic and optical media,SG,1,1,0,1,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,21,44,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
517,1686,Singapore Internet Exchange Ltd,N,620200,Information technology consultancy activities and computer facilities management activities,SG,1,0,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,29,31,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
518,1688,SMS GRP Pte Ltd,N,619900,Other miscellaneous telecommunications activities n.e.c.,SG,1,0,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
519,1689,Corous360 Pte Ltd,N,620101,Development of computer games,SG,1,0,0,0,0,0,79360,71680,79360,76800,76800,51200,0,30720,61440,63488,61440,63488,63488,57344,59648,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,310,280,310,300,300,200,0,120,240,248,240,248,248,224,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
520,1690,Asiasoft Online Pte Ltd,N,620101,Development of computer games,SG,1,1,0,0,0,0,58368,57344,56064,53760,53760,35840,0,30720,61440,63488,61440,63488,63488,57344,63488,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,228,224,219,210,210,140,0,120,240,248,240,248,248,224,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,14,3,0,0,0,11,19,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
521,1691,SINGAPORE UNIVERSITY OF TECHNOLOGY AND DESIGN,N,853000,Universities and colleges providing post-secondary courses,SG,1,1,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,33,170,258,774,364,62,50,62,0,0,0,0,0,0,0,0,3,18,2,24,26,0,0,0
522,1692,SINGAPORE PRESS HOLDINGS LIMITED,N,639900,Other information service activities n.e.c.,SG,1,1,0,0,0,0,126976,114688,126976,122880,122880,81920,0,61440,122880,126976,122880,126976,126976,114688,126976,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,496,448,496,480,480,320,0,240,480,496,480,496,496,448,496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,150,175,149,111,105,94,125,117,117,112,85,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
523,1693,INSTITUTE OF TECHNICAL EDUCATION,N,853000,Universities and colleges providing post-secondary courses,SG,1,1,0,0,0,0,95232,86016,95232,92160,92160,61440,0,46080,92160,95232,92160,95232,95232,86016,96256,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,186,168,186,180,180,120,0,90,180,186,180,186,186,168,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,151,611,303,544,91,141,134,101,106,85,62,62,56,62,0,0,0,8,22,7,0,0,0,0,0,0,0,0,0,0
524,1694,VALE,N,50000,Mining of coal and lignite,SG,1,1,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30208,31744,24064,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,45,88,93,77,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
525,1695,Argon Medical Devices,N,211200,"Manufacture of western medicine, diagnostic and therapeutic medicaments, and medical and nursing preparations",SG,1,1,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
526,1696,KDDI SINGAPORE PTE LTD,N,611000,Telecommunications network operation,SG,1,1,0,1,0,0,95232,86016,95232,92160,92160,61440,0,46080,92160,95232,92160,95232,95232,86016,95232,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,372,336,372,360,360,240,0,180,360,372,360,372,372,336,372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,33,44,25,3,0,22,10,22,13,93,121,124,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
527,1698,Bain & Company,N,639900,Other information service activities n.e.c.,SG,1,1,0,1,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
528,1700,MYHOSTING,N,631100,"Data processing, hosting and related activities",SG,1,1,0,0,0,0,465920,442368,497408,482816,498944,357632,0,287744,583680,633856,617728,645120,688128,637696,722688,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1789,1701,1912,1856,1919,1377,0,1109,2250,2445,2383,2489,2657,2463,2792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,1383151,5811395,10885644,678143,1338978,5801870,5367225,3551502,2708518,6532388,5313431,2650513,8356014,12781021,0,0,103,11823,931,946,104,0,221,551,162,654,429,64,51,51
529,1702,TELEKOMUNIKASI INDONESIA INTERNATIONAL PTE LTD,N,611000,Telecommunications network operation,SG,0,0,0,0,0,0,452352,408576,454400,476160,476160,317440,0,237056,457984,468224,453120,468224,474112,430080,479232,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1488,1344,1496,1500,1500,1000,0,746,1429,1457,1410,1457,1480,1344,1500,0,5,37,1,0,3,16,4,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,45,1,0,3,19,4,0,0,1,0,1,0,3,10,0,14,568939,60305,1197,330,5496,356,368,361,85,70,197,400,407,248,0,0,168,32,91,16,14,0,23,15,1,25,26,0,1,0
530,1704,SecureAX Internet,N,631100,"Data processing, hosting and related activities",SG,1,0,0,0,0,0,253952,229376,253952,245760,231936,111616,0,65280,131328,197632,192000,198400,205568,193536,210176,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,527,476,527,510,462,229,0,165,333,403,390,403,449,420,449,0,0,1,3,0,6,2,0,0,0,0,0,0,0,0,1,0,3,1,1,0,3,4,2,0,0,0,0,0,0,0,3,0,0,0,2,0,6,0,0,0,0,0,0,0,0,0,3,0,0,5541,202,21,30,62,31,39,0,13,0,0,31,75,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0
531,1706,Miller Ford Interactive,N,639900, Other information service activities n.e.c.,SG,0,0,0,0,0,0,71424,64512,66816,61440,61440,40960,0,30464,61440,63488,61440,63488,63488,57344,59392,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,279,252,261,240,240,160,0,119,240,248,240,248,248,224,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
532,1707,Miller Ford Tech Pte Ltd,N,639900, Other information service activities n.e.c.,SG,0,0,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,31,29,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
533,1709,Vodien Internet Solutions Pte Ltd,N,631100,"Data processing, hosting and related activities",SG,1,1,0,0,0,0,439552,394240,455168,450304,460288,312320,0,200448,399360,412672,402944,420608,448256,415744,472576,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,1153,1036,1220,1219,1258,860,0,603,1200,1240,1214,1271,1379,1288,1474,24,94,24,26,37,101,96,90,15,3,6,5,6,1,1,1,128,37,18,54,35,88,95,33,9,46,38,40,24,34,1,4,20,91,24,25,34,113,88,89,17,4,6,6,6,3,6,2,0,41,337,6924,1239,350,709,137,467,134,233,155,407,173,144,248,0,0,4,4,7,3,2,0,5,4,0,2,23,1,0,7
534,1712,ACCLIVIS TECHNOLOGIES AND SOLUTIONS PTE LTD,N,631100,"Data processing, hosting and related activities",SG,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
535,1713,Xssist Group Pte Ltd,N,631100,"Data processing, hosting and related activities",SG,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
536,1714,Wizlearn Technologies Pte Ltd,N,639900, Other information service activities n.e.c.,SG,1,1,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,10,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0
537,1715,RADIOACTIVE PTE LTD,N,639900, Other information service activities n.e.c.,SG,0,0,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
538,1716,NODENS SOLUTIONS PTE LTD,N,631100,"Data processing, hosting and related activities",SG,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
539,1717,First Technology Development PTE Ltd,N,619900,Other miscellaneous telecommunications activities n.e.c.,SG,0,0,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
540,1718,SG.GS,N,611000,Telecommunications network operation,SG,0,0,0,0,0,0,1015902,912462,986427,622083,622137,401449,0,299616,600468,626944,606720,626944,628992,566272,639232,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,683,606,645,423,477,308,0,306,561,434,420,434,442,392,450,20,9,17,16,13,8,9,0,9,0,0,1,3,1,0,0,0,5,5,6,26,5,7,0,15,0,2,7,2,5,4,3,20,8,16,14,13,7,7,0,10,0,0,3,3,1,1,0,0,29,4000,1981,839,2457,537,398,169,506,166,141,140,130,160,155,0,0,10,81,14,80,0,0,9,24,0,1,16,1,5,0
541,1720,Cherry Credits Pte Ltd,N,476402,Retail sale of computer games,SG,1,1,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
542,1722,IQON GLOBAL PTE LTD,N,702200,Business management and consultancy services,SG,0,0,0,0,0,0,95232,86016,95232,92160,92160,61440,0,46080,92160,95232,92160,95232,95232,86016,95232,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,186,168,186,180,180,120,0,90,180,186,180,186,186,168,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,199,9,8,98,39,0,0,0,0,10,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0
543,1724,ASIA ACCESS TELECOM PTE LTD,N,619900,Other miscellaneous telecommunications activities n.e.c.,SG,0,0,0,0,0,0,23808,21504,23808,23040,23040,4608,0,0,0,0,0,0,9984,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,18,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
544,1725,AGLOW ALICOM PTE LTD,N,611000,Telecommunications network operation,SG,0,0,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7680,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
545,1726,Goldman Sachs (Asia) L.L.C.,N,661201,Investment banking activities,SG,1,1,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
546,1727,Nightingale Communication Services Pte Ltd,N,611000,Telecommunications network operation,SG,0,0,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,124,120,120,80,0,60,120,124,120,124,124,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0
547,1728,IIJ Global Soltuions Singapore Pte Ltd,N,620200,Information technology consultancy activities and computer facilities management activities,SG,1,0,0,0,0,0,158720,143360,158720,153600,153600,102400,0,76800,153600,158720,153600,158720,158720,143360,158720,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
548,1729,DSO National Laboratories,N,712000,Technical testing and analysis,SG,1,0,0,0,0,0,23808,21504,27136,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,106,120,120,80,0,60,120,124,120,124,124,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
549,1730,CME Group Singapore Operations Pte Ltd,N,619900,trading platform,SG,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
550,1731,MediaMonks Singapore Pte Ltd,N,591100,"Motion picture, video and television programme production activities",SG,1,1,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
551,1732,Racks Central Pte Ltd,N,620200,Information technology consultancy activities and computer facilities management activities,SG,0,0,0,0,0,0,47104,13056,21760,31232,45312,30720,0,15104,30720,33280,27392,23808,23808,21504,23808,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,154,42,85,122,177,120,0,59,120,130,107,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,25,823,110,1308,61546,66352,12650,1827,179,366,143,349,671,62,0,0,0,0,11,80,4,0,19,2,9,36,4,0,7,6
552,1733,READY SERVER PTE LTD,N,631100,"Data processing, hosting and related activities",SG,1,1,0,0,0,0,87296,78848,81664,76800,98304,76800,0,61440,121856,116736,110848,119040,119040,107520,119040,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,341,308,319,300,384,300,0,240,476,456,433,465,465,420,465,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,9,57,2319,12475,731,149,69,202,220,42,33,44,39,0,0,0,0,397,532,796,181,0,0,0,32,0,2,38,0,1,0
553,1734,Ingram Micro Inc,N,631100,"Data processing, hosting and related activities",US,1,1,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
554,1735,Ingram Micro Asia Ltd,N,620200,Information technology consultancy activities and computer facilities management activities,SG,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8192,15360,23808,31232,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,32,60,93,122,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,1073,2285,350,543,434,0,0,0,0,0,0,0,0,0,0,102,731,1663,39,2,11
555,1736,Netlife AS,N,620199,Development of other softwares and programming activities,NO,0,0,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
556,1737,LINODE LLC ,N,631100,"Data processing, hosting and related activities",US,1,1,0,0,0,0,1160448,2844672,3166721,3302401,5135106,3872768,0,4968960,10239488,12153344,12994560,13448192,13684992,12364800,13906176,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1141,4724,5241,5101,5859,4108,0,1905,3998,6628,10500,10860,10952,9912,11014,6,20,4,12,22,19,25,5,3,2,1,3,18,1,1,0,13,12,1,14,11,11,27,0,0,0,0,0,0,0,0,0,0,18,3,10,20,16,23,5,3,3,1,3,18,10,13,1,0,214,124383,297175,187030,15847,16089,26778,11096,9506,7591,5056,12714,13163,37754,26133,0,0,24,385,175,128,514,0,104,662,15,390,1885,15,316,625
557,1738,HOIIO Pte LTD,N,631100,"Data processing, hosting and related activities",SG,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
558,1739,Global Axcess Pte Ltd,N,611000,Telecommunications network operation,SG,0,0,0,0,0,0,31744,28672,31744,30720,30720,20480,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,124,120,120,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3560,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0
559,1740,PGi SG,N,619900,Other miscellaneous telecommunications activities n.e.c.,SG,1,1,0,0,0,0,7936,7168,7936,7680,7680,9472,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,37,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
560,1741,SINGAPORE INSTITUTE OF MANAGEMENT,N,853000,Universities and colleges providing post-secondary courses,SG,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
561,1742,1ASIA COMMUNICATION PTE LTD,N,620200,Information technology consultancy activities and computer facilities management activities,SG,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
562,1743,INFINEON TECHNOLOGIES ASIA PACIFIC PTE LTD,N,620200,Information technology consultancy activities and computer facilities management activities,SG,1,1,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
563,1744,Cyberaxis Pte Ltd,N,631100,"Data processing, hosting and related activities",SG,1,1,0,0,0,0,63488,57344,63488,61440,61440,40960,0,30720,94208,126976,122880,126976,126976,114688,126976,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,155,140,173,240,240,160,0,120,368,496,480,496,496,448,496,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,4,0,0,0,0,5,1,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,90,16,44,33,59,23,0,0,1,40,58,100,108,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0
564,1746,ASSURITY TRUSTED SOLUTIONS PTE LTD,N,802000,Security system operation services,SG,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
565,1747,Singapore Institute of Technology,N,853000,Universities and colleges providing post-secondary courses,SG,1,1,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,9,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
566,1748,Panasonic Avionics Corporation,N,522300,Service activities incidental to air transportation,SG,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
567,1749,IRESS Market Technology Ltd,N,652000,Pension funding,SG,0,0,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
568,1750,MYREPUBLIC,N,620200,Information technology consultancy activities and computer facilities management activities,SG,1,1,0,0,0,0,269824,243712,262144,253440,177408,25600,0,19200,38400,39680,7680,7936,7936,7168,7936,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,589,532,559,540,378,100,0,75,150,155,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
569,1752,IVISIONS GLOBAL PRIVATE LIMITED,N,620200,Information technology consultancy activities and computer facilities management activities,SG,1,1,0,0,0,0,39680,35840,39680,38400,38400,25600,0,19200,38400,39680,38400,39680,3840,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
570,1753,ZONE Telecom Pte Ltd,N,611000,Telecommunications network operation,SG,0,0,0,0,0,0,95232,86016,126976,122880,122880,81920,0,61440,122880,126976,122880,126976,126976,114688,126464,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,186,168,310,300,300,200,0,150,300,310,300,310,310,280,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,22,100,41,32,115,19,27,30,38,65,67,31,28,31,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
571,1754,NEC STEE CLOUD SERVICES PTE LTD,N,631100,"Data processing, hosting and related activities",SG,0,0,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
572,1755,Hogarth Worldwide Pte,N,702200,Business management and consultancy services,SG,1,1,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
573,1756,CPF BOARD,N,432104,"Anti-burglar system, installation and maintenance",SG,1,0,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
574,1757,Singapore Airlines Limited,N,510201,Local representative offices of overseas airline companies (passenger),SG ,1,1,1,1,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
575,1758,X-TRA COMMUNICATION PTE LTD,N,620200,Information technology consultancy activities and computer facilities management activities,SG,0,0,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
576,1759,CHANGI AIRPORT GROUP SINGAPORE PTE LTD,N,510900,Air transport services n.e.c.,SG,1,1,1,1,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,64,110,104,70,54,80,31,30,47,71,31,10,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0
577,1760,AWAN DATA CENTRE PTE LTD,N,631100,"Data processing, hosting and related activities",SG,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
578,1761,SITA,N,631100,"Data processing, hosting and related activities",SG,1,1,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
579,1762,APC Hosting Pte Ltd,N,631100,"Data processing, hosting and related activities",SG,1,1,0,0,0,0,63488,57344,63488,61440,61440,40960,0,30720,61440,63488,61440,63488,63488,57344,63488,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,2,0,0,1,0,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,28,31,4,0,0,20,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,1,0,0
580,1763,AUCTORIZIUM PTE LTD,N,802000,Security system operation services,SG,0,0,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
581,1764,Cybersite Services Pte Ltd,N,631100,"Data processing, hosting and related activities",SG,0,0,0,0,0,0,55552,50176,63488,61440,61440,40960,0,30720,61440,63488,61440,63488,63488,57344,63232,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,124,112,155,150,150,100,0,75,150,155,150,155,155,140,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,545,2673,627,516,335,269,28793,5364,588,489,163,480,6514,7502,0,0,8,87,7,34,0,0,58,121,0,17,17,0,4,5
582,1766,VTelecoms Singapore Pte Ltd,N,611000,Telecommunications network operation,SG,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
583,1767,Media Access International PTE LTD,N,620200,Information technology consultancy activities and computer facilities management activities,SG,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
584,1768,Siemens Pte Ltd,N,261100,Manufacture of electronic parts and components for computer and telecommunications equipment,SG,1,1,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
585,1769,Schneider Electric Singapore Pte Ltd,N,729000,General and miscellaneous research and development services,SG,1,1,0,0,0,0,23808,21504,23808,23040,23040,15360,0,11520,23040,23808,23040,23808,23808,21504,23808,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
586,1770,Nevigate Communications (S) Pte Ltd,N,620200,Information technology consultancy activities and computer facilities management activities,SG,0,0,0,0,0,0,47616,42752,47616,46080,46080,30720,0,23040,46080,47616,46080,47616,47616,43008,47616,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,83,93,90,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
587,1771,AION TECHNOLOGIES PTE LTD,N,620200,Information technology consultancy activities and computer facilities management activities,SG,1,0,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30208,31744,30720,31744,31744,28672,31232,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,124,120,120,80,0,60,118,124,120,124,124,112,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,14,0,0,16,23,9,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0
588,1772,Cosmo System Pte Ltd,N,631100,"Data processing, hosting and related activities",SG,0,0,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
589,1773,SYSNETPRO SOLUTION PTE LTD,N,620200,Information technology consultancy activities and computer facilities management activities,SG,0,0,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
590,1774,Gentay Communications Pte Ltd,N,263000,Manufacture of communication equipment,SG,0,0,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,1024,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
591,1775,Mediamind Technologies LTD,N,741100,Advertising companies and agencies,SG,1,1,0,0,0,0,2048,7168,7936,7680,7680,5120,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,8,28,31,30,30,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
592,1776,Aviva Asia Pte Ltd,N,651100,Insurance underwriting,SG,1,1,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,29,31,44,31,40,31,31,30,28,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
593,1777,VASTNET LLP,N,631100,"Data processing, hosting and related activities",SG,1,1,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,102,1835,179,77,59,4888,1582,3,197,0,17,0,0,0,0,0,3,4,5,4,6,0,0,0,0,0,1,0,0,0
594,1778,ALAGAS NETWORK Pte Ltd,N,620200,Information technology consultancy activities and computer facilities management activities,SG,1,1,0,0,0,0,71424,64512,74496,76800,76800,51200,0,30720,61440,63488,61440,63488,62976,57344,58880,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,186,168,198,210,210,140,0,90,180,186,180,186,184,168,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,29,40,38,11,16,0,15,9,0,0,0,0,0,0,0,0,0,18,0,0,0,0,15,0,0,0,0,0,0,0
595,1780,ROBERT BOSCH GMBH,N,290000,Body assembly of motor vehicles,SG,1,1,0,0,0,0,63488,57344,63488,61440,61440,40960,0,30720,61440,63488,61440,63488,63488,57344,63488,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
596,1781,Integrated Health Information Systems Pte Ltd,N,869000,Miscellaneous human health services n.e.c.,SG,0,0,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,40,119,75,82,72,0,8,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
597,1783,TECHLINKZ SOLUTIONS,N,854400,Academic tutoring services,SG,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
598,1784,SABIC Innovative Plastics,N,719000,"Engineering, technical and consultancy services not related to construction and real estate activities n.e.c.",SG,0,0,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
599,1785,Coretel Networks (International) Pte Ltd,N,620200,Information technology consultancy activities and computer facilities management activities,SG,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
600,1786,Netdeploy Pte Ltd,N,631100,"Data processing, hosting and related activities",SG,1,0,0,0,0,0,0,0,0,0,0,0,0,20480,61440,47104,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,20,60,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
601,1787,Tableau Software,N,631100,"Data processing, hosting and related activities",SG,1,1,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
602,1788,OWENTIS,N,639900,Other information service activities n.e.c.,SG,1,1,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
603,1789,NETPLUZ HOLDINGS PRIVATE LIMITED,N,639900,Other information service activities n.e.c.,SG,0,0,0,0,0,0,177152,200704,262656,270336,259584,177408,0,131328,1762304,3598592,3825152,4409344,4381184,3956736,4380672,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,408,448,594,636,594,413,0,303,1466,2556,2698,3118,3071,2772,3069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,29,151,168,448,1121,1791,64,92,61,79,91,182,94,124,0,0,0,24,17,92,0,0,2,37,0,2,0,0,2,1
604,1790,World Hub Communications (M) Sdn Bhd,N,611000,Telecommunications network operation,SG,1,1,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
605,1792,"PP TELECOMMUNICATION SDN BHD
",N,611000,Telecommunications network operation,MY,0,0,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,29696,27648,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,29,27,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
606,1793,Global Online Travel,N,791000,Travel agency activities,MY,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
607,1794,EXXON MOBIL CORPORATION,N,460703,Wholesale of petroleum products (kerosene and L.P. gas,MY,1,1,0,1,0,0,126976,114688,126976,122880,122880,81920,0,61440,122880,126976,122880,126976,126976,114688,126976,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,12,0,0,0,16,457,12,14,14,0,0,9,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0
608,1795,CYPE Sdn Bhd,N,631200,Web portals,MY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
609,1796,Eqhost Sdn Bhd,N,620199,Development of other softwares and programming activities,MY,1,1,0,0,0,0,0,0,0,0,0,0,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
610,1797,MyKRIS Asia SDN BHD,N,619100,Internet access services,MY,1,0,0,0,0,0,1515776,1369088,1521664,1474560,1468160,977920,0,726016,1447680,1499904,1454336,1507840,1522688,1381376,1563648,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,2325,2100,2348,2280,2255,1500,0,1110,2208,2294,2231,2325,2354,2148,2448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,1280,6183,2497,15105,1369,3978,1249,5300,2516,5829,738,276,294,124,0,0,73,365,141,772,1,0,279,926,161,335,541,66,2,4
611,1800,University ITM Shah Alam Selangor Malaysia,N,853000,Universities and colleges providing post-secondary courses,MY,1,1,0,0,0,0,126976,114688,126976,122880,123392,131584,0,122880,245760,253952,245760,253952,253952,229376,250624,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,32,214,0,255,510,527,510,527,527,476,514,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,9,77,112,117,125,88,143,124,124,147,111,102,124,74,62,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,2
612,1801,Packet One Networks Sdn Bhd Internet Services Provider,N,619100,Internet access services,MY,1,1,0,0,0,0,44322560,40025088,44512000,43393280,43399680,28965376,0,21603584,43207680,44644864,43206400,44647936,43692288,39414784,43655936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,682,615,721,785,810,586,0,989,1980,2034,1975,2046,1967,1812,2077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,884,268410,66754,82740,488062,259226,215939,20792,18051,17607,10933,9801,4971,10512,13330,0,0,110,4478,3317,5684,211,0,4286,8616,1486,6996,7719,192,142,150
613,1802,Universiti Teknologi PETRONAS,N,853000,Universities and colleges providing post-secondary courses,MY,1,1,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,60,66,72,50,123,79,62,51,24,0,10,18,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
614,1803,PIRADIUS NET AS45839,N,611000,Telecommunications network operation,MY,1,0,0,0,0,0,604416,508928,563456,545280,545280,363520,0,276480,552960,571392,554752,579328,589824,537600,595200,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,935,700,775,750,750,500,0,390,780,806,787,837,878,812,899,21,48,7,23,160,48,70,93,50,5,5,0,6,1,1,1,29,2,6,15,14,4,29,0,3,7,13,4,8,9,13,9,18,56,6,21,159,49,71,93,50,6,5,0,6,1,1,2,0,18,4745,9231,645,334,1433,3808,3891,107,151,163,171,431,232,155,0,0,0,7,4,25,6,0,14,200,4,10,27,0,3,3
615,1804,Ericsson (Malaysia) Sdn Bhd,N,263000,Manufacture of communication equipment,MY,1,1,1,1,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,31,18,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
616,1805,ESMARTPAY SOLUTIONS (M) SDN BHD,N,620200,Information technology consultancy activities and computer facilities management activities,MY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32768,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
617,1806,Infinity Supercorridor Sdn Bhd,N,471102, Retail sale of wearing apparel ,MY,0,0,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
618,1807,Anpple Tech Enterprise,N,721000,Research and development on natural sciences and engineering,MY,0,0,0,0,0,0,451840,401664,463104,458752,473856,351744,0,330752,684288,814080,831744,872960,880896,795648,931840,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,928,813,972,982,1041,777,0,746,1563,1909,1976,2077,2079,1876,2228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
619,1808,Suria Data Centre Sdn Bhd,N,611000,Telecommunications network operation,MY,0,0,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
620,1809,MING WAN ENTERPRISE,N,611000,Telecommunications network operation,MY,0,0,0,0,0,0,0,7680,39168,76800,76800,50688,0,30720,65280,85248,108288,134912,300544,279552,306944,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,30,153,300,300,198,0,120,255,333,423,527,1174,1092,1199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
621,1810,JARING Communications Sdn Bhd,N,611000,Telecommunications network operation,MY,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,25088,48640,0,27904,43008,28416,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,38,76,0,61,84,66,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
622,1813,TPM Corp Berhad,N,721000,Research and development on natural sciences and engineering,MY,1,1,0,0,0,0,105984,100352,111104,107520,107520,72192,0,53760,107520,114688,115200,119040,119040,107520,119040,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,414,392,434,420,420,282,0,210,420,448,450,465,465,420,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,147,1145,645,1522,2314,1822,743,1243,290,261,1059,183,180,186,0,0,37,335,68,209,0,0,58,166,7,117,214,20,4,12
623,1814,YTL Communications Sdn Bhd,N,611000,Telecommunications network operation,MY,1,1,0,0,0,0,301568,272384,301312,291840,291840,194048,0,145920,291840,301568,291840,301568,301568,272384,289024,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,0,589,532,588,570,570,378,0,285,570,589,570,589,589,532,558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,317,18916,173031,50721,74649,16995,8467,7542,19926,12175,6543,6486,8391,5744,5456,0,0,135,7273,6202,11028,68,0,4375,10759,1186,6316,8902,6,11,38
624,1819,ACASIA Communications Sdn Bhd Network Service Provider Kuala Lumpur Malaysia,N,619100,Internet access services,MY,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
625,1820,Synergycloud Sdn Bhd,N,611000,Telecommunications network operation,MY,0,0,0,0,0,0,63488,57344,63488,65792,69120,46080,0,34560,65024,34560,23040,23808,124416,193536,343552,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,248,224,248,257,270,180,0,135,254,135,90,93,452,756,903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,41,24,6,0,0,0,0,0,0,0,0,104,360,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1
626,1821,Celcom Internet Service Provider,N,619100,Internet access services,MY,1,1,0,0,0,0,2889728,2580736,2896640,3573504,3586560,2370048,0,1880064,3809280,3899392,3829760,3936256,3955200,3570688,3964672,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1489,1373,1541,1710,1710,1129,0,954,1920,1979,1930,1984,2013,2167,2560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3560,99899,199126,26946,30791,786915,538587,31958,36002,27200,16212,14771,13493,13102,12400,0,0,13,740,729,1078,144,0,496,1444,134,1357,1874,20,7,13
627,1822,AS for DataOne(Malaysia),N,631100,"Data processing, hosting and related activities",MY,1,1,0,0,0,0,103168,93184,103168,99840,99840,66560,0,39936,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,403,364,403,390,390,260,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
628,1823,Arcnet NTT MSC ISP,N,631100,"Data processing, hosting and related activities",MY,1,1,0,0,0,0,1230080,1111040,1230080,1209088,1228800,819200,0,614400,1228800,1269760,1228800,1269760,1269760,1147392,1276160,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,496,448,496,505,540,360,0,270,540,558,540,558,558,506,583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,115,180,139,149,128,120,134,109,139,92,75,86,85,93,0,0,1,0,0,0,1,0,3,13,1,0,0,0,0,0
629,1824,Orange Business,N,702200,Business management and consultancy services,MY,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
630,1825,Hitachi Sunway Information Systems Sdn Bhd,N,639900,Other information service activities n.e.c.,MY,1,0,0,0,0,0,685312,623616,690432,668160,668160,445440,0,425472,587008,613376,597248,606464,620800,569600,700160,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1902,1736,1922,1860,1860,1240,0,639,504,500,479,470,478,419,657,0,0,0,1,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,9,82,14560,479,161,454,4727,122,148,139,191,496,171,116,124,0,0,1,5,17,15,1,0,1,0,0,8,2,0,0,0
631,1826,SOLSIS (m) SDN BHD,N,712000,Technical testing and analysis,MY,1,0,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7424,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,29,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
632,1827,TM-VADS DC Hosting,N,631100,"Data processing, hosting and related activities",MY,0,0,0,0,0,0,896768,812288,896768,871168,863488,573440,0,433920,867840,896768,867584,897536,888576,795648,880896,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1891,1717,1891,1843,1813,1200,0,915,1830,1891,1829,1894,1859,1652,1829,11,121,239,31,22,25,32,46,35,1,7,3,4,1,1,1,25,70,86,37,39,20,55,81,50,15,23,16,49,50,32,23,12,132,251,34,17,25,29,45,36,1,7,3,4,14,4,4,0,61,361,24344,3882,5574,4361,3532,460,543,487,390,602,1356,865,527,0,0,10,44,23,24,7,0,40,35,19,61,71,5,5,26
633,1828,VADS Managed Business Internet Service Provider,N,619100,Internet access services,MY,1,0,0,0,0,0,1357056,1229568,1366784,1320960,1320960,880640,0,656640,1313280,1357056,1313280,1356288,1352448,1225728,1357056,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,837,771,875,840,840,560,0,405,810,837,810,834,819,756,837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,58,62,74,62,56,47,55,78,94,57,62,98,73,62,0,0,0,0,0,0,0,0,0,5,2,0,0,0,0,0
634,1829,Clear-Comm Sdn Bhd,N,619100,Internet access services,MY,0,0,0,0,0,0,63488,57344,63488,61440,61440,40960,0,30720,61440,63488,61440,63488,63488,57344,63488,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,248,224,248,240,240,160,0,120,240,248,240,248,248,224,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,24,0,403,21,15,17,22,30,31,44,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
635,1830,APNIC HEITECH ASN,N,620199,Development of other softwares and programming activities,MY,1,0,0,0,0,0,95232,92416,103168,99840,99840,66560,0,49920,99840,103168,99840,103168,103168,93184,103168,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,372,361,403,390,390,260,0,195,390,403,390,403,403,364,403,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1066,1342,242,1532,190695,61335,22219,2746,329,391,101,100,116,124,0,0,0,21,30,0,17,0,2,1,0,1,0,0,2,0
636,1831,Coins Global Malaysia,N,421000,Construction of civil engineering projects,MY,0,1,0,0,0,0,190464,172032,190464,184320,184320,122880,0,92160,184320,190464,184320,190464,190464,172032,190464,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
637,1832,Redtone-CNX Broadband Sdn Bhd,N,602000,Television programming and broadcasting activities,MY,1,0,0,0,0,0,1777664,1607424,1785600,1728000,1728000,1150720,0,795904,1573120,1569536,1499904,1516032,1518080,1378816,1518592,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1581,1438,1612,1560,1560,1038,0,919,1846,1752,1659,1582,1590,1466,1592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,81358,124087,43325,111804,393487,380233,128378,55331,27965,9086,3660,41219,84557,244466,0,0,39,305,112,279,5,0,144,336,33,300,393,91,74,34
638,1833,Broadband Service Provider,N,602000,Television programming and broadcasting activities,MY,1,0,0,0,0,0,31744,29952,31744,27648,18432,17152,0,138240,277760,314368,314880,325376,340224,308224,341248,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,114,124,108,72,64,0,135,272,337,330,341,399,364,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,74,210,205,438,278,128,5324,500,349,286,274,120,67,93,0,0,0,0,0,0,0,0,0,7,1,38,13,0,0,0
639,1834,Universiti Sains Malaysia (USM),N,853000,Universities and colleges providing post-secondary courses,MY,1,0,0,0,0,0,126976,111872,126976,122880,122880,81920,0,61440,122880,126976,122880,126976,126976,114688,126976,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,155,133,155,150,150,100,0,75,150,155,150,155,155,140,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,75,44,24,6,0,22,10,0,14,0,18,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
640,1835,University Pendidikan Sultan Idris,N,853000,Universities and colleges providing post-secondary courses,MY,1,1,0,0,0,0,31744,28672,31744,30720,52224,30720,0,30720,61440,63488,61440,63488,63488,57344,63488,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,124,120,141,90,0,75,150,155,150,155,155,140,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,76,61,66,84,88,72,71,86,84,86,61,41,50,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
641,1836,OCE Sdn Bhd ISP,N,619900,Other miscellaneous telecommunications activities n.e.c,MY,1,0,0,0,0,0,960256,867328,960256,929280,926976,615168,0,464640,920576,960256,929280,960256,960256,867328,960256,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,341,308,341,330,328,216,0,165,322,341,330,341,341,308,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,221,2191,455,670,1517,5625,43933,684,441,468,259,165,8219,155,0,0,13,57,14,42,0,0,60,146,2,21,18,0,1,15
642,1837,VDSL NETWORK SDN BHD AS INTERNET SERVICE PROVIDER KUALA LUMPUR,N,619100,Internet access services,MY,0,0,0,0,0,0,253952,229376,253952,245760,245760,163840,0,122880,245760,172032,245760,253952,253952,229376,122880,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,21,30,31,31,28,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,14,15,56,0,21,18,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0
643,1838,BMW Asia Technology Sdn Bhd,N,721000,Research and development on natural sciences and engineering,MY,1,1,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
644,1839,P&O Global Technologies Transit AS Internet Service Provider,N,619100,Internet access services,MY,1,1,0,0,0,0,126976,114688,126976,122880,122880,81920,0,61440,122880,126976,122880,126976,126976,114688,126976,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
645,1840,Malaysian Research and Education Network,N,619100,Internet access services,MY,1,1,0,0,0,0,269824,211968,238336,263424,283904,204544,0,152320,318208,294912,286464,299008,281600,250880,278528,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,756,643,714,735,776,548,0,415,853,842,819,858,790,700,788,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,1512,2582,2133,4907,4145,3718,1635,2492,1805,1950,6225,705,408,217,0,0,3,454,418,518,0,0,488,993,113,778,1092,0,0,1
646,1841,MIMOS R&D Malaysia,N,721000,Research and development on natural sciences and engineering,MY,1,1,0,0,0,0,71424,64512,71424,69120,68608,45568,0,34560,69120,67840,61440,63488,63488,57344,63488,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,279,252,279,270,268,178,0,135,270,265,240,248,248,224,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,24,22,11,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0
647,1842,Time Quantum Technologies Sdn Bhd,N,721000,Research and development on natural sciences and engineering,MY,0,0,0,0,0,0,63488,57344,63488,61440,61440,40960,0,30720,61440,63488,61440,63488,63488,57344,63488,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
648,1843,EXTREME BROADBAND SDN BHD,N,619100,Internet access services,MY,1,1,0,0,0,0,1910272,1733120,1959168,1886208,1889280,1259520,0,940032,1885440,1946624,1889280,1952256,1986816,1799168,1995776,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,3123,2828,3221,3138,3180,2120,0,1572,3165,3264,3180,3286,3421,3108,3456,0,0,0,0,0,0,1,1,0,0,0,0,33,1,0,1,1,0,0,0,0,0,1,1,0,0,0,0,7,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,35,24,18,0,0,85,450,3070,19585,6668,9565,3220,2150,3323,997,418,640,350,595,589,0,0,3,279,607,376,9,0,113,295,37,267,453,0,5,11
649,1844,Macro Lynx Sdn Bhd Internet Service Provider Malaysia,N,619100,Internet access services,MY,1,1,0,0,0,0,762112,688128,750592,733696,729600,481280,0,357120,711168,731904,714240,738048,738048,666624,738048,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1303,1176,1258,1246,1230,800,0,585,1161,1191,1170,1209,1209,1092,1209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,797,1727,4058,3658,8504,1253,6487,18153,1307,1558,96,75,73,62,0,0,103,622,481,1428,8,0,261,462,25,205,106,0,0,6
650,1845,V TELECOMS BERHAD,N,611000,Telecommunications network operation,MY,1,0,0,0,0,0,158720,143360,158720,156672,184320,122880,0,92160,184320,190464,184320,190464,190464,172032,190464,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,93,120,80,0,60,120,124,120,124,124,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,39,78,137,1488,619,1663,4641,489,653,1433,722,153,247,217,0,0,0,34,43,171,0,0,100,102,57,253,269,0,5,3
651,1846,U Mobile Sdn Bhd,N,619100,Internet access services,MY,1,1,0,1,0,0,634880,573440,634880,614400,614400,409600,0,307200,611840,616192,599040,619008,626432,566272,626944,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,434,392,434,420,420,280,0,210,410,361,360,372,401,364,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,413,6597,18274,30931,44730,21877,5640,3455,10116,7738,3882,3366,6336,7652,9145,0,0,8,978,1153,2393,113,0,2611,4302,1172,4445,5535,28,22,44
652,1847,DOCOMO interTouch - Shanghai CC,N,611000,Telecommunications network operation,MY,1,1,0,0,0,0,0,0,0,0,0,0,0,0,512,7680,4096,1024,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,15,8,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
653,1848,Universiti Putra Malaysia AS,N,853000,Universities and colleges providing post-secondary courses,MY,1,1,0,0,0,0,111104,100352,111104,109056,114944,79872,0,61440,122880,126976,122880,126976,127232,114688,126976,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,434,392,434,426,449,201,0,60,120,124,120,124,125,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,270,422,1016,3318,3939,1717,1698,4826,3796,3089,2992,1491,1384,2573,0,0,0,0,28,6,2,0,0,0,0,0,0,0,0,0
654,1849,MEASAT Satellite Systems Sdn Bhd,N,721000,Research and development on natural sciences and engineering,MY,1,1,0,0,0,0,111104,120576,134912,130560,130560,87040,0,65280,130560,134912,130560,134912,134912,121856,134912,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,248,228,248,240,240,160,0,120,240,248,240,248,248,224,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,216,460,13208,7391,9722,326,203,874,217,3081,4510,486,246,93,0,0,0,15,11,44,2,0,5,89,36,104,58,0,0,8
655,1850,Net Onboard Sdn Bhd - ,N,619100,Internet access services,MY,1,1,0,0,0,0,79360,71680,79360,76800,63744,40960,0,21248,45312,47616,46080,47616,84480,78848,87296,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,217,196,217,210,159,100,0,83,177,186,180,186,301,280,310,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,1,3,0,28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,4,0,0,0,6,68,9389,810,152,222,164,75,88,142,208,82,137,141,93,0,0,0,2,0,1,2,0,0,0,0,4,1,0,1,4
656,1851,International Islamic University Of Malaysia,N,853000,Universities and colleges providing post-secondary courses,MY,1,1,0,0,0,0,63488,63488,86272,80128,88064,66560,0,49920,99840,103168,99840,103168,103168,93184,102656,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,52,120,103,127,100,0,75,150,155,150,155,155,140,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,136,136,108,104,95,77,101,102,121,90,74,24,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
657,1852,IP ServerOne Solutions Sdn Bhd,N,619100,Internet access services,MY,1,1,0,0,0,0,1127424,1005568,1092608,1049600,1094400,742912,0,574208,1158656,1207040,1172224,1217536,1058048,982272,1083136,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,2284,2053,2282,2237,2385,1632,0,1253,2546,2669,2599,2710,2261,2073,2285,3,10,28,6,5,50,23,12,15,0,0,0,0,1,1,1,1,4,0,2,2,3,2,10,3,0,3,17,16,54,20,5,2,8,16,5,5,59,25,12,15,0,0,0,0,1,3,1,0,23,196,7433,862,326,252,235,211,163,131,77,139,278,2051,961,0,0,10,9,25,721,13,0,2,5,0,10,8,7,4,10
658,1853,SHTECH City Broadband Service,N,611000,Telecommunications network operation,MY,0,0,0,0,0,0,182528,164864,182528,176640,176640,117760,0,88320,176640,182528,176640,182528,182528,164864,182528,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,248,224,248,240,240,160,0,120,240,248,240,248,248,224,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,842,664,1449,481,270,1429,224,762,100,111,210,55,1115,93,0,0,0,5,4,6,58,0,56,86,8,52,84,0,0,0
659,1854,Fibrecomm Network (M) Sdn Bhd,N,619100,Internet access services,MY,1,0,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,14,2,46,63,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0
660,1855,AIMS Data Centre Sdn Bhd,N,631100,"Data processing, hosting and related activities",MY,0,0,0,0,0,0,601344,544768,603136,585728,590336,389120,0,288000,576000,596992,583680,603136,602880,544768,603136,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1233,1120,1240,1208,1226,800,0,585,1170,1216,1200,1240,1239,1120,1240,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,302,84,144,359,125,47,31,34,55,32,692,192,316,31,0,0,4,0,2,2,0,0,0,0,15,2,0,0,0,0
661,1856,TechAvenue Sdn Bhd,N,721000,Research and development on natural sciences and engineering,MY,1,0,0,0,0,0,126976,114688,126976,122880,123904,87040,0,65280,136192,142848,138240,142848,142848,129024,142848,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,403,364,403,390,394,280,0,210,442,465,450,465,465,420,465,1,0,0,1,0,0,7,6,2,0,0,0,7,0,0,0,2,0,0,0,0,0,5,4,0,0,0,0,2,0,0,0,0,0,0,1,0,0,7,5,2,0,0,0,10,0,0,0,0,24,164,211,1590,397,147,113,409,17992,27187,67,55,59,82,93,0,0,0,1,1,7,0,0,7,10,1,3,2,0,0,0
662,1858,GITN Sdn Berhad,N,611000,Telecommunications network operation,MY,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
663,1859,Acme Commerce Sdb Bhd Malayia Network,N,619100,Internet access services,MY,0,0,0,0,0,0,103168,93184,103168,99840,99840,66560,0,46080,92160,95232,92160,95232,95232,86016,95232,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,310,280,310,300,300,200,0,135,270,279,270,279,279,252,279,0,6,0,0,2,0,1,5,1,0,1,0,1,1,0,0,0,0,0,0,0,0,2,0,6,0,1,2,0,1,0,0,0,6,0,0,2,0,0,5,1,0,1,0,1,0,0,1,0,12,106,1607,207,48,79,100,42,58,66,62,73,73,56,62,0,0,7,0,0,0,2,0,0,8,0,2,1,0,41,4
664,1860,Exa Bytes Network Sdn Bhd,N,619100,Internet access services,MY,1,1,0,0,0,0,341248,308224,341248,330240,334080,235520,0,176640,293888,263168,245760,253952,291072,265728,293632,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,620,560,620,600,591,400,0,300,387,253,210,217,275,254,279,23,29,57,37,63,86,125,44,26,5,9,3,10,1,1,1,105,124,52,37,119,145,88,50,16,19,87,16,30,45,23,14,17,22,33,32,58,87,135,40,26,5,11,3,11,9,13,2,0,60,58696,30246,3027,483,3070,148945,2435,439,460,357,7755,1431,3199,868,0,0,41,19,17,51,16,0,9,27,3,18,55,4,10,12
665,1861,SABAH NET Sdn Bhd,N,619100,Internet access services,MY,1,0,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,27,254,242,160,137,84,93,108,107,89,27,63,0,35,31,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0
666,1862,SUNWAY DIGITAL WAVE SDN BHD,N,721000,Research and development on natural sciences and engineering,MY,1,0,0,0,0,0,47616,43008,62976,59392,61440,40960,0,30720,61440,63488,82944,119040,124672,107776,106752,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,153,148,150,100,0,75,150,155,198,279,301,253,279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,79,54,94,142,95,158,211,245,168,109,98,45,91,124,0,0,0,0,1,0,0,0,0,9,0,0,26,0,0,0
667,1863,e-Genting Sdn Bhd,N,702200,Business management and consultancy services,MY,1,0,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,31,31,44,30,31,31,19,22,4,29,16,11,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0
668,1864,AIG Malaysia Insurance Berhad,N,651200,Non-life insurance underwriting,MY,1,1,0,0,0,0,97024,64512,73216,76800,76800,51200,0,38400,76800,79360,76800,79360,79360,71680,95744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,133,84,100,120,120,80,0,60,120,124,120,124,124,112,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
669,1865,PERMODALAN NASIONAL BERHAD,N,702200,Business management and consultancy services,MY,1,0,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,44,45,30,31,49,59,31,34,43,47,33,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
670,1866,Gigabit Hosting Sdn Bhd,N,619100,Internet access services,MY,1,1,0,0,0,0,1162240,1101824,1219584,1222912,1241600,819207,0,648960,1282304,1320960,1262080,1309440,1316608,1189888,1352704,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,4447,4198,4640,4657,4691,3127,0,2475,4889,5036,4810,4991,5019,4536,5160,2,6,1,0,1,4,16,19,7,0,0,6,0,0,1,1,1,5,2,1,0,5,16,13,2,4,1,4,7,4,1,1,1,3,0,0,1,3,15,19,7,0,0,6,0,0,0,0,0,24,214,6753,962,3548,87357,37940,7625,692,1877,701,180,487,304,93,0,0,13,27,17,30,545,0,34,58,3,127,20,1,10,43
671,1867,Colocation Hosting Sdn Bhd,N,619900,Other miscellaneous telecommunications activities n.e.c.,MY,1,0,0,0,0,0,277760,250880,258048,268800,268800,179200,0,134400,268800,277760,243712,222208,274176,250880,263936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,713,644,680,690,690,460,0,345,690,713,648,620,707,644,695,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,9,86,76,55,65,54,67,61,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
672,1868,Malaysian Communications and Multimedia Commission,N,432106,"Telecommunications equipment, installation and maintenance",MY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
673,1869,MALAYSIA GENOME INSTITUTE,N,721000,Research and development on natural sciences and engineering,MY,1,1,0,0,0,0,31744,28672,31744,30720,30720,20480,0,14336,30720,37376,38912,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,14,30,42,46,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,29,31,30,31,30,31,19,19,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
674,1870,CIMB Bank Berhad,N,661999,Other miscellaneous activities auxiliary to financial service activities n.e.c.,MY,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
675,1871,Universiti Malaysia Sarawak,N,853000,Universities and colleges providing post-secondary courses,MY,1,1,0,0,0,0,47616,43008,47616,46080,46080,30720,0,23040,46080,47616,46080,47616,25088,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,45,90,93,90,93,71,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,317,465,446,550,437,373,419,435,481,194,151,102,27,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0
676,1872,Foxdata Sdn Bhd,N,631100,"Data processing, hosting and related activities",MY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
677,1873,EVERWORKS SOLUTIONS M SDN BHD,N,611000,Telecommunications network operation,MY,1,1,0,0,0,0,23808,21504,23808,23040,23040,15360,0,11520,23040,23808,23040,23808,23808,21504,23808,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,33,31,18,5,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
678,1874,ModernOne Data Solutions Sdn Bhd,N,631100,"Data processing, hosting and related activities",MY,1,1,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,35072,61440,57344,54272,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,44,147,140,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
679,1875,I-TECH NETWORK SOLUTIONS SDN BHD,N,611000,Telecommunications network operation,MY,0,0,0,0,0,0,31744,28672,31744,30720,30720,18176,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,124,120,120,71,0,60,120,124,120,124,124,112,124,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,6,11,19,11,0,22,0,0,19,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
680,1876,LIGHTSUP NETWORK SOLUTION SDN BHD,N,611000,Telecommunications network operation,MY,0,0,0,0,0,0,87296,78848,87296,82944,78336,51200,0,42240,84480,87296,84480,87296,87296,78848,87296,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,341,308,341,324,306,200,0,165,330,341,330,341,341,308,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,50,90,99,399,123,114,73,56,101,52,1411,31,28,31,0,0,0,0,0,51,0,0,8,22,3,9,31,0,0,0
681,1877,Fuji Xerox Asia Pacific Pte Ltd,N,432106,"Telecommunications equipment, installation and maintenance",MY,1,1,0,1,0,0,71424,70912,79360,76800,56320,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,109,124,120,100,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
682,1878,IX Telecom Network Operation Centre (NOC),N,611000,Telecommunications network operation,MY,1,1,0,0,0,0,55552,50176,63232,61440,61440,40960,0,28672,53760,55552,53760,55552,55552,50176,55552,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,154,150,150,100,0,67,120,124,120,124,124,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,25,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
683,1879,Corous360 Sbn Bhd,N,631100,"Data processing, hosting and related activities",MY,0,0,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,124,120,120,80,0,60,120,124,120,124,124,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
684,1880,The W IT Sdn Bhd,N,721000,Research and development on natural sciences and engineering,MY,1,0,0,0,0,0,31744,28672,12800,15360,22784,15360,0,11520,31232,39680,38400,39680,39680,35840,39680,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,35,60,89,60,0,45,106,124,120,124,124,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,91,2983,103,130,119,411,331,59,81,93,0,0,0,0,0,0,0,0,18,50,13,95,65,0,0,0
685,1881,Xenial Broadband (Nationwide ISP),N,611000,Telecommunications network operation,Bangladesh,1,0,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,44,31,30,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
686,1882,Universiti Sultan Zainal Abidin,N,853000,Universities and colleges providing post-secondary courses,MY,1,1,0,0,0,0,2304,17152,22784,24576,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,9,43,58,78,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,29,21,0,0,0,0,0,60,50,45,65,41,20,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
687,1883,ACODA Networks Sdn Bhd,N,611000,Telecommunications network operation,MY,0,1,0,0,0,0,126976,114688,126976,122880,122880,80896,0,54784,118784,122368,117248,111104,125952,114688,126976,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,341,308,341,330,330,218,0,139,314,323,308,279,337,308,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,42,72,124,410,1759,163,53,281,14,15,31,31,28,31,0,0,0,20,0,0,0,0,0,0,0,0,2,0,1,0
688,1885,Universiti Malaysia Terengganu,N,853000,Universities and colleges providing post-secondary courses,MY,1,1,0,0,0,0,15872,14336,15872,18432,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,66,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,10,5,14,16,120,16,50,120,80,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
689,1886,Global Transit Communications - Malaysia,N,611000,Telecommunications network operation,MY,1,0,0,0,0,0,2864896,2587648,2864896,2772482,2772525,1848345,0,1386240,2772480,2864640,2772480,2864896,2864896,2587648,2864896,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,372,336,372,362,405,265,0,180,360,371,360,372,372,336,372,2,1,4,0,2,29,7,1,3,4,1,0,1,1,0,0,62,0,1,0,3,0,4,4,0,3,3,0,7,1,0,0,2,1,3,0,1,35,7,1,3,5,1,0,2,2,0,0,0,12,333,3095,513,122,286,97,188,318,118,587,317,236,81,62,0,0,0,3,0,1,0,0,8,22,1,40,27,0,0,0
690,1889,Upright Communications Sdn Bhd,N,611000,Telecommunications network operation,MY,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
691,1890,Pacific Link Telecom Malaysia,N,611000,Telecommunications network operation,MY,0,0,0,0,0,0,246016,224512,252160,245760,245760,164881,0,119040,238080,246016,238080,246016,246016,222208,246016,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,558,513,582,570,570,401,0,270,540,558,540,558,558,504,558,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,26,0,0,3,6,0,1,0,8,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1248,1601,323,557,327,131,76,123,62,57,94,102,362,62,0,0,0,23,24,34,1,0,1,8,24,51,1,0,1,1
692,1891,i-Berhad,N,681100,Real estate development,MY,1,0,0,0,0,0,7936,7168,7936,17920,37376,25600,0,19200,38400,39680,38400,39680,39680,35840,39680,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,31,28,31,40,59,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,110,783,226,334,371,55,149,156,65,184,81,85,90,62,0,0,1,31,84,112,0,0,4,33,11,38,108,0,0,0
693,1893,MY EVOLUTION SDN BHD,N,432106,"Telecommunications equipment, installation and maintenance",MY,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
694,1894,ECS ICT BERHAD,N,432106,"Telecommunications equipment, installation and maintenance",MY,0,0,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4573,17515,5,0,0,0,0,0,0,0,0,0,0,0,0,0,6,8,0,0,0,0,0,0,0,0,0,0,0
695,1895,UNIVERSITI UTARA MALAYSIA ,N,853000,Universities and colleges providing post-secondary courses,MY,1,1,0,0,0,0,60416,50176,31744,56320,61440,40960,0,30720,61440,63488,61440,63488,63488,57344,63488,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,149,112,31,130,150,100,0,75,150,155,150,155,155,140,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,1119,2869,1977,2988,10573,705,358,789,408,3779,590,298,296,465,0,0,10,842,656,964,3,0,104,868,52,705,835,74,47,23
696,1896,CRF COMPUTER RECOVERY FACILITY SDN BHD,N,432106,"Telecommunications equipment, installation and maintenance",MY,1,1,0,0,0,0,31744,28672,31744,30720,30720,20480,0,14336,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,14,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,35,13,14,0,0,15,2,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0
697,1897,Exitra Sdn Bhd,N,639900,Other information service activities n.e.c.,MY,1,0,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,124,120,120,80,0,60,120,124,120,124,124,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,40,13,12,35,12,5,0,0,10,0,21,20,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
698,1898,DANAWA RESOURCES SDN BHD (164490-D),N,619100,Internet access services,MY,1,0,0,0,0,0,99072,111104,261888,246528,196608,81920,0,65280,129792,126976,122880,126976,126976,114688,129024,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,170,238,341,318,288,180,0,30,57,31,30,31,31,28,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,659,3114,3160,2436,2997,1328,688,905,1043,1278,781,152806,55972,124,0,0,9,29,11,87,0,0,42,107,13,87,131,4,4,4
699,1899,SKALI,N,941100,Activities of business and employers membership organisations,MY,1,1,0,0,0,0,63488,104448,124928,122880,113664,64512,0,61440,122880,126976,122880,126976,126976,114688,126976,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,248,270,308,300,291,183,0,150,300,310,300,310,310,280,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,29,0,0,0,0,0,0,0,0,2,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,119,85,41,31,29,31,47,30,31,30,31,24,28,31,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0
700,1900,Malaysia Kuala Lumpur Icore Technology Sdn Bhd,N,721000,Research and development on natural sciences and engineering,MY,1,1,0,0,0,0,2816,7168,1536,1536,1280,0,0,0,0,0,0,0,66304,64512,70400,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,11,28,6,6,5,0,0,0,0,0,0,0,259,252,275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,23,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
701,1901,Bahagian Perkhidmatan Teknologi Maklumat,N,721000,Research and development on natural sciences and engineering,MY,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
702,1902,PEERING1 SDN BHD,N,619100,Internet access services,MY,1,0,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,30720,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,30,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,20,24,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0
703,1903,No.31-A Jalan Tiara Tiara Square,N,619100,Internet access services,MY,0,0,0,0,0,0,63488,57344,63488,61440,61440,40960,0,30720,61440,63488,61440,63488,63488,57344,63488,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,248,224,248,240,240,160,0,120,240,248,240,248,248,224,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,2601,7291,5059,24151,5058,1296,756,5334,467,942,465,236,302,434,0,0,13,115,88,422,6,0,246,539,114,334,363,0,0,0
704,1904,Universiti Tun Hussein Onn Malaysia,N,853000,Universities and colleges providing post-secondary courses,MY,1,1,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,19968,19200,30720,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,48,44,89,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,35,9,0,14,0,0,0,0,0,36,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
705,1905,Conversant Berhad,N,631200,Web portals,MY,1,0,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
706,1906,L3-CDNS,N,611000,Telecommunications network operation,MY,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
707,1907,University of Malaya,N,853000,Universities and colleges providing post-secondary courses,MY,1,1,0,0,0,0,63488,57344,63488,61440,61440,40960,0,17408,30720,31744,30720,31744,31744,28672,43008,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,155,140,155,150,150,100,0,62,120,124,120,124,124,112,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,206,398,1665,4571,11668,4659,436,1428,668,2054,2819,111,474,124,0,0,36,324,372,1880,16,0,822,1554,196,1276,1217,131,56,28
708,1908,Universiti Sains Islam Malaysia,N,853000,Universities and colleges providing post-secondary courses,MY,1,1,0,0,0,0,55552,50176,55552,44544,23040,14848,0,11520,23040,23808,23040,23808,23808,21504,23808,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,124,111,90,58,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,389,375,513,619,364,343,186,212,195,189,179,155,161,186,0,0,0,0,13,11,0,0,0,0,0,0,0,0,0,0
709,1909,Exabytes Ecommerce Sdn Bhd,N,941100,Activities of business and employers membership organisations,MY,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,10,12,17,34,2,38,5,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
710,1910,TS Global Network Sdn Bhd,N,611000,Telecommunications network operation,MY,1,1,0,0,0,0,31744,28672,31744,30720,49920,46080,0,34560,69120,71424,69120,71424,71424,64512,71424,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,60,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,17,12,4,3,31,30,9,0,0,0,17,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
711,1911,Qinetics Solutions Berhad,N,941100,Activities of business and employers membership organisations,MY,1,1,0,0,0,0,15872,14336,15872,15360,3072,0,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,12,0,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
712,1912,Universiti Malaysia Sabah,N,853000,Universities and colleges providing post-secondary courses,MY,1,1,0,0,0,0,55808,57344,63488,60416,53760,35840,0,26880,53760,55552,53760,55552,61696,57344,47104,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,125,140,155,146,120,80,0,60,120,124,120,124,148,140,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,702,1087,2390,1444,418,255,31,86,180,88,201,134,106,93,0,0,10,88,57,11,0,0,0,0,0,0,0,0,0,0
713,1913,Formis Development Sdn Bhd,N,432106,"Telecommunications equipment, installation and maintenance",MY,1,0,0,0,0,0,63488,57344,63488,61440,61440,40960,0,30720,61440,63488,61440,63488,63488,57344,79872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,334,325,528,1404,587,324,428,977,335,177,139,311,100,124,0,0,1,38,81,296,3,0,183,394,59,204,246,0,12,8
714,1914,CET DEVELOPMENT SDN BHD,N,611000,Telecommunications network operation,MY,1,0,0,0,0,0,55552,50176,55552,53760,53760,35840,0,26880,53760,55552,53760,55552,55552,50176,55552,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,124,120,120,80,0,60,120,124,120,124,124,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,17,30,27,31,28,39,74,60,62,60,62,51,50,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
715,1915,IP Core Sdn Bhd,N,611000,Telecommunications network operation,MY,0,0,0,0,0,0,71424,64512,71424,69120,69120,46080,0,34560,69120,71424,69120,71424,71424,64512,71424,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,45,90,93,90,93,93,84,93,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,464,2600,5777,6054,5001,1466,1072,4102,915,1793,2388,683,268,279,0,0,8,241,220,359,74,0,180,627,87,406,780,11,14,3
716,1916,Universiti Teknologi Malaysia,N,853000,Universities and colleges providing post-secondary courses,MY,1,1,0,0,0,0,1523712,1376256,1523712,1474560,1474560,983040,0,737280,1474560,1523712,1474560,1523712,1523712,1376256,1523712,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,465,420,465,450,450,300,0,225,450,465,450,465,465,420,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,645,890,1171,1577,1617,1706,95,327,470,1065,343,340,188,527,0,0,2,63,38,749,2,0,170,516,43,388,226,14,13,8
717,1917,ITG Communications Sdn Bhd,N,611000,Telecommunications network operation,MY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4608,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,18,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
718,1918,TeamCloud Solution Sdn Bhd,N,620199,Development of other softwares and programming activities,MY,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
719,1919,MicroFocus (M) Sdn Bhd,N,619100,Internet access services,MY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
720,1920,Fiber At Home City Networks Sdn Bhd,N,619100,Internet access services,MY,1,0,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,51,224,102,155,176,82,131,294,206,123,123,86,48,62,0,0,2,17,54,13,0,0,8,8,0,0,5,0,0,0
721,1921,Maju Nusa Sdn Bhd,N,619100,Internet access services,MY,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
722,1922,INNET SOLUTIONS SDN BHD,N,611000,Telecommunications network operation,MY,0,0,0,0,0,0,126976,114688,126976,229376,368384,245760,0,184320,368640,380928,368640,380928,380928,344064,380928,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,310,280,310,521,809,540,0,405,810,837,810,837,837,756,837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,119,129,987,597,2684,1348,125778,107716,5099,130,360,146,1478,155,0,0,6,18,15,72,11,0,431,494,142,568,219,0,0,7
723,1923,iSoS OneSolution Sdn Bhd,N,620199,Development of other softwares and programming activities,MY,0,0,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
724,1924,Net2One Sdn Bhd,N,619100,Internet access services,MY,1,1,0,0,0,0,31744,28672,31744,39936,61440,40960,0,30720,61440,69888,69120,71424,71424,64512,71424,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,39,60,40,0,30,60,87,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,41,94,151,70,27,6,103,2141,153,1224,128,24,16,31,0,0,0,0,0,12,0,0,28,41,6,23,38,0,4,0
725,1925,Common Tower Technologies Sdn Bhd,N,721000,Research and development on natural sciences and engineering,MY,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
726,1926,MYNIC Berhad,N,611000,Telecommunications network operation,MY,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
727,1927,Felda Prodata Systems Sdn Bhd,N,432106,"Telecommunications equipment, installation and maintenance",MY,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
728,1928,X86 Network Sdn Bhd,N,611000,Telecommunications network operation,MY,0,0,0,0,0,0,47616,43008,47616,46080,46080,30720,0,23040,46080,47616,46080,47616,47616,43008,47616,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,186,168,186,180,180,120,0,90,180,186,180,186,186,168,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,15,0,34,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
729,1929,NGN Connection Sdn Bhd,N,611000,Telecommunications network operation,MY,1,1,0,0,0,0,63488,57344,63488,61440,61440,40960,0,30720,61440,63488,61440,63488,63488,57344,63488,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,573,518,2185,149,2077,85,56,31,30,68,82,61,62,0,0,0,68,85,337,0,0,47,10,3,16,43,0,0,0
730,1930,University Malaysia Pahang,N,853000,Universities and colleges providing post-secondary courses,MY,1,1,0,0,0,0,71424,64512,71424,69120,69120,46080,0,34560,69120,71424,69120,71424,71424,64512,67328,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,155,140,155,150,150,100,0,75,150,155,150,155,155,140,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,24,45,42,1,16,4,22,28,20,9,0,16,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
731,1931,Voizz Global Sdn Bhd,N,611000,Telecommunications network operation,MY,0,1,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,29,31,30,31,30,31,31,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0
732,1932,Telekom Malaysia,N,611000,Telecommunications network operation,MY,1,1,0,0,0,0,302602240,223628800,304463488,305320448,306039552,204464640,0,154668288,298425856,298038272,287969536,297570816,297649152,268921856,296680192,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,44874,40491,49819,48719,49437,33482,0,25933,31647,14161,13681,14146,14173,12824,14185,1,89,0,0,1,0,3,5,5,1,0,0,4,0,1,0,0,1,0,0,9,3,2,0,0,3,0,0,8,4,0,6,1,119,0,0,0,0,3,5,5,1,0,0,4,0,13,2,0,36733,382336,619191,1402243,1907209,1974322,1048539,1504791,374425,147504,81260,93548,95313,507529,999409,0,0,828,19830,12834,40053,1119,0,34405,30575,10741,36502,37228,982,620,643
733,1933,DiGi Telecommunications Sdn Bhd,N,611000,Telecommunications network operation,MY,1,1,0,0,0,0,10586624,9562112,12618240,12211200,12211200,8140800,0,6105600,12211200,12618240,12211200,12618240,12618240,11659264,12618240,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,248,224,310,300,300,200,0,150,300,310,300,310,310,284,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1102,18394,19813,31973,22576,21996,7965,13179,18930,14137,14485,15562,8747,11835,9393,0,0,27,1047,1213,1120,46,0,597,1735,250,2095,7853,47,39,39
734,1935,Binariang Berhad,N,611000,Telecommunications network operation,MY,1,1,0,0,0,0,36317440,33420288,37251584,35603456,34790400,23193600,0,17383424,34936064,36488960,35408384,36595712,36637952,33094656,36630272,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,2675,2791,3441,3122,2790,1860,0,1379,2894,3237,3254,3390,3555,3220,3555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1396,30837,111507,125087,174421,346338,104259,109047,52515,30552,15717,14970,11821,48808,38750,0,0,576,6739,5861,12624,593,0,8873,16159,2426,10425,13251,278,74,72
735,1936,TIME,N,611000,Telecommunications network operation,MY,1,0,0,0,0,0,29248512,26716416,29586176,28631296,28631552,18563072,0,12345856,24689408,25741056,25674240,26530048,26487040,23862272,26420480,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,2315,2105,2359,2281,2282,1512,0,1096,2183,2267,2250,2325,2157,1708,1897,0,0,1,0,0,0,0,0,0,0,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,9,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,219,11541,18602,11438,15727,131267,60174,19097,13141,5731,6719,1795,2426,207887,422840,0,0,27,2274,2971,4041,339,0,2968,7678,2755,9363,2780,54,65,79
736,1937,Telekom Malaysia Access Point Service,N,611000,Telecommunications network operation,MY,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
737,1938,iBasis,N,941100,Activities of business and employers membership organisations,MY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
738,1939,MYLOCA,N,631200,Web portals,MY,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
739,1940,GITN (M) Sdn Bhd,N,611000,Telecommunications network operation,MY,1,0,0,0,0,0,126976,114688,126976,122880,122880,81920,0,65280,130560,134912,130560,134912,134912,121856,143104,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,124,112,124,120,120,80,0,75,150,155,150,155,155,140,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,8811,3645,1352,1269,1344,1056,542,7923,3071,7581,6842,488,447,465,0,0,4,469,190,138,83,0,72,310,4,329,1654,35,23,7
740,1942,MaxisNet International Internet Gateway,N,611000,Telecommunications network operation,MY,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
741,1943,Global Transit Communications,N,611000,Telecommunications network operation,MY,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
742,1944,Virtela,N,620199,Development of other softwares and programming activities,MY,1,1,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
743,1945,DOCOMO interTouch,N,611000,Telecommunications network operation,MY,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
744,1946,IPTEL SDN BHD,N,661901,Investment advisory services,MY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
745,1947,PIRADIUS NET,N,611000,Telecommunications network operation,MY,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
746,1948,GAPURNA TECHNOLOGIES SDN BHD,N,611000,Telecommunications network operation,MY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
747,1949,University of Nottingham Malaysia Campus,N,853000,Universities and colleges providing post-secondary courses,MY,1,1,0,0,0,0,26112,24960,27648,23040,23040,15360,0,11520,23040,21248,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,80,83,92,60,60,40,0,30,60,52,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,116,88,0,0,0,22,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
748,1950,AMWAY IT SERVICES SDN BHD,N,478299,Other retail sale not via stores and movable stalls,MY,1,1,1,1,0,0,7936,7168,7936,12800,38400,25600,0,19200,38400,39680,38400,39680,39680,35840,39680,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,45,120,80,0,60,120,124,120,124,124,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
749,1951,BRUHAAS,N,611000,Telecommunications network operation,MY,1,1,0,0,0,0,7936,7168,7680,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,30,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
750,1952,Inland Revenue Board Of Malaysia,N,649299,"Personal loan, mortgage, instalment credit and other credit granting",MY,1,1,0,0,0,0,15872,14336,15872,15360,21504,20480,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,72,60,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
751,1953,Mudah.my,N,781000,Activities of employment placement agencies,MY,1,1,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,124,120,120,80,0,60,120,124,120,124,124,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
752,1954,Agarto Sdn Bhd,N,702200,Business management and consultancy services,MY,0,0,0,0,0,0,63488,57600,63488,61440,61440,40960,0,34304,68608,71424,69120,71424,59392,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,155,141,155,150,150,100,0,89,178,186,180,186,139,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,40,47,30,15,44,37,54,72,45,55,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0
753,1955,SEDCO COMMUNICATIONS SDN BHD,N,611000,Telecommunications network operation,MY,0,0,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,170,1068,156,288,61,23,66,519,111,715,42,39,28,31,0,0,0,60,48,17,0,0,1,18,6,9,0,0,0,0
754,1956,MEASAT Broadcast Network Systems,N,901000,Performing arts activities,MY,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
755,1957,AirAsia Berhad,N,791000,Travel agency activities,MY,1,1,1,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,22016,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,43,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,14,0,0,0,0,69,59,33,293,9,10,0,0,0,0,0,0,0,0,0,0,0,2,4,14,0,0,0
756,1958,Aktif Setegap Sdn Bhd,N,631100,"Data processing, hosting and related activities",MY,1,0,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
757,1959,BIG BAND SDN BHD,N,619100,Internet access services,MY,1,0,0,0,0,0,0,0,0,0,53760,276480,0,253440,506880,523776,506880,523776,507904,444416,492032,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,130,660,0,600,1200,1240,1200,1240,1193,1036,1147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,23,84,31,25,23,477,932,93,0,0,0,0,0,0,0,0,0,5,0,0,0,0,1,4
758,1960,SKSA TECHNOLOGY SDN BHD,N,631200,Web portals,MY,1,1,0,0,0,0,95232,86016,95232,92160,92160,61440,0,46080,92160,95232,92160,95232,95232,86016,95232,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,279,252,279,270,270,180,0,135,270,279,270,279,279,252,279,1,1,0,0,1,0,0,0,0,0,0,0,0,1,1,0,8,6,0,2,3,2,0,0,1,1,2,0,2,2,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,251,125,7552,64215,47798,27378,88,40,38,51,48,160,39,0,0,0,4,2,3,1,2,0,2,3,1,0,0,0,1,0
759,1961,NAXLEVEL,N,631200,Web portals,MY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
760,1962,Exabytes,N,631200,Web portals,MY,1,1,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,135,41,31,1,0,0,1,49,58,64,31,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0
761,1963,CELCOM TIMUR (SABAH) SDN BHD,N,611000,Telecommunications network operation,MY,1,0,0,0,0,0,23808,21504,23808,23040,23040,15360,0,11520,23040,23808,23040,23808,23808,21504,23808,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,331,732,928,2106,1156,648,595,581,389,1453,464,290,213,310,0,0,0,31,32,56,0,0,86,126,6,95,99,3,0,1
762,1964,PersiaSYS Sdn Bhd,N,611000,Telecommunications network operation,MY,0,0,0,0,0,0,23808,21504,23808,23040,23040,15360,0,7680,20480,15872,15360,15872,23296,21504,27904,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,30,80,62,60,62,91,84,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,29,31,16,28,30,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
763,1965,Altel Communications Sdn Bhd,N,611000,Telecommunications network operation,MY,1,1,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
764,1966,Asian Broadcasting Network (M) Sdn Bhd,N,619100,Internet access services,MY,1,1,0,0,0,0,230144,207872,126464,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,558,504,307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,448,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
765,1967,Danawa Resources Sdn Bhd,N,619100,Internet access services,MY,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
766,1968,Global Forway Sdn Bhd,N,611000,Telecommunications network operation,MY,1,1,0,0,0,0,93696,86016,95232,92160,92160,51200,0,38400,76800,79360,76800,79360,79360,71680,79360,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,273,252,279,270,270,140,0,105,210,217,210,217,217,196,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,32,157,175,533,220,55,300,244,373,214,319,19,39,62,0,0,0,18,27,232,0,0,8,19,16,20,0,0,0,0
767,1969,Jisc Collections and Janet Limited,N,611000,Telecommunications network operation,MY,1,1,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
768,1970,ControlVM Technology,N,631100,"Data processing, hosting and related activities",MY,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
769,1971,LARGESERVER SOLUTIONS,N,631200,Web portals,MY,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
770,1972,UNIVERSITI TENAGA NASIONAL SDN BHD,N,855000,Educational support services,MY,1,1,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,0,58,0,0,0,16,0,21,6499,3758,36,0,0,0,0,0,0,0,0,0,0,0,0,0,155,270,0,0,0
771,1973,AIA Bhd,N,651200,Non-life insurance underwriting,MY,1,1,1,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
772,1974,PETRONAS ICT Sdn Bhd,N,190200,Petroleum refineries,MY,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
773,1975,Lynuxtel Malaysia Sdn Bhd,N,611000,Telecommunications network operation,MY,1,0,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,67,428,116,483,539,1016,148,3988,355,176,1457,79,44,62,0,0,1,5,1,66,0,0,187,268,4,119,292,0,0,2
774,1976,NTT MSC Sdn Bhd,N,611000,Telecommunications network operation,MY,1,1,0,0,0,0,0,30720,63488,61440,61440,40960,0,30720,61440,63488,61440,63488,63488,57344,63488,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,30,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
775,1977,D.A.H. Private Bank,Y,641201,Licensed banks,HK,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
776,1978,Eastar Technology Data Center in Hongkong/ EASTAR (HK) Ltd,Y,451613,Export trading of electronic parts,HK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
777,1979, iBasis-Sydney ICO,N,611000,Telecommunications network operation,US,0,1,0,0,0,0,47616,43008,47616,46080,46080,30720,0,23040,46080,47616,46080,47616,47616,43008,47616,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
778,1980, IBM Hong Kong,Y,620199,Development of other softwares and programming activities,HK,1,1,1,1,0,0,126976,114688,126976,122880,122880,81920,0,61440,122880,126976,122880,126976,126976,114688,126976,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
779,1981,ON.CC(HK) Ltd,Y,581201,Publishing of newspapers,HK,1,1,1,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
780,1982, Reach Networks HK Ltd,N,619100,Internet access services,HK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
781,1983,SUDU.CN,Y,631100,"Data processing, hosting and related activities",CN,0,0,1,0,1,0,31744,28672,32256,31232,31232,21760,0,15360,32000,31744,30720,31744,31744,28672,33280,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,33,32,32,25,0,15,35,31,30,31,31,28,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
782,1984,01Link Network Services Limited,N,631100,"Data processing, hosting and related activities",HK,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
783,1985,2012 Limited / Netfront,Y,619100,Internet access services,HK,0,0,0,0,0,0,571648,510976,562432,545280,545280,363520,0,272640,545280,566528,560640,579328,341760,293888,325376,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,419,368,416,390,390,260,0,195,390,409,420,434,405,364,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,58,132,477,321,260,304,272,292,571,4702,1928,62,28,31,0,0,0,0,4,3,0,0,0,1,0,0,0,0,0,0
784,1986,21Vianet Co Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,1,1,1,0,11200512,9398016,11455232,10987264,10458880,5371904,0,3324160,6611200,6837504,6118912,6135040,6297600,5892608,5988096,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,0,2070,1801,2213,2009,1957,1190,0,848,1690,1572,1423,1462,1537,1534,1532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,121,629,337,265,15275,4329,1123,195,211,208,1255,182,78,62,0,0,5,10,14,13,15,0,8,10,1,3,14,14,4,4
785,2014,8Lian Technology Co Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
786,2015,AASTOCKS,Y,631100,"Data processing, hosting and related activities",HK,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
787,2016,ABC Computer Systems Ltd,Y,631100,"Data processing, hosting and related activities",HK,1,0,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,124,120,120,80,0,60,120,124,120,124,124,112,124,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,1386,0,0,0,0,16,0,0,0,7,17,25,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
788,2017,ABC NET Ltd,N,631100,"Data processing, hosting and related activities",HK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
789,2018,ABN Amro Clearing Sydney Pty Ltd,N,702200,Business management and consultancy services,AU,1,1,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
790,2020,ACME Communications,N,619100,Internet access services,HK,0,1,0,0,0,0,229120,201216,222208,215040,215040,143104,0,49920,99840,103168,99840,103168,103168,93184,103168,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,895,786,868,840,840,559,0,195,390,403,390,403,403,364,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,29,36,43,62,65,36,88,96,74,62,76,53,50,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
791,2021,AFE Solutions Limited,Y,619100,Internet access services,HK ,0,0,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
792,2022,Airport Authority Hong Kong,Y,522300,Service activities incidental to air transportation,HK,1,1,1,1,0,0,39680,35840,39680,38400,38400,25600,0,19200,38400,39680,38400,39680,39680,35840,39680,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,124,120,120,80,0,60,120,124,120,124,124,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
793,2023,Airway Communication Holdings Limited,N,619100,Internet access services ,CN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
794,2024,Akamai Technologies Inc,N,631100,"Data processing, hosting and related activities",HK,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
795,2025,Alibaba (China) Technology Co Ltd,Y,620199,Development of other softwares and programming activities,CN,1,1,1,1,1,0,118135552,129886720,202208256,155514112,167128576,85970176,0,106244864,213044736,199989504,170517504,176538624,184047872,168870912,196694016,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,3574,3642,4789,4292,4514,2644,0,2774,5905,6473,6192,6424,6271,5544,5997,2,7,16,4,13,22,93,76,8,1,0,0,0,1,1,1,2,9,13,3,3,21,8,8,5,13,23,18,15,16,19,23,1,5,12,2,12,17,90,80,8,1,0,0,0,2,1,3,0,1172,4413941,1678661,1155432,627671,1689237,1274629,243021,92295,126382,172828,45004,106858,1468161,2264178,0,0,10916,40877,25580,16255,28081,0,6567,24809,1386,10988,2558,3030,2747,1586
796,2032,AM Capital Limited ,N,661201,Investment banking activities ,HK,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
797,2033,Amsterdam Internet Exchange Hong Kong Office,Y,619100,Internet access services,HK,1,1,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
798,2035,Antaeus Group,Y,550100,Hotels,CN,0,0,1,1,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,124,120,120,80,0,60,120,124,120,124,124,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
799,2036,APT Telecom Services Ltd/ APT Satellite Holdings Ltd,Y,619100,Internet access services,HK,1,0,0,0,0,0,111104,100352,118784,115200,115200,76800,0,57600,115200,119040,115200,119040,119040,107520,123136,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,434,392,464,450,450,300,0,225,450,465,450,465,465,420,481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,55,236,156,156,103,91,86,52,37,33,33,31,28,31,0,0,0,35,13,7,0,0,5,0,0,1,0,0,0,0
800,2037,ARRIS Group Inc,N,611000,Telecommunications network operation ,US,0,1,0,0,0,0,163840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
801,2038,Arrow Asia Hong Kong AS,Y,452613,Import for wholesale of electronic parts,HK,1,1,1,1,0,0,15872,14336,15872,12288,8448,5120,0,3840,7680,7936,7680,7936,8192,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,48,33,20,0,15,30,31,30,31,32,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
802,2039,AS Data(Hong Kong)Limited,Y,631100,"Data processing, hosting and related activities",HK,0,0,0,0,0,0,333312,301056,333312,319744,314880,210176,0,199680,399360,412672,399360,414464,449792,408576,440064,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,1302,1176,1302,1249,1230,821,0,780,1560,1612,1560,1619,1757,1596,1719,0,2,0,3,3,5,4,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,3,5,4,0,0,0,0,0,0,0,0,0,0,8,1759,91607,28774,236,809,186,183,207,174,120,127,146,139,124,0,0,0,2576,818,0,0,0,0,1,0,0,1,0,3,1
803,2042,Asia Data Center Limited,Y,631100,"Data processing, hosting and related activities",HK,0,0,0,0,0,0,103168,93184,103168,100352,99840,68608,0,56320,115200,119040,115200,119040,119040,107520,123136,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,310,280,310,302,300,208,0,175,360,372,360,372,372,336,388,1,2,0,0,0,0,8,5,0,0,1,0,0,0,0,0,2,2,0,0,0,0,1,1,0,0,0,2,1,0,0,0,0,1,0,0,0,0,7,5,0,0,1,0,0,0,0,0,0,0,22,28,0,0,0,3,13,16,33,77,62,63,62,62,0,0,0,2,0,0,0,0,1,1,0,3,2,0,3,0
804,2043,ASIA POKTIN TECHNOLOGY Co Ltd,Y,631100,"Data processing, hosting and related activities",HK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
805,2044,Asia Web Service Ltd,Y,631100,"Data processing, hosting and related activities",HK,1,1,0,0,0,0,142848,129024,142848,138240,138240,92160,0,69120,138240,142848,138240,142848,142848,129024,147968,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,217,196,217,210,210,140,0,105,210,217,210,217,217,196,237,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,163,202,120,160,93,57,31,71,30,27,2,0,0,0,0,0,0,1,0,10,11,0,0,1,0,1,0,0,20,1
806,2045,Asiamax Technology Limited VPN Service Provider Hong Kong,Y,451613,Export trading of electronic parts,HK,0,0,0,0,0,0,293632,267520,295168,230912,222720,177664,0,122880,245760,253952,245760,253952,214784,193536,222464,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,217,205,223,184,180,164,0,135,270,279,270,279,220,196,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,44,30,30,2,0,29,17,102,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
807,2046,AsiaTech Telecom Limited,N,631100,"Data processing, hosting and related activities",HK,0,0,0,0,0,0,39680,35840,39680,38400,31488,20224,0,11520,23040,23808,23040,23808,22016,14336,15616,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,155,140,155,150,123,79,0,45,90,93,90,93,86,56,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
808,2047,AsiaTech Telecom Ltd,Y,611000,Telecommunications network operation,HK,0,0,0,0,0,0,0,0,0,0,6144,5120,0,3840,7680,7936,7680,7936,9728,14336,16128,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,24,20,0,15,30,31,30,31,38,56,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,16,28,5,31,1,20,11,88,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
809,2048,ASM PACIFIC TECHNOLOGY LIMITED,Y,101400,Manufacture and processing of slaughtering by-products (excl. leather tanning and dressing),HK,0,0,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
810,2049,Austreme,N,631100,"Data processing, hosting and related activities",HK,1,1,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,26,2,18,20,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
811,2050,Azonne Limited,N,620200,Information technology consultancy activities and computer facilities management activities,HK,0,0,0,0,0,0,190464,172032,190464,184320,184320,122880,0,92160,184320,190464,184320,190464,190464,172032,190464,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,434,392,434,420,420,280,0,210,420,434,420,434,434,392,434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
812,2051,Baidu (Hong Kong) Limited,Y,631200,Web portals,HK,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
813,2052,Bank of America N.A. Hong Kong,Y,641201,Licensed banks,HK,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
814,2054,Bank Of China (Hong Kong) Limited,Y,641201,Licensed banks,HK,0,0,0,0,0,0,103168,93184,103168,99840,95488,61440,0,46080,92160,95232,92160,95232,104448,100352,113408,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,186,168,186,180,163,100,0,75,150,155,150,155,191,196,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
815,2055,Bank of China Limited,Y,641201,Licensed banks,CN,0,0,1,1,1,0,15872,14336,16640,23040,23040,15360,0,11520,23040,23808,23040,23808,23808,21504,23808,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,65,90,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
816,2056,BBIX Inc,N,619100,Internet access services,JP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
817,2057,Beijing All's Vision Technology Co Ltd,Y,619100,Internet access services,CN,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
818,2058,Beijing Blan Star Technology Co Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
819,2059,Beijing Blue I.T Technologies Co Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,1,1,1,0,225024,204288,173056,188416,226304,308736,0,499712,1012736,1163264,1105920,1136640,633856,356352,380928,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,243,222,187,184,221,303,0,488,980,1043,990,1017,526,264,279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,66,58,62,55,272,87,33,63,93,19,34,31,28,0,0,0,1,0,1,2,4,0,0,0,0,1,0,1,0,3
820,2061,Beijing Capital-online science development Co Ltd,Y,611000,Telecommunications network operation ,CN,0,0,1,1,1,0,4865280,4399872,4862208,4700672,4699904,3138560,0,2350848,4713984,4881408,4796928,5071104,5293824,4795392,5293056,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,0,870,807,886,842,839,580,0,423,894,964,966,1054,1112,1008,1069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,56,229,182,376,76,107,96,98,97,48,33,89,69,93,0,0,0,1,1,3,0,0,0,3,0,0,0,0,4,6
821,2066,Beijing FastWeb Technology Co Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
822,2067,"Beijing flash newsletter cas telecommunication technology Co Ltd
",Y,619100,Internet access services,CN,0,0,1,1,1,0,11264,49664,144384,245248,281600,128000,0,111616,230912,136704,0,16640,1098240,991488,1166592,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,16,26,158,298,314,135,0,127,248,140,0,65,276,249,279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,34,1498,2626,2738,751,1042,651,665,333,10,224,277,359,155,0,0,0,0,0,0,0,0,0,3,0,0,0,0,2,2
823,2068,BeiJing Guangdian Xinchuang Communication & Technology Co Ltd,Y,611000,Telecommunications network operation ,CN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
824,2069,Beijing Guanghuan Telecom Group,Y,611000,Telecommunications network operation ,CN,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
825,2070,Beijing Hejushuzi Technology Corporation Limited,Y,619100,Internet access services ,CN,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
826,2071,Beijing Huaxia Jakub Network Technology Co Ltd,Y,619100,Internet access services,CN,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
827,2072,Beijing Innovation Technology Co Ltd for business network communications,Y,631100,"Data processing, hosting and related activities",CN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
828,2073,Beijing Internet Harbor Technology Co Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,1,1,1,0,114176,129024,161536,145664,145920,97280,0,79872,199936,211968,200704,164608,355584,307200,324864,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,168,196,230,239,240,160,0,138,322,376,457,410,644,587,619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,8,7,0,338,25,1039,135,83,70,31,12,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0
829,2077,Beijing IQIYI Science & Technology Co Ltd,Y,631200,Web portals,CN,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
830,2078,Beijing Kuancom Network Technology Co Ltd,N,631100,"Data processing, hosting and related activities",CN,0,0,1,1,1,0,4825088,4358144,4825088,4669440,4669440,3112960,0,2334720,4669440,4825088,4669440,4825088,4825088,4358144,4825088,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1488,1344,1488,1440,1440,960,0,720,1440,1488,1440,1488,1488,1344,1488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
831,2080,Beijing Qihu Technology Co Ltd,Y,620199,Development of other softwares and programming activities,CN,0,0,1,1,1,0,698368,623872,702464,675840,686592,449024,0,260096,529408,575744,599040,619008,619008,559104,614912,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,589,536,605,570,591,370,0,117,239,310,420,434,434,392,418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,15,40,34,45,4,31,31,34,54,25798,1884,23,20,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
832,2081,Beijing Sanxin Shidai Co Ltd,Y,619100,Internet access services ,CN,0,0,0,0,0,0,0,0,0,0,2774016,2509824,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,126,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
833,2083,Beijing Sohu New Media Information Technology Co Ltd,Y,631200,"media sites providing periodically updated
content",CN,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
834,2084,BeiJing Teamsun Technology Co Ltd,Y,619100,Internet access services,CN,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
835,2085,Beijing Times Netstar Technology Co Ltd,Y,611000,Telecommunications network operation ,CN,0,0,1,1,0,0,190464,172032,190464,184320,184320,122880,0,92160,184320,190464,184320,190464,190464,172032,190464,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,279,252,279,270,270,180,0,135,270,279,270,279,279,252,279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,29,31,30,27,13,20,31,26,0,20,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
836,2086,Beijing Unionread Information Technology Co Ltd,Y,619100,Internet access services,CN,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
837,2087,Beijing Wendingqingyun Technology Co Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
838,2088,Beijing XiRang Media Cultural Co Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,0,1,1,0,32014080,28924928,32013568,30988800,30988800,20586496,0,16170240,32211968,33429248,32263680,33339136,33289984,30092288,37271296,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,3959,3578,3966,3813,3750,2477,0,1950,3909,4021,3870,3999,3958,3579,4160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,746,36905,16319,23733,7861,3435,4656,20315,298,262,168,173,577,446,186,0,0,75,379,639,307,275,0,101,7,0,6,17,0,0,28
839,2089,Beijing Zhongguancun Information Technology Co Ltd,Y,642000,Investment and holding companies,CN,0,0,1,0,1,0,129792,149504,159488,490496,2628864,1960960,0,453120,906240,931584,898560,928512,928512,838656,905984,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,197,223,220,251,367,385,0,270,540,539,510,527,527,476,523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
840,2090,Bestv IPTV Ltd,Y,602000,Television programming and broadcasting activities,CN,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
841,2091,BEYOND EXCELLENT TECHNOLOGY LTD,N,631100,"Data processing, hosting and related activities",HK,0,0,0,0,0,0,0,0,720896,983040,983040,196608,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,21,30,30,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
842,2092,BII Group Holding Ltd,Y,619100,Internet access services ,CN,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
843,2094,Bloomberg Financial Information (Beijing) Co Ltd,Y,639100,News agency activities,CN,0,0,1,1,0,0,23808,21504,23808,23040,23040,15360,0,11520,22528,23296,23040,23808,23808,21504,22784,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,45,88,91,90,93,93,84,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
844,2095,BOC International Holdings Limited,Y,661201,Investment banking activities,HK,0,0,0,1,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
845,2096,BodyTrace Limited,N,619100,Internet access services,HK,0,0,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
846,2097,BZYUN Cloud computing & IOT Technology Co Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
847,2098,CargoSmart Limited,Y,522299,Service activities incidental to water transportation n.e.c.,HK,1,1,1,1,1,0,23808,21504,23808,23040,23040,15360,0,11520,23040,23808,23040,23808,23808,21504,23808,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
848,2099,Carpathia Hosting,N,631100,"Data processing, hosting and related activities",US,1,1,0,0,0,0,95232,86016,95232,92160,92160,61440,0,46080,92160,95232,92160,95232,95232,86016,95232,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,186,168,186,180,180,120,0,90,180,186,180,186,186,168,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
849,2100,Cathay Pacific Airways Ltd,Y,510900,Air transport services n.e.c.,HK,1,1,1,1,0,0,23808,21504,23808,23040,23040,15360,0,11520,23040,23808,23040,23808,23808,21504,23808,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
850,2101,CEIC Data Co Ltd,Y,631100,"Data processing, hosting and related activities",HK,1,1,1,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,4864,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
851,2102,Centrin Data Systems Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,1,1,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,25600,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,124,112,124,120,120,80,0,60,120,124,120,124,124,112,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,470,8,0,0,0,0,0,22,58,31,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
852,2104,CERNET New Technology Co Ltd,Y,619100,Internet access services ,CN,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
853,2114,Chengdu Zhongli Data Technology Co Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
854,2115,Chevalier (Internet) Limited,Y,619100,Internet access services,HK,1,0,0,0,1,0,63488,57344,63488,60160,56320,37376,0,30720,61440,63488,61440,63488,63488,57344,63488,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,248,224,248,235,220,146,0,120,240,248,240,248,248,224,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,58,62,77,73,73,83,61,36,31,40,41,31,54,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
855,2117,China Communication Co Ltd,Y,611000,Telecommunications network operation ,CN,0,0,1,0,0,0,126976,114688,126976,122880,122880,81920,0,61440,122880,126976,122880,126976,118784,86016,95232,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,31,28,31,30,30,20,0,15,30,31,30,31,164,336,372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,145,155,143,144,116,124,124,101,104,120,124,124,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
856,2119,China Cultural Heritage Information and Consulting Center,Y,910100,Libraries and archives activities,CN,0,0,0,0,0,0,119040,107520,119040,115200,115200,76800,0,57600,115200,119040,115200,119040,119040,107520,119040,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,465,420,465,450,450,300,0,225,450,465,450,465,465,420,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
857,2120,China Dragon Telecom Co Ltd,Y,619100,Internet access services ,CN,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
858,2122,China Education and Research Network Center,Y,721000,Research and development on natural sciences and engineering,CN,0,0,1,1,1,0,1162429440,1004491008,1056478208,962677760,988022528,664562944,0,475323392,948194304,988308736,948032000,986921472,1001083392,891835904,992800256,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,0,27828,20576,27978,27685,26765,16015,0,10460,24139,25531,24824,26253,24086,19538,23622,3,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,5,2,3,2,1,0,1,1,1,3,6,2,3,0,3,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,371,2359579,188350,376509,332387,2041874,372068,273492,86992,41451,161488,37701,57314,382199,197408,0,0,2666,9626,1611,4587,2888,0,1904,794,243,2136,1167,164,458,478
859,2178,China Enterprise Communications Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,1,1,0,0,4529408,4057088,4494080,4350208,4348160,2906368,0,2181632,4365824,4505344,4364800,4516096,4515584,4078592,4511488,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,695,644,722,703,695,493,0,377,764,766,760,808,806,728,790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,78,117,143,119,79048,28114,3798,337,112,143,115,123,80,124,0,0,0,0,1,0,4,0,0,0,1,0,0,0,0,5
860,2181,China Financial Certification Authority,Y,661999,"Other miscellaneous activities auxiliary to financial
service activities n.e.c.",CN,0,0,1,1,1,0,39680,35840,39680,38400,38400,25600,0,19200,38400,39680,38400,39680,39680,35840,39680,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,155,140,155,150,150,100,0,75,150,155,150,155,155,140,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
861,2182,China Information Broadcast Network Co Ltd,Y,631200,Web portals,CN,0,0,0,0,0,0,126976,114688,126976,200704,245760,163840,0,122880,245760,253952,245760,253952,253952,229376,253952,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,49,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,51,46,30,31,28,31,31,3,0,22,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0
862,2183,China Internet Network Infomation Center,Y,631100,Internet access services,CN,0,0,1,1,1,0,2147483647,2147483647,2147483647,2147483647,2147483647,2147483647,0,1827262208,2147483647,2147483647,2147483647,2147483647,2147483647,2147483647,2147483647,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,0,26766,24172,26618,25725,25836,17247,0,12844,25805,26694,25914,26850,26841,24246,26916,36,114,71,75,62,62,78,63,50,1,5,3,9,1,1,1,15,28,4,129,124,562,1471,1219,7,46,19,12,24,71,36,9,34,119,61,69,56,62,76,79,51,2,5,3,9,3,7,0,0,65647,11905488,8032903,15475512,19566717,73530732,30683642,7578379,2856496,1784752,1862983,1327325,1509362,5248930,9397278,0,0,281150,200694,90341,92163,43366,0,22451,33120,5097,28802,17087,7404,15376,22818
863,2302,China Mobile communications corporation,Y,611000,Telecommunications network operation ,CN,0,1,1,1,1,0,1624927232,1424934912,1508780544,1442644736,1458752000,981910528,0,734857984,1474248192,1531364352,1507522816,1593210880,1602039296,1450835968,1615631872,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,0,52132,49178,55306,55224,57328,40026,0,31104,64181,66739,65212,67825,69187,62547,69194,1,9,3,1,0,2,0,0,0,0,0,0,1,0,0,0,1,6,4,1,1,2,0,0,0,0,2,0,0,0,0,0,0,8,3,0,0,1,0,0,0,0,0,0,1,0,0,0,0,4856,1442321,683994,1008528,2410900,14335243,5709231,1913665,1032824,725696,569211,473274,589479,1152928,1797659,0,0,2839,12777,11666,6253,11032,0,9067,32312,8501,32946,32616,538,23684,28116
864,2324,China Mobile Hong Kong Co Ltd,Y,611000,Telecommunications network operation,HK,1,1,1,1,1,0,1095168,989184,1095168,1059840,1059840,706560,0,529920,1059840,1113088,1098240,1134848,1171968,1060864,1207296,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1860,1680,1860,1800,1800,1200,0,900,1800,1930,1950,2015,2160,1960,2298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,8984,17895,224726,602043,221844,6237,40955,1209,14150,3242,3097,27248,26932,27032,0,0,2191,4151,10507,10867,9523,0,3619,8779,1091,5101,12785,4121,14761,8752
865,2325,China Mobile International Limited,Y,611000,Telecommunications network operation,HK,0,0,0,0,0,0,8212480,6028544,7018240,6689280,6171648,3983360,0,2987520,5975040,6174208,5975040,6436352,6798848,5863424,6490624,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,429,316,354,345,363,240,0,180,360,372,360,376,551,504,554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,17,13,11,3,0,16,0,660,31,30,31,26,28,31,0,0,0,0,0,0,0,0,0,375,0,0,0,0,0,0
866,2327,China National Institute of Standardization,Y,721000,Research and development on natural sciences and engineering,CN,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
867,2328,China Network Services (HK) Ltd AS,Y,619100,Internet access services,HK,1,0,0,0,0,0,190464,172032,190464,184064,184320,122880,0,92160,184320,190464,184320,190464,190464,172032,190464,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,341,308,341,329,330,220,0,165,330,341,330,341,341,308,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,40,43,54,66,85,55,95,129,81,31,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
868,2329,China Radio International,Y,602000,Television programming and broadcasting activities,CN,0,0,0,0,0,0,261888,236544,261888,253440,253440,168960,0,126720,253440,261888,253440,261888,261888,236544,261888,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,155,140,155,150,150,100,0,75,150,155,150,155,155,140,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,72,93,108,85,56,62,81,90,98,80,39,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
869,2331,CHINA SCIENCE AND TECHNOLOGY NETWORK,Y,611000,Telecommunications network operation ,CN,0,0,1,1,1,0,53487360,50209792,56939520,55322624,54375424,27837440,0,20900864,42050560,43015680,41723392,43052544,56220416,51458304,56973312,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,0,12604,11422,13136,12990,12867,8162,0,6125,12265,12778,12426,12854,13542,12214,13580,0,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,60,7673,5844,2862,23542,303742,115006,22633,5272,600,485,763,2232,1949,3627,0,0,113,200,24,23,42,0,85,171,140,207,90,0,26,36
870,2344,China Telecom (Group),Y,611000,Telecommunications network operation ,CN,0,0,1,1,1,0,358477056,322622208,361785600,357847808,358982400,236667392,0,176028672,352016896,362861056,356628480,369166848,363420672,327892992,362831360,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,0,11417,10336,12182,11383,11488,7412,0,5660,11335,11699,11419,11811,11637,10500,11627,16,1,4,8,91,12,3,11,15,0,0,0,0,0,1,0,10,8,9,11,117,50,23,16,2,13,6,8,11,7,5,5,16,1,2,5,92,12,3,11,15,0,0,0,0,0,5,0,0,2046,1311047,474297,1933322,1467831,1690775,479170,247154,112662,38407,48702,52519,120301,863104,1943979,0,0,3018,7179,5907,3979,4797,0,529,3079,350,1311,926,1192,1286,931
871,2353,China Telecom Corporation Limited,Y,611000,Telecommunications network operation ,CN,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
872,2354,China Telecom Global Limited,Y,611000,Telecommunications network operation,HK,1,1,1,1,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,22784,21504,23808,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,89,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
873,2355,China TieTong Telecommunications Corporation,Y,611000,Telecommunications network operation ,CN,0,0,1,1,0,0,967407616,817353216,941421568,937576704,1000654080,687757056,0,491504640,1000039168,1063467776,1047096320,1072410112,976683264,877865984,980836096,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,0,23228,18209,21971,31035,34169,22585,0,18221,34814,34690,35152,34650,22483,19518,22523,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,872,1464975,332372,304575,130467,1794723,949040,1546968,261827,81820,91632,20963,63882,197299,15221,0,0,1169,3015,1911,521,2748,0,129,488,59,679,244,573,377,154
874,2363,CHINA UNICOM,Y,620200,Information technology consultancy activities and computer facilities management activities,CN,1,1,1,1,1,0,471922944,431734528,477853184,466183424,463726080,306541056,0,231521792,461076736,481518848,465625344,481714944,426246656,380464128,417366528,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,0,42013,38010,42708,42057,42274,28821,0,20644,42899,47215,45729,47177,44704,40311,43058,2,70,12,146,488,339,50,20,52,0,0,1,2,1,1,1,6,16,10,13,10,6,9,28,5,36,37,5,6,3,6,8,0,67,10,158,620,369,50,20,59,0,0,1,2,0,2,0,0,19237,7831531,3926187,6728235,10746563,23788920,9600663,3869279,1248568,733620,825189,452744,1041017,3936748,3770840,0,0,12822,54285,42222,63737,71179,0,20602,24570,4087,32377,11772,5641,14052,12172
875,2387,China Unicom (Hong Kong) Operations Limited,Y,611000,Telecommunications network operation,HK,1,0,1,1,0,0,452352,408320,452352,437760,443136,296192,0,218880,438016,452352,441344,470528,459264,419840,461056,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,186,167,186,180,201,137,0,90,181,186,194,227,213,212,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,46,53,117,1117,1334,114,112,143,96,83,255,200,53,62,0,0,0,0,0,32,62,0,0,0,0,0,0,0,0,0
876,2389,China Virtual Telecom (Hong Kong) Limited,Y,611000,Telecommunications network operation,HK,0,0,0,0,0,0,63488,57344,63488,61440,61440,40960,0,30720,61440,63488,61440,63488,63488,57344,63488,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
877,2390,CHINANET,Y,611000,Telecommunications network operation ,CN,0,0,1,1,1,0,50944,7168,7936,7680,5888,6802432,0,5174016,10484736,10775808,10429440,10800896,11284480,11297280,13100544,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,0,34,28,31,30,23,12194,0,9306,18885,19441,18886,19610,20461,19593,21982,0,0,0,0,4,3,14,6,6,0,0,0,0,1,0,0,0,2,0,0,2,1,0,0,1,4,12,1,2,1,0,3,0,0,0,0,4,3,14,6,6,0,0,0,0,0,0,0,0,218,653183,207299,698098,641929,228706,62871,18834,10792,5382,3947,4105,6063,5024,6324,0,0,1106,1019,737,4381,1108,0,471,584,75,99,133,7,10,144
878,2419,Chitram Ltd,N,602000,Television programming and broadcasting activities,HK,1,0,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,2048,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
879,2420,CHUNWON(HK) TECHNOLOGY Co Ltd,Y,631100,"Data processing, hosting and related activities",HK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
880,2421,Citibank N.A. - ISP Peering Hong Kong China,Y,641201,Licensed banks,HK,1,1,1,0,0,0,71424,64512,71424,69120,69120,46080,0,34560,69120,77312,76800,79360,79360,71680,79360,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,186,168,186,180,180,120,0,90,180,209,210,217,217,196,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
881,2422,Citic Telecom International (Data) Ltd,Y,611000,Telecommunications network operation,HK,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
882,2423,CITIC Telecom International CPC Limited,Y,611000,Telecommunications network operation,HK,1,1,1,1,1,0,18253824,16487168,21760,25344,30720,23040,0,19200,38400,39680,38400,39680,39680,35840,39680,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,3755,3391,85,99,120,90,0,75,150,155,150,155,155,140,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,30,474,424,7557,24154,1452,370,1556,470,306,397,399,11713,26657,527,0,0,0,1,122,290,270,0,8,7,0,5,6,450,157,42
883,2435,City University of Hong Kong,Y,853000,Universities and colleges providing post-secondary courses,HK,1,1,1,0,0,0,2634752,2379776,2634752,2549760,2549760,1699840,0,1274880,2549760,2634752,2553344,2642688,2642688,2386944,2771712,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,279,252,279,270,270,180,0,135,270,279,284,310,310,280,334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,27,98,2,30,15,1,32,48,3,31,11,21,31,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
884,2436,CityLine (Hong Kong) Limited,Y,799000,Other reservation service and tourist-related activities,HK,1,1,1,0,0,0,15872,14080,15872,15360,15104,9472,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,55,62,60,59,37,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,29,31,30,30,28,31,31,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
885,2437,Cloud Rely Limited,N,631100,"Data processing, hosting and related activities",HK,0,0,0,0,0,0,174592,157696,174592,168960,140288,30720,0,30208,42752,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,651,588,651,630,525,120,0,118,167,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,22,31,30,1133,625,18,45,4,11,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0
886,2438,CloudFlare Inc,N,631100," Data processing, hosting and related activities",US,1,1,0,0,0,0,63488,57344,63488,61440,61440,40960,0,30720,61440,63488,61440,63488,70912,64512,71424,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,155,140,155,150,150,100,0,75,150,155,150,155,184,168,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,249,305,179,278,269,198,188,356,275,134,317,92,232,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
887,2440,CLOUDHOST LIMITED,N,631100,"Data processing, hosting and related activities",HK,0,1,0,0,0,0,79360,71680,73728,61440,61440,40960,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,82,60,60,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,5409,6262,478,72,82,4,0,0,0,0,0,0,0,0,0,0,45,14,19,0,0,0,0,0,0,0,0,0,0,0
888,2441,Cloudie Limited,N,631100,"Data processing, hosting and related activities",HK,0,0,0,0,0,0,37888,27648,55296,28672,0,0,0,0,0,319744,964608,1052928,1180416,1114112,2042368,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,31,27,54,31,0,0,0,0,0,339,1000,1085,1277,1305,3107,10,41,23,59,25,101,9,1,8,0,0,1,0,1,1,0,2,8,0,186,1,69,7,0,0,2,4,4,37,11,5,0,12,40,25,57,28,131,7,1,8,0,0,1,0,1,0,0,0,0,0,661,60,0,0,12,4,1,69,427,670,379,12279,40486,0,0,0,0,0,0,0,0,0,0,0,9,6,0,5,4
889,2443,CLP Power Hong Kong Limited,Y,351000,"Electric power generation, transmission and distribution",HK,1,0,0,0,0,0,2031616,1835008,2031616,1966080,1966080,1310720,0,983040,1966080,2031616,1966080,2031616,2031616,1835008,2031616,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
890,2444,CLSA Ltd,N,661202,Securities brokerage,HK,0,0,0,0,0,0,23808,21504,23808,23040,26368,20480,0,11520,23040,23808,23040,23808,23808,21504,23808,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,103,80,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
891,2445,Cluster Technology Limited,Y,631100,"Data processing, hosting and related activities",HK,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
892,2446,CNISP-Union Technology (Beijing) Co Ltd,Y,619100,Internet access services ,CN,0,0,1,1,0,0,917760,813824,892928,860160,860160,573440,0,533504,1043712,1027328,955904,952320,822016,738304,886784,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,0,3585,3179,3488,3360,3360,2240,0,2084,4077,4013,3734,3720,3211,2884,3464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,94,86,136,108,71,348,66,602,59,65,45,48,24,31,0,0,0,15,3,17,0,0,19,20,0,0,0,0,0,0
893,2465,COL CHINA ONLINE INTERNATION INC,Y,620200,Information technology consultancy activities and computer facilities management activities,CN,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
894,2466,Colocation Hosting Global Private Limited,N,631100,"Data processing, hosting and related activities",HK,0,0,0,0,0,0,174592,157440,166656,161280,161280,107520,0,76800,153600,158464,153600,158720,158464,143360,157952,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,682,615,651,630,630,420,0,300,600,619,600,620,619,560,617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,29,24,50,60,55,60,34,2,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0
895,2467,COMMERCIAL RADIO PRODUCTIONS LTD - cr interactive,Y,601000,Radio broadcasting,HK,1,0,0,0,0,0,23808,21504,23808,23040,23040,15360,0,11520,23040,23808,23040,23808,23808,21504,23808,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
896,2468,COMMTOUCH,N,620200,Information technology consultancy activities and computer facilities management activities,US,1,1,0,0,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
897,2469,CommuniLink Internet Ltd ,Y,631100,"Data processing, hosting and related activities",HK,0,0,0,0,0,0,887552,854016,968192,936960,936960,624640,0,468480,938496,889088,860160,888832,925952,838656,924416,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,952,920,1054,1020,1020,680,0,510,1026,931,900,930,1075,980,1069,0,0,8,0,0,1,0,0,1,0,0,2,0,0,0,0,0,0,5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,1,0,0,1,0,0,2,0,0,3,0,0,9,45,9712,353,111,55,1756,78,111,66,60,99,117,137,124,0,0,1,1,1,2,0,0,0,0,0,9,2,0,0,0
898,2470,ComNet Telecom International Ltd,Y,611000,Telecommunications network operation,HK,1,0,1,0,0,0,47616,43008,47616,46080,35840,158720,0,119040,178688,182528,176640,182528,182528,164864,182528,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,186,168,186,180,140,360,0,270,511,527,510,527,527,476,527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
899,2472,Companhia de Telecomunicacoes de Macau SARL,Y,611000,Telecommunications network operation,MO,1,0,0,0,0,0,23418880,21155840,23547904,23099904,23067904,15088640,0,11326464,22687488,23420416,22647040,23396096,23396608,21138432,23403008,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,2324,2112,2348,2319,2346,1482,0,1104,2208,2285,2185,2235,2237,2044,2262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,272,114663,160977,1682666,213295,61221,87790,375756,11572,54620,198332,188845,315141,1088050,1875686,0,0,220,1062,400,1450,18,0,488,624,101,633,1296,50,40,96
900,2473,Compass Offices,N,821100,Combined office administrative service activities,HK,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
901,2474,Comsenz,Y,631200,Web portals,CN,0,0,0,0,0,0,1587200,1433600,1587200,1536000,1536000,1024000,0,768000,1536000,1587200,1536000,1587200,1602048,1447936,1604864,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1581,1428,1581,1530,1530,1020,0,765,1530,1581,1530,1581,1610,1456,1619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,2,0,0,45,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,437483,44592,2742,785,636,201,1790,399,304,1068,441,28575,417,217,0,0,546,274,17,28,10,0,2,43,34,1523,71,12,31,17
902,2475,CSC Australia Pty Ltd,N,620200, Information technology consultancy activities and computer facilities ,Australia,1,1,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
903,2476,CSL Limited,Y,611000,Telecommunications network operation,HK,1,0,1,1,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
904,2477,Cyber Channel International Ltd,N,619100,Internet access services,HK,0,0,0,0,0,0,87296,78848,87296,84480,84480,56320,0,42240,84480,87296,84992,87296,324864,308224,341248,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,341,308,341,330,330,220,0,165,330,341,331,341,602,560,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,29,31,25,0,15,2,55,57,13,38,427,42,22,31,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0
905,2479,Cyber Express Communication Ltd,N,619100,Internet access services,HK,0,0,0,0,0,0,295936,258560,285696,270848,266752,184320,0,111360,222208,222464,218624,229120,215296,193536,238848,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,919,813,899,859,851,580,0,390,779,791,772,804,777,700,823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,118,828,4240,385,2155,464,45,133,228,116,164,99,88,62,0,0,0,3,0,0,0,0,0,9,0,0,0,0,0,0
906,2480,Cyberport Hong Kong,Y,620200,Information technology consultancy activities and computer facilities management activities,HK,1,1,0,0,0,0,444416,401408,444416,430080,430080,286720,0,215040,430080,444416,430080,444416,444416,401408,444416,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,992,896,992,960,960,640,0,480,960,992,960,992,992,896,992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,45,45,43,43,42,31,37,72,55,40,31,164,150,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
907,2481,Dah Sing Bank HK ,Y,641201,Licensed banks,HK,1,0,1,1,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,10240,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,29,31,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
908,2482,deCarta,N,265100,"Manufacture of measuring, testing, navigating and control equipment",CN,0,0,0,0,0,0,163840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
909,2483,Defoe Chan (Hong Kong) Co Ltd,N,631100,"Data processing, hosting and related activities",HK,0,0,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,54,61,54,67,60,47,46,87,62,66,75,53,38,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
910,2484,Dianji Network Technology Co Ltd,Y,619100,Internet access services,CN,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
911,2485,Dimension Network & Communication Limited,Y,631100,"Data processing, hosting and related activities",HK,0,0,0,0,0,0,557056,458752,507904,516096,565248,573440,0,276480,552960,571392,552960,571392,657920,609280,686848,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1244,1120,1240,1202,1206,820,0,630,1260,1302,1260,1302,1585,1512,1690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,29,226,158,56,33,0,12,50,87,49,31,253,831,992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
912,2486,Diyixian.com Limited,Y,619100,Internet access services,HK,1,1,1,0,0,0,2729984,2469120,2729984,2633216,2626560,1751040,0,1317120,2631424,2727936,2641920,2729984,2721024,2458624,2721792,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1302,1189,1302,1226,1200,800,0,615,1219,1294,1260,1302,1267,1148,1270,569,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,596,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,14,266,437,737,1191,794,1029,394,3773,373,2187,7983,909,49747,106082,0,0,3,50,14,54,2,0,6010,538,1,3890,3643,0,17,1
913,2487,Donghwa Telecom Co Ltd,Y,631100,"Data processing, hosting and related activities",HK,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
914,2488,Duke Kunshan University,Y,853000,Universities and colleges providing post-secondary courses,cN,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18432,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,18,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
915,2489,Dyxnet Data Centre Services Limited,Y,631100,"Data processing, hosting and related activities",HK,1,1,1,1,1,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,15360,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
916,2490,Eastern Fibernet,Y,611000,Telecommunications network operation ,CN,0,0,1,1,0,0,2095104,1871872,1999872,1935360,1935360,1290240,0,967680,1935360,1999872,1935360,1999872,2014208,1863680,2063360,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,651,568,558,540,540,360,0,270,540,558,540,558,572,560,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,118,161,130,125,195,220,215,173,173,211,177,119,83,93,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0
917,2491,EASY INTERNET COMPANY,N,631100,"Data processing, hosting and related activities",HK,0,0,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,24064,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,104,17,33,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
918,2492,EASY MODERN LIMITED,N,631100,"Data processing, hosting and related activities",HK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
919,2493,EasyHost Solution Limited,Y,631100,"Data processing, hosting and related activities",HK,0,0,0,0,0,0,1793536,1619968,1787648,1728000,1728000,1153280,0,913920,1827840,1888768,1827840,1888768,1888768,1705984,1888768,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,4030,3640,4007,3870,3870,2584,0,1995,3990,4123,3990,4123,4123,3724,4123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,85,211,61,47,46,13573,88,48,56,40,25,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
920,2495,eBroker Systems Ltd,Y,702200,Business management and consultancy services,HK,0,0,1,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
921,2496,ED & F Man Capital Markets Hong Kong Limited,N,702200, Business management and consultancy services,HK,0,1,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
922,2497,EFLY TECH LIMITED,N,631100,"Data processing, hosting and related activities",HK,0,0,0,0,0,0,23808,21504,26368,38656,22272,9984,0,11264,16128,16128,16384,23808,27648,21504,11520,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,103,151,87,39,0,44,63,63,64,93,108,84,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,5,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
923,2498,Electrical and Mechanical Services Department,Y,841000,Government administration; economic and social policy ,HK,0,0,0,0,0,0,63488,57344,63488,61440,61440,40960,0,30720,61440,63488,61440,63488,63488,57344,63488,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
924,2499,"Elliott Advisors (HK) LTD, Financial, Central",N,663000,Fund management,HK,0,0,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
925,2500,Emerson ,Y,721000,Research and development on natural sciences and engineering,HK,1,1,1,1,0,0,55552,50176,55552,53760,53760,35840,0,26880,53760,55552,53760,55552,55552,50176,55552,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,217,196,217,210,210,140,0,105,210,217,210,217,217,196,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,42,36,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
926,2501,Equinix Hong Kong Limited,N,631100,"Data processing, hosting and related activities",HK,1,1,0,0,0,0,126976,114688,126976,122880,122880,81920,0,61440,122880,126976,122880,126976,126976,114688,126976,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,11,0,0,17,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
927,2504,ERANET INTERNATIONAL LIMITED,Y,631100,"Data processing, hosting and related activities",HK,0,1,0,0,0,0,23808,21504,23808,23040,23040,15360,0,11520,23040,23808,23040,23808,23808,21504,23808,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,35,1464,186,62,84,96,115,53,56,54,54,58,28,31,0,0,0,0,1,0,0,0,0,14,0,0,3,0,5,1
928,2505,ETNet Limited,Y,639100,News agency activities,HK,1,0,1,1,0,0,309504,279296,307968,296704,296192,198400,0,145920,291840,305920,299520,303872,301568,272384,301568,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,248,223,242,229,227,155,0,105,210,234,240,226,217,196,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,31,25,34,18,16,16,4,0,25,30,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
929,2506,eTrunk Network Telecomunication Ltd,Y,611000,Telecommunications network operation ,CN,0,0,0,0,0,0,0,0,198144,413440,425984,98304,0,229376,442368,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,18,40,26,6,0,14,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,25,41,16,30,30,27,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
930,2509,Evergloss Tours Co Ltd,Y,791000,Travel agency activities,HK,1,0,0,0,0,0,23808,21504,23808,23040,23040,15360,0,11520,23040,23808,23040,23808,23808,21504,23808,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
931,2510,Exanet Limited,N,631100," Data processing, hosting and related activities",HK,0,0,0,0,0,0,238080,215040,238080,230400,230400,153600,0,113664,222720,230144,222720,230144,230144,207872,230144,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,465,420,465,450,450,300,0,219,420,434,420,434,434,392,434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,29,47,58,31,28,66,43,38,31,30,53,31,38,31,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
932,2511,EXCHANGE ADVERTISING COMPANY,Y,631100," Data processing, hosting and related activities",HK,0,0,0,0,0,0,142848,52224,47616,46080,50688,40960,0,76800,153600,158720,153600,158720,157696,143360,157696,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,372,161,155,150,159,120,0,195,390,403,390,403,399,364,399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
933,2512,Federal Express Pacific Inc Logistic Singapore,Y,532100,International courier activities,HK,1,1,1,1,0,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
934,2513,FIDESSA LTD,N,702200, Business management and consultancy services,HK,1,1,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,93,84,93,90,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
935,2515,FLOWER TEAM LIMITED,Y,477413,"Retail sale of flowers and plants (incl. seeds,
fertilisers and horticultural sundries)",HK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
936,2516,FNETLINK Co Ltd,N,631100," Data processing, hosting and related activities",HK,0,0,0,0,0,0,166656,150016,170240,168448,167680,89856,0,75264,168960,174592,168960,174592,174592,157696,174592,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,465,418,479,478,475,231,0,204,480,496,480,496,496,448,496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,1322,1519,889,762,868,689,3874,1296,1353,1030,1301,1650,1229,1550,0,0,41,81,0,10,0,0,0,25,3,2,12,0,0,0
937,2518,Focus Technology Co Ltd,Y,631200,Web portals,CN,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
938,2519,Forest Eternal Communication Tech Co Ltd,Y,619100,Internet access services,CN,0,0,1,1,1,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
939,2522,Forewin Telecom Group Limited,Y,611000,Telecommunications network operation,HK,0,0,0,0,0,0,1753856,1584128,1750528,1695232,1691136,1131264,0,998656,1995520,2063360,1996800,2063360,2048512,1849344,2047488,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,6851,6188,6838,6622,6606,4419,0,3901,7795,8060,7800,8060,8002,7224,7998,1,46,47,16,10,7,1,4,9,0,0,0,0,0,0,0,0,0,0,192,15,0,0,0,0,0,0,0,0,0,0,0,1,51,49,12,10,7,1,4,9,0,0,0,0,0,0,0,0,21,644,929,13354,8405,3601,349,1489,913,1931,8754,131,289,250,186,0,0,6,8,8,14,62,0,109,77,0,4,2,1,1,2
940,2524,FOREX CAPITAL MARKETS/FXCM Asia Limited,Y,649901,Money changers and foreign exchange brokers or dealers,HK,1,1,1,1,1,0,7936,7168,7936,7680,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
941,2526,FRIENDS MARKETING LIMITED,N,631100,"Data processing, hosting and related activities",HK,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
942,2527,Gameloft Limited,N,324500,Manufacture of electronic games and toys,HK,1,1,1,1,0,0,63488,57344,63488,114688,122880,81920,0,61440,122880,126976,122880,126976,126976,114688,126976,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,268,300,200,0,150,300,310,300,310,310,280,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
943,2528,Gateway Technology Development Co Ltd,N,631100,"Data processing, hosting and related activities",HK,0,0,0,0,0,0,95232,86016,95232,70656,61440,40960,0,30720,61440,63232,57856,55552,55552,50176,54528,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,372,336,372,276,240,160,0,120,240,247,226,217,217,196,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,56,62,41,32,30,34,43,34,47,33,31,33,31,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
944,2529,Genius Networks,N,619100,Internet access services,UK,0,1,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
945,2530,Gigahost Limited,N,631100,"Data processing, hosting and related activities",HK,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
946,2532,GLOBAL ESOLUTIONS HK LTD ,N,620200,Information technology consultancy activities and computer facilities management activities,HK,1,1,0,0,0,0,23808,21504,23808,23040,23040,15360,0,11520,23040,23808,23040,23808,23808,21504,23808,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,93,84,93,90,90,60,0,45,90,93,90,93,93,84,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
947,2533,Global ICT Solutions (ShangHai) CO LTD,Y,619100, Internet access services,CN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
948,2534,Global Logistics Service,N,522930,Land cargo forwarding services,US,0,0,0,0,0,0,7936,7168,7936,7424,7680,5120,0,3840,7680,7936,7680,7936,7936,7168,7936,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,29,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
949,2535,GLOBALNET COMMUNICATION Ltd,Y,522201,Container terminal and marine cargo terminal operators,HK,0,0,0,0,0,0,111104,100352,111104,107008,108800,76800,0,57600,115200,119040,115200,119040,119040,107520,119040,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,434,392,434,418,425,300,0,225,450,465,450,465,465,420,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,29,31,30,31,30,131,124,66,70,120,62,73,100,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
950,2536,GlobeCast Hong Kong,N,619100,Internet access services,HK,1,1,0,0,0,0,87296,78848,87296,84480,84480,56320,0,42240,84480,87296,84480,87296,87296,78848,87296,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,341,308,341,330,330,220,0,165,330,341,330,341,341,308,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,29,31,30,31,28,31,31,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
951,2537,Golden-Bridge Netcom communication Co Ltd,Y,611000,Telecommunications network operation ,CN,0,0,0,1,1,0,0,0,159744,399360,377856,234496,0,203776,264192,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,108,270,257,159,0,137,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2376,1558,653,240296,90206,22955,608,0,0,0,0,0,0,0,0,0,2,1,2,11,0,0,0,0,0,0,0,0,0
952,2539,Great Wall Broadband Network Service Co Ltd,Y,619100,Internet access services ,CN,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
953,2540,Grey Group,N,741100,Advertising companies and agencies,US,1,1,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,124,120,120,80,0,60,120,124,120,124,124,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
954,2541,Guangdong World Crossing Technology Investment Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
955,2542,GUOLI HOLDDINGS Co Ltd,Y,631100,"Data processing, hosting and related activities",CN,0,0,1,1,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,36864,61440,63488,56064,50176,80128,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,124,120,120,80,0,60,120,144,240,248,219,196,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,29,31,30,47,44,46,41,15,13,8,24,11,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
956,2543,Harbin Economic-technological Development Zone,Y,841000,"Government administration; economic and social
policy",CN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
957,2544,Henan Cable Networks Group Co Ltd,Y,591100,Television programme production,CN,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
958,2545,Henan XGigabit Communication Technology Co Ltd,N,631100,"Data processing, hosting and related activities",CN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
959,2546,Henan xinfeijinxin Computer Co Ltd,Y,611000,Telecommunications network operation ,CN,0,0,0,1,0,0,0,32768,0,0,0,65536,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,113,0,0,0,0,31,42,0,36,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
960,2547,Henderson Data Centre Limited,N,611000,Telecommunications network operation,HK,1,1,1,0,0,0,3475968,3139584,3490304,3363840,3363840,2242560,0,1689600,3366912,3475968,3363840,3475968,3507712,3168256,3507712,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,3131,2828,3145,3030,3030,2020,0,1530,3036,3131,3030,3131,3164,2856,3162,1044,10,2,125,7,7,0,1,0,1,0,0,0,1,0,0,1,0,0,0,2,4,0,0,0,0,4,9,28,101,50,48,1190,10,3,197,6,7,0,1,0,1,0,0,0,1,0,0,0,60,32794,97014,12884,37358,98607,78438,64142,11316,10023,32818,1459,854,466,155,0,0,556,3569,555,405,1559,0,214,627,51,925,74,11,4,0
961,2549,Herbalife (China) Health Products Ltd,Y,477202,Global Retail sale of medicines and health supplements (with or without selling cosmetics and personal care products),CN,0,0,1,1,1,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,124,120,120,80,0,60,120,124,120,124,124,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,29,31,30,31,28,31,31,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
962,2550,HERBALIFE INTERNATIONAL OF HONG KONG,Y,477202,Global Retail sale of medicines and health supplements (with or without selling cosmetics and personal care products),HK,1,1,0,0,1,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,24,0,2,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
963,2551,HK Cable TV Ltd,Y,602000,Television programming and broadcasting activities,HK,1,1,0,0,0,0,761856,688128,761856,737280,737280,491520,0,368640,737280,761856,737280,761856,762624,702464,802304,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,93,84,93,90,90,60,0,45,90,93,90,93,95,140,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,755,723,551,623,513,668,1293,917,263,274,456,349,294,341,0,0,0,0,1,1,0,0,17,18,0,12,9,1,0,0
964,2553,HK Science & Technology Parks Corporation,Y,721000,Research and development on natural sciences and engineering,HK,1,0,0,0,0,0,412672,372736,412672,399360,399360,266240,0,199680,399360,412672,399360,412672,412672,372736,412672,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,434,392,434,420,420,280,0,210,420,434,420,434,434,392,434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,15,0,14,0,0,0,0,0,0,10,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0
965,2554,HKCIX AS Number for Global Infrastructure/ IXTech Limited,N,619100,Internet access services,HK,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
966,2555,HKCOLO LIMITED,N,631100,"Data processing, hosting and related activities",HK,0,0,0,0,0,0,142848,126976,134912,130560,130560,87040,0,65280,130560,134912,130560,134912,277504,243712,261632,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,558,496,527,510,510,340,0,255,510,527,510,527,589,532,557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,7,14,0,14,0,13,3,16,0,7,24,22,14,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
967,2558,HKCSL GPRS NETWORK,Y,611000,Telecommunications network operation,HK,1,0,1,1,0,0,1121792,1017856,1749504,2024704,2030336,1361920,0,1025280,2058752,2182400,2112000,2182400,2182400,1971200,2182400,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,2429,2212,2550,1039,1061,740,0,570,1172,1426,1380,1426,1426,1288,1426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,6400,6733,1342,3780,496,559,622,937,415,977,3715,2219,4393,5518,0,0,0,16,4,5,0,0,6,13,6,15,8,0,5,1
968,2559,HKIDC limited,Y,631100,"Data processing, hosting and related activities",HK,0,0,0,0,0,0,31744,28672,31744,30464,30720,20480,0,15360,30720,31744,30720,31744,31488,28672,31488,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,124,112,124,119,120,80,0,60,120,124,120,124,123,112,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
969,2561,HKNet Co Ltd,N,619100,Internet access services,HK,1,1,1,0,0,0,7386112,6673408,7388928,7149312,7142400,4761600,0,3571200,7142912,7380480,7144960,7380480,7382784,6669568,7384576,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,2440,2212,2451,2367,2340,1560,0,1170,2342,2418,2350,2418,2427,2197,2434,0,1,0,2,7,0,0,0,2,2,0,1,1,1,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,1,0,0,0,1,0,3,7,0,0,0,2,2,0,1,1,0,0,0,0,12,5156,6524,364,524,389,159,474,694,1078,700,453,1017,443,31,0,0,19,9,3,3,1,0,3,18,0,4,3,0,0,0
970,2562,hkonline.com limited,Y,639100,News agency activities,HK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
971,2563,Hong Kong Air Cargo Terminals Ltd,Y,510900,Air transport services n.e.c.,HK,1,0,0,0,0,0,126976,114688,126976,122880,122880,81920,0,61440,122880,126976,122880,126976,126976,114688,126976,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
972,2564,Hong Kong Baptist University,Y,853000,Universities and colleges providing post-secondary courses,HK ,1,0,1,1,1,0,2167520,1957728,2167520,2097600,2097600,1401728,0,1056480,2113984,2183648,2112960,2183392,2183392,1972096,2183392,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,248,223,248,240,240,173,0,150,304,311,300,310,310,280,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,13,36,15,0,0,0,0,11,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
973,2565,Hong Kong Broadband Network Ltd,Y,619100,Internet access services,HK,1,1,1,0,0,0,111743232,103215872,112077824,108357120,109401088,72233216,0,54806016,110530560,113821696,109882368,116262400,112693760,101563392,112449280,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,4506,4271,4765,4620,4618,3061,0,2676,5370,5543,5364,5580,5560,5012,5565,0,0,3,3,2,0,2,0,0,1,0,0,0,0,1,0,0,0,4,4,2,1,1,4,0,0,1,0,0,0,11,2,0,0,2,3,0,0,1,0,0,1,0,0,0,0,2,0,0,511,99287,71370,55025,213594,390316,134074,66697,26976,10379,19107,12451,68980,129087,50344,0,0,499,1089,279,1492,1489,0,666,1575,163,1275,1105,4139,70,88
974,2569,Hong Kong Commercial Internet Exchange IXTech Limited Hong Kong,N,619100,Internet access services,HK,1,0,0,0,0,0,1712640,1547264,1717248,1665280,1666560,1111040,0,821760,1643520,1698304,1643520,1698304,2151168,1971200,2186752,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,4489,4056,4507,4375,4380,2920,0,2145,4290,4433,4290,4433,4404,3976,4482,0,0,0,2,2,1,4,1,3,0,1,0,1,1,0,0,0,0,0,0,6,1,7,2,0,0,6,0,0,3,1,0,0,0,0,2,0,0,4,0,3,0,1,0,1,1,0,0,0,12,253,827,700,163,203,4054,369,228,113,74,114,151,182,341,0,0,13,17,6,4,1,0,3,4,0,1,5,0,0,1
975,2571,Hong Kong Communications Co Ltd,Y,619100,Internet access services,HK,1,0,1,0,0,0,253952,229376,253952,245760,245760,163840,0,122880,245760,253952,245760,253952,253952,229376,253952,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,29,31,30,31,28,31,31,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
976,2572,Hong Kong CyberLibrary,Y,853000,Universities and colleges providing post-secondary courses,HK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
977,2574,Hong Kong Domain Name Registration Co Ltd,Y,619100,Internet access services,HK,0,0,0,0,0,0,15872,14336,15872,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,62,56,62,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
978,2575,Hong Kong Education City Ltd,Y,855000,Educational support services,HK,1,0,0,0,0,0,31744,28672,31744,30720,30720,20480,0,15360,30720,31744,30720,31744,31744,28672,31744,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,31,30,30,20,0,15,30,31,30,31,31,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
979,2576,Hong Kong Hcunit Network Co Ltd,Y,619100,Internet access services,HK,0,0,0,1,0,0,190464,172032,190464,184320,186368,122880,0,92160,158720,196352,214272,222208,214784,193536,233984,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,372,336,372,360,698,480,0,360,620,767,837,868,839,756,914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,371,1994,454,294,630,238,90,144,151,133,169,405,298,124,0,0,0,2,1,2,1,0,0,0,0,0,1,0,0,2
980,2577,Hong Kong Internet Exchange-Route Server 1,Y,853000,Universities and colleges providing post-secondary courses,HK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
981,2578,Hong Kong Kwai Fong Information Service Limited,Y,631100,"Data processing, hosting and related activities",HK,0,0,0,0,0,0,247808,246272,277760,384512,454400,327680,0,272128,537600,555520,544256,571392,618496,580608,642048,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,968,962,1085,1502,1775,1280,0,1063,2100,2170,2126,2232,2416,2268,2508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7443,7256,246,624,1296,234,2769,108,98,6225,121,119,120,155,0,0,206,0,12,3,25,0,777,0,0,239,0,1,5,8
982,2579,HONG KONG MEDIA PRODUCTION Co Ltd,Y,751200,"Multi-media, visual and graphic design activities",HK,1,0,0,0,1,0,79360,71680,79360,76800,76800,51200,0,38400,76800,79360,76800,79360,79360,71680,79360,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,124,112,124,120,120,80,0,60,120,124,120,124,124,112,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
983,2580,Hong Kong Network Information Service,Y,631100,"Data processing, hosting and related activities",HK,0,0,0,0,0,0,7936,7168,12800,15360,15360,10240,0,7680,15360,15872,15360,15872,15872,14336,15872,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,31,28,50,60,60,40,0,30,60,62,60,62,62,56,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
984,2581,HONG KONG NEW TIME TELECOM LIMITED,N,611000,Telecommunications network operation,HK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
985,2582,HONG KONG PACIFIC NETWORK LIMITED,Y,631100,"Data processing, hosting and related activities",HK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
986,2583,Hong Kong San Ai Net Intl Limited,Y,631100,"Data processing, hosting and related activities",HK,0,0,0,1,0,0,222208,200704,222208,215040,211200,128000,0,96000,199680,206336,199680,206336,211456,193536,214272,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,868,784,868,840,825,500,0,360,750,775,750,775,824,756,837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,26806,2146,324,96,18698,9772,50,105,769,2078,1924,643,472,217,0,0,31,208,0,0,173,0,0,0,6,84,5,0,0,0
987,2584,Hong Kong Telecommunications (HKT) Limited,Y,611000,Telecommunications network operation,HK,1,0,0,0,0,0,1611008,1455104,1616896,1584384,1606400,1070080,0,765696,1491968,1554944,1508608,1561088,1570304,1419264,1563136,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,961,868,984,1029,1115,740,0,546,1118,1207,1183,1231,1267,1148,1239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,239,479,905,1164,173,942,227,134,227,30,56,32,28,31,0,0,0,43,0,4,6,0,0,6,1,0,6,5,8,0
988,2585,Hong Kong University of Science and Technology,Y,853000,Universities and colleges providing post-secondary courses,HK,1,1,1,0,1,0,2799872,2520576,2830080,2764800,2764800,1843200,0,1383424,2764800,2856960,2764800,2856960,2856960,2580480,2861056,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,800,711,918,990,990,660,0,499,990,1023,990,1023,1023,924,1039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,92,271,223,126,35,47,61,87,90,79,19,27,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
989,2586,HONGKONG CHUNFATWING INFORMATION TECHNOLOGY Co Ltd,Y,631100,"Data processing, hosting and related activities",HK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
990,2587,HONGKONG YABOIDC TECHNOLOGY LIMITED,Y,631100,"Data processing, hosting and related activities",HK,0,0,0,0,0,0,334592,294656,330752,314880,314880,209920,0,157440,314624,318720,393472,531712,881152,702464,794112,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1307,1151,1292,1230,1230,820,0,615,1229,1245,1537,2077,3442,2744,3102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
991,2588,Howtimefly (BeiJing) Info tech Ltd,Y,619100,Internet access services,CN,0,0,1,0,0,0,0,0,0,0,3584,10240,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,14,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
992,2589,HSBC Hong Kong,Y,641201,Licensed banks,HK,1,1,0,1,0,0,225536,222208,336128,278528,230400,153600,0,119040,238080,246016,238080,246016,364800,336896,372992,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,580,560,783,548,360,240,0,195,390,403,390,403,461,420,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,30,81,20,0,10,6,8,30,24,34,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0