forked from ncek-XD/a
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bbnew.txt
10000 lines (10000 loc) · 762 KB
/
bbnew.txt
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
BlackBerry5876/4.1.0.880 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/663
BlackBerry7230/4.5.0.507 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/741
BlackBerry4152/3.2.0.915 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/233
BlackBerry7903/3.3.0.986 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/174
BlackBerry7364/5.0.0.655 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/936
BlackBerry7207/1.5.0.915 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/723
BlackBerry8214/4.1.0.663 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/973
BlackBerry4520/3.4.0.669 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/262
BlackBerry7597/4.6.0.589 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/807
BlackBerry7480/4.2.0.919 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/221
BlackBerry9005/3.3.0.115 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/741
BlackBerry5146/3.4.0.220 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/586
BlackBerry9462/5.3.0.468 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/235
BlackBerry4563/4.6.0.321 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/797
BlackBerry8488/2.2.0.307 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/766
BlackBerry8769/3.6.0.352 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/418
BlackBerry7989/2.1.0.394 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/951
BlackBerry9933/2.5.0.145 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/860
BlackBerry6158/3.0.0.482 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/293
BlackBerry5631/1.0.0.797 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179
BlackBerry5194/3.5.0.560 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/996
BlackBerry8944/3.3.0.911 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/710
BlackBerry9458/5.5.0.846 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/689
BlackBerry5491/2.6.0.521 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/619
BlackBerry6668/4.4.0.788 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/912
BlackBerry9158/2.2.0.967 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/443
BlackBerry6684/1.6.0.176 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/686
BlackBerry7211/4.4.0.178 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/460
BlackBerry9168/2.0.0.204 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/705
BlackBerry6423/2.1.0.798 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/440
BlackBerry7193/4.2.0.182 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/221
BlackBerry7830/3.5.0.984 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/776
BlackBerry6921/3.5.0.798 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/868
BlackBerry6885/3.2.0.480 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/157
BlackBerry5745/2.0.0.654 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/734
BlackBerry5750/3.6.0.119 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/335
BlackBerry4371/2.6.0.799 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/661
BlackBerry4524/4.0.0.279 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/975
BlackBerry4286/1.5.0.346 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/585
BlackBerry9826/2.1.0.752 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/158
BlackBerry6918/4.5.0.511 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/427
BlackBerry4224/1.4.0.963 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/102
BlackBerry7923/4.0.0.212 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/487
BlackBerry7125/1.6.0.585 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/865
BlackBerry7437/4.1.0.176 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/358
BlackBerry8301/1.6.0.248 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/684
BlackBerry7399/2.1.0.756 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/943
BlackBerry6706/3.4.0.890 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/763
BlackBerry9681/1.4.0.848 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/774
BlackBerry5062/4.0.0.773 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/677
BlackBerry8109/5.2.0.225 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/243
BlackBerry4620/3.1.0.511 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/325
BlackBerry4885/4.2.0.881 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/186
BlackBerry7893/3.2.0.737 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/885
BlackBerry6808/4.0.0.938 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/432
BlackBerry6285/3.3.0.385 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/300
BlackBerry9838/2.1.0.455 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/752
BlackBerry8046/1.4.0.825 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/528
BlackBerry7974/4.6.0.264 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/801
BlackBerry6849/2.3.0.256 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/317
BlackBerry6770/4.6.0.939 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/844
BlackBerry7877/3.1.0.345 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/807
BlackBerry9279/3.2.0.576 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/679
BlackBerry8862/2.3.0.503 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/478
BlackBerry8795/3.4.0.844 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/678
BlackBerry5094/4.6.0.682 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/970
BlackBerry9121/1.4.0.642 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/815
BlackBerry9861/4.0.0.531 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/211
BlackBerry9973/1.5.0.871 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/563
BlackBerry6176/2.3.0.617 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/130
BlackBerry7798/5.0.0.703 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/324
BlackBerry9521/5.6.0.333 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/304
BlackBerry9057/3.5.0.442 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/140
BlackBerry5316/1.5.0.791 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/239
BlackBerry7690/5.3.0.968 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/169
BlackBerry7680/4.6.0.638 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/212
BlackBerry8453/3.6.0.537 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/890
BlackBerry8495/3.0.0.669 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/895
BlackBerry7724/1.6.0.298 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/252
BlackBerry7294/3.6.0.512 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/343
BlackBerry8843/3.1.0.459 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/611
BlackBerry6209/5.5.0.976 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/121
BlackBerry8373/4.6.0.231 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/366
BlackBerry5249/4.5.0.530 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/466
BlackBerry6502/5.1.0.632 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/475
BlackBerry5785/3.3.0.918 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/300
BlackBerry5836/1.6.0.839 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/172
BlackBerry5897/2.5.0.160 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/159
BlackBerry4478/1.5.0.773 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/867
BlackBerry8926/3.6.0.393 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/627
BlackBerry6875/3.4.0.216 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/591
BlackBerry5117/1.1.0.648 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/152
BlackBerry6752/5.1.0.324 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/538
BlackBerry6943/5.1.0.858 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/412
BlackBerry8327/5.6.0.310 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/310
BlackBerry8320/2.6.0.753 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/282
BlackBerry7710/4.4.0.200 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/878
BlackBerry5186/4.5.0.226 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/356
BlackBerry9003/4.5.0.110 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/996
BlackBerry8709/3.3.0.348 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/446
BlackBerry6002/5.2.0.524 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/131
BlackBerry7579/4.0.0.101 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/683
BlackBerry9945/5.3.0.364 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/306
BlackBerry7042/4.1.0.618 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/955
BlackBerry4932/4.5.0.323 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/102
BlackBerry6048/2.6.0.198 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/114
BlackBerry6210/4.2.0.723 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/790
BlackBerry6042/3.4.0.156 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/270
BlackBerry7723/3.3.0.251 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/945
BlackBerry6688/1.6.0.737 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/730
BlackBerry7613/3.2.0.701 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/350
BlackBerry8367/4.6.0.306 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/411
BlackBerry5492/3.2.0.986 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/510
BlackBerry8077/4.3.0.229 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/140
BlackBerry8295/4.6.0.484 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/828
BlackBerry5536/2.1.0.407 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/714
BlackBerry8535/5.2.0.443 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/246
BlackBerry7192/4.5.0.875 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/408
BlackBerry7268/3.6.0.236 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/467
BlackBerry6067/1.1.0.663 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/956
BlackBerry7519/4.2.0.524 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/409
BlackBerry7059/1.6.0.617 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/200
BlackBerry9093/4.0.0.470 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/717
BlackBerry5859/5.2.0.883 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/291
BlackBerry4958/3.0.0.405 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/970
BlackBerry7696/5.6.0.750 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/197
BlackBerry8404/4.2.0.606 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/101
BlackBerry7326/5.0.0.558 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/510
BlackBerry8421/4.5.0.142 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/871
BlackBerry9457/3.2.0.364 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/407
BlackBerry9570/3.0.0.333 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/278
BlackBerry5532/4.2.0.800 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/261
BlackBerry9741/4.5.0.233 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/113
BlackBerry6050/3.5.0.645 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/747
BlackBerry5280/5.3.0.887 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/635
BlackBerry7196/5.3.0.163 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/242
BlackBerry8081/4.0.0.596 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/675
BlackBerry5807/2.4.0.307 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/711
BlackBerry6081/4.6.0.667 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/981
BlackBerry7304/4.3.0.301 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/438
BlackBerry4515/1.0.0.362 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/578
BlackBerry7946/1.4.0.513 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/271
BlackBerry8082/5.4.0.333 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/425
BlackBerry9036/1.3.0.193 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/263
BlackBerry8452/5.6.0.145 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/487
BlackBerry7246/3.3.0.788 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/440
BlackBerry7524/4.2.0.994 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/795
BlackBerry9270/4.6.0.874 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/279
BlackBerry9593/3.3.0.394 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/135
BlackBerry6604/5.5.0.323 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/407
BlackBerry9871/2.4.0.869 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/722
BlackBerry5297/3.5.0.857 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/356
BlackBerry5836/5.6.0.188 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/852
BlackBerry9454/1.2.0.861 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/388
BlackBerry7130/1.6.0.550 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/546
BlackBerry5992/2.0.0.426 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/622
BlackBerry9581/2.1.0.156 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/473
BlackBerry6017/3.5.0.478 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/617
BlackBerry9889/3.2.0.357 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/809
BlackBerry9091/2.1.0.512 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/450
BlackBerry6475/1.2.0.892 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/314
BlackBerry6537/1.3.0.795 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/375
BlackBerry7124/1.6.0.970 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/879
BlackBerry8667/3.2.0.922 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/505
BlackBerry5432/3.4.0.596 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/217
BlackBerry5043/2.3.0.786 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/562
BlackBerry8617/5.4.0.150 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/635
BlackBerry8506/3.1.0.987 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/499
BlackBerry7858/1.2.0.995 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/118
BlackBerry8552/4.3.0.929 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/361
BlackBerry8274/5.1.0.298 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/163
BlackBerry8186/2.1.0.419 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/190
BlackBerry4590/2.3.0.796 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/559
BlackBerry5264/3.0.0.414 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/466
BlackBerry6067/2.0.0.286 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/335
BlackBerry5394/4.4.0.402 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/377
BlackBerry9338/2.5.0.979 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/791
BlackBerry8447/2.5.0.770 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/220
BlackBerry4461/1.4.0.702 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/620
BlackBerry9400/1.6.0.386 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/813
BlackBerry4899/2.5.0.895 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/765
BlackBerry8910/1.2.0.214 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/569
BlackBerry8846/1.2.0.653 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/819
BlackBerry9792/3.6.0.272 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/503
BlackBerry5492/5.2.0.178 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/905
BlackBerry7483/4.6.0.421 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/323
BlackBerry9139/2.3.0.567 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/204
BlackBerry9998/2.4.0.267 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/956
BlackBerry5642/5.6.0.932 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/726
BlackBerry6211/5.3.0.371 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/778
BlackBerry5666/1.6.0.960 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/621
BlackBerry4077/4.0.0.299 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/220
BlackBerry4377/2.5.0.435 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/606
BlackBerry9063/4.0.0.616 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/600
BlackBerry6958/3.5.0.104 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/628
BlackBerry4517/2.0.0.111 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/733
BlackBerry8658/1.5.0.411 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/195
BlackBerry4379/4.4.0.661 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/834
BlackBerry9299/3.0.0.516 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/144
BlackBerry4861/2.1.0.575 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/128
BlackBerry5195/5.2.0.257 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/256
BlackBerry4687/1.5.0.342 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/895
BlackBerry5789/4.2.0.783 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/140
BlackBerry7429/1.3.0.878 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/562
BlackBerry6954/3.2.0.116 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/531
BlackBerry6610/4.4.0.713 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/433
BlackBerry5144/1.5.0.343 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/559
BlackBerry8542/2.5.0.170 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/977
BlackBerry6293/4.4.0.939 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/287
BlackBerry6688/2.0.0.274 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/522
BlackBerry8268/3.4.0.308 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/570
BlackBerry6088/1.0.0.240 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/972
BlackBerry9156/5.6.0.730 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/284
BlackBerry8504/1.1.0.285 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/860
BlackBerry9553/4.0.0.154 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/759
BlackBerry4523/4.5.0.828 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/458
BlackBerry6252/1.5.0.832 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/332
BlackBerry8389/4.3.0.500 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/278
BlackBerry4681/2.2.0.841 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/424
BlackBerry8880/2.1.0.518 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/925
BlackBerry9060/2.5.0.251 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/910
BlackBerry8325/5.5.0.491 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/899
BlackBerry9765/4.6.0.492 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/985
BlackBerry9852/5.3.0.181 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/307
BlackBerry9977/2.2.0.600 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/162
BlackBerry5475/1.5.0.580 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/336
BlackBerry6167/2.2.0.572 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/397
BlackBerry5983/3.5.0.201 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/905
BlackBerry9838/5.2.0.200 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/924
BlackBerry7853/1.6.0.773 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/758
BlackBerry9707/2.1.0.123 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/107
BlackBerry6425/1.5.0.488 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/585
BlackBerry4105/2.5.0.665 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/153
BlackBerry6437/4.5.0.741 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/373
BlackBerry5641/1.3.0.454 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/780
BlackBerry7625/3.2.0.837 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/947
BlackBerry8901/3.4.0.192 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/241
BlackBerry4158/3.5.0.235 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/591
BlackBerry7591/2.0.0.708 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/685
BlackBerry8593/3.3.0.989 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/749
BlackBerry5925/4.2.0.613 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/915
BlackBerry6686/5.4.0.112 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/109
BlackBerry4469/5.6.0.911 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/607
BlackBerry4653/4.2.0.635 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/741
BlackBerry4030/3.3.0.123 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/262
BlackBerry4322/1.3.0.541 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/366
BlackBerry6159/1.6.0.357 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/244
BlackBerry6011/4.2.0.682 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/775
BlackBerry5770/5.2.0.121 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/718
BlackBerry9101/3.3.0.386 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/854
BlackBerry9751/3.3.0.466 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/785
BlackBerry5409/3.6.0.102 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/616
BlackBerry9500/2.1.0.815 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/636
BlackBerry7390/5.3.0.538 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/998
BlackBerry4826/1.5.0.400 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/298
BlackBerry4901/4.5.0.668 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/862
BlackBerry6379/1.1.0.397 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/861
BlackBerry9083/5.2.0.862 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/516
BlackBerry9779/5.2.0.320 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/779
BlackBerry8095/3.0.0.450 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/716
BlackBerry7418/4.1.0.912 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/836
BlackBerry9769/1.5.0.779 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/343
BlackBerry5753/5.1.0.841 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/461
BlackBerry7708/4.6.0.432 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/252
BlackBerry6104/5.1.0.850 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/871
BlackBerry4104/3.5.0.191 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/821
BlackBerry5435/2.0.0.203 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/645
BlackBerry7881/3.5.0.928 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/392
BlackBerry5667/1.4.0.940 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/536
BlackBerry7295/5.4.0.925 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/892
BlackBerry4641/3.6.0.240 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/376
BlackBerry4430/3.3.0.506 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/938
BlackBerry8615/1.4.0.415 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/621
BlackBerry8803/4.6.0.550 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/920
BlackBerry9450/3.2.0.933 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/353
BlackBerry5041/5.2.0.418 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/213
BlackBerry7983/2.4.0.904 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/223
BlackBerry8562/1.3.0.230 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/363
BlackBerry6964/4.1.0.679 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/544
BlackBerry9719/4.6.0.113 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/819
BlackBerry6612/5.3.0.509 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/949
BlackBerry6553/5.1.0.792 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/604
BlackBerry9284/1.6.0.792 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/255
BlackBerry6408/4.4.0.871 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/331
BlackBerry4144/3.3.0.464 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/990
BlackBerry5678/3.1.0.189 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/320
BlackBerry7016/1.2.0.877 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/309
BlackBerry5477/5.0.0.167 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/141
BlackBerry8535/2.2.0.693 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/737
BlackBerry4060/5.5.0.559 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/333
BlackBerry5153/3.3.0.990 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/995
BlackBerry5229/4.6.0.806 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/232
BlackBerry6380/2.2.0.460 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/225
BlackBerry9911/3.3.0.331 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/244
BlackBerry6266/3.3.0.599 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/390
BlackBerry7507/5.4.0.981 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/776
BlackBerry4684/1.0.0.843 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/185
BlackBerry4211/2.5.0.530 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/865
BlackBerry5364/4.1.0.843 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/505
BlackBerry5610/2.2.0.711 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/652
BlackBerry9884/5.4.0.877 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/623
BlackBerry4061/1.6.0.699 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/355
BlackBerry7494/1.6.0.446 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/688
BlackBerry4692/1.0.0.885 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/678
BlackBerry4411/1.3.0.323 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/592
BlackBerry7800/2.2.0.556 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/914
BlackBerry7512/3.5.0.816 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/658
BlackBerry6640/2.1.0.915 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/159
BlackBerry6261/4.5.0.111 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/491
BlackBerry5461/4.2.0.663 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/633
BlackBerry4141/5.6.0.558 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/777
BlackBerry5727/3.2.0.273 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/729
BlackBerry6018/2.5.0.817 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/754
BlackBerry9082/3.4.0.341 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/160
BlackBerry9319/1.1.0.682 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/440
BlackBerry7587/5.3.0.508 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/824
BlackBerry6049/3.6.0.376 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/286
BlackBerry6717/2.1.0.915 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/491
BlackBerry6669/5.5.0.546 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/900
BlackBerry9735/1.5.0.193 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/158
BlackBerry6599/2.4.0.629 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/553
BlackBerry4173/4.1.0.847 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/675
BlackBerry5902/2.6.0.604 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/320
BlackBerry4613/4.3.0.219 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/655
BlackBerry9452/1.5.0.377 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/896
BlackBerry9346/4.1.0.168 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/990
BlackBerry7469/5.2.0.583 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/191
BlackBerry7597/4.0.0.341 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/776
BlackBerry6441/1.6.0.902 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/704
BlackBerry9465/4.5.0.507 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/390
BlackBerry8643/2.6.0.493 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/750
BlackBerry5744/2.2.0.953 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/276
BlackBerry4792/3.0.0.786 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/459
BlackBerry8144/4.1.0.865 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/359
BlackBerry4333/3.4.0.132 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/794
BlackBerry6050/1.5.0.109 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/314
BlackBerry5623/1.6.0.224 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/475
BlackBerry9983/1.2.0.435 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/354
BlackBerry9886/3.6.0.675 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/406
BlackBerry5755/4.0.0.817 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/691
BlackBerry6977/4.5.0.115 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/663
BlackBerry4775/2.5.0.820 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/302
BlackBerry8303/1.6.0.219 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/515
BlackBerry4417/5.1.0.983 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/819
BlackBerry9010/1.1.0.472 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/266
BlackBerry5788/4.5.0.148 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/916
BlackBerry6814/1.0.0.519 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/394
BlackBerry7730/4.5.0.242 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/607
BlackBerry6925/5.4.0.174 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/463
BlackBerry4293/1.4.0.811 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/703
BlackBerry8459/5.4.0.719 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/512
BlackBerry9297/2.6.0.388 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/114
BlackBerry8730/3.1.0.655 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/594
BlackBerry6017/5.2.0.840 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/355
BlackBerry6799/1.4.0.381 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/470
BlackBerry6324/4.0.0.135 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/213
BlackBerry9772/3.1.0.595 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/774
BlackBerry5581/1.0.0.403 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/376
BlackBerry6728/1.5.0.945 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/511
BlackBerry5038/3.5.0.447 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/683
BlackBerry9785/4.3.0.847 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/939
BlackBerry7390/4.2.0.843 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/743
BlackBerry8685/5.0.0.528 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/503
BlackBerry5225/1.2.0.547 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/656
BlackBerry8831/2.4.0.764 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/198
BlackBerry9505/1.2.0.972 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/977
BlackBerry4010/3.6.0.877 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/560
BlackBerry6323/2.1.0.762 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/415
BlackBerry9697/1.6.0.106 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/657
BlackBerry7226/5.3.0.810 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/239
BlackBerry7538/5.5.0.875 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/514
BlackBerry7899/5.2.0.796 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/353
BlackBerry4754/4.5.0.121 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/543
BlackBerry6929/2.3.0.125 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/138
BlackBerry4560/4.4.0.365 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/360
BlackBerry9077/4.2.0.304 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/317
BlackBerry4913/5.0.0.521 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/423
BlackBerry6668/5.0.0.644 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/479
BlackBerry9778/1.0.0.197 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/879
BlackBerry9167/2.6.0.341 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/253
BlackBerry6314/4.0.0.897 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/719
BlackBerry9477/3.0.0.224 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/356
BlackBerry6360/4.6.0.370 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/705
BlackBerry5388/2.1.0.971 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/853
BlackBerry4259/5.5.0.246 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/461
BlackBerry7301/5.0.0.978 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/883
BlackBerry4202/2.1.0.765 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/450
BlackBerry5828/4.3.0.401 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/988
BlackBerry7660/5.1.0.192 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/297
BlackBerry8860/2.4.0.571 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/431
BlackBerry5788/5.1.0.531 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/186
BlackBerry6043/5.4.0.339 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/412
BlackBerry6966/3.6.0.171 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/321
BlackBerry4791/3.3.0.128 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/500
BlackBerry7628/1.5.0.870 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/718
BlackBerry8005/1.2.0.775 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/114
BlackBerry8161/5.1.0.142 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/289
BlackBerry4820/1.2.0.517 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/325
BlackBerry9414/5.3.0.767 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/281
BlackBerry6135/2.4.0.261 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/109
BlackBerry8991/5.1.0.310 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/379
BlackBerry4938/5.2.0.777 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/305
BlackBerry6501/4.0.0.833 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/843
BlackBerry9325/2.1.0.255 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/416
BlackBerry5696/3.5.0.501 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/142
BlackBerry9223/3.3.0.323 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/191
BlackBerry9373/3.1.0.145 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/111
BlackBerry8760/4.1.0.113 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/624
BlackBerry4778/2.6.0.930 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/846
BlackBerry6018/5.0.0.926 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/123
BlackBerry9891/3.5.0.608 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/806
BlackBerry5417/4.6.0.276 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/496
BlackBerry8104/2.4.0.759 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/851
BlackBerry9464/4.5.0.875 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/181
BlackBerry6765/5.5.0.751 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/170
BlackBerry9701/5.3.0.832 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/696
BlackBerry7842/1.1.0.957 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/409
BlackBerry6045/4.5.0.284 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/606
BlackBerry5004/3.3.0.958 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/384
BlackBerry8142/2.3.0.416 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/405
BlackBerry4779/4.4.0.616 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/664
BlackBerry7455/4.5.0.865 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/287
BlackBerry4117/1.1.0.241 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/211
BlackBerry7320/2.2.0.814 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/201
BlackBerry9174/2.1.0.356 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/320
BlackBerry7394/3.4.0.173 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/572
BlackBerry7356/4.4.0.310 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/680
BlackBerry4128/3.4.0.597 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/902
BlackBerry7845/5.5.0.637 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/316
BlackBerry7873/5.5.0.875 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/870
BlackBerry5276/1.4.0.662 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/943
BlackBerry5481/2.6.0.836 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/979
BlackBerry5384/5.3.0.776 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/224
BlackBerry5206/4.1.0.742 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/791
BlackBerry5663/4.2.0.705 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/478
BlackBerry7753/4.3.0.470 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/750
BlackBerry9457/4.1.0.188 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/445
BlackBerry8417/3.6.0.648 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/599
BlackBerry5317/3.4.0.156 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/504
BlackBerry9436/2.4.0.235 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/775
BlackBerry6538/5.2.0.262 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/466
BlackBerry4060/3.0.0.476 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/499
BlackBerry4098/5.5.0.413 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/161
BlackBerry6981/3.6.0.824 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/762
BlackBerry9112/4.5.0.552 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/460
BlackBerry9858/1.4.0.556 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/264
BlackBerry4598/4.3.0.355 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/939
BlackBerry5095/4.3.0.406 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/619
BlackBerry4356/2.1.0.621 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/720
BlackBerry7979/2.1.0.103 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/485
BlackBerry9109/5.4.0.680 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/677
BlackBerry5041/4.2.0.184 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/677
BlackBerry9098/5.6.0.690 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/545
BlackBerry4658/5.0.0.725 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/823
BlackBerry8808/2.2.0.531 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/445
BlackBerry8253/5.3.0.439 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/532
BlackBerry8382/5.1.0.443 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/139
BlackBerry4964/2.2.0.833 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/100
BlackBerry6516/3.0.0.291 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/957
BlackBerry4744/3.5.0.550 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/990
BlackBerry6295/3.6.0.231 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/501
BlackBerry6995/1.2.0.630 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/598
BlackBerry8133/5.4.0.422 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/166
BlackBerry8897/3.3.0.573 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/867
BlackBerry5834/2.4.0.514 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/409
BlackBerry7436/4.1.0.404 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/963
BlackBerry9635/3.3.0.276 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/324
BlackBerry6427/2.3.0.843 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/976
BlackBerry9681/2.2.0.745 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/876
BlackBerry4206/3.5.0.918 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/983
BlackBerry4698/2.5.0.234 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/500
BlackBerry5204/3.5.0.641 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/843
BlackBerry9450/1.6.0.271 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/282
BlackBerry6355/2.5.0.883 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/646
BlackBerry8083/5.4.0.554 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/461
BlackBerry6528/4.4.0.916 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/662
BlackBerry6519/4.5.0.158 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/798
BlackBerry8561/2.4.0.760 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/896
BlackBerry6181/2.2.0.624 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/192
BlackBerry7252/3.4.0.794 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/444
BlackBerry5911/5.5.0.565 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/741
BlackBerry4838/4.2.0.760 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/250
BlackBerry6818/1.6.0.804 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/353
BlackBerry4604/4.1.0.371 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/373
BlackBerry7723/2.6.0.333 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/164
BlackBerry8242/3.5.0.955 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/100
BlackBerry7625/3.1.0.926 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/709
BlackBerry6624/3.1.0.775 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/575
BlackBerry9364/3.4.0.538 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/257
BlackBerry4285/4.5.0.534 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/895
BlackBerry8393/2.2.0.105 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/718
BlackBerry4425/2.6.0.325 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/276
BlackBerry4973/2.6.0.662 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/412
BlackBerry8534/1.3.0.544 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/562
BlackBerry7852/3.3.0.439 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/928
BlackBerry7256/2.0.0.327 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/128
BlackBerry5442/3.4.0.293 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/960
BlackBerry7616/5.0.0.697 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/548
BlackBerry9463/5.5.0.855 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/510
BlackBerry4587/3.4.0.725 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/882
BlackBerry6625/3.6.0.202 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/249
BlackBerry6491/1.3.0.153 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/375
BlackBerry9475/5.1.0.178 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/781
BlackBerry6733/5.4.0.388 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/548
BlackBerry9933/5.6.0.792 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/839
BlackBerry6147/2.0.0.106 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/654
BlackBerry5416/1.1.0.459 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/383
BlackBerry9327/1.5.0.994 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/831
BlackBerry5436/2.0.0.114 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/929
BlackBerry7232/4.1.0.608 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/223
BlackBerry9527/1.0.0.103 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/279
BlackBerry4035/5.1.0.184 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/891
BlackBerry9010/3.6.0.774 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/445
BlackBerry9870/1.2.0.724 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/771
BlackBerry7497/1.3.0.950 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/196
BlackBerry8837/1.0.0.768 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/417
BlackBerry5880/2.3.0.147 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/558
BlackBerry6322/1.2.0.278 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/398
BlackBerry6859/2.3.0.403 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/141
BlackBerry5395/4.4.0.455 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/494
BlackBerry8182/1.5.0.625 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/812
BlackBerry7605/1.6.0.175 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/134
BlackBerry7609/3.6.0.761 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/903
BlackBerry4184/5.1.0.522 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/785
BlackBerry8518/4.0.0.447 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/853
BlackBerry8769/1.1.0.185 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/382
BlackBerry9442/1.3.0.210 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/705
BlackBerry9232/5.0.0.870 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/423
BlackBerry5435/2.1.0.281 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/428
BlackBerry6731/5.0.0.424 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/668
BlackBerry5086/3.4.0.735 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/849
BlackBerry5234/2.2.0.705 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/919
BlackBerry4840/5.5.0.239 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/265
BlackBerry9296/3.2.0.950 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/691
BlackBerry6897/3.6.0.580 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/401
BlackBerry9830/1.3.0.645 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/831
BlackBerry4271/4.6.0.318 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/629
BlackBerry7604/2.4.0.212 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/236
BlackBerry4458/5.6.0.186 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/743
BlackBerry4407/4.0.0.909 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/689
BlackBerry9637/3.6.0.298 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/241
BlackBerry6604/2.3.0.873 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/135
BlackBerry6857/4.2.0.666 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/404
BlackBerry7510/3.3.0.893 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/301
BlackBerry4824/4.0.0.146 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/396
BlackBerry9273/4.4.0.353 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/441
BlackBerry6106/5.4.0.630 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/578
BlackBerry9112/3.1.0.724 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/552
BlackBerry4650/2.0.0.525 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/209
BlackBerry9728/5.0.0.915 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/437
BlackBerry4587/3.2.0.668 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/730
BlackBerry8218/2.3.0.763 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/635
BlackBerry6113/1.6.0.255 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/193
BlackBerry9766/2.3.0.534 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/959
BlackBerry6472/4.2.0.529 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/862
BlackBerry4724/3.2.0.719 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/997
BlackBerry6216/5.1.0.738 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/995
BlackBerry9754/4.0.0.716 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/646
BlackBerry5900/1.6.0.620 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/952
BlackBerry7238/3.2.0.763 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/635
BlackBerry7623/5.2.0.820 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/482
BlackBerry4355/3.2.0.567 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/347
BlackBerry8660/4.1.0.762 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/737
BlackBerry4151/3.2.0.481 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/474
BlackBerry4292/3.5.0.647 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/572
BlackBerry9784/4.6.0.375 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/860
BlackBerry5262/3.3.0.274 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/422
BlackBerry6532/1.0.0.600 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/485
BlackBerry7916/3.5.0.517 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/809
BlackBerry6162/1.4.0.573 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/385
BlackBerry6802/2.6.0.673 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/311
BlackBerry4938/1.3.0.213 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/890
BlackBerry7910/2.6.0.967 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/567
BlackBerry8623/2.0.0.818 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/199
BlackBerry7862/3.5.0.925 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/923
BlackBerry8749/2.1.0.607 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/475
BlackBerry5650/5.6.0.217 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/672
BlackBerry9299/2.4.0.169 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/752
BlackBerry9920/4.3.0.423 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/778
BlackBerry9307/4.0.0.552 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/187
BlackBerry9971/4.6.0.326 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/287
BlackBerry4089/5.4.0.879 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/547
BlackBerry7481/3.0.0.444 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/541
BlackBerry7473/5.5.0.580 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/471
BlackBerry9149/1.3.0.298 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/415
BlackBerry5304/2.0.0.227 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/415
BlackBerry5597/2.3.0.973 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/970
BlackBerry6768/1.2.0.820 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/617
BlackBerry7004/5.6.0.738 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/786
BlackBerry6776/2.5.0.448 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/333
BlackBerry8497/4.4.0.174 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/738
BlackBerry9004/4.6.0.840 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/482
BlackBerry7127/2.4.0.169 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/312
BlackBerry4046/2.5.0.822 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/307
BlackBerry7588/1.5.0.205 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/125
BlackBerry5013/2.0.0.233 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/644
BlackBerry8240/3.0.0.182 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/376
BlackBerry6444/1.6.0.242 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/499
BlackBerry9111/2.6.0.829 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/347
BlackBerry6394/1.3.0.364 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/389
BlackBerry9250/3.1.0.727 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/291
BlackBerry5768/5.2.0.499 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/462
BlackBerry4943/2.4.0.211 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/230
BlackBerry8403/1.5.0.429 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/695
BlackBerry5400/3.1.0.868 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/912
BlackBerry4508/5.0.0.508 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/498
BlackBerry6521/3.0.0.780 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/481
BlackBerry7731/3.1.0.637 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/326
BlackBerry8293/3.5.0.854 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/224
BlackBerry4216/2.6.0.705 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/815
BlackBerry6502/1.6.0.316 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/695
BlackBerry5649/3.2.0.264 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/403
BlackBerry4486/3.1.0.719 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/926
BlackBerry4762/5.1.0.257 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/749
BlackBerry8928/5.4.0.886 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/288
BlackBerry6248/4.5.0.344 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/438
BlackBerry6300/4.4.0.809 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/443
BlackBerry6060/4.4.0.443 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/485
BlackBerry6684/3.6.0.930 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/150
BlackBerry5656/1.0.0.734 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/518
BlackBerry7731/2.5.0.197 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/922
BlackBerry9192/3.1.0.279 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/403
BlackBerry8170/1.1.0.830 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/215
BlackBerry6161/4.4.0.938 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/800
BlackBerry7973/5.3.0.254 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/841
BlackBerry6188/1.6.0.655 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/369
BlackBerry4425/3.0.0.233 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/228
BlackBerry9681/5.0.0.513 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/280
BlackBerry5903/3.5.0.211 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/613
BlackBerry7346/5.4.0.323 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/364
BlackBerry6590/1.2.0.675 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/657
BlackBerry6235/3.5.0.620 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/191
BlackBerry7914/5.6.0.472 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/352
BlackBerry4011/5.3.0.562 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/716
BlackBerry6374/3.6.0.724 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/792
BlackBerry7887/3.5.0.927 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/513
BlackBerry8674/5.0.0.497 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/182
BlackBerry5015/3.5.0.705 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/962
BlackBerry4065/4.6.0.800 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/180
BlackBerry5908/1.2.0.928 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/603
BlackBerry8533/3.2.0.698 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/717
BlackBerry4566/1.1.0.547 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/632
BlackBerry7655/3.6.0.764 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/151
BlackBerry6270/5.2.0.872 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/843
BlackBerry7549/5.4.0.910 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/420
BlackBerry4353/2.0.0.511 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/605
BlackBerry8001/3.5.0.455 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/759
BlackBerry5268/3.6.0.519 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/565
BlackBerry9062/3.2.0.227 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/759
BlackBerry7243/4.1.0.892 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/630
BlackBerry9967/1.5.0.383 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/548
BlackBerry8925/2.4.0.325 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/472
BlackBerry7958/1.0.0.765 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/238
BlackBerry8516/5.1.0.870 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/465
BlackBerry4594/4.2.0.995 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/927
BlackBerry8072/1.2.0.265 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/100
BlackBerry8076/3.3.0.241 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/232
BlackBerry5012/3.6.0.704 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/305
BlackBerry9794/5.5.0.188 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/501
BlackBerry9545/1.3.0.151 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/194
BlackBerry6471/3.1.0.686 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/191
BlackBerry8375/4.0.0.249 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/852
BlackBerry9212/5.6.0.162 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/353
BlackBerry7391/1.0.0.586 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/116
BlackBerry7433/1.4.0.232 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/128
BlackBerry4073/3.3.0.758 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/392
BlackBerry4591/2.6.0.942 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/918
BlackBerry8859/5.2.0.691 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/758
BlackBerry7693/4.2.0.260 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/257
BlackBerry8419/2.5.0.353 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/836
BlackBerry5242/3.0.0.639 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/117
BlackBerry7354/1.3.0.920 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/902
BlackBerry6232/2.2.0.469 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/930
BlackBerry6716/5.4.0.631 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/986
BlackBerry6818/3.0.0.714 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/861
BlackBerry6613/4.4.0.223 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/920
BlackBerry6401/2.5.0.805 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/754
BlackBerry9172/1.3.0.888 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/881
BlackBerry5986/3.0.0.554 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/482
BlackBerry9902/3.6.0.782 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/113
BlackBerry7813/1.3.0.966 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/314
BlackBerry7090/1.5.0.858 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/493
BlackBerry7704/3.6.0.817 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/902
BlackBerry7592/2.1.0.143 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/905
BlackBerry7653/1.3.0.279 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/205
BlackBerry5470/2.5.0.354 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/670
BlackBerry7535/1.6.0.296 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/983
BlackBerry7616/3.0.0.569 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/442
BlackBerry6796/2.6.0.216 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/266
BlackBerry8689/3.6.0.298 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/274
BlackBerry4442/5.2.0.749 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/972
BlackBerry9484/2.5.0.387 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/143
BlackBerry8788/4.5.0.700 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/625
BlackBerry8256/3.3.0.436 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/893
BlackBerry6205/1.6.0.144 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/262
BlackBerry6283/5.3.0.434 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/188
BlackBerry4853/3.1.0.603 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/245
BlackBerry9910/5.3.0.805 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/592
BlackBerry8619/2.3.0.657 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/408
BlackBerry4164/3.6.0.226 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/241
BlackBerry5628/4.3.0.125 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/785
BlackBerry8150/2.1.0.624 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/997
BlackBerry4488/5.6.0.826 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/982
BlackBerry8734/2.3.0.511 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/618
BlackBerry7483/2.0.0.986 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/151
BlackBerry7208/1.6.0.468 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/781
BlackBerry8063/1.2.0.794 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/842
BlackBerry5700/2.0.0.575 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/493
BlackBerry5848/4.5.0.107 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/374
BlackBerry5699/2.4.0.837 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/364
BlackBerry9408/4.4.0.826 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/472
BlackBerry4321/3.0.0.893 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/241
BlackBerry6948/1.5.0.338 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/752
BlackBerry7332/4.5.0.232 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/804
BlackBerry5733/5.3.0.547 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/529
BlackBerry8485/5.1.0.997 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/309
BlackBerry8574/1.2.0.977 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/788
BlackBerry7648/2.1.0.382 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/146
BlackBerry8147/1.4.0.665 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/209
BlackBerry4613/4.2.0.414 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/382
BlackBerry7279/5.2.0.547 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/663
BlackBerry6697/3.2.0.997 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/976
BlackBerry6927/3.2.0.119 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/180
BlackBerry7328/1.3.0.479 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/738
BlackBerry8658/4.2.0.854 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/900
BlackBerry7216/2.5.0.944 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/835
BlackBerry9966/4.6.0.375 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/655
BlackBerry7191/1.0.0.880 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/952
BlackBerry5647/5.6.0.747 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/561
BlackBerry8615/2.3.0.839 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/418
BlackBerry5550/3.2.0.279 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/801
BlackBerry9917/3.5.0.807 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/715
BlackBerry7573/3.2.0.962 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/457
BlackBerry7682/1.4.0.477 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/544
BlackBerry9385/4.1.0.200 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/260
BlackBerry5777/4.1.0.783 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/860
BlackBerry8729/4.4.0.366 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/678
BlackBerry7708/4.1.0.124 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/323
BlackBerry5365/5.0.0.458 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/627
BlackBerry8790/5.3.0.523 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/308
BlackBerry6858/5.2.0.746 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/494
BlackBerry9122/4.5.0.575 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/503
BlackBerry9350/5.0.0.813 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/380
BlackBerry9419/5.5.0.645 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/473
BlackBerry6531/2.3.0.853 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/784
BlackBerry5566/3.4.0.591 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/476
BlackBerry8678/1.5.0.834 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/665
BlackBerry9891/1.3.0.296 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/491
BlackBerry9051/4.4.0.304 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/876
BlackBerry8022/3.4.0.354 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/784
BlackBerry9728/1.6.0.596 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/202
BlackBerry9661/4.2.0.182 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/832
BlackBerry7518/4.4.0.586 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/933
BlackBerry8931/3.2.0.992 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/792
BlackBerry7844/1.1.0.220 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/796
BlackBerry8017/5.4.0.936 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/118
BlackBerry5040/2.2.0.750 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/139
BlackBerry8928/1.1.0.866 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/534
BlackBerry7042/5.4.0.112 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/703
BlackBerry8455/3.5.0.175 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/389
BlackBerry9980/4.5.0.871 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/193
BlackBerry5862/5.6.0.672 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/720
BlackBerry7151/3.5.0.358 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/224
BlackBerry8228/2.5.0.191 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/135
BlackBerry8402/1.6.0.650 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/703
BlackBerry6422/2.4.0.352 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/482
BlackBerry4132/5.5.0.160 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/608
BlackBerry6809/4.0.0.773 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/734
BlackBerry6255/3.5.0.666 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/978
BlackBerry6081/2.3.0.474 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/176
BlackBerry4710/5.5.0.912 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/745
BlackBerry5936/3.4.0.930 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/557
BlackBerry9685/3.4.0.990 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/144
BlackBerry8220/1.3.0.333 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/631
BlackBerry8697/4.0.0.500 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/334
BlackBerry9347/1.0.0.123 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/168
BlackBerry5466/5.6.0.959 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/851
BlackBerry5927/3.0.0.915 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/391
BlackBerry7409/1.2.0.443 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/510
BlackBerry4780/2.5.0.297 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/207
BlackBerry4055/2.2.0.805 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/261
BlackBerry8098/4.1.0.438 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/998
BlackBerry5341/2.1.0.901 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/149
BlackBerry4075/2.0.0.365 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/211
BlackBerry6091/3.0.0.665 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/899
BlackBerry6251/1.4.0.840 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/595
BlackBerry8742/3.2.0.244 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/219
BlackBerry7664/2.4.0.649 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/330
BlackBerry7194/4.2.0.952 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/837
BlackBerry9385/4.3.0.495 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/540
BlackBerry8752/5.0.0.829 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/586
BlackBerry7843/5.2.0.105 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/626
BlackBerry7567/4.5.0.511 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/549
BlackBerry4728/2.2.0.389 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/751
BlackBerry5852/5.0.0.555 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/532
BlackBerry5839/3.6.0.465 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/763
BlackBerry9515/3.5.0.401 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/973
BlackBerry4661/2.3.0.799 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/863
BlackBerry7054/4.1.0.139 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/757
BlackBerry9828/1.3.0.614 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/374
BlackBerry7794/4.3.0.798 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/305
BlackBerry9722/2.2.0.462 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/284
BlackBerry9428/3.4.0.558 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/600
BlackBerry6470/3.5.0.893 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/736
BlackBerry9828/5.0.0.366 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/505
BlackBerry8810/4.3.0.751 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/620
BlackBerry8900/4.2.0.773 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/605
BlackBerry7426/4.0.0.849 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/596
BlackBerry7570/5.6.0.278 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/643
BlackBerry5746/5.6.0.776 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/657
BlackBerry8438/2.6.0.755 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/449
BlackBerry9385/3.6.0.759 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/421
BlackBerry7704/5.4.0.281 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/354
BlackBerry7971/1.4.0.615 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/788
BlackBerry9860/3.0.0.241 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/653
BlackBerry8282/3.0.0.406 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/740
BlackBerry4708/3.2.0.282 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/522
BlackBerry7876/3.3.0.813 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/859
BlackBerry4763/2.0.0.208 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/701
BlackBerry4837/5.2.0.172 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/413
BlackBerry9229/1.6.0.314 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/111
BlackBerry7029/2.0.0.865 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/554
BlackBerry9919/4.3.0.945 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/681
BlackBerry8131/4.1.0.529 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/368
BlackBerry6205/2.2.0.815 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/844
BlackBerry9799/4.3.0.577 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/198
BlackBerry6167/3.4.0.343 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/241
BlackBerry7933/5.0.0.864 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/977
BlackBerry5413/1.0.0.952 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/536
BlackBerry9852/3.6.0.320 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/462
BlackBerry7544/4.1.0.101 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/170
BlackBerry6449/5.6.0.676 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/388
BlackBerry9193/3.6.0.743 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/257
BlackBerry4155/2.5.0.275 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/837
BlackBerry8995/3.1.0.138 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/270
BlackBerry8179/5.6.0.526 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/354
BlackBerry6945/1.6.0.359 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/219
BlackBerry6296/4.1.0.796 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/798
BlackBerry6497/1.2.0.207 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/645
BlackBerry5558/5.1.0.497 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/589
BlackBerry6639/4.3.0.428 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/362
BlackBerry6304/5.1.0.267 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/974
BlackBerry7921/3.1.0.307 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/756
BlackBerry6563/5.0.0.581 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/405
BlackBerry9182/2.4.0.778 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/821
BlackBerry4023/1.4.0.952 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/168
BlackBerry7554/4.0.0.612 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/303
BlackBerry7871/5.1.0.253 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/431
BlackBerry4255/4.2.0.475 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/714
BlackBerry5417/5.5.0.375 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/482
BlackBerry8282/3.2.0.844 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/549
BlackBerry9485/4.6.0.714 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/493
BlackBerry5909/5.0.0.540 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/919
BlackBerry9036/5.5.0.929 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/392
BlackBerry4011/4.3.0.383 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/880
BlackBerry8268/5.6.0.249 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/377
BlackBerry4000/5.2.0.822 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/766
BlackBerry8460/3.3.0.214 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/558
BlackBerry7698/2.0.0.265 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/101
BlackBerry6141/1.1.0.441 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/877
BlackBerry6671/3.4.0.643 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/589
BlackBerry6072/3.5.0.995 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/218
BlackBerry9991/4.0.0.623 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/726
BlackBerry8696/2.0.0.695 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/494
BlackBerry8414/3.1.0.849 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/941
BlackBerry4580/5.1.0.737 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/492
BlackBerry6977/5.0.0.247 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/727
BlackBerry4878/4.3.0.288 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/428
BlackBerry6784/3.1.0.409 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/141
BlackBerry6369/1.2.0.444 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/391
BlackBerry9188/4.0.0.357 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/401
BlackBerry5256/3.3.0.608 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/604
BlackBerry8385/2.2.0.444 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/372
BlackBerry5751/2.3.0.411 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/932
BlackBerry9179/2.1.0.225 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/961
BlackBerry5643/5.1.0.318 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/787
BlackBerry7891/2.0.0.824 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/331
BlackBerry9275/4.5.0.350 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/542
BlackBerry5879/5.3.0.458 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/806
BlackBerry6479/3.1.0.231 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/477
BlackBerry6508/4.1.0.327 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/752
BlackBerry4763/5.0.0.907 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/685
BlackBerry5623/5.2.0.375 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/181
BlackBerry6910/2.5.0.883 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/455
BlackBerry8262/3.4.0.995 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/695
BlackBerry9398/1.4.0.766 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/137
BlackBerry6786/4.2.0.734 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/353
BlackBerry5882/1.0.0.986 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/117
BlackBerry7488/2.5.0.182 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/891
BlackBerry6109/3.4.0.889 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/506
BlackBerry7989/4.4.0.473 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/479
BlackBerry6429/2.4.0.921 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/790
BlackBerry4278/2.6.0.676 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/100
BlackBerry6369/2.0.0.155 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/847
BlackBerry6630/1.2.0.354 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/150
BlackBerry8007/2.6.0.262 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/917
BlackBerry9323/3.6.0.262 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/981
BlackBerry8741/1.0.0.319 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/331
BlackBerry6662/1.6.0.948 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/759
BlackBerry6782/1.2.0.868 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/463
BlackBerry5194/5.6.0.415 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/287
BlackBerry8674/5.2.0.788 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/607
BlackBerry4344/3.6.0.931 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/941
BlackBerry6785/3.5.0.700 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/690
BlackBerry6021/2.5.0.480 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/784
BlackBerry9191/3.3.0.704 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/818
BlackBerry4886/4.5.0.209 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/237
BlackBerry4835/2.5.0.393 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/864
BlackBerry8426/1.5.0.234 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/396
BlackBerry7243/5.5.0.768 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/355
BlackBerry6993/2.6.0.496 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/577
BlackBerry4164/3.0.0.537 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/852
BlackBerry8053/5.1.0.423 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/870
BlackBerry6962/5.3.0.111 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/290
BlackBerry8310/4.0.0.981 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/997
BlackBerry4960/4.5.0.915 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/764
BlackBerry5346/4.3.0.545 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/863
BlackBerry7508/4.3.0.681 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/387
BlackBerry4780/1.1.0.473 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/116
BlackBerry5532/3.3.0.546 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/650
BlackBerry6258/3.5.0.863 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/709
BlackBerry4891/4.3.0.440 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/644
BlackBerry7387/2.1.0.282 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/171
BlackBerry6983/1.4.0.641 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/855
BlackBerry4692/1.5.0.450 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/583
BlackBerry8893/3.4.0.321 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/623
BlackBerry4449/3.5.0.311 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/410
BlackBerry9594/2.0.0.860 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/603
BlackBerry5301/1.3.0.917 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/759
BlackBerry9886/5.6.0.329 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/382
BlackBerry5883/5.2.0.183 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/207
BlackBerry9478/1.4.0.786 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/982
BlackBerry8105/4.5.0.401 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/115
BlackBerry6362/5.6.0.447 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/977
BlackBerry9124/5.2.0.270 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/645
BlackBerry9866/5.6.0.297 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/374
BlackBerry6189/3.6.0.456 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/183
BlackBerry5230/1.1.0.679 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/750
BlackBerry7509/3.6.0.605 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/696
BlackBerry4841/2.6.0.187 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/625
BlackBerry7015/5.0.0.631 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/252
BlackBerry6125/5.5.0.463 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/667
BlackBerry4678/2.5.0.725 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/438
BlackBerry4990/3.5.0.556 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/511
BlackBerry6324/5.3.0.410 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/858
BlackBerry6903/4.4.0.890 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/582
BlackBerry4444/5.2.0.179 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/313
BlackBerry8013/3.5.0.658 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/112
BlackBerry8810/4.0.0.422 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/115
BlackBerry7994/2.3.0.369 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/958
BlackBerry9558/5.2.0.715 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/293
BlackBerry8928/5.2.0.895 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/635
BlackBerry6673/4.1.0.419 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/152
BlackBerry5201/5.3.0.241 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/764
BlackBerry5144/2.6.0.504 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/192
BlackBerry8490/3.0.0.441 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/837
BlackBerry5926/1.4.0.123 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/213
BlackBerry5942/2.5.0.721 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/266
BlackBerry4920/4.5.0.597 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/347
BlackBerry4090/5.1.0.722 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/725
BlackBerry4582/5.5.0.772 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/839
BlackBerry7963/5.2.0.608 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/138
BlackBerry5373/1.4.0.560 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/212
BlackBerry5221/3.3.0.119 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/195
BlackBerry8504/4.5.0.359 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/931
BlackBerry9348/3.6.0.106 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/108
BlackBerry9968/4.6.0.177 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/686
BlackBerry7411/2.0.0.124 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/981
BlackBerry6453/5.4.0.344 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/668
BlackBerry9711/3.5.0.495 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/683
BlackBerry4536/1.1.0.500 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/905
BlackBerry5271/5.4.0.930 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/221
BlackBerry9211/4.4.0.673 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/783
BlackBerry9746/5.2.0.670 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/923
BlackBerry9011/4.1.0.228 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/933
BlackBerry9701/2.6.0.973 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/823
BlackBerry6389/3.5.0.731 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/679
BlackBerry8800/3.1.0.644 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/197
BlackBerry4882/5.4.0.341 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/626
BlackBerry4357/2.4.0.696 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/347
BlackBerry4518/2.3.0.402 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/417
BlackBerry9456/4.5.0.144 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/365
BlackBerry6635/3.6.0.134 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/685
BlackBerry9841/2.5.0.399 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/482
BlackBerry8779/1.3.0.693 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/326
BlackBerry8348/3.2.0.409 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/575
BlackBerry6591/4.4.0.804 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/596
BlackBerry8606/4.3.0.728 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/116
BlackBerry8130/2.5.0.861 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/260
BlackBerry4075/3.2.0.403 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/162
BlackBerry7483/5.4.0.850 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/632
BlackBerry6221/3.3.0.951 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/809
BlackBerry4111/3.0.0.904 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/643
BlackBerry4320/3.2.0.799 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/412
BlackBerry8102/1.5.0.952 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/721
BlackBerry8728/4.1.0.481 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/630
BlackBerry7952/4.6.0.431 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/348
BlackBerry6923/4.0.0.313 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/608
BlackBerry5562/2.0.0.729 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/653
BlackBerry4155/4.6.0.457 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/337