forked from arthurdejong/python-stdnum
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimsi.dat
More file actions
2154 lines (2154 loc) · 204 KB
/
Copy pathimsi.dat
File metadata and controls
2154 lines (2154 loc) · 204 KB
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
# generated from various sources
# https://en.wikipedia.org/w/index.php?title=Mobile_country_code&action=raw
001
01 bands="GSM 900 / GSM 1800" brand="TEST" country="National operators" operator="Test Network" status="Operational"
00-99
202
01 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Cosmote" cc="gr" country="Greece" operator="COSMOTE - Mobile Telecommunications S.A." status="Operational"
05 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Vodafone" cc="gr" country="Greece" operator="Vodafone Greece" status="Operational"
09 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Wind" cc="gr" country="Greece" operator="Wind Hellas Telecommunications S.A." status="Operational"
10 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Wind" cc="gr" country="Greece" operator="Wind Hellas Telecommunications S.A." status="Operational"
00-99
204
01 cc="nl" country="Netherlands" operator="VastMobiel B.V." status="Non-Operational"
02 bands="LTE 2600" brand="Tele2" cc="nl" country="Netherlands" operator="Tele2 Nederland B.V." status="Operational"
03 bands="MVNE / PrivateGSM 1800" brand="Voiceworks" cc="nl" country="Netherlands" operator="Voiceworks B.V." status="Operational"
04 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 1800/2600" brand="Vodafone" cc="nl" country="Netherlands" operator="Vodafone Libertel B.V." status="Operational"
05 cc="nl" country="Netherlands" operator="Elephant Talk Communications Premium Rate Services"
06 brand="Vectone Mobile Delight Mobile" cc="nl" country="Netherlands" operator="Mundio Mobile (Netherlands) Ltd" status="Operational"
07 bands="MVNE" cc="nl" country="Netherlands" operator="Teleena (MVNE)" status="Operational"
08 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE" brand="KPN" cc="nl" country="Netherlands" operator="KPN Mobile The Netherlands B.V." status="Operational"
09 brand="Lycamobile" cc="nl" country="Netherlands" operator="Lycamobile Netherlands Limited"
10 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE" brand="KPN" cc="nl" country="Netherlands" operator="KPN B.V." status="Operational"
12 bands="National Roaming Agreement on KPN" brand="Telfort" cc="nl" country="Netherlands" operator="KPN Mobile The Netherlands B.V." status="Operational"
13 cc="nl" country="Netherlands" operator="Unica Installatietechniek B.V."
14 cc="nl" country="Netherlands" operator="6GMOBILE B.V." status="went into Bankruptcy"
15 brand="Ziggo" cc="nl" country="Netherlands" operator="Ziggo B.V."
16 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="T-Mobile (BEN)" cc="nl" country="Netherlands" operator="T-Mobile Netherlands B.V" status="Operational"
17 bands="MVNE" brand="Intercity Zakelijk" cc="nl" country="Netherlands" operator="Intercity Mobile Communications B.V." status="Operational"
18 cc="nl" country="Netherlands" operator="UPC Nederland B.V."
19 cc="nl" country="Netherlands" operator="Mixe Communication Solutions B.V."
20 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="T-Mobile" cc="nl" country="Netherlands" operator="T-Mobile Netherlands B.V" status="Operational"
21 bands="GSM-R 900" cc="nl" country="Netherlands" operator="ProRail B.V." status="Operational"
22 cc="nl" country="Netherlands" operator="Ministerie van Defensie"
23 bands="MVNE" cc="nl" country="Netherlands" operator="ASPIDER Solutions Nederland B.V." status="Operational"
24 cc="nl" country="Netherlands" operator="Private Mobility Nederland B.V."
25 bands="PrivateGSM 1800" cc="nl" country="Netherlands" operator="CapX B.V." status="Operational"
26 cc="nl" country="Netherlands" operator="SpeakUp B.V."
27 cc="nl" country="Netherlands" operator="Breezz Nederland B.V."
28 cc="nl" country="Netherlands" operator="Lancelot B.V."
67 bands="PrivateGSM 1800" cc="nl" country="Netherlands" operator="RadioAccess B.V." status="Operational"
68 cc="nl" country="Netherlands" operator="Unify Group Holding B.V."
69 cc="nl" country="Netherlands" operator="KPN Mobile The Netherlands B.V."
00-99
206
01 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 1800" brand="Proximus a" cc="be" country="Belgium" operator="Belgacom Mobile" status="Operational"
05 brand="Telenet" cc="be" country="Belgium" operator="Telenet" status="Operational"
10 bands="GSM 900 / GSM 1800 / UMTS 2100 / UMTS 900" brand="Mobistar" cc="be" country="Belgium" operator="Orange S.A." status="Operational"
20 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100" brand="BASE" cc="be" country="Belgium" operator="KPN Group Belgium" status="Operational"
00-99
208
01 bands="GSM 900 / GSM 1800 / UMTS 2100 / UMTS 900 / LTE" brand="Orange" cc="fr" country="France" operator="Orange S.A." status="Operational"
02 bands="GSM 900 / GSM 1800 / UMTS 2100 / UMTS 900" brand="Orange" cc="fr" country="France" operator="Orange S.A." status="Operational"
03 bands="UMTS" brand="MobiquiThings" cc="fr" country="France" status="Operational"
04 bands="UMTS" brand="Sisteer" cc="fr" country="France" status="Operational"
05 bands="Satellite" cc="fr" country="France" operator="Globalstar Europe" status="Operational"
06 bands="Satellite" cc="fr" country="France" operator="Globalstar Europe" status="Operational"
07 bands="Satellite" cc="fr" country="France" operator="Globalstar Europe" status="Operational"
08 brand="Completel Mobile" cc="fr" country="France"
09 bands="GSM 900 / GSM 1800 / UMTS 2100 / UMTS 900 / LTE" brand="SFR" cc="fr" country="France" operator="Vivendi" status="Operational"
10 bands="GSM 900 / GSM 1800 / UMTS 2100 / UMTS 900 / LTE" brand="SFR" cc="fr" country="France" operator="Vivendi" status="Operational"
11 bands="UMTS 2100" brand="SFR" cc="fr" country="France" operator="Vivendi" status="Operational"
13 bands="GSM 900 / GSM 1800 / UMTS 2100 / UMTS 900" brand="SFR" cc="fr" country="France" operator="Vivendi" status="Operational"
14 bands="GSM-R" brand="RFF" cc="fr" country="France" operator="RFF" status="Operational"
15 bands="UMTS 2100 / UMTS 900" brand="Free Mobile" cc="fr" country="France" operator="Iliad" status="Operational"
16 bands="UMTS 2100 / UMTS 900" brand="Free Mobile" cc="fr" country="France" operator="Iliad" status="Operational"
20 bands="GSM 900 / GSM 1800 / UMTS 2100 / UMTS 900 / LTE" brand="Bouygues" cc="fr" country="France" operator="Bouygues Telecom" status="Operational"
21 bands="GSM 900 / GSM 1800 / UMTS 2100 / UMTS 900" brand="Bouygues" cc="fr" country="France" operator="Bouygues Telecom" status=""
22 bands="" brand="Transatel Mobile" cc="fr" country="France" operator="Transatel" status=""
23 bands="GSM, UMTS" brand="Virgin Mobile (MVNO)" cc="fr" country="France" operator="Omea Telecom" status="Operational"
24 bands="UMTS" brand="MobiquiThings" cc="fr" country="France" status="Operational"
25 bands="GSM 900 / GSM 1800 / UMTS 2100 / UMTS 900" brand="LycaMobile" cc="fr" country="France" operator="LycaMobile" status="Operational"
26 bands="GSM, UMTS" brand="NRJ Mobile (MVNO)" cc="fr" country="France" operator="NRJ Mobile" status="Operational"
88 bands="GSM 900 / GSM 1800" brand="Bouygues" cc="fr" country="France" operator="Bouygues Telecom" status="Operational"
00-99
212
01 bands="GSM 900 / UMTS 2100 / LTE 2600" brand="Office des Telephones" cc="mc" country="Monaco" operator="Monaco Telecom" status="Operational"
00-99
213
03 bands="GSM 900" brand="Mobiland" cc="ad" country="Andorra" operator="Servei De Tele. DAndorra" status="Operational"
00-99
214
01 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Vodafone" cc="es" country="Spain" operator="Vodafone Spain" status="Operational"
03 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100" brand="Orange" cc="es" country="Spain" operator="France Telecom España SA" status="Operational"
04 bands="UMTS 2100 / GSM 1800" brand="Yoigo" cc="es" country="Spain" operator="Xfera Moviles SA" status="Operational"
05 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="TME" cc="es" country="Spain" operator="Telefónica Móviles España" status="Operational"
06 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Vodafone" cc="es" country="Spain" operator="Vodafone Spain" status="Operational"
07 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="movistar" cc="es" country="Spain" operator="Telefónica Móviles España" status="Operational"
08 bands="MVNO" brand="Euskaltel" cc="es" country="Spain" status="Operational"
09 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Orange" cc="es" country="Spain" operator="France Telecom España SA" status="Operational"
15 bands="MVNO" brand="BT" cc="es" country="Spain" operator="BT Group España Compañia de Servicios Globales de Telecomunicaciones S.A.U." status="Operational"
16 bands="MVNO" brand="TeleCable" cc="es" country="Spain" operator="Telecable de Asturias S.A.U." status="Operational"
17 bands="MVNO" brand="Móbil R" cc="es" country="Spain" operator="R Cable y Telecomunicaciones Galicia S.A." status="Operational"
18 bands="MVNO" brand="ONO" cc="es" country="Spain" operator="Cableuropa S.A.U." status="Operational"
19 bands="MVNO" brand="Simyo" cc="es" country="Spain" operator="E-PLUS Moviles Virtuales España S.L.U." status="Operational"
20 bands="MVNO" brand="Fonyou" cc="es" country="Spain" operator="Fonyou Telecom S.L." status="Operational"
21 bands="MVNO" brand="Jazztel" cc="es" country="Spain" operator="Jazz Telecom S.A.U." status="Operational"
22 bands="MVNO" brand="DigiMobil" cc="es" country="Spain" operator="Best Spain Telecom" status="Operational"
23 bands="MVNO" brand="Barablu" cc="es" country="Spain" operator="Barablu Móvil España"
24 bands="MVNO" brand="Eroski" cc="es" country="Spain" operator="Eroski Móvil España" status="Operational"
25 bands="MVNO" brand="LycaMobile" cc="es" country="Spain" operator="LycaMobile S.L." status="Operational"
00-99
216
01 bands="GSM 900 / GSM/LTE 1800 / UMTS 2100" brand="Telenor" cc="hu" country="Hungary" operator="Telenor Magyarország Zrt." status="Operational"
30 bands="GSM 900 / GSM/LTE 1800 / UMTS 2100" brand="T-Mobile" cc="hu" country="Hungary" operator="Magyar Telekom Plc" status="Operational"
70 bands="GSM/UMTS 900 / GSM 1800 / UMTS 2100" brand="Vodafone" cc="hu" country="Hungary" operator="Vodafone Magyarország Zrt." status="Operational"
71 bands="" brand="UPC Hungary" cc="hu" country="Hungary" operator="UPC Hungary Ldt" status="Operational"
00-99
218
03 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="HT-ERONET" cc="ba" country="Bosnia and Herzegovina" operator="Public Enterprise Croatian Telecom Ltd." status="Operational"
05 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="m:tel" cc="ba" country="Bosnia and Herzegovina" operator="RS Telecommunications JSC Banja Luka" status="Operational"
90 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="BH Mobile" cc="ba" country="Bosnia and Herzegovina" operator="BH Telecom" status="Operational"
00-99
219
01 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="T-Mobile" cc="hr" country="Croatia" operator="T-Mobile Croatia" status="Operational"
02 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Tele2" cc="hr" country="Croatia" operator="Tele2" status="Operational"
10 bands="GSM 900 / UMTS 2100" brand="Vip" cc="hr" country="Croatia" operator="Vipnet" status="Operational"
00-99
220
01 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Telenor" cc="rs" country="Serbia" operator="Telenor Serbia" status="Operational"
02 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Telenor" cc="rs" country="Serbia" operator="Telenor Montenegro" status="Not operational"
03 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="mt:s" cc="rs" country="Serbia" operator="Telekom Srbija" status="Operational"
05 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="VIP" cc="rs" country="Serbia" operator="VIP Mobile" status="Operational"
00-99
222
01 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="TIM" cc="it" country="Italy" operator="Telecom Italia SpA" status="Operational"
02 bands="Satellite (Globalstar)" brand="Elsacom" cc="it" country="Italy" status="Not operational"
04 brand="Intermatica" cc="it" country="Italy"
05 brand="Telespazio" cc="it" country="Italy"
07 bands="MVNO" brand="Noverca" cc="it" country="Italy" status="Operational"
10 bands="GSM 900 / GSM 1800 / UMTS 900 & 2100" brand="Vodafone" cc="it" country="Italy" operator="Vodafone Omnitel N.V." status="Operational"
30 bands="GSM-R 900" brand="RFI" cc="it" country="Italy" operator="Rete Ferroviaria Italiana" status="Operational"
35 bands="MVNO" brand="Lyca Italy" cc="it" country="Italy" operator="Lyca Mobile" status="Planned"
77 bands="UMTS 2100" brand="IPSE 2000" cc="it" country="Italy" status="Not operational"
88 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Wind" cc="it" country="Italy" operator="Wind Telecomunicazioni SpA" status="Operational"
98 bands="GSM 1800" brand="Blu" cc="it" country="Italy" status="Not operational"
99 bands="UMTS 2100" brand="3 Italia" cc="it" country="Italy" operator="Hutchison 3G" status="Operational"
00-99
226
01 bands="GSM 900/1800<br />UMTS 900/2100<br />LTE 1800" brand="Vodafone" cc="ro" country="Romania" operator="Vodafone România" status="Operational"
02 bands="CDMA 420" brand="Romtelecom" cc="ro" country="Romania" operator="Romtelecom" status="Operational"
03 bands="GSM 900/1800<br />LTE 1800" brand="Cosmote" cc="ro" country="Romania" operator="Cosmote România" status="Operational"
04 bands="CDMA 450" brand="Cosmote/Zapp" cc="ro" country="Romania" operator="Cosmote România" status="Not operational"
05 bands="UMTS 2100" brand="Digi.Mobil" cc="ro" country="Romania" operator="RCS&RDS" status="Operational"
06 bands="UMTS 2100" brand="Cosmote/Zapp" cc="ro" country="Romania" operator="Cosmote România" status="Operational"
10 bands="GSM 900/1800<br />UMTS 900/2100<br />LTE 1800" brand="Orange" cc="ro" country="Romania" operator="Orange România" status="Operational"
00-99
228
01 bands="GSM 900 / GSM / LTE 1800 / UMTS 2100" brand="Swisscom" cc="ch" country="Switzerland" operator="Swisscom Ltd" status="Operational"
02 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Sunrise" cc="ch" country="Switzerland" operator="Sunrise Communications AG" status="Operational"
03 bands="GSM 1800 / UMTS 2100" brand="Orange" cc="ch" country="Switzerland" operator="Orange Communications SA" status="Operational"
05 bands="" cc="ch" country="Switzerland" operator="Togewanet AG (Comfone)" status="Reserved"
06 bands="GSM-R 900" brand="SBB-CFF-FFS" cc="ch" country="Switzerland" operator="SBB AG" status="Operational"
07 bands="GSM 1800" brand="IN&Phone" cc="ch" country="Switzerland" operator="IN&Phone SA" status="Operational"
08 bands="GSM 1800" brand="Tele4u" cc="ch" country="Switzerland" operator="TelCommunication Services AG" status="Operational"
09 bands="Roaming Hub" cc="ch" country="Switzerland" operator="Comfone" status="Inactive"
12 cc="ch" country="Switzerland" operator="Sunrise" status="Inactive"
50 bands="UMTS 2100" cc="ch" country="Switzerland" operator="3G Mobile AG" status="Reserved"
51 bands="MVNO" cc="ch" country="Switzerland" operator="BebbiCell AG" status="Operational"
52 brand="Barablu" cc="ch" country="Switzerland" operator="Barablu"
53 cc="ch" country="Switzerland" operator="UPC" status="Inactive"
54 bands="MVNO" cc="ch" country="Switzerland" operator="Lyca Mobile" status="Operational"
00-99
230
01 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="T-Mobile" cc="cy" country="Cyprus" operator="T-Mobile Czech Republic" status="Operational"
02 bands="CDMA2000 450 / GSM 900 / GSM 1800 / UMTS 2100" brand="O<sub>2</sub>" cc="cy" country="Cyprus" operator="Telefónica Czech Republic" status="Operational"
03 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Vodafone" cc="cy" country="Cyprus" operator="Vodafone Czech Republic" status="Operational"
04 bands="CDMA2000 410 - 430" brand="U:fon" cc="cy" country="Cyprus" operator="Air Telecom a. s." status="Operational"
05 cc="cy" country="Cyprus" operator="TRAVEL TELEKOMMUNIKATION, s.r.o." status="unknown"
06 cc="cy" country="Cyprus" operator="OSNO TELECOMUNICATION, s.r.o." status="unknown"
07 bands="MVNO" cc="cy" country="Cyprus" operator="ASTELNET, s.r.o." status="Operational"
98 bands="GSM-R 900" cc="cy" country="Cyprus" operator="Správa železniční dopravní cesty, s.o." status="Operational"
99 bands="GSM 1800" brand="Vodafone" cc="cy" country="Cyprus" operator="Vodafone Czech Republic" status="Operational"
00-99
231
01 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Orange" cc="sk" country="Slovakia" operator="Orange Slovensko" status="Operational"
02 bands="GSM 900 / GSM 1800" brand="Telekom" cc="sk" country="Slovakia" operator="Slovak Telekom" status="Operational"
03 bands="" cc="sk" country="Slovakia" operator="Unient Communications" status=""
04 bands="UMTS 2100" brand="T-Mobile" cc="sk" country="Slovakia" operator="T-Mobile Slovensko" status="Operational"
06 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="O<sub>2</sub>" cc="sk" country="Slovakia" operator="Telefónica O2 Slovakia" status="Operational"
99 bands="GSM-R" brand="ŽSR" cc="sk" country="Slovakia" operator="Železnice Slovenskej Republiky" status="Operational"
00-99
232
01 bands="GSM / UMTS / LTE 2600" brand="A1 TA" country="Austria - AT" operator="A1 Telekom Austria" status="operational network"
02 country="Austria - AT" operator="A1 Telekom Austria" status="reserved"
03 bands="GSM / UMTS / LTE 2600" brand="T-Mobile AT" country="Austria - AT" operator="T-Mobile Austria" status="operational network"
05 bands="GSM / UMTS" brand="Orange AT" country="Austria - AT" operator="Hutchison Drei Austria" status="operational network"
07 brand="tele.ring" country="Austria - AT" operator="T-Mobile Austria" status="MVNE / MNVO"
08 country="Austria - AT" status="MNVO / not active"
09 brand="Tele2Mobil" country="Austria - AT" operator="A1 Telekom Austria" status="MVNO as of Nov. 2013"
10 bands="UMTS / LTE" brand="3AT" country="Austria - AT" operator="Hutchison Drei Austria" status="operational network"
11 brand="bob" country="Austria - AT" operator="A1 Telekom Austria" status="MVNO"
12 brand="yesss!" country="Austria - AT" operator="A1 Telekom Austria" status="MNVE / MVNO"
13 country="Austria - AT" status="MNVO / not active"
14 country="Austria - AT" operator="Hutchison Drei Austria" status="reserved"
15 brand="Vectone" country="Austria - AT" operator="A1 Telekom Austria" status="MNVO"
16 country="Austria - AT" operator="Hutchison Drei Austria" status="reserved"
91 bands="GSM-R" brand="GSM-R A" country="Austria - AT" operator="ÖBB" status="operational network"
00-99
234
00 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="BT" cc="gb" country="United Kingdom" operator="BT Group" status="Operational"
01 bands="GSM 1800" brand="Vectone Mobile" cc="gb" country="United Kingdom" operator="Mundio Mobile Limited" status="Operational"
02 bands="GSM 900 / GSM 1800 / UMTS 2100 & 900" brand="O2 (UK)" cc="gb" country="United Kingdom" operator="Telefónica Europe" status="Operational"
03 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Airtel-Vodafone" cc="gb" country="United Kingdom" operator="Jersey Airtel Limited" status="Operational"
04 bands="GSM 1800" brand="FMS Solutions Ltd" cc="gb" country="United Kingdom" operator="FMS Solutions Ltd" status="Reserved"
05 cc="gb" country="United Kingdom" operator="COLT Mobile Telecommunications Limited"
06 cc="gb" country="United Kingdom" operator="Internet Computer Bureau Limited"
07 bands="GSM 1800" cc="gb" country="United Kingdom" operator="Cable & Wireless Worldwide" status="Operational"
08 cc="gb" country="United Kingdom" operator="OnePhone (UK) Ltd"
09 bands="GSM 900/1800" brand="Sure Mobile" cc="gb" country="United Kingdom" operator="Tismi BV" status="Operational"
10 bands="GSM 900 / GSM 1800 / UMTS 2100 & 900" brand="O2 (UK)" cc="gb" country="United Kingdom" operator="Telefónica Europe" status="Operational"
11 bands="GSM 900 / GSM 1800 / UMTS 2100 & 900" brand="O2 (UK)" cc="gb" country="United Kingdom" operator="Telefónica Europe" status="Operational"
12 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Railtrack" cc="gb" country="United Kingdom" operator="Network Rail Infrastructure Ltd" status="Operational"
13 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Railtrack" cc="gb" country="United Kingdom" operator="Network Rail Infrastructure Ltd" status="Operational"
14 bands="GSM 1800" brand="Hay Systems Ltd" cc="gb" country="United Kingdom" operator="Hay Systems Ltd" status="Operational"
15 bands="GSM 900 / GSM 1800 / UMTS 2100 & 900" brand="Vodafone UK" cc="gb" country="United Kingdom" operator="Vodafone" status="Operational"
16 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Talk Talk (Opal Tel Ltd)" cc="gb" country="United Kingdom" operator="TalkTalk Communications Limited" status="Operational"
17 cc="gb" country="United Kingdom" operator="FleXtel Limited"
18 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Cloud9" cc="gb" country="United Kingdom" operator="Cloud9" status="Operational"
19 bands="GSM 1800" brand="Private Mobile Networks PMN" cc="gb" country="United Kingdom" operator="Teleware plc" status="Operational"
20 bands="UMTS 2100" brand="3" cc="gb" country="United Kingdom" operator="Hutchison 3G UK Ltd" status="Operational"
22 bands="" brand="RoutoMessaging" cc="gb" country="United Kingdom" operator="Routo Telecommunications Limited" status="Operational"
24 bands="" brand="Greenfone" cc="gb" country="United Kingdom" operator="Stour Marine" status="Operational"
25 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Truphone" cc="gb" country="United Kingdom" operator="Truphone" status="Operational"
26 brand="Lycamobile" cc="gb" country="United Kingdom" status="Operational"
27 bands="GSM 900 / GSM 1800 / UMTS 2100" cc="gb" country="United Kingdom" operator="Teleena UK Limited" status="Operational"
30 bands="GSM 1800 / UMTS 2100" brand="T-Mobile UK" cc="gb" country="United Kingdom" operator="EE" status="Operational"
31 bands="GSM 1800 / UMTS 2100" brand="Virgin Mobile UK" cc="gb" country="United Kingdom" operator="Virgin Media" status="Operational"
32 bands="GSM 1800 / UMTS 2100" brand="Virgin Mobile UK" cc="gb" country="United Kingdom" operator="Virgin Media" status="Operational"
33 bands="GSM 1800 / UMTS 2100" brand="Orange (UK)" cc="gb" country="United Kingdom" operator="EE" status="Operational"
34 bands="GSM 1800 / UMTS 2100" brand="Orange (UK)" cc="gb" country="United Kingdom" operator="EE" status="Operational"
35 cc="gb" country="United Kingdom" operator="JSC Ingenium (UK) Limited"
36 cc="gb" country="United Kingdom" operator="Cable and Wireless Isle of Man Limited"
37 cc="gb" country="United Kingdom" operator="Synectiv Ltd"
50 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="JT" cc="gb" country="United Kingdom" operator="JT Group Limited" status="Operational"
51 bands="TD-LTE" brand="UK Broadband Limited" cc="gb" country="United Kingdom" operator="UK Broadband Limited" status="Operational"
55 bands="GSM 900 (Guernsey) / GSM 1800 (Jersey) / UMTS 2100" brand="Sure Mobile" cc="gb" country="United Kingdom" operator="Cable & Wireless Guernsey / Sure Mobile (Jersey)" status="Operational"
58 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Pronto GSM" cc="gb" country="United Kingdom" operator="Manx Telecom" status="Operational"
76 bands="GSM 900 / GSM 1800" brand="BT" cc="gb" country="United Kingdom" operator="BT Group" status="Operational"
78 bands="TETRA" brand="Airwave" cc="gb" country="United Kingdom" operator="Airwave (communications network)" status="Operational"
00-99
235
00 cc="gb" country="United Kingdom" operator="Mundio Mobile Limited"
01 cc="gb" country="United Kingdom" operator="EE"
02 cc="gb" country="United Kingdom" operator="EE"
77 brand="BT" cc="gb" country="United Kingdom" operator="BT Group"
91 cc="gb" country="United Kingdom" operator="Vodafone United Kingdom"
92 cc="gb" country="United Kingdom" operator="Cable & Wireless UK"
94 cc="gb" country="United Kingdom" operator="Hutchison 3G UK Ltd"
95 cc="gb" country="United Kingdom" operator="Network Rail Infrastructure Limited"
00-99
238
01 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="TDC" cc="dk" country="Denmark" operator="TDC A/S" status="Operational"
02 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Telenor" cc="dk" country="Denmark" operator="Telenor Denmark" status="Operational"
03 bands="" brand="End2End" cc="dk" country="Denmark" operator="MIGway A/S" status="Reserved"
05 bands="" cc="dk" country="Denmark" operator="ApS KBUS" status="Reserved"
06 bands="UMTS 2100" brand="3" cc="dk" country="Denmark" operator="Hi3G Denmark ApS" status="Operational"
07 bands="" cc="dk" country="Denmark" operator="Barablu Mobile Ltd." status="Reserved"
08 bands="" brand="Nordisk Mobiltelefon" cc="dk" country="Denmark" status=""
09 bands="-" cc="dk" country="Denmark" operator="Dansk Beredskabskommunikation A/S" status=""
10 bands="" brand="TDC" cc="dk" country="Denmark" operator="TDC A/S" status="Operational"
11 bands="" cc="dk" country="Denmark" operator="Dansk Beredskabskommunikation A/S" status=""
12 bands="" cc="dk" country="Denmark" operator="Lycamobile Denmark Ltd" status=""
20 bands="GSM 900 / GSM 1800" brand="Telia" cc="dk" country="Denmark" status="Operational"
23 bands="GSM-R" brand="GSM-R DK" cc="dk" country="Denmark" operator="Banedanmark" status="Operational"
30 bands="GSM 900 / GSM 1800" brand="Telia" cc="dk" country="Denmark" operator="Telia Nättjänster Norden AB" status="Operational"
40 bands="" cc="dk" country="Denmark" operator="Ericsson Danmark A/S" status=""
77 bands="GSM 900 / GSM 1800" brand="Telenor" cc="dk" country="Denmark" operator="Telenor Denmark" status="Operational"
00-99
240
01 bands="GSM 900 / GSM 1800" brand="Telia" cc="se" country="Sweden" operator="TeliaSonera Sverige AB" status="Operational"
02 bands="UMTS 900 / UMTS 2100" brand="3" cc="se" country="Sweden" operator="HI3G Access AB" status="Operational"
03 bands="CDMA2000 450" brand="Ice.net" cc="se" country="Sweden" operator="Netett Sverige AB" status="Operational"
04 bands="UMTS 2100" brand="SWEDEN" cc="se" country="Sweden" operator="3G Infrastructure Services AB" status="Operational"
05 bands="UMTS 2100" brand="Sweden 3G" cc="se" country="Sweden" operator="Svenska UMTS-Nät AB" status="Operational"
06 bands="UMTS 2100" brand="Telenor" cc="se" country="Sweden" operator="Telenor Sverige AB" status="Operational"
07 bands="GSM 900 / GSM 1800 (Now merged with Telenor into Net4Mobility)" brand="Tele2" cc="se" country="Sweden" operator="Tele2 Sverige AB" status="Inactive"
08 bands="GSM 900 / GSM 1800" brand="Telenor" cc="se" country="Sweden" operator="Telenor Sverige AB" status="Operational"
09 bands="GSM 900 / GSM 1800" brand="djuice" cc="se" country="Sweden" operator="Djuice Mobile Sweden, filial till Telenor Mobile Sweden AS" status="Inactive"
10 bands="Only used on femto- and nanocells" brand="Spring Mobil" cc="se" country="Sweden" operator="Spring Mobil AB" status="Operational"
11 bands="" cc="se" country="Sweden" operator="Lindholmen Science Park AB" status=""
12 bands="" brand="Lycamobile Sweden" cc="se" country="Sweden" operator="Lycamobile Sweden Limited" status=""
13 bands="" cc="se" country="Sweden" operator="Alltele Företag Sverige AB" status=""
14 bands="GSM 900 / GSM 1800 / UMTS 2100" cc="se" country="Sweden" operator="TDC Sverige AB" status="Inactive"
15 bands="GSM 900 / GSM 1800 / UMTS 2100" cc="se" country="Sweden" operator="Wireless Maingate Nordic AB" status="Operational"
16 bands="GSM" cc="se" country="Sweden" operator="42 Telecom AB" status="Operational"
17 bands="" brand="Gotanet" cc="se" country="Sweden" operator="Götalandsnätet AB" status=""
18 bands="" cc="se" country="Sweden" operator="Generic Mobile Systems Sweden AB" status=""
19 bands="" cc="se" country="Sweden" operator="Mundio Mobile (Sweden) Limited" status=""
20 bands="GSM" cc="se" country="Sweden" operator="Wireless Maingate Messaging Services AB" status="Operational"
21 bands="GSM-R 900" brand="MobiSir" cc="se" country="Sweden" operator="Trafikverket ICT" status="Operational"
22 bands="" cc="se" country="Sweden" operator="EuTel AB" status=""
23 bands="" cc="se" country="Sweden" operator="Infobip Limited" status="Operational"
24 bands="GSM 900 / LTE 2600/900/1800 (LTE1800 only available in major cities)" brand="Sweden 2G" cc="se" country="Sweden" operator="Net4Mobility HB" status="Operational"
25 bands="" cc="se" country="Sweden" operator="Digitel Mobile Srl" status=""
26 bands="GSM" cc="se" country="Sweden" operator="Beepsend AB" status="Operational"
27 bands="" cc="se" country="Sweden" operator="Fogg Mobile AB" status=""
28 bands="" cc="se" country="Sweden" operator="CoolTEL Aps" status=""
29 bands="" cc="se" country="Sweden" operator="Mercury International Carrier Services" status=""
30 bands="" cc="se" country="Sweden" operator="NextGen Mobile Ltd." status=""
31 bands="" cc="se" country="Sweden" operator="Mobimax AB" status=""
32 bands="" cc="se" country="Sweden" operator="Compatel Limited" status=""
33 bands="" cc="se" country="Sweden" operator="Mobile Arts AB" status=""
34 bands="" cc="se" country="Sweden" operator="Tigo LTD." status=""
35 bands="" cc="se" country="Sweden" operator="42 Telecom LTD" status=""
36 bands="" cc="se" country="Sweden" operator="interactive digital media GmbH" status=""
37 bands="" cc="se" country="Sweden" operator="CLX Networks AB" status="Operational"
38 bands="" cc="se" country="Sweden" operator="Voxbone SA" status=""
40 bands="" cc="se" country="Sweden" operator="ReWiCom Scandinavia AB" status=""
41 bands="" cc="se" country="Sweden" operator="Shyam Telecom UK Ltd." status=""
42 bands="" cc="se" country="Sweden" operator="Telenor Connexion AB" status=""
00-99
242
01 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100" brand="Telenor" cc="no" country="Norway" status="Operational"
02 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="NetCom" cc="no" country="Norway" operator="NetCom GSM" status="Operational"
03 brand="Teletopia" cc="no" country="Norway" operator="Teletopia" status="Not operational"
04 bands="MNO" brand="Tele2" cc="no" country="Norway" operator="Tele2(Mobile Norway AS)" status="Operational"
05 bands="UMTS 900 / UMTS 2100" brand="Network Norway" cc="no" country="Norway" operator="Tele2(Mobile Norway AS)" status="Operational"
06 bands="CDMA2000 450" brand="Ice" cc="no" country="Norway" operator="Nordisk Mobiltelefon" status="Operational"
07 bands="MVNO of Telenor NO" brand="Ventelo" cc="no" country="Norway" operator="Ventelo AS" status="Operational"
08 bands="MVNO" brand="TDC" cc="no" country="Norway" operator="TDC Mobil AS" status="Operational"
09 bands="MVNO" brand="Com4" cc="no" country="Norway" operator="Com4 AS" status="Operational"
11 bands="Test" brand="SystemNet" cc="no" country="Norway" operator="SystemNet AS" status=""
20 bands="GSM-R 900" cc="no" country="Norway" operator="Jernbaneverket AS" status="Operational"
23 bands="MVNO" brand="Lyca" cc="no" country="Norway" operator="Lyca Mobile Ltd" status="Operational"
00-99
244
03 bands="GSM 1800" brand="DNA" cc="fi" country="Finland" operator="DNA Oy" status="Operational"
04 bands="MVNO" brand="AINA" cc="fi" country="Finland" operator="DNA Oy / Aina Oyj" status="Operational"
05 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 1800 / LTE 2600" brand="Elisa" cc="fi" country="Finland" operator="Elisa Oyj" status="Operational"
07 bands="GSM 900 / GSM 1800" brand="Nokia" cc="fi" country="Finland" operator="Nokia Test Network" status="Not operational"
08 bands="GSM 1800 / UMTS 2100" brand="Nokia" cc="fi" country="Finland" operator="Nokia Test Network" status="Not Operational"
09 bands="GSM 900" brand="Finnet Group / Nokia Solutions and Networks" cc="fi" country="Finland" operator="Global Network" status="Not Operational"
10 bands="MVNO" brand="TDC" cc="fi" country="Finland" operator="TDC Oy" status="Operational"
11 bands="MVNO" brand="Vectone Mobile" cc="fi" country="Finland" operator="Mundio Mobile Oy" status="Operational"
12 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 1800 / LTE 2600" brand="DNA" cc="fi" country="Finland" operator="DNA Oy" status="Operational"
13 bands="GSM 900 / GSM 1800" brand="DNA" cc="fi" country="Finland" operator="DNA Oy" status="Not Operational"
14 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100" brand="AMT" cc="fi" country="Finland" operator="Ålands Telekommunikation Ab / Ålands Mobiltelefon" status="Operational"
15 bands="GSM 900" brand="SAMK" cc="fi" country="Finland" operator="Samk Student Test Network" status="Not Operational"
21 bands="MVNO" brand="Saunalahti" cc="fi" country="Finland" operator="Elisa Oyj" status="Operational"
25 bands="MVNO" brand="Datame" cc="fi" country="Finland" operator="Datame Oy" status="Operational"
26 bands="MVNO" brand="Compatel" cc="fi" country="Finland" operator="Compatel Ltd" status="Operational"
30 bands="MVNO" brand="Vectone Mobile" cc="fi" country="Finland" operator="Mundio Mobile Oy" status="Operational"
31 bands="MVNO" brand="Ukko Mobile" cc="fi" country="Finland" operator="Ukko Mobile Oy" status="Operational"
91 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 1800 / LTE 2600" brand="Sonera" cc="fi" country="Finland" operator="TeliaSonera Finland Oyj" status="Operational"
00-99
246
01 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Omnitel" cc="lt" country="Lithuania" status="Operational"
02 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="BITĖ" cc="lt" country="Lithuania" operator="UAB Bitė Lietuva" status="Operational"
03 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Tele 2" cc="lt" country="Lithuania" status="Operational"
05 bands="GSM-R 900" brand="LitRail" cc="lt" country="Lithuania" operator="Lithuanian Railways" status="Operational"
06 bands="GSM 1800" brand="Mediafon" cc="lt" country="Lithuania" operator="UAB Mediafon" status="Operational"
00-99
247
01 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="LMT" cc="lv" country="Latvia" operator="Latvian Mobile Telephone" status="Operational"
02 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Tele2" cc="lv" country="Latvia" operator="Tele2" status="Operational"
03 bands="CDMA2000 450" brand="TRIATEL" cc="lv" country="Latvia" operator="Telekom Baltija" status="Operational"
05 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Bite" cc="lv" country="Latvia" operator="Bite Latvija" status="Operational"
06 bands="" cc="lv" country="Latvia" operator="Rigatta" status="Reserved"
07 bands="MVNO" brand="MTS" cc="lv" country="Latvia" operator="Master Telecom" status="Operational"
08 bands="MVNO" brand="IZZI" cc="lv" country="Latvia" operator="IZZI" status="Operational"
09 bands="MVNO" brand="Camel Mobile" cc="lv" country="Latvia" operator="Camel Mobile" status="Operational"
00-99
248
01 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100/ LTE 1800 / LTE 2600" brand="EMT" cc="ee" country="Estonia" operator="Estonian Mobile Telecom" status="Operational"
02 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100" brand="Elisa" cc="ee" country="Estonia" operator="Elisa Eesti" status="Operational"
03 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE" brand="Tele 2" cc="ee" country="Estonia" operator="Tele 2 Eesti" status="Operational"
04 bands="MVNO" cc="ee" country="Estonia" operator="OY Top Connect" status="Operational"
05 bands="" cc="ee" country="Estonia" operator="AS Bravocom Mobiil" status=""
06 bands="UMTS 2100" cc="ee" country="Estonia" operator="Progroup Holding" status="Operational"
08 bands="MVNO" brand="VIVEX" cc="ee" country="Estonia" operator="VIVEX OU" status="Operational"
00-99
250
01 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / TD-LTE 2600 (test)" brand="MTS" cc="ru" country="Russian Federation" operator="Mobile TeleSystems" status="Operational"
02 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100/ TD-LTE 2600" brand="MegaFon" cc="ru" country="Russian Federation" operator="MegaFon OJSC - previously known as North-West GSM" status="Operational"
03 bands="GSM 900 / GSM 1800" brand="NCC" cc="ru" country="Russian Federation" operator="Nizhegorodskaya Cellular Communications" status="Operational"
04 bands="GSM 900" brand="Sibchallenge" cc="ru" country="Russian Federation" operator="Sibchallenge" status="Not operational"
05 bands="GSM 900 / GSM 1800 / UMTS 2100 / CDMA2000 450" brand="ETK" cc="ru" country="Russian Federation" operator="Yeniseytelecom" status="Operational"
06 bands="CDMA2000 450" brand="Skylink" cc="ru" country="Russian Federation" operator="CJSC Saratov System of Cellular Communications" status="Operational"
07 bands="GSM 900 / GSM 1800" brand="SMARTS" cc="ru" country="Russian Federation" operator="Zao SMARTS" status="Operational"
09 bands="CDMA2000 450" brand="Skylink" cc="ru" country="Russian Federation" operator="Khabarovsky Cellular Phone" status="Operational"
10 bands="GSM 900" brand="DTC" cc="ru" country="Russian Federation" operator="Dontelekom" status="Not operational"
11 bands="LTE 2600" brand="Yota" cc="ru" country="Russian Federation" operator="Scartel" status="Operational"
12 bands="GSM 1800" brand="Akos" cc="ru" country="Russian Federation" operator="Baykal Westcom / New Telephone Company / Far Eastern Cellular" status="Operational"
13 bands="GSM 900 / GSM 1800" brand="KUGSM" cc="ru" country="Russian Federation" operator="Kuban GSM" status="Not operational"
14 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100/ TD-LTE 2600" brand="MegaFon" cc="ru" country="Russian Federation" operator="MegaFon OJSC" status="Operational"
15 bands="GSM 1800" brand="SMARTS" cc="ru" country="Russian Federation" operator="SMARTS Ufa, SMARTS Uljanovsk" status="Operational"
16 bands="GSM 900 / GSM 1800" brand="NTC" cc="ru" country="Russian Federation" operator="New Telephone Company" status="Operational"
17 bands="GSM 900 / GSM 1800" brand="Utel" cc="ru" country="Russian Federation" operator="JSC Uralsvyazinform" status="Operational"
18 bands="TD-LTE 2300" brand="Osnova Telecom" cc="ru" country="Russian Federation" status="Not operational"
19 bands="GSM 1800" brand="INDIGO" cc="ru" country="Russian Federation" operator="INDIGO" status="Not operational"
20 bands="GSM 900 / GSM 1800" brand="Tele2" cc="ru" country="Russian Federation" operator="Tele2" status="Operational"
23 bands="GSM 900 / GSM 1800" brand="Mobicom - Novosibirsk" cc="ru" country="Russian Federation" operator="Mobicom - Novosibirsk" status="Not operational"
28 bands="GSM 900" brand="Beeline" cc="ru" country="Russian Federation" operator="Beeline" status="Not operational"
35 bands="GSM 1800" brand="MOTIV" cc="ru" country="Russian Federation" operator="EKATERINBURG-2000" status="Operational"
38 bands="GSM 900 / GSM 1800" brand="Tambov GSM" cc="ru" country="Russian Federation" operator="Central Telecommunication Company" status="Operational"
39 bands="GSM 900 / GSM 1800 /UMTS 2100" brand="Rostelecom" cc="ru" country="Russian Federation" operator="ROSTELECOM" status="Operational"
44 bands="" cc="ru" country="Russian Federation" operator="Stavtelesot / North Caucasian GSM" status="Not operational"
50 bands="GSM 900 / GSM 1800" brand="MTS" cc="ru" country="Russian Federation" operator="Bezlimitno.ru" status="Operational"
91 bands="GSM 1800" brand="Sonic Duo" cc="ru" country="Russian Federation" operator="Sonic Duo CJSC" status="Not operational"
92 bands="" cc="ru" country="Russian Federation" operator="Primtelefon" status="Not operational"
93 bands="" cc="ru" country="Russian Federation" operator="Telecom XXI" status="Not operational"
99 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Beeline" cc="ru" country="Russian Federation" operator="OJSC Vimpel-Communications" status="Operational"
00-99
255
01 bands="GSM 900 / GSM 1800 / CDMA 450" brand="MTS" cc="ua" country="Ukraine" operator="MTS Ukraine" status="Operational"
02 bands="GSM 900 / GSM 1800" brand="Beeline" cc="ua" country="Ukraine" operator="Kyivstar GSM JSC" status="Operational"
03 bands="GSM 900 / GSM 1800" brand="Kyivstar" cc="ua" country="Ukraine" operator="Kyivstar GSM JSC" status="Operational"
04 bands="CDMA 800" brand="IT" cc="ua" country="Ukraine" operator="Intertelecom" status="Operational"
05 bands="GSM 1800" brand="Golden Telecom" cc="ua" country="Ukraine" operator="Kyivstar GSM JSC" status="Operational"
06 bands="GSM 900 / GSM 1800" brand="life:)" cc="ua" country="Ukraine" operator="Astelit" status="Operational"
07 bands="UMTS 2100" brand="3Mob" cc="ua" country="Ukraine" operator="3Mob (Ukrtelecom UMTS )" status="Operational"
21 bands="CDMA 800" brand="PEOPLEnet" cc="ua" country="Ukraine" operator="Telesystems of Ukraine" status="Operational"
23 bands="CDMA 800" brand="CDMA Ukraine" cc="ua" country="Ukraine" operator="Intertelecom" status="Operational"
25 bands="CDMA 800" brand="NEWTONE" cc="ua" country="Ukraine" operator="CST Invest" status="Operational"
00-99
257
01 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="velcom" cc="by" country="Belarus" status="Operational"
02 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="MTS" cc="by" country="Belarus" operator="Mobile TeleSystems" status="Operational"
03 bands="CDMA2000" brand="DIALLOG" cc="by" country="Belarus" operator="BelCel" status="Operational"
04 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="life:)" cc="by" country="Belarus" operator="Belarussian Telecommunications Network" status="Operational"
501 brand="BelCel JV" cc="by" country="Belarus"
00-99
259
01 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 2600" brand="Orange" cc="md" country="Moldova" operator="Orange Moldova" status="Operational"
02 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 2600" brand="Moldcell" cc="md" country="Moldova" status="Operational"
03 bands="CDMA 450" brand="Unité" cc="md" country="Moldova" operator="Moldtelecom" status="Operational"
04 bands="GSM 900 / GSM 1800" brand="Eventis" cc="md" country="Moldova" operator="Eventis Telecom" status="Not operational"
05 bands="UMTS 2100" brand="Unité" cc="md" country="Moldova" operator="Moldtelecom" status="Operational"
99 bands="UMTS 2100" brand="Unité" cc="md" country="Moldova" operator="Moldtelecom" status="Operational"
00-99
260
01 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Plus" cc="pl" country="Poland" operator="Polkomtel Sp. z o.o." status="Operational"
02 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="T-Mobile" cc="pl" country="Poland" operator="T-Mobile Polska S.A." status="Operational"
03 bands="GSM 900 / GSM 1800 / UMTS 2100 / CDMA2000 450" brand="Orange" cc="pl" country="Poland" operator="Polska Telefonia Komórkowa Centertel Sp. z o.o." status="Operational"
04 bands="" cc="pl" country="Poland" operator="CenterNet S.A." status="Not operational"
05 bands="UMTS 2100" cc="pl" country="Poland" operator="Polska Telefonia Komórkowa Centertel Sp. z o.o." status="Operational"
06 bands="GSM 900/ GSM 1800 / UMTS 900 / UMTS 2100" brand="Play" cc="pl" country="Poland" operator="P4 Sp. z o.o." status="Operational"
07 bands="GSM 900 / UMTS 2100" brand="Netia" cc="pl" country="Poland" operator="Netia S.A." status="Operational"
08 bands="" cc="pl" country="Poland" operator="E-Telko Sp. z o.o." status="Not operational"
09 brand="Lycamobile" cc="pl" country="Poland" operator="Lycamobile Sp. z o.o." status="Operational"
10 bands="UMTS 850" brand="Sferia" cc="pl" country="Poland" operator="Sferia S.A." status="Operational"
11 bands="CDMA2000 420" brand="Nordisk Polska" cc="pl" country="Poland" operator="Nordisk Polska Sp. z o.o." status="Operational"
12 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Cyfrowy Polsat" cc="pl" country="Poland" operator="Cyfrowy Polsat S.A." status="Operational"
13 brand="Sferia" cc="pl" country="Poland" operator="Sferia S.A." status="Not operational"
14 brand="Sferia" cc="pl" country="Poland" operator="Sferia S.A." status="Not operational"
15 bands="LTE 1800" brand="CenterNet" cc="pl" country="Poland" operator="CenterNet S.A." status="Operational"
16 bands="GSM 1800 / LTE 1800" brand="Mobyland" cc="pl" country="Poland" operator="Mobyland Sp. z o.o." status="Operational"
17 bands="UMTS 900" brand="Aero2" cc="pl" country="Poland" operator="Aero 2 Sp. z o.o." status="Operational"
34 bands="UMTS 900" cc="pl" country="Poland" operator="T-Mobile Polska S.A." status="Operational"
98 cc="pl" country="Poland" operator="P4 Sp. z o.o." status="Not Operational"
00-99
262
01 bands="LTE 800 / GSM 900 / GSM/LTE 1800 / UMTS 2100 / LTE 2600" brand="T-Mobile" cc="de" country="Germany" operator="T-Mobile Deutschland GmbH" status="Operational"
02 bands="LTE 800 / GSM 900 / GSM 1800 / UMTS 2100 / LTE 2600" brand="Vodafone" cc="de" country="Germany" operator="Vodafone D2 GmbH" status="Operational"
03 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="E-Plus" cc="de" country="Germany" operator="E-Plus Mobilfunk" status="Operational"
04 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Vodafone" cc="de" country="Germany" status="Reserved"
05 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="E-Plus" cc="de" country="Germany" operator="E-Plus Mobilfunk" status="Reserved"
06 bands="LTE 800 / GSM 900 / GSM/LTE 1800 / UMTS 2100 / LTE 2600" brand="T-Mobile" cc="de" country="Germany" status="Reserved"
07 bands="LTE 800 / GSM 900 / GSM 1800 / UMTS 2100 / LTE 2600" brand="O<sub>2</sub>" cc="de" country="Germany" operator="O2 (Germany) GmbH & Co. OHG" status="Operational"
08 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="O<sub>2</sub>" cc="de" country="Germany" status="Reserved"
09 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 2600" brand="Vodafone" cc="de" country="Germany" status="Internal testing IOT"
10 bands="GSM-R" cc="de" country="Germany" operator="Arcor AG & Co" status="Operational"
11 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="O<sub>2</sub>" cc="de" country="Germany" status="Reserved"
12 bands=""full" MVNO / MVNE" brand="Dolphin Telecom / sipgate" cc="de" country="Germany" operator="sipgate Wireless" status="Operational"
13 bands="UMTS 2100" cc="de" country="Germany" operator="Mobilcom Multimedia" status="Not operational"
14 bands="UMTS 2100" cc="de" country="Germany" operator="Group 3G UMTS" status="Not operational"
15 bands="TD-SCDMA" brand="Airdata" cc="de" country="Germany" status="Operational"
16 bands="GSM 900 / GSM 1800 / UMTS 2100 (MVNE)" brand="Telogic ex. Vistream" cc="de" country="Germany" status=""
20 bands="GSM" brand="OnePhone" cc="de" country="Germany" operator="E-Plus" status="Operational"
42 bands="GSM 1800" brand="27C3" cc="de" country="Germany" operator="Chaos Computer Club" status="Not operational"
43 bands="" brand="LYCA" cc="de" country="Germany" operator="Lycamobile" status="Operational"
60 bands="GSM-R 900" cc="de" country="Germany" operator="DB Telematik" status="Operational"
76 bands="GSM 900" cc="de" country="Germany" operator="Siemens AG" status="Operational"
77 bands="GSM 900" brand="E-Plus" cc="de" country="Germany" status="Operational"
901 bands="" brand="Debitel" cc="de" country="Germany" status="Operational"
92 bands="GSM 1800 / UMTS 2100" brand="Nash Technologies" cc="de" country="Germany" status="Operational"
00-99
266
01 bands="GSM 900" brand="GibTel" cc="gi" country="Gibraltar (United Kingdom)" operator="Gibtelecom" status="Operational"
06 bands="UMTS 2100" brand="CTS Mobile" cc="gi" country="Gibraltar (United Kingdom)" operator="CTS Gibraltar" status="Operational"
09 brand="Shine" cc="gi" country="Gibraltar (United Kingdom)" operator="Eazi Telecom" status="Operational"
00-99
268
01 bands="GSM 900 / GSM 1800 / UMTS 900/2100 / LTE 800/1800/2600" brand="Vodafone" cc="pt" country="Portugal" operator="Vodafone Portugal" status="Operacional"
03 bands="GSM 900 / UMTS 2100 / LTE 800/1800/2600" brand="Optimus" cc="pt" country="Portugal" operator="Sonaecom – Serviços de Comunicações, S.A." status="Operational"
04 bands="GSM 900 / GSM 1800 / UMTS 900/2100" brand="LycaMobile" cc="pt" country="Portugal" operator="MVNO" status="Operational"
06 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 800/1800/2600" brand="TMN" cc="pt" country="Portugal" operator="Telecomunicações Móveis Nacionais" status="Operational"
07 bands="GSM 900 / UMTS 2100" brand="Vectonemobile - Delightmobile" cc="pt" country="Portugal" operator="MVNO" status="Operational"
21 bands="CDMA2000 450" brand="Zapp" cc="pt" country="Portugal" operator="Zapp Portugal" status="Not operational"
00-99
270
01 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="LuxGSM" cc="lu" country="Luxembourg" operator="P&T Luxembourg" status="Operational"
77 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Tango" cc="lu" country="Luxembourg" operator="Tango SA" status="Operational"
99 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Orange" cc="lu" country="Luxembourg" operator="Orange S.A." status="Operational"
00-99
272
01 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Vodafone" cc="ie" country="Ireland" operator="Vodafone Ireland" status="Operational"
02 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="O<sub>2</sub>" cc="ie" country="Ireland" operator="O2 Ireland" status="Operational"
03 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Meteor" cc="ie" country="Ireland" operator="Meteor Mobile Communications" status="Operational"
04 bands="" cc="ie" country="Ireland" operator="Access Telecom" status=""
05 bands="UMTS 2100" brand="3" cc="ie" country="Ireland" operator="Hutchison 3G Ireland limited" status="Operational"
07 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="eMobile" cc="ie" country="Ireland" operator="Eircom Mobile" status="Operational"
09 bands="" cc="ie" country="Ireland" operator="Clever Communications" status=""
11 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Tesco Mobile" cc="ie" country="Ireland" operator="Liffey Telecom" status="Operational"
13 bands="GSM 900 / GSM 1800" brand="Lycamobile" cc="ie" country="Ireland" operator="Lycamobile" status="Operational"
00-99
274
01 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 1800" brand="Síminn" cc="is" country="Iceland" operator="Iceland Telecom" status="Operational"
02 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 800" brand="Vodafone" cc="is" country="Iceland" operator="Og fjarskipti hf" status="Operational"
03 bands="" brand="Vodafone" cc="is" country="Iceland" operator="Vodafone Iceland" status="Operational"
04 bands="GSM 1800" brand="Viking" cc="is" country="Iceland" operator="IMC Island ehf" status="Operational"
06 bands="" cc="is" country="Iceland" operator="Núll níu ehf" status="Reserved"
07 bands="GSM 1800" brand="IceCell" cc="is" country="Iceland" operator="IceCell ehf" status="Operational"
08 bands="" brand="On-waves" cc="is" country="Iceland" operator="Iceland Telecom" status="Operational"
11 bands="UMTS 2100 / LTE 1800" brand="Nova" cc="is" country="Iceland" operator="Nova ehf" status="Operational"
12 bands="GSM 900 / GSM 1800" brand="Tal" cc="is" country="Iceland" operator="Tal hf" status="Operational"
00-99
276
01 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="AMC" cc="al" country="Albania" operator="Albanian Mobile Communications" status="Operational"
02 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Vodafone" cc="al" country="Albania" operator="Vodafone Albania" status="Operational"
03 bands="GSM 900 / GSM 1800" brand="Eagle Mobile" cc="al" country="Albania" operator="Eagle Mobile" status="Operational"
04 bands="GSM 900 / GSM 1800" brand="Plus Communication" cc="al" country="Albania" operator="Plus Communication" status="Operational"
00-99
278
01 bands="GSM 900 / UMTS 2100" brand="Vodafone" cc="mt" country="Malta" operator="Vodafone Malta" status="Operational"
21 bands="GSM 1800 / UMTS 2100" brand="GO" cc="mt" country="Malta" operator="Mobisle Communications Limited" status="Operational"
77 bands="UMTS 2100" brand="Melita" cc="mt" country="Malta" operator="Melita Plc" status="Operational"
00-99
280
01 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Cytamobile-Vodafone" cc="cy" country="Cyprus" operator="Cyprus Telecommunications Auth" status="Operational"
10 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="MTN" cc="cy" country="Cyprus" operator="Areeba Ltd" status="Operational"
20 bands="GSM 900 / GSM 1800" brand="PrimeTel" cc="cy" country="Cyprus" operator="PrimeTel PLC" status="Operational"
00-99
282
01 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Geocell" cc="ge" country="Georgia" operator="Geocell Limited" status="Operational"
02 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="MagtiCom" cc="ge" country="Georgia" operator="Magticom GSM" status="Operational"
03 bands="CDMA2000 450" brand="MagtiCom" cc="ge" country="Georgia" operator="Magtifix" status="Operational"
04 bands="GSM 1800" brand="Beeline" cc="ge" country="Georgia" operator="Mobitel LLC" status="Operational"
05 bands="CDMA2000 800" brand="Silknet" cc="ge" country="Georgia" operator="Silknet CDMA" status="Operational"
00-99
283
01 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Beeline" cc="am" country="Armenia" operator="ArmenTel" status="Operational"
04 bands="GSM 900 / UMTS 900" brand="Karabakh Telecom" cc="am" country="Armenia" operator="Karabakh Telecom" status="Operational"
05 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="VivaCell-MTS" cc="am" country="Armenia" operator="K Telecom CJSC" status="Operational"
10 bands="GSM 900 / GSM 1800 / UMTS 2100 / UMTS 900" brand="Orange" cc="am" country="Armenia" operator="Orange S.A." status="Operational"
00-99
284
01 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="M-Tel" cc="bg" country="Bulgaria" operator="Mobiltel" status="Operational"
03 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100" brand="Vivacom" cc="bg" country="Bulgaria" operator="BTC" status="Operational"
04 bands="GSM 1800" brand="Undisclosed" cc="bg" country="Bulgaria" operator="Undisclosed" status="Reserved"
05 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="GLOBUL" cc="bg" country="Bulgaria" operator="Cosmo Bulgaria Mobile" status="Operational"
13 brand="MaxTelecom" cc="bg" country="Bulgaria" operator="Max Telecom LTD" status="Deploying"
00-99
286
01 bands="GSM 900 / UMTS 2100" brand="Turkcell" cc="tr" country="Turkey" operator="Turkcell Iletisim Hizmetleri A.S." status="Operational"
02 bands="GSM 900 / UMTS 2100" brand="Vodafone" cc="tr" country="Turkey" operator="Vodafone Turkey" status="Operational"
03 bands="GSM 1800 / UMTS 2100" brand="Avea" cc="tr" country="Turkey" status="Operational"
04 bands="GSM 1800" cc="tr" country="Turkey" operator="Aycell" status="Not operational"
00-99
288
01 bands="GSM 900" brand="Faroese Telecom" cc="fo" country="Faroe Islands (Denmark)" operator="Faroese Telecom" status="Operational"
02 bands="GSM 900" brand="Vodafone" cc="fo" country="Faroe Islands (Denmark)" operator="Vodafone Faroe Islands" status="Operational"
00-99
289
67 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Aquafon" cc="ge" country="Abkhazia" operator="Aquafon JSC" status="Operational"
68 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="A-Mobile" cc="ge" country="Abkhazia" operator="A-Mobile LLC" status="Operational"
88 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="A-Mobile" cc="ge" country="Abkhazia" operator="A-Mobile LLC" status="Operational"
00-99
290
01 bands="GSM 900" cc="gl" country="Greenland (Denmark)" operator="TELE Greenland A/S" status="Operational"
00-99
292
01 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="PRIMA" cc="sm" country="San Marino" operator="San Marino Telecom" status="Operational"
00-99
293
40 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Si.mobil" cc="si" country="Slovenia" operator="SI.MOBIL d.d." status="Operational"
41 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Mobitel" cc="si" country="Slovenia" operator="Mobitel D.D." status="Operational"
64 bands="UMTS 2100" brand="T-2" cc="si" country="Slovenia" operator="T-2 d.o.o." status="Operational"
70 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100" brand="Tušmobil" cc="si" country="Slovenia" operator="Tušmobil d.o.o." status="Operational"
00-99
294
01 bands="GSM 900 / UMTS 2100" brand="T-Mobile MK" cc="mk" country="Macedonia" operator="T-Mobile Macedonia" status="Operational"
02 bands="GSM 900 / UMTS 2100" brand="ONE" cc="mk" country="Macedonia" operator="One" status="Operational"
03 bands="GSM 900 / GSM 1800 /UMTS 900" brand="Vip MK" cc="mk" country="Macedonia" operator="VIP Operator" status="Operational"
00-99
295
01 bands="GSM 900 / GSM 1800" brand="Swisscom" cc="li" country="Liechtenstein" operator="Swisscom Schweiz AG" status="Operational"
02 bands="GSM 1800 / UMTS 2100" brand="Orange" cc="li" country="Liechtenstein" operator="Orange Liechtenstein AG" status="Operational"
05 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="FL1" cc="li" country="Liechtenstein" operator="Mobilkom Liechtenstein AG" status="Operational"
06 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Cubic Telecom" cc="li" country="Liechtenstein" operator="Cubic Telecom AG" status="Operational"
77 bands="GSM 900" brand="Alpmobil" cc="li" country="Liechtenstein" operator="Alpcom AG" status="Not operational"
00-99
297
01 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Telenor" cc="me" country="Montenegro" operator="Telenor Montenegro" status="Operational"
02 bands="GSM 900 / UMTS 2100" brand="T-Mobile" cc="me" country="Montenegro" operator="T-Mobile Montenegro LLC" status="Operational"
03 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="m:tel CG" cc="me" country="Montenegro" operator="MTEL CG" status="Operational"
04 bands="GSM 900 / UMTS 2100" brand="T-Mobile" cc="me" country="Montenegro" operator="T-Mobile Montenegro" status="Operational"
00-99
302
220 bands="UMTS 850 / UMTS 1900 / LTE 1700" brand="Telus" cc="ca" country="Canada" operator="Koodo Mobility and Telus Mobility" status="Operational"
221 bands="" brand="Telus" cc="ca" country="Canada" operator="Telus Mobility" status=""
270 bands="UMTS 1700 / LTE 1700" brand="EastLink" cc="ca" country="Canada" operator="EastLink" status="Operational"
290 bands="iDEN 900" brand="Airtel Wireless" cc="ca" country="Canada" operator="Airtel Wireless" status="Operational"
320 bands="UMTS 1700" brand="Mobilicity" cc="ca" country="Canada" operator="DAVE Wireless" status="Operational"
350 bands="GSM 850" brand="FIRST" cc="ca" country="Canada" operator="FIRST Networks Operations" status="Operational"
360 bands="iDEN 800" brand="MiKe" cc="ca" country="Canada" operator="Telus Mobility" status="Operational"
361 bands="CDMA2000 800 / CDMA2000 1900" brand="Telus" cc="ca" country="Canada" operator="Telus Mobility" status="Operational"
370 bands="GSM 850 / GSM 1900 / UMTS 850 / UMTS 1900" brand="Fido" cc="ca" country="Canada" operator="Fido Solutions (Rogers Wireless)" status="Operational"
380 bands="UMTS 850 / UMTS 1900" brand="DMTS" cc="ca" country="Canada" operator="Dryden Mobility" status="Operational"
490 bands="UMTS 1700" brand="WIND Mobile" cc="ca" country="Canada" operator="Globalive Communications" status="Operational"
500 bands="UMTS 1700" brand="Videotron" cc="ca" country="Canada" operator="Videotron" status="Operational"
510 bands="UMTS 1700" brand="Videotron" cc="ca" country="Canada" operator="Videotron" status="Operational"
610 bands="UMTS 850 / UMTS 1900 /LTE 1700 / LTE 2600" brand="Bell" cc="ca" country="Canada" operator="Bell Mobility and Virgin Mobile Canada" status="Operational"
620 bands="GSM 1900 / UMTS 1900" brand="ICE Wireless" cc="ca" country="Canada" operator="ICE Wireless" status="Operational"
640 bands="CDMA2000 800 / CDMA2000 1900" brand="Bell" cc="ca" country="Canada" operator="Bell Mobility" status="Operational"
652 bands="CDMA2000" cc="ca" country="Canada" operator="BC Tel Mobility (Telus)" status="Operational"
653 bands="CDMA2000 800 / CDMA2000 1900" brand="Telus" cc="ca" country="Canada" operator="Telus Mobility" status="Operational"
655 bands="CDMA2000 800 / CDMA2000 1900" brand="MTS" cc="ca" country="Canada" operator="MTS Mobility" status="Operational"
656 bands="CDMA2000 / UMTS 850 / UMTS 1900 / LTE 1700 / LTE 2600" brand="TBay" cc="ca" country="Canada" operator="Thunder Bay Telephone Mobility" status="Operational"
657 bands="CDMA2000 800 / CDMA2000 1900" brand="Telus" cc="ca" country="Canada" operator="Telus Mobility" status="Operational"
660 bands="UMTS 850 / UMTS 1900 / LTE 1700" brand="MTS" cc="ca" country="Canada" operator="MTS Mobility" status="Operational"
680 bands="CDMA2000 800 / CDMA2000 1900 / UMTS 850 / UMTS 1900" brand="SaskTel" cc="ca" country="Canada" operator="SaskTel Mobility" status="Operational"
690 bands="UMTS 850 / UMTS 1900" brand="Bell" cc="ca" country="Canada" operator="Bell Mobility" status="Operational"
701 bands="CDMA2000" cc="ca" country="Canada" operator="MB Tel Mobility" status="Operational"
702 bands="CDMA2000" cc="ca" country="Canada" operator="MT&T Mobility (Aliant)" status="Operational"
703 bands="CDMA2000" cc="ca" country="Canada" operator="New Tel Mobility (Aliant)" status="Operational"
710 bands="Satellite CDMA" brand="Globalstar" cc="ca" country="Canada" status="Operational"
720 bands="GSM 850 / GSM 1900 / UMTS 850 / UMTS 1900 / LTE 1700 / LTE 2600" brand="Rogers Wireless" cc="ca" country="Canada" operator="Rogers Communications" status="Operational"
780 bands="UMTS 850 / UMTS 1900 / LTE 1700" brand="SaskTel" cc="ca" country="Canada" operator="SaskTel Mobility" status="Operational"
880 bands="UMTS 850 / UMTS 1900" brand="Bell / Telus / SaskTel" cc="ca" country="Canada" operator="Shared Telus, Bell, and SaskTel" status="Operational"
000-999
308
01 bands="GSM 900" brand="Ameris" cc="pm" country="Saint Pierre and Miquelon (France)" operator="St. Pierre-et-Miquelon Télécom" status="Operational"
02 bands="GSM 900" brand="GLOBALTEL" cc="pm" country="Saint Pierre and Miquelon (France)" operator="GLOBALTEL" status="Operational"
00-99
310
004 bands="" brand="Verizon" cc="us" country="United States of America" operator="Verizon Wireless" status="Operational"
005 bands="CDMA2000 850 / CDMA2000 1900" brand="Verizon" cc="us" country="United States of America" operator="Verizon Wireless" status="Operational"
010 bands="" cc="us" country="United States of America" operator="MCI" status="Not operational"
013 bands="" brand="MobileTel" cc="us" country="United States of America" status=""
014 bands="" cc="us" country="United States of America" operator="Testing" status="Operational"
016 bands="CDMA2000 1900 / CDMA2000 1700 / CDMA2000 2100" brand="Cricket Communications" cc="us" country="United States of America" operator="Cricket Wireless" status="Operational"
017 bands="" cc="us" country="United States of America" operator="North Sight Communications Inc." status="Operational"
020 bands="GSM 850 / GSM 1900" cc="us" country="United States of America" operator="Union Telephone Company" status="Operational"
026 bands="GSM 1900 / UMTS 1700 / UMTS 1900" brand="T-Mobile" cc="us" country="United States of America" status="Operational"
030 bands="GSM 850" brand="AT&T" cc="us" country="United States of America" operator="AT&T Mobility" status="Operational"
032 bands="CDMA2000 1900 / LTE 700" brand="IT&E Wireless" cc="gu" country="Guam (United States of America)" operator="IT&E Overseas, Inc" status="Operational"
033 bands="" cc="gu" country="Guam (United States of America)" operator="Guam Telephone Authority" status=""
034 bands="" brand="Airpeak" cc="us" country="United States of America" status="Operational"
040 bands="GSM 1900" brand="Concho" cc="us" country="United States of America" operator="Concho Cellular Telephone Co., Inc." status="Operational"
046 bands="GSM 1900" brand="SIMMETRY" cc="us" country="United States of America" operator="TMP Corp" status="Operational"
053 bands="CDMA2000 1900." cc="us" country="United States of America" operator="Virgin Mobile US" status="Operational"
054 bands="" cc="us" country="United States of America" operator="Alltel US" status="Operational"
060 bands="" cc="us" country="United States of America" operator="Consolidated Telcom" status="Operational"
066 bands="GSM AND CDMA" cc="us" country="United States of America" operator="U.S. Cellular" status="Operational"
070 bands="" cc="us" country="United States of America" operator="Highland Cellular" status="Operational"
080 bands="GSM 1900" brand="Corr" cc="us" country="United States of America" operator="Corr Wireless Communications LLC" status="Operational"
090 bands="CDMA2000 1900 / CDMA2000 1700 / CDMA2000 2100" brand="Cricket Communications" cc="us" country="United States of America" operator="Cricket Wireless" status="Operational"
100 bands="GSM 850" brand="Plateau Wireless" cc="us" country="United States of America" operator="New Mexico RSA 4 East Ltd. Partnership" status="Operational"
110 bands="GSM 850" brand="PTI Pacifica" cc="us" country="United States of America" operator="PTI Pacifica Inc." status="Operational"
120 bands="CDMA2000 1900" brand="Sprint" cc="us" country="United States of America" status="Operational"
140 bands="GSM 850 / GSM 1900" brand="mPulse" cc="gu" country="Guam (United States of America)" operator="GTA Wireless" status="Operational"
150 bands="GSM 850 / UMTS 850 / UMTS 1900" brand="AT&T" cc="us" country="United States of America" operator="AT&T Mobility" status="Operational"
160 bands="GSM 1900" cc="us" country="United States of America" operator="T-Mobile" status="Not operational"
170 bands="GSM 1900" brand="AT&T" cc="us" country="United States of America" operator="AT&T Mobility" status="Operational"
180 bands="GSM 850 / UMTS 850 / UMTS 1900" brand="West Central" cc="us" country="United States of America" operator="West Central Wireless" status="Operational"
190 bands="GSM 850" brand="Dutch Harbor" cc="us" country="United States of America" operator="Alaska Wireless Communications, LLC" status="Operational"
200 bands="GSM 1900" cc="us" country="United States of America" operator="T-Mobile" status="Not operational"
210 bands="GSM 1900" cc="us" country="United States of America" operator="T-Mobile" status="Not operational"
220 bands="GSM 1900" cc="us" country="United States of America" operator="T-Mobile" status="Not operational"
230 bands="GSM 1900" cc="us" country="United States of America" operator="T-Mobile" status="Not operational"
240 bands="GSM 1900" cc="us" country="United States of America" operator="T-Mobile" status="Not operational"
250 bands="GSM 1900" cc="us" country="United States of America" operator="T-Mobile" status="Not operational"
260 bands="GSM 1900 / UMTS 1900 / UMTS 1700/2100 (AWS)" cc="us" country="United States of America" operator="T-Mobile" status="Operational"
270 bands="GSM 1900" cc="us" country="United States of America" operator="T-Mobile" status="Not operational"
280 bands="GSM 1900" brand="AT&T" cc="us" country="United States of America" operator="AT&T Mobility" status="Not Operational"
290 bands="GSM 1900" cc="us" country="United States of America" operator="T-Mobile" status="Not operational"
300 bands="GSM 1900" brand="Big Sky Mobile" cc="us" country="United States of America" operator="Smart Call (Truphone)" status="Operational"
310 bands="GSM 1900" cc="us" country="United States of America" operator="T-Mobile" status="Not operational"
311 bands="GSM 1900" cc="us" country="United States of America" operator="Farmers Wireless" status="Operational"
320 bands="GSM 850 / GSM 1900" brand="Cellular One" cc="us" country="United States of America" operator="Smith Bagley, Inc." status="Operational"
330 bands="GSM 1900" brand="T-Mobile" cc="us" country="United States of America" status="Not operational"
340 bands="GSM 1900" brand="Westlink" cc="us" country="United States of America" operator="Westlink Communications" status="Operational"
350 bands="GSM 1900" cc="us" country="United States of America" operator="Carolina Phone" status="Not operational"
370 bands="CDMA2000 850" brand="Docomo" cc="gu" country="Guam (United States of America)" operator="NTT Docomo Pacific" status="Not operational"
380 bands="GSM 850 / GSM 1900 / UMTS 850 / UMTS 1900" brand="AT&T" cc="us" country="United States of America" operator="AT&T Mobility" status="Not operational"
390 bands="GSM 850" brand="Cellular One of East Texas" cc="us" country="United States of America" operator="TX-11 Acquisition, LLC" status="Operational"
400 bands="GSM 1900" brand="i CAN_GSM" cc="us" country="United States of America" operator="Wave Runner LLC (Guam)" status="Operational"
410 bands="GSM 850 / GSM 1900 / UMTS 850 / UMTS 1900" brand="AT&T" cc="us" country="United States of America" operator="AT&T Mobility" status="Operational"
420 bands="GSM 1900" brand="Cincinnati Bell" cc="us" country="United States of America" operator="Cincinnati Bell Wireless" status="Operational"
430 bands="GSM 1900" cc="us" country="United States of America" operator="Alaska Digitel" status="Operational"
440 bands="GSM 1900" brand="Cellular One" cc="us" country="United States of America" status=""
450 bands="GSM 850" brand="Viaero" cc="us" country="United States of America" operator="Viaero Wireless" status="Operational"
460 bands="GSM 1900" brand="Simmetry" cc="us" country="United States of America" operator="TMP Corporation" status="Operational"
470 bands="CDMA2000 1900" brand="nTelos" cc="us" country="United States of America" operator="NTT Docomo Pacific" status="Operational"
480 bands="" cc="us" country="United States of America" operator="Choice Phone" status="Operational"
490 bands="GSM 850 / GSM 1900" brand="T-Mobile" cc="us" country="United States of America" status="Operational"
500 bands="CDMA2000 800 / CDMA2000 1900" brand="Alltel" cc="us" country="United States of America" status="Operational"
510 bands="" brand="Airtel" cc="us" country="United States of America" operator="Airtel Wireless" status="Operational"
520 bands="" brand="VeriSign" cc="us" country="United States of America" status=""
530 bands="" cc="us" country="United States of America" operator="West Virginia Wireless" status="Operational"
540 bands="GSM 1900" brand="Oklahoma Western" cc="us" country="United States of America" operator="Oklahoma Western Telephone Company" status="Operational"
560 bands="GSM 850" brand="AT&T" cc="us" country="United States of America" operator="AT&T Mobility" status="Operational"
570 bands="GSM 1900" brand="Cellular One" cc="us" country="United States of America" operator="MTPCS, LLC" status="Operational"
580 bands="" brand="T-Mobile" cc="us" country="United States of America" status="Not operational"
59 bands="CDMA2000" brand="Cellular One" cc="bm" country="Bermuda" status="Operational"
590 bands="GSM 850 / GSM 1900" brand="Alltel" cc="us" country="United States of America" operator="Alltel Communications Inc" status="Operational"
610 bands="GSM 1900" brand="Epic Touch" cc="us" country="United States of America" operator="Elkhart Telephone Co." status="Operational"
620 bands="GSM 1900" brand="Coleman County Telecom" cc="us" country="United States of America" operator="Coleman County Telecommunications" status="Operational"
630 bands="GSM 1900" brand="AmeriLink PCS" cc="us" country="United States of America" operator="Choice Wireless" status="Operational"
640 bands="GSM 1900" brand="Airadigm" cc="us" country="United States of America" operator="Airadigm Communications" status="Operational"
650 bands="GSM 850" brand="Jasper" cc="us" country="United States of America" operator="Jasper Wireless, inc" status="Operational"
660 bands="GSM 1900" brand="T-Mobile" cc="us" country="United States of America" status="Not operational"
670 bands="" brand="Northstar" cc="us" country="United States of America" status="Operational"
680 bands="GSM 850 / GSM 1900" brand="AT&T" cc="us" country="United States of America" operator="AT&T Mobility" status="Operational"
690 bands="GSM 1900" brand="Immix" cc="us" country="United States of America" operator="Immix Wireless" status="Operational"
730 bands="" brand="SeaMobile" cc="us" country="United States of America" status="Operational"
740 bands="" brand="Convey" cc="us" country="United States of America" operator="Convey Communications Inc." status="Operational"
750 bands="CDMA2000 850 / CDMA2000 1900 / LTE 700" brand="Appalachian Wireless" cc="us" country="United States of America" operator="Appalachian Wireless" status="Operational"
760 bands="" brand="Panhandle" cc="us" country="United States of America" operator="Panhandle Telecommunications Systems Inc." status="Operational"
770 bands="GSM 1900" brand="i wireless" cc="us" country="United States of America" operator="Iowa Wireless Services" status="Operational"
780 bands="" cc="us" country="United States of America" operator="Airlink PCS" status="Not operational"
790 bands="GSM 1900" brand="PinPoint" cc="us" country="United States of America" operator="PinPoint Communications" status="Operational"
800 bands="GSM 1900" cc="us" country="United States of America" operator="T-Mobile" status="Not operational"
830 bands="GSM 850" brand="Caprock" cc="us" country="United States of America" operator="Caprock Cellular" status="Operational"
840 bands="GSM 1900" brand="telna Mobile" cc="us" country="United States of America" operator="Telecom North America Mobile, Inc." status="Operational"
850 bands="CDMA2000 850 / CDMA2000 1900 / GSM 850 / GSM 1900" brand="Aeris" cc="us" country="United States of America" operator="Aeris Communications, Inc." status="Operational"
870 bands="GSM 850" brand="PACE" cc="us" country="United States of America" operator="Kaplan Telephone Company" status="Operational"
880 bands="GSM 850" brand="Advantage" cc="us" country="United States of America" operator="Advantage Cellular Systems" status="Operational"
890 bands="GSM 850 / GSM 1900" brand="Unicel" cc="us" country="United States of America" operator="Rural Cellular Corporation" status="Operational"
900 bands="CDMA2000 850 / CDMA2000 1900" brand="Mid-Rivers Wireless" cc="us" country="United States of America" operator="Mid-Rivers Communications" status="Operational"
910 bands="GSM 850" brand="First Cellular" cc="us" country="United States of America" operator="First Cellular of Southern Illinois" status="Operational"
940 bands="" cc="us" country="United States of America" operator="Iris Wireless LLC" status="Operational"
950 bands="GSM 850" brand="XIT Wireless" cc="us" country="United States of America" operator="Texas RSA 1 dba XIT Cellular" status="Operational"
960 bands="" brand="Plateau Wireless" cc="us" country="United States of America" status="Operational"
970 bands="Satellite" brand="Globalstar" cc="us" country="United States of America" status="Operational"
980 bands="GSM 850 / UMTS 850 / UMTS 1900" brand="AT&T" cc="us" country="United States of America" operator="AT&T Mobility" status="Not operational"
990 bands="" brand="AT&T" cc="us" country="United States of America" operator="AT&T Mobility" status="Not operational"
000-999
311
000 bands="CDMA2000 850 / CDMA2000 1900" cc="us" country="United States of America" operator="Mid-Tex Cellular" status="Operational"
010 bands="GSM 1900" brand="Chariton Valley" cc="us" country="United States of America" operator="Chariton Valley Communications" status="Operational"
012 bands="CDMA2000 850 / CDMA2000 1900" brand="Verizon" cc="us" country="United States of America" operator="Verizon Wireless" status="Operational"
020 bands="GSM 850" cc="us" country="United States of America" operator="Missouri RSA 5 Partnership" status="Operational"
030 bands="GSM 1900" cc="us" country="United States of America" operator="Indigo Wireless" status="Operational"
040 bands="GSM 850 / GSM 1900" cc="us" country="United States of America" operator="Commnet Wireless" status="Operational"
050 bands="GSM 850 / GSM 1900" cc="us" country="United States of America" operator="Wikes Cellular" status="Operational"
060 bands="GSM 850 / GSM 1900" brand="Farmers Cellular" cc="us" country="United States of America" operator="Farmers Cellular Telephone" status="Operational"
070 bands="GSM 850" brand="Easterbrooke" cc="us" country="United States of America" operator="Easterbrooke Cellular Corporation" status="Operational"
080 bands="GSM 850" brand="Pine Cellular" cc="us" country="United States of America" operator="Pine Telephone Company" status="Operational"
090 bands="GSM 1900" brand="Long Lines Wireless" cc="us" country="United States of America" operator="Long Lines Wireless LLC" status="Operational"
100 bands="GSM 1900" cc="us" country="United States of America" operator="High Plains Wireless" status="Operational"
110 bands="GSM 1900" cc="us" country="United States of America" operator="High Plains Wireless" status="Operational"
120 bands="" cc="us" country="United States of America" operator="Choice Phone" status="Operational"
130 bands="GSM 850" cc="us" country="United States of America" operator="Cell One Amarillo" status="Operational"
140 bands="" brand="Sprocket" cc="us" country="United States of America" operator="MBO Wireless" status="Operational"
150 bands="GSM 850" cc="us" country="United States of America" operator="Wilkes Cellular" status="Operational"
160 bands="" cc="us" country="United States of America" operator="Endless Mountains Wireless" status="Operational"
170 bands="GSM 850" brand="PetroCom" cc="us" country="United States of America" operator="Broadpoint Inc" status="Operational"
180 bands="GSM 850 / UMTS 850 / UMTS 1900" cc="us" country="United States of America" operator="Cingular Wireless" status="Not operational"
190 bands="" cc="us" country="United States of America" operator="Cellular Properties" status=""
210 bands="GSM 1900 / UMTS 2100" cc="us" country="United States of America" operator="Emery Telcom Wireless" status="Operational"
220 cc="us" country="United States of America" operator="U.S. Cellular" status="Operational"
230 bands="" cc="us" country="United States of America" operator="C Spire Wireless" status="Operational"
250 bands="GSM 1900" brand="i CAN_GSM" cc="gu" country="Guam (United States of America)" operator="Wave Runner LLC" status="Not operational"
330 bands="" brand="Bug Tussel Wireless" cc="us" country="United States of America" operator="Bug Tussel Wireless" status="Operational"
480 bands="LTE 700 MHz C Block (4G LTE Network)" brand="Verizon" cc="us" country="United States of America" operator="Verizon Wireless" status="Operational"
481 cc="us" country="United States of America"
490 bands="TDD-LTE (Band 41)" brand="Sprint Corporation" cc="us" country="United States of America" operator="Sprint" status="Operational"
660 bands="CDMA2000 1900 / CDMA 2000 LTE/AWS 1700" brand="metroPCS" cc="us" country="United States of America" operator="metroPCS" status="Operational"
870 bands="" brand="Boost" cc="us" country="United States of America" operator="Boost Mobile" status="Operational"
960 bands="GSM 1900" brand="Lycamobile" cc="us" country="United States of America" operator="Lyca Technology Solutions" status="Operational"
970 bands="LTE/AWS 1700" brand="Big River Broadband" cc="us" country="United States of America" operator="Big River Broadband, LLC" status="Operational"
000-999
313
100 bands="700 MHz Public Safety Broadband" brand="700 MHz Public Safety Broadband" cc="us" country="United States of America" status=""
101 cc="us" country="United States of America"
000-999
316
010 bands="iDEN 800" brand="Nextel" cc="us" country="United States of America" operator="Nextel Communications" status="Not Operational"
011 bands="iDEN 800" cc="us" country="United States of America" operator="Southern Communications Services" status="Operational"
000-999
330
00 bands="PCS 1900" brand="Open Mobile" cc="pr" country="Puerto Rico" operator="PR Wireless" status="Operational"
110 bands="GSM 850 / GSM 1900 / UMTS 850 / LTE 700" brand="Claro Puerto Rico" cc="pr" country="Puerto Rico" operator="América Móvil" status="Operational"
120 bands="LTE 700" brand="Open Mobile" cc="pr" country="Puerto Rico" operator="PR Wireless" status="Operational"
00-99
334
01 bands="iDEN 800" brand="Nextel" cc="mx" country="Mexico" operator="Nextel México" status="Operational"
02 bands="TDMA 850 / GSM 1900 / UMTS 850 / LTE 1700" brand="Telcel" cc="mx" country="Mexico" operator="América Móvil" status="Operational"
03 bands="CDMA2001 1900 / CDMA2001 800 / GSM 1900 / UMTS 850" brand="movistar" cc="mx" country="Mexico" operator="Movistar - Telefónica Moviles (formerly Pegaso Comunicaciones y Sistemas)" status="Operational"
05 bands="GSM 850 / GSM 1900" brand="Iusacell" cc="mx" country="Mexico" operator="Iusacell" status="Operational"
09 bands="UMTS 1700." brand="Nextel" cc="mx" country="Mexico" operator="Nextel México" status="Operational"
00-99
338
020 bands="" brand="LIME" cc="jm" country="Jamaica" operator="LIME (Cable & Wireless)" status="Not Operational"
050 bands="GSM 900 / GSM 1800 / GSM 1900" brand="Digicel" cc="tc" country="Turks and Caicos Islands" operator="Digicel (Turks & Caicos) Limited" status="Operational"
180 bands="GSM 850 / GSM 1900 / WCDMA 850" brand="LIME" cc="jm" country="Jamaica" operator="LIME (Cable & Wireless)" status="Operational"
000-999
340
01 bands="GSM 900" brand="Orange" cc="mq" country="Martinique (France)" operator="Orange Caraïbe Mobiles" status="Operational"
02 bands="GSM 900 / GSM 1800" brand="Outremer" cc="mq" country="Martinique (France)" operator="Outremer Telecom" status="Operational"
03 bands="GSM 900 / GSM 1800" brand="Telcell" cc="gp" country="Guadeloupe (France)" operator="Saint Martin et Saint Barthelemy Telcell Sarl" status="Operational"
08 bands="GSM 900 / GSM 1800" brand="Dauphin" cc="gp" country="Guadeloupe (France)" operator="Dauphin Telecom" status="Operational"
20 bands="GSM 900" brand="Digicel" cc="mq" country="Martinique (France)" operator="DIGICEL Antilles Française Guyane" status="Operational"
00-99
342
600 bands="GSM 1900" brand="LIME" cc="bb" country="Barbados" operator="LIME (formerly known as Cable & Wireless)" status="Operational"
750 bands="GSM 900 / GSM 1800" brand="Digicel" cc="bb" country="Barbados" operator="Digicel (Barbados) Limited" status="Operational"
820 bands="" cc="bb" country="Barbados" operator="Sunbeach Communications" status="Reserved"
000-999
344
030 bands="GSM 1900" brand="APUA" cc="ag" country="Antigua and Barbuda" operator="Antigua Public Utilities Authority" status="Operational"
050 bands="GSM 900 / GSM 1900 / LTE 700" brand="Digicel" cc="ag" country="Antigua and Barbuda" operator="Antigua Wireless Ventures Limited" status="Operational"
920 bands="GSM 850 / GSM 1800/ GSM 1900" brand="LIME" cc="ag" country="Antigua and Barbuda" operator="Cable & Wireless Caribbean Cellular (Antigua) Limited" status="Operational"
000-999
346
050 bands="GSM 900 / GSM 1800" brand="Digicel" cc="ky" country="Cayman Islands (United Kingdom)" operator="Digicel Cayman Ltd." status="Operational"
140 bands="GSM 850 / GSM 1900" brand="LIME" cc="ky" country="Cayman Islands (United Kingdom)" operator="Cable & Wireless (Cayman Islands) Limited" status="Operational"
000-999
348
170 bands="GSM 850 / GSM 1900 / HSPA+ (4G) 850/1900" brand="LIME" cc="vg" country="British Virgin Islands" operator="Cable & Wireless" status="Operational"
570 bands="GSM 900 / GSM 1900" brand="CCT Boatphone" cc="vg" country="British Virgin Islands" operator="Caribbean Cellular Telephone" status="Operational"
770 bands="GSM 1800 / GSM 1900" brand="Digicel" cc="vg" country="British Virgin Islands" operator="Digicel (BVI) Limited" status="Operational"
000-999
350
01 bands="GSM 1900" brand="Digicel Bermuda" cc="bm" country="Bermuda" operator="Telecommunications (Bermuda & West Indies) Ltd" status="Reserved"
02 bands="GSM 1900" brand="Mobility" cc="bm" country="Bermuda" operator="M3 Wireless" status="Operational"
00-99
352
030 bands="GSM 900 / GSM 1800" brand="Digicel" cc="gd" country="Grenada" operator="Digicel Grenada Ltd." status="Operational"
110 bands="GSM 850" brand="Cable & Wireless" cc="gd" country="Grenada" operator="Cable & Wireless Grenada Ltd." status="Operational"
000-999
354
860 bands="GSM 850" brand="Cable & Wireless" cc="ms" country="Montserrat (United Kingdom)" operator="Cable & Wireless" status="Operational"
000-999
356
050 bands="GSM 900 / GSM 1800" brand="Digicel" cc="kn" country="Saint Kitts and Nevis" operator="Wireless Ventures (St Kitts-Nevis) Limited" status="Operational"
070 brand="Chippie" cc="kn" country="Saint Kitts and Nevis" operator="UTS" status="Operational"
110 bands="GSM 850 / GSM 1900" brand="LIME" cc="kn" country="Saint Kitts and Nevis" operator="Cable & Wireless St. Kitts & Nevis Ltd" status="Operational"
000-999
358
050 bands="GSM 900 / GSM 1800 / GSM 1900" brand="Digicel" cc="lc" country="Saint Lucia" status=""
110 bands="GSM 850" cc="lc" country="Saint Lucia" operator="Cable & Wireless" status=""
000-999
360
070 bands="GSM 900 / GSM 1800 / GSM 1900" brand="Digicel" cc="vc" country="Saint Vincent and the Grenadines" operator="Digicel (St. Vincent and the Grenadines) Limited" status="Operational"
100 bands="GSM 850" brand="Cingular Wireless" cc="vc" country="Saint Vincent and the Grenadines" status=""
110 bands="GSM 850" brand="Lime" cc="vc" country="Saint Vincent and the Grenadines" operator="Cable & Wireless (St. Vincent & the Grenadines) Ltd" status="Operational"
000-999
362
51 bands="GSM 900" brand="Telcell" cc="an" country="Former Netherlands Antilles (Kingdom of the Netherlands)" operator="Telcell N.V." status="Operational"
69 bands="GSM 900 / GSM 1800" brand="Digicel" cc="an" country="Former Netherlands Antilles (Kingdom of the Netherlands)" operator="Curaçao Telecom N.V." status="Operational"
91 bands="GSM 900" brand="UTS" cc="an" country="Former Netherlands Antilles (Kingdom of the Netherlands)" operator="Setel N.V." status="Operational"
94 bands="TDMA PCS" brand="Bayòs" cc="an" country="Former Netherlands Antilles (Kingdom of the Netherlands)" operator="Bòbò Frus N.V." status="Operational"
95 bands="CDMA2000 850" brand="MIO" cc="an" country="Former Netherlands Antilles (Kingdom of the Netherlands)" operator="E.O.C.G. Wireless" status="Operational"
00-99
363
01 bands="GSM 900 / GSM 1900 / TDMA 800" brand="SETAR" cc="aw" country="Aruba (Kingdom of the Netherlands)" operator="Servicio di Telecomunicacion di Aruba" status="Operational"
02 bands="GSM 900 / GSM 1800 / HSPA+ 2100" brand="Digicel" cc="aw" country="Aruba (Kingdom of the Netherlands)" operator="Digicel Aruba" status="Operational"
00-99
364
39 bands="GSM 850 / GSM 1900 / UMTS 850" brand="BaTelCo" cc="bs" country="Bahamas" operator="The Bahamas Telecommunications Company Ltd" status="Operational"
00-99
365
010 bands="" cc="ai" country="Anguilla" operator="Weblinks Limited" status="Operational"
840 bands="" cc="ai" country="Anguilla" operator="Cable & Wireless" status="Operational"
000-999
366
020 bands="GSM 900 / GSM 1900" brand="Digicel" cc="dm" country="Dominica" operator="Digicel Group Limited" status="Operational"
110 bands="GSM 850" cc="dm" country="Dominica" operator="Cable & Wireless" status="Operational"
000-999
368
01 bands="GSM 900 / GSM 850" brand="CUBACEL" cc="cu" country="Cuba" operator="Empresa de Telecomunicaciones de Cuba, SA" status="Operational"
00-99
370
01 bands="GSM 900 / GSM 1800 / 1900 / UMTS 900 / LTE 1800" brand="Orange" cc="do" country="Dominican Republic" operator="Orange Dominicana" status="Operational"
02 bands="CDMA2000 1900 / GSM 850 / GSM 1900 / UMTS 850" brand="Claro" cc="do" country="Dominican Republic" operator="Compañía Dominicana de Teléfonos, C por" status="Operational"
03 bands="AMPS / IS-95A 800 / CDMA2000 1900 / LTE 1900" brand="Tricom" cc="do" country="Dominican Republic" operator="Tricom S.A." status="Operational"
04 bands="CDMA2000 1900 / GSM 1900" brand="Viva" cc="do" country="Dominican Republic" operator="Trilogy Dominicana, S.A." status="Operational"
00-99
372
01 bands="GSM 850" brand="Voila" cc="ht" country="Haiti" operator="Communication Cellulaire d'Haiti S.A." status="Operational"
02 bands="GSM 1800" brand="Digicel" cc="ht" country="Haiti" operator="Unigestion Holding S.A." status="Operational"
03 bands="GSM 900" brand="Natcom" cc="ht" country="Haiti" operator="Telecommunication S.A." status="Operational"
00-99
374
12 bands="GSM 850 / GSM 1900" brand="bmobile" cc="tt" country="Trinidad and Tobago" operator="TSTT" status="Operational"
130 bands="GSM 850 / GSM 1900 / UMTS 1900" brand="Digicel" cc="tt" country="Trinidad and Tobago" operator="Digicel (Trinidad & Tobago) Limited" status="Operational"
00-99
376
350 bands="GSM 850" brand="C&W" cc="tc" country="Turks and Caicos Islands" operator="Cable & Wireless West Indies Ltd (Turks & Caicos)" status="Operational"
352 bands="UMTS 850" brand="Islandcom" cc="tc" country="Turks and Caicos Islands" operator="Islandcom Telecommunications" status="Operational"
000-999
400
01 bands="GSM 900 / GSM 1800/ UMTS 2100" brand="Azercell" cc="az" country="Azerbaijan" status="Operational"
02 bands="GSM 900 / GSM 1800/ UMTS 2100" brand="Bakcell" cc="az" country="Azerbaijan" status="Operational"
03 bands="CDMA2000" brand="FONEX" cc="az" country="Azerbaijan" operator="CATEL" status="Operational"
04 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Nar Mobile" cc="az" country="Azerbaijan" operator="Azerfon" status="Operational"
00-99
401
01 bands="GSM 900 / GSM 1800" brand="Beeline" cc="kz" country="Kazakhstan" operator="KaR-Tel LLP" status="Operational"
02 bands="GSM 900 / GSM 1800" brand="Kcell" cc="kz" country="Kazakhstan" operator="GSM Kazakhstan Ltd" status="Operational"
07 bands="CDMA2000 800" brand="Dalacom" cc="kz" country="Kazakhstan" operator="Altel" status="Operational"
08 bands="CDMA2000 800 / CDMA2000 450" brand="Kazakhtelecom" cc="kz" country="Kazakhstan" status="Operational"
77 bands="GSM 900 / GSM 1800" brand="Tele2.kz" cc="kz" country="Kazakhstan" status="Operational"
00-99
402
11 bands="GSM 900" brand="B-Mobile" cc="bt" country="Bhutan" operator="B-Mobile / Bhutan Telecom Ltd." status="Operational"
77 bands="GSM 900 / GSM 1800" brand="TashiCell" cc="bt" country="Bhutan" operator="Tashi InfoComm Limited" status="Operational"
00-99
404
01 bands="GSM 900" brand="Vodafone IN" cc="in" country="India" operator="Haryana" status="Operational"
02 bands="GSM 900" brand="AirTel" cc="in" country="India" operator="Punjab" status="Operational"
03 bands="GSM 900" brand="AirTel" cc="in" country="India" operator="Himachal Pradesh" status="Operational"
04 bands="GSM 1800" brand="IDEA" cc="in" country="India" operator="Delhi & NCR" status="Operational"
05 bands="GSM 900" brand="Vodafone IN" cc="in" country="India" operator="Gujarat" status="Operational"
07 bands="GSM 900" brand="IDEA" cc="in" country="India" operator="Andhra Pradesh" status="Operational"
09 bands="GSM 900" brand="Reliance" cc="in" country="India" operator="Assam" status="Operational"
10 bands="GSM 900" brand="AirTel" cc="in" country="India" operator="Delhi & NCR" status="Operational"
11 bands="GSM 900 / GSM 1800" brand="Vodafone IN" cc="in" country="India" operator="Delhi & NCR" status="Operational"
12 bands="GSM 900" brand="IDEA" cc="in" country="India" operator="Haryana" status="Operational"
13 bands="GSM 1800" brand="Vodafone IN" cc="in" country="India" operator="Andhra Pradesh" status="Operational"
14 bands="GSM 900 / GSM 1800" brand="IDEA" cc="in" country="India" operator="Punjab" status="Operational"
15 bands="GSM 900" brand="Vodafone IN" cc="in" country="India" operator="Uttar Pradesh (East)" status="Operational"
16 bands="GSM 900" brand="Airtel" cc="in" country="India" operator="North East" status="Operational"
17 bands="GSM 900 / GSM 1800" brand="AIRCEL" cc="in" country="India" operator="West Bengal" status="Operational"
18 bands="GSM 900" brand="Reliance" cc="in" country="India" operator="Himachal Pradesh" status="Operational"
19 bands="GSM 900 / GSM 1800" brand="IDEA" cc="in" country="India" operator="Kerala" status="Operational"
20 bands="GSM 900 / UMTS 2100" brand="Vodafone IN" cc="in" country="India" operator="Mumbai" status="Operational"
21 bands="GSM 900" brand="Loop Mobile" cc="in" country="India" operator="Mumbai" status="Operational"
22 bands="GSM 900" brand="IDEA" cc="in" country="India" operator="Maharashtra & Goa" status="Operational"
24 bands="GSM 900" brand="IDEA" cc="in" country="India" operator="Gujarat" status="Operational"
25 bands="GSM 900 / GSM 1800" brand="AIRCEL" cc="in" country="India" operator="Bihar" status="Operational"
27 bands="GSM 900" brand="Vodafone IN" cc="in" country="India" operator="Maharashtra & Goa" status="Operational"
28 bands="GSM 900" brand="AIRCEL" cc="in" country="India" operator="Orissa" status="Operational"
29 bands="GSM 900" brand="AIRCEL" cc="in" country="India" operator="Assam" status="Operational"
30 bands="GSM 900 / GSM 1800" brand="Vodafone IN" cc="in" country="India" operator="Kolkata" status="Operational"
31 bands="GSM 900" brand="AirTel" cc="in" country="India" operator="Kolkata" status="Operational"
34 bands="GSM 900 / UMTS 2100" brand="CellOne" cc="in" country="India" operator="Haryana" status="Operational"
36 bands="GSM 900" brand="Reliance" cc="in" country="India" operator="Bihar & Jharkhand" status="Operational"
37 bands="GSM 900 / UMTS 2100" brand="Aircel" cc="in" country="India" operator="Jammu & Kashmir" status="Operational"
38 bands="GSM 900 / UMTS 2100" brand="CellOne" cc="in" country="India" operator="Assam" status="Operational"
40 brand="AirTel" cc="in" country="India" operator="Chennai" status="Operational"
41 bands="GSM 900" brand="Aircel" cc="in" country="India" operator="Chennai" status="Operational"
42 bands="GSM 900" brand="Aircel" cc="in" country="India" operator="Tamil Nadu" status="Operational"
43 bands="GSM 900" brand="Vodafone IN" cc="in" country="India" operator="Tamil Nadu" status="Operational"
44 bands="GSM 900" brand="IDEA" cc="in" country="India" operator="Karnataka" status="Operational"
45 bands="GSM" brand="Airtel" cc="in" country="India" operator="Karnataka" status="Operational"
46 bands="GSM 900" brand="Vodafone IN" cc="in" country="India" operator="Kerala" status="Operational"
48 bands="GSM 900" brand="Dishnet Wireless" cc="in" country="India" operator="" status="Operational"
49 bands="GSM 900" brand="Airtel" cc="in" country="India" operator="Andhra Pradesh" status="Operational"
50 bands="GSM 900" brand="Reliance" cc="in" country="India" operator="North East" status="Operational"
51 bands="GSM 900 / UMTS 2100" brand="CellOne" cc="in" country="India" operator="Himachal Pradesh" status="Operational"
52 bands="GSM 900" brand="Reliance" cc="in" country="India" operator="Orissa" status="Operational"
53 bands="GSM 900 / UMTS 2100" brand="CellOne" cc="in" country="India" operator="Punjab" status="Operational"
54 bands="GSM 900 / UTMS 2100" brand="CellOne" cc="in" country="India" operator="Uttar Pradesh (West)" status="Operational"
55 bands="GSM 900 / UTMS 2100" brand="CellOne" cc="in" country="India" operator="Uttar Pradesh (East)" status="Operational"
56 bands="GSM 900" brand="IDEA" cc="in" country="India" operator="Uttar Pradesh (West)" status="Operational"
57 bands="GSM 900 / UMTS 2100" brand="CellOne" cc="in" country="India" operator="Gujarat" status="Operational"
58 bands="GSM 900 / UMTS 2100" brand="CellOne" cc="in" country="India" operator="Madhya Pradesh & Chhattisgarh" status="Operational"
59 bands="GSM 900 / UMTS 2100" brand="CellOne" cc="in" country="India" operator="Rajasthan" status="Operational"
60 bands="GSM 900" brand="Vodafone IN" cc="in" country="India" operator="Rajasthan" status="Operational"
62 bands="GSM 900 / UMTS 2100" brand="CellOne" cc="in" country="India" operator="Jammu & Kashmir" status="Operational"
64 bands="GSM 900 / UMTS 2100" brand="CellOne" cc="in" country="India" operator="Chennai" status="Operational"
66 bands="GSM 900 / UMTS 2100" brand="CellOne" cc="in" country="India" operator="Maharashtra & Goa" status="Operational"
67 bands="GSM 900 / UMTS 2100" brand="Reliance" cc="in" country="India" operator="Madhya Pradesh & Chhattisgarh" status="Operational"
68 bands="GSM 900 / UMTS 2100" brand="DOLPHIN" cc="in" country="India" operator="Delhi & NCR" status="Operational"
69 bands="GSM 900 / UMTS 2100" brand="DOLPHIN" cc="in" country="India" operator="Mumbai" status="Operational"
70 brand="AirTel" cc="in" country="India" operator="Rajasthan" status="Operational"
71 bands="GSM 900 / UMTS 2100" brand="CellOne" cc="in" country="India" operator="Karnataka (Bangalore)" status="Operational"
72 bands="GSM 900 / UMTS 2100" brand="CellOne" cc="in" country="India" operator="Kerala" status="Operational"
73 bands="GSM 900 / UMTS 2100" brand="CellOne" cc="in" country="India" operator="Andhra Pradesh" status="Operational"
74 bands="GSM 900 / UMTS 2100" brand="CellOne" cc="in" country="India" operator="West Bengal" status="Operational"
75 bands="GSM 900 / UMTS 2100" brand="CellOne" cc="in" country="India" operator="Bihar" status="Operational"
76 bands="GSM 900 / UMTS 2100" brand="CellOne" cc="in" country="India" operator="Orissa" status="Operational"
77 bands="GSM 900 / UMTS 2100" brand="CellOne" cc="in" country="India" operator="North East" status="Operational"
78 bands="GSM 900 / UMTS 2100" brand="Idea Cellular Ltd" cc="in" country="India" operator="Madhya Pradesh & Chattishgarh" status="Operational"
79 bands="GSM 900 / UMTS 2100" brand="CellOne" cc="in" country="India" operator="Andaman Nicobar" status="Operational"
80 bands="GSM900 / UMTS 2100" brand="CellOne" cc="in" country="India" operator="Tamil Nadu" status="Operational"
81 bands="GSM 900 / UMTS 2100" brand="CellOne" cc="in" country="India" operator="Kolkata" status="Operational"
82 bands="" brand="Idea" cc="in" country="India" operator="Himachal Pradesh" status="Operational"
83 bands="GSM 1800" brand="Reliance" cc="in" country="India" operator="Kolkata" status="Operational"
84 bands="GSM 1800" brand="Vodafone IN" cc="in" country="India" operator="Chennai" status="Operational"
85 bands="GSM 1800" brand="Reliance" cc="in" country="India" operator="West Bengal" status="Operational"
86 bands="" brand="Vodafone IN" cc="in" country="India" operator="Karnataka" status="Operational"
87 bands="" brand="IDEA" cc="in" country="India" operator="Rajasthan" status="Operational"
88 bands="" brand="Vodafone IN" cc="in" country="India" operator="Vodafone Punjab" status="Operational"
89 bands="" brand="Idea" cc="in" country="India" operator="Uttar Pradesh (East)" status="Operational"
90 bands="GSM 1800" brand="AirTel" cc="in" country="India" operator="Maharashtra" status="Operational"
91 bands="GSM 900" brand="AIRCEL" cc="in" country="India" operator="Kolkata" status="Operational"
92 bands="GSM 1800 / UMTS 2100" brand="AirTel" cc="in" country="India" operator="Mumbai" status="Operational"
93 bands="GSM 1800" brand="AirTel" cc="in" country="India" operator="Madhya Pradesh" status="Operational"
94 brand="AirTel" cc="in" country="India" operator="Tamil Nadu" status="Operational"
95 bands="GSM 1800" brand="AirTel" cc="in" country="India" operator="Kerala" status="Operational"
96 bands="GSM 1800" brand="AirTel" cc="in" country="India" operator="Haryana" status="Operational"
97 brand="AirTel" cc="in" country="India" operator="Uttar Pradesh (West)" status="Operational"
98 brand="AirTel" cc="in" country="India" operator="Gujarat" status="Operational"
00-99
405