-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtable-test.html
967 lines (891 loc) · 40 KB
/
table-test.html
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
<!DOCTYPE html>
<html lang="zxx">
<head>
<meta charset="utf-8">
<title>Gaurav Kansal Blog</title>
<!-- mobile responsive meta -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- ** Plugins Needed for the Project ** -->
<!-- Bootstrap -->
<link rel="stylesheet" href="../../plugins/bootstrap/bootstrap.min.css">
<!-- slick slider -->
<link rel="stylesheet" href="../../plugins/slick/slick.css">
<!-- themefy-icon -->
<link rel="stylesheet" href="../../plugins/themify-icons/themify-icons.css">
<!-- Main Stylesheet -->
<link href="../../css/style.css" rel="stylesheet">
<!--Favicon-->
<link rel="icon" type="image/png" href="../../images/favicon.jpg">
<link href="../../css/fontawesome/css/all.min.css" rel="stylesheet" />
</head>
<body>
<!-- preloader -->
<div class="preloader">
<div class="loader">
<span class="dot"></span>
<div class="dots">
<span></span>
<span></span>
<span></span>
</div>
</div>
</div>
<!-- /preloader -->
<div class="navigation" id="myHead"></div>
<!-- page-title -->
<section class="section bg-secondary">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12">
<h4>Are NIRs limiting the nation’s say in APNIC
governance policies?
</h4>
</div>
</div>
</div>
</section>
<!-- /page-title -->
<!--Main content-->
<section class="mt-1" id="blog-post-block">
<div class="card mb-2">
<div class="container-fluid">
<div class="row">
<!-- blog post -->
<div class="col-lg-12">
<div class="card-block">
<ul class="list-inline d-flex justify-content-between py-3">
<li class="list-inline-item"><i class="ti-user mr-2"></i> Post by <a
href="https://www.gauravkansal.in/index.html">Gaurav Kansal</a></li>
<li class="list-inline-item"><i class="ti-calendar mr-2"></i> March 05, 2022</li>
</ul>
<img src="../../images/APNIC-policy.png" alt="post-thumb" class="img-fluid mb-4">
<div class="content">
<p class="blog-post-body mt-5">
Are NIRs limiting the nation’s say in APNIC governance policies?
<br>
(NIR: Boon or Bane – Is APNIC policy of Members Voting Rights
doing the Justice with NIRs and Corresponding Countries)
</p><br>
<p>APNIC (the Asia Pacific Network Information Centre) is the regional Internet address
registry (RIR) for the Asia-Pacific region, service 56 economies, including India,
Bangladesh, China, Australia, Japan and others. APNIC is one of the world's five RIRs
and is part of the Number Resource Organization (NRO).
</p>
<h6>As of date, the following 7 NIRs (National Internet Registries) are registered with
APNIC for serving the local internet community<sup>
<a onclick="linkfiles('link1')">[1]</a><a onclick="linkfiles('link2')">[2]</a><a
onclick="linkfiles('link3')">[3]</a></sup> –
</h6>
<div class="blog-table text-center">
<table class="table table-secondary">
<thead>
<tr>
<th>NIR</th>
<th>Serving Economy</th>
<th class="blog-tooltip">Member under each NIR<sup><a href="#">[4]<span class="tooltiptext">
Member info is picked from the respective slides of NIR of APNIC 52 conference.
</span></a></sup></th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="https://www.apjii.or.id/" target="_blank">APJII (ID) </a></td>
<td>Indonesia</td>
<td class="blog-tooltip">2916<sup><a href="#">[5]<span class="tooltiptext">
IDNIC member count is updated till 14.12.2021 while rest other NIRs member count is as
per info from
APNIC52 conference
</span></a></sup></td>
</tr>
<tr>
<td><a href="http://www.cnnic.cn/" target="_blank">CNNIC (CN)</a></td>
<td>China</td>
<td><a href="https://conference.apnic.net/52/assets/files/APBS588/cnnic%20update.pdf"
target="_blank"> 1399 </a></td>
</tr>
<tr>
<td><a href="http://www.irinn.in/" target="_blank">IRINN (IN)</a></td>
<td> India</td>
<td> <a href="https://conference.apnic.net/52/assets/files/APBS588/irinn-nir%20sig.pdf"
target="_blank"> 3368 </a></td>
</tr>
<tr>
<td><a href="http://www.nic.ad.jp/" target="_blank">JPNIC (JP) </a></td>
<td> Japan</td>
<td><a href="https://conference.apnic.net/52/assets/files/APBS588/jpnic-update.pdf"
target="_blank"> 474 </a></td>
</tr>
<tr>
<td><a href="https://www.kisa.or.kr/eng/main.jsp" target="_blank"> KISA (KR) </a></td>
<td> Korea</td>
<td> Not Available</td>
</tr>
<tr>
<td> <a href="https://www.kisa.or.kr/eng/main.jsp" target="_blank"> TWNIC (TW) </a></td>
<td> Taiwan</td>
<td> <a href="https://conference.apnic.net/52/assets/files/APBS588/twnic_update.pdf"
target="_blank"> 299 </a></td>
</tr>
<tr>
<td> <a href="http://www.vnnic.vn/en?lang=en/" target="_blank"> VNNIC (VN) </a></td>
<td> Vietnam </td>
<td> <a href="https://conference.apnic.net/52/assets/files/APBS588/vnnic-update.pdf"
target="_blank"> 624 </a></td>
</tr>
</tbody>
</table>
</div>
<p>APNIC Membership is classified into 7 tiers depending on the IP holding by each member.
Each membership tier has voting rights. These voting rights play a crucial role in governance
and policies matters of APNIC.</p>
<div class="mt-5 mb-5">
<h6><u>For IPv4 address space, the membership tier is assessed as follows: </u></h6>
<div class="blog-table text-center">
<table class="table table-secondary">
<thead>
<tr>
<th scope="col">Membership tier</th>
<th scope="col">IPv4 Holding</th>
</tr>
</thead>
<tbody>
<tr>
<td>Associate</td>
<td>None</td>
</tr>
<tr>
<td>Very Small</td>
<td>Up to and including /22</td>
</tr>
<tr>
<td>Small</td>
<td>Greater than /22, up
to and including /19</td>
</tr>
<tr>
<td>Medium</td>
<td>Greater than /19, up
to and including /16</td>
</tr>
<tr>
<td>Large</td>
<td>Greater than /16, up
to and including /13</td>
</tr>
<tr>
<td>Very Large</td>
<td>Greater than /13, up to and including /10</td>
</tr>
<tr>
<td>Extra Large</td>
<td>Greater than /10</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="mt-5 mb-5">
<h6><u>For IPv6 address space, the membership tier is assessed as follows: </u></h6>
<div class="blog-table text-center">
<table class="table table-secondary">
<thead>
<tr>
<th scope="col">Membership tier</th>
<th scope="col">IPv6 Holding</th>
</tr>
</thead>
<tbody>
<tr>
<td>Associate</td>
<td>None</td>
</tr>
<tr>
<td>Very Small</td>
<td>Up to and including /35</td>
</tr>
<tr>
<td>Small</td>
<td>Greater than /35, up to and including /32</td>
</tr>
<tr>
<td>Medium</td>
<td>Greater than /32, up to and including /29</td>
</tr>
<tr>
<td>Large</td>
<td>Greater than /29, up to and including /26</td>
</tr>
<tr>
<td>Very Large</td>
<td>Greater than /26, up to and including /23</td>
</tr>
<tr>
<td>Extra Large</td>
<td>Greater than /23</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="mt-5 mb-5">
<div class="blog-table text-center">
<table class="table table-secondary">
<thead>
<tr>
<th scope="col">Membership tier</th>
<th scope="col">Number of votes</th>
</tr>
</thead>
<tbody>
<tr>
<td>Associate</td>
<td>1</td>
</tr>
<tr>
<td>Very Small</td>
<td>2</td>
</tr>
<tr>
<td>Small</td>
<td>4</td>
</tr>
<tr>
<td>Medium</td>
<td>8</td>
</tr>
<tr>
<td>Large</td>
<td>16</td>
</tr>
<tr>
<td>Very Large</td>
<td>32</td>
</tr>
<tr>
<td>Extra Large</td>
<td>64</td>
</tr>
</tbody>
</table>
</div>
</div>
<blockquote><span style="color: #d58753;">As per the Membership tier voting chart, every member can have
a max of 64 votes
(including NIRs) but APNIC charges an additional 190% premium on the annual
membership fees from NIR, which leads to effective membership fees for NIRs equals to
290% of the ordinary membership fee<sup>
<a onclick="linkfiles('link6')">[6]</a></sup>, but with no added advantage of voting rights.
Members of NIR didn’t get the voting rights in APNIC, even though they pay the fees to NIR
and indirectly pay to APNIC, as NIR pays to APNIC as per resources holdings of all its
members plus an additional 190% premium over and above of ordinary fee.
</blockquote>
<div class="mt-5 mb-5">
<h6>Top economies (and NIRs) based on the voting rights under APNIC region (as of 11<sup>th</sup>– Nov
2021)<sup><a onclick="linkfiles('link7')">[7]</a></sup>–
</h6>
<div class="blog-table text-center">
<table class="table table-secondary">
<thead>
<tr>
<th> Country</th>
<th>No of APNIC Members</th>
<th>Voting Rights</th>
<th>Avg votes per member</th>
<th>Rank as per voting rights</th>
</tr>
</thead>
<tbody>
<tr>
<th> AU</th>
<td> 2015</td>
<td> 7032</td>
<td> 3.49</td>
<td> 1</td>
</tr>
<tr>
<th> HK</th>
<td> 949</td>
<td> 3733</td>
<td> 3.93</td>
<td> 2</td>
</tr>
<tr>
<th> BD</th>
<td> 1067</td>
<td> 3442</td>
<td> 3.23</td>
<td> 3</td>
</tr>
<tr>
<th> IN*</th>
<td> 608</td>
<td> 2434</td>
<td> 4.00</td>
<td> 4</td>
</tr>
<tr>
<th>SG</th>
<td> 391</td>
<td> 1728</td>
<td> 4.42</td>
<td> 5</td>
</tr>
<tr>
<th> CN*</th>
<td> 310</td>
<td> 1666</td>
<td> 5.37</td>
<td> 6</td>
</tr>
<tr>
<th> NZ</th>
<td> 447</td>
<td> 1657</td>
<td> 3.71</td>
<td> 7</td>
</tr>
<tr>
<th> AP</th>
<td> 419</td>
<td> 1633</td>
<td> 3.90</td>
<td> 8</td>
</tr>
<tr>
<th> JP*</th>
<td> 316</td>
<td> 1258</td>
<td> 3.98</td>
<td> 9</td>
</tr>
<tr>
<th> MY</th>
<td> 313</td>
<td> 1228</td>
<td> 3.92</td>
<td> 10</td>
</tr>
<tr>
<th> PH</th>
<td> 284</td>
<td> 1078</td>
<td> 3.80</td>
<td> 11</td>
</tr>
<tr>
<th>TH</th>
<td>223</td>
<td> 1046</td>
<td> 4.69</td>
<td> 12</td>
</tr>
<tr>
<th>PK</th>
<td> 262</td>
<td> 932</td>
<td> 3.56</td>
<td> 13</td>
</tr>
<tr>
<th>ID*</th>
<td> 89</td>
<td> 484</td>
<td> 5.44</td>
<td> 14</td>
</tr>
<tr>
<th>TW*</th>
<td> 55</td>
<td> 305</td>
<td> 5.55</td>
<td> 18</td>
</tr>
<tr>
<th>VN*</th>
<td> 2</td>
<td> 65</td>
<td> 32.50</td>
<td> 27</td>
</tr>
</tbody>
</table>
</div>
</div>
<h6>Average vote per member
across top 13 economies 4.20</h6>
<p>(Vietnam is not included while calculating the average vote per member because VN has
only 2 members, VNNIC and VN Post and Telecommunications, and including VN while
calculating average votes, leads to changing of figures from 4.20 to 5.97 as VNNIC has 64
votes, which will not be on the average side).</p>
<p>* Economies which have NIRs are star marked </p>
<blockquote><span style="color: #d58753;">If every resource holder (doesn’t matter whether membership is
with RIR and NIR) has
voting rights in APNIC, then the voting rights table will change to <span
style="font-size: small;">(average votes per
member are 4.20, as calculated above. Here, I am taking 2 votes per NIR member for
conservative calculation and 3 votes per NIR member for realistic calculation) –</span>
</blockquote>
<div class="mt-5 mb-5">
<div class="blog-table text-center">
<table class="table table-secondary">
<thead>
<tr>
<th scope="col">NIR</th>
<th scope="col">Serving Economy</th>
<th scope="col">Member under each NIR</th>
<th scope="col">Votes (2 per member)</th>
<th scope="col">Votes (3 per member)</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="https://www.apjii.or.id/" target="_blank">APJII (ID) </a></td>
<td> Indonesia</td>
<td> 2916</td>
<td> 5832</td>
<td> 8748</td>
</tr>
<tr>
<td><a href="http://www.cnnic.cn/" target="_blank">CNNIC (CN)</a></td>
<td> China</td>
<td> <a href="https://conference.apnic.net/52/assets/files/APBS588/cnnic%20update.pdf"
target="_blank"> 1399 </a></td>
<td> 2798</td>
<td> 4197</td>
</tr>
<tr>
<td> <a href="http://www.irinn.in/" target="_blank">IRINN (IN)</a></td>
<td> India</td>
<td> <a href="https://conference.apnic.net/52/assets/files/APBS588/irinn-nir%20sig.pdf"
target="_blank"> 3368 </a></td>
<td> 6736</td>
<td> 10104</td>
</tr>
<tr>
<td><a href="http://www.nic.ad.jp/" target="_blank">JPNIC (JP) </a> </td>
<td> Japan</td>
<td><a href="https://conference.apnic.net/52/assets/files/APBS588/jpnic-update.pdf"
target="_blank"> 474 </a></td>
<td> 948</td>
<td> 1422</td>
</tr>
<tr>
<td><a href="https://www.kisa.or.kr/eng/main.jsp" target="_blank"> KISA (KR) </a></td>
<td> Korea</td>
<td> Not Available</td>
<td> Not Available</td>
<td>Not Available </td>
</tr>
<tr>
<td> <a href="https://www.kisa.or.kr/eng/main.jsp" target="_blank"> TWNIC (TW) </a></td>
<td> Taiwan</td>
<td><a href="https://conference.apnic.net/52/assets/files/APBS588/twnic_update.pdf"
target="_blank"> 299 </a> </td>
<td> 598</td>
<td>897 </td>
</tr>
<tr>
<td><a href="http://www.vnnic.vn/en?lang=en/" target="_blank"> VNNIC (VN) </a></td>
<td>Vietnam </td>
<td><a href="https://conference.apnic.net/52/assets/files/APBS588/vnnic-update.pdf"
target="_blank"> 624 </a></td>
<td> 1248</td>
<td> 1872</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="mt-5 mb-5">
<h6>Adding this vote count with the existing voting rights which every economy has, the results would
be
like this –</h6>
<div class="blog-table text-center">
<table class="table table-secondary">
<thead>
<tr>
<th> Country</th>
<th>Total Member (APNIC+NIR)</th>
<th>Total Voting Rights (Avg 2 votes per NIR member)</th>
<th>Total Voting Rights (Avg 3 votes per NIR member)</th>
</tr>
<tr>
</thead>
<tbody>
<td> AU</td>
<td> 2015</td>
<td> 7032</td>
<td> 7032</td>
</tr>
<tr>
<td> HK</td>
<td> 949</td>
<td> 3733</td>
<td> 3733</td>
</tr>
<tr>
<td> BD</td>
<td> 1067</td>
<td> 3442</td>
<td> 3442</td>
</tr>
<tr>
<td> IN*</td>
<td> 3976</td>
<td> 9170</td>
<td> 12538</td>
</tr>
<tr>
<td>SG</td>
<td> 391</td>
<td> 1728</td>
<td> 1728</td>
</tr>
<tr>
<td> CN*</td>
<td> 1709</td>
<td> 4464</td>
<td> 5863</td>
</tr>
<tr>
<td> NZ</td>
<td> 447</td>
<td> 1657</td>
<td> 1657</td>
</tr>
<tr>
<td> AP</td>
<td> 419</td>
<td> 1633</td>
<td> 1633</td>
</tr>
<tr>
<td> JP*</td>
<td> 790</td>
<td> 2206</td>
<td> 2680</td>
</tr>
<tr>
<td> MY</td>
<td> 313</td>
<td> 1228</td>
<td> 1228</td>
</tr>
<tr>
<td> PH</td>
<td> 284</td>
<td> 1078</td>
<td> 1078</td>
</tr>
<tr>
<td>TH</td>
<td>223</td>
<td> 1046</td>
<td> 1046</td>
</tr>
<tr>
<td>PK</td>
<td> 262</td>
<td> 932</td>
<td> 932</td>
</tr>
<tr>
<td>ID*</td>
<td>3005</td>
<td> 6316</td>
<td> 9232</td>
</tr>
<tr>
<td>TW*</td>
<td> 354</td>
<td> 903</td>
<td> 1202</td>
</tr>
<tr>
<td>VN*</td>
<td> 626</td>
<td> 1313</td>
<td> 1937</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="mt-5 mb-5">
<h6>The new Ranking of the economies will change like this (based on 2 votes per NIR member) -- </h6>
<div class="blog-table text-center">
<table class="table table-secondary text-center">
<thead>
<tr>
<th>Country</th>
<th>Rank</th>
</tr>
</thead>
<tbody>
<tr>
<td> IN*</td>
<td> 1</td>
</tr>
<tr>
<td> AU</td>
<td> 2</td>
</tr>
<tr>
<td> ID*</td>
<td> 3</td>
</tr>
<tr>
<td> CN*</td>
<td> 4</td>
</tr>
<tr>
<td>HK</td>
<td> 5</td>
</tr>
<tr>
<td> BD</td>
<td> 6</td>
</tr>
<tr>
<td> JP*</td>
<td> 7</td>
</tr>
<tr>
<td> SG</td>
<td> 8</td>
</tr>
<tr>
<td>NZ</td>
<td> 9</td>
</tr>
<tr>
<td> AP</td>
<td> 10</td>
</tr>
<tr>
<td> VN*</td>
<td> 11</td>
</tr>
<tr>
<td>MY</td>
<td>12</td>
</tr>
<tr>
<td>PH</td>
<td> 13</td>
</tr>
<tr>
<td>TH</td>
<td>14</td>
</tr>
<tr>
<td>PK</td>
<td>15</td>
</tr>
<tr>
<td>TW*</td>
<td> 16</td>
</tr>
</tbody>
</table>
</div>
</div>
<p>In this scenario, I have considered every NIR member on average have 2 voting rights (which
is more towards the conservative side), and the results are as - AU is no more in top position
and Indonesia rises from 14<sup>th</sup> position to 3<sup>rd</sup> position, similarly, China rises
from 6 to 4<sup>th</sup> and
Vietnam rises from 27<sup>th</sup> to 11<sup>th</sup> position. So, If APNIC gives fair chances to the
countries
where NIR is doing great work in the expansion of the Internet, then ID and VN will get the
maximum benefits concerning the voting rights.
</p>
<div class="mt-5 mb-5">
<h6>Now, let’s see what will be the ranking status, if I consider an average of 3 votes per NIR member
(which is more on the realistic side) –</h6>
<div class="blog-table text-center">
<table class="table table-secondary text-center">
<thead>
<tr>
<th scope="col">Country</th>
<th scope="col">Rank</th>
</tr>
</thead>
<tbody>
<tr>
<td> IN*</td>
<td> 1</td>
</tr>
<tr>
<td> ID*</td>
<td> 2</td>
</tr>
<tr>
<td> AU</td>
<td> 3</td>
</tr>
<tr>
<td> CN*</td>
<td> 4</td>
</tr>
<tr>
<td>HK</td>
<td> 5</td>
</tr>
<tr>
<td> BD</td>
<td> 6</td>
</tr>
<tr>
<td> JP*</td>
<td> 7</td>
</tr>
<tr>
<td> VN*</td>
<td> 8</td>
</tr>
<tr>
<td>SG</td>
<td> 9</td>
</tr>
<tr>
<td> NZ</td>
<td> 10</td>
</tr>
<tr>
<td> AP</td>
<td> 11</td>
</tr>
<tr>
<td>MY</td>
<td>12</td>
</tr>
<tr>
<td>TW*</td>
<td> 13</td>
</tr>
<tr>
<td>PH</td>
<td>14</td>
</tr>
<tr>
<td>TH</td>
<td>15</td>
</tr>
<tr>
<td>PK</td>
<td> 16</td>
</tr>
</tbody>
</table>
</div>
</div>
<blockquote><span style="color: #d58753;">In this case, India rises from 4<sup>th</sup> to
1<sup>st</sup> position, Indonesia rises from 14<sup>th</sup> position to 2<sup>nd</sup>
position, China rises from 6 to 4<sup>th</sup>
, Vietnam rises from 27<sup>th</sup> to 8<sup>th</sup> position and Taiwan rises
from 18<sup>th</sup> to 13<sup>th</sup> position. </span>
</blockquote>
<p>So, If APNIC gives the fair chances to the countries where NIR is doing a great work in
expansion of Internet , then IN, ID and VN will get the maximum benefits (as per voting
rights) and will have much more say in the APNIC policies and governance, which will be
beneficial for the whole Internet community as this will correctly capture the members
interests and can guide the governance and policies for the benefit of whole community.
</p>
<h6><u>References:</u></h6>
<ol class="refLi" style="list-style: none;">
<li id="link1">1. <a class="openLink"
onclick="linkOpen('https://www.apnic.net/about-apnic/organization/apnic-region/national-internet-registries/')">https://www.apnic.net/about-apnic/organization/apnic-region/national-internet-registries</a>
</li>
<li id="link2">2. <a class="openLink"
onclick="linkOpen('https://conference.apnic.net/52/program/schedule/#/day/2/nir-sig-forum')">
https://conference.apnic.net/52/program/schedule/#/day/2/nir-sig-forum</a></li>
<li id="link3">3. Please note: In the EC meeting of 27 February 2012, the EC resolved to impose a
moratorium on accepting
any new NIR applications while the EC evaluates the future of the NIR program, without prejudice to
existing
NIRs.
<br> <a class="openLink"
onclick="linkOpen('https://www.apnic.net/about-apnic/organization/apnic-region/national-internet-registries/')">Ref
- https://www.apnic.net/about-apnic/organization/apnic-region/national-internet-registries/</a>
</li>
<li id="link6">6. <a class="openLink"
onclick="linkOpen('https://www.apnic.net/about-apnic/corporate-documents/documents/membership/member-fee-schedule/#1.4')">
https://www.apnic.net/about-apnic/corporate-documents/documents/membership/member-fee-schedule/#1.4</a>
</li>
<li id="link7">7. <a class="openLink"
onclick="linkOpen('https://www.apnic.net/about-apnic/organization/structure/members/')">https://www.apnic.net/about-apnic/organization/structure/members/</a>
</li>
</ol>
</div>
<div class="labelList">
<div class="labelIcon"><i class="fa-solid fa-tags"></i></div>
<div class="labelText">APNIC</div>
</div>
<div class="pagination blogPagination my-4">
<div class="paginationNav pull-right">
<a href="../05/IP-rating.html" title="Previous" rel="" class="preblog">
<div class="prebox"> <span><i class="fa fa-angle-left fa-lg"></i> </span> Previous </div>
<p class="pretitle">IP Ratings </p>
</a>
<a href="../02/history-of-root-servers.html" title="Next" rel="" class="nextblog">
<div class="nextbox">Next<span><i class="fa fa-angle-right fa-lg"></i></span> </div>
<p class="nexttitle"> History of Root Servers</p>
</a>
</div>
</div>
<div id="disqus_thread"></div>
</div>
<!-- /blog post -->
</div>
</div>
</div>
</div>
</section>
<!-- /Main content -->
<div id="showsidebar"></div>
<div class="bg-secondary footer-bg" id="myFooter"></div>
<div class="progress-wrap">
<svg class="progress-circle svg-content" width="100%" height="100%" viewBox="-1 -1 102 102">
<path d="M50,1 a49,49 0 0,1 0,98 a49,49 0 0,1 0,-98" />
</svg>
</div>
<script src="../../plugins/jQuery/jquery.min.js" crossorigin="anonymous"></script>
<script>
$('#myHead').load('../../include/header.html');
$(document).ready(function () {
$("#skipnone").remove();
});
$('#myFooter').load('../../include/footer.html');
$('#showsidebar').load('../../include/sidebarShow.html');
</script>
<script>
var geturl = window.location.href;
// console.log(geturl);
var disqus_config = function () {
this.page.url = geturl; // Replace PAGE_URL with your page's canonical URL variable
this.page.identifier = geturl; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
};
(function () { // DON'T EDIT BELOW THIS LINE
var d = document, s = d.createElement('script');
s.src = 'https://gauravkansal-in.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by
Disqus.</a></noscript>
<!-- Bootstrap JS -->
<script src="../../plugins/bootstrap/bootstrap.bundle.min.js"></script>
<!-- slick slider -->
<script src="../../plugins/slick/slick.min.js"></script>
<!-- masonry -->
<script src="../../plugins/masonry/masonry.js"></script>
<!-- headroom -->
<script src="../../plugins/headroom/headroom.js"></script>
<!-- reading time -->
<script src="../../plugins/reading-time/readingTime.min.js"></script>
<!-- Main Script -->
<script src="../../js/script.js" crossorigin="anonymous"></script>
</body>
</html>