summaryrefslogtreecommitdiff
path: root/hwdb/20-bluetooth-vendor-product.hwdb
blob: 4fd951a58459e977e06e72004a1f992a82ccde8e (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
# This file is part of systemd.
#
# Data imported from:
#  http://www.bluetooth.org/Technical/AssignedNumbers/identifiers.htm

bluetooth:v0000*
 ID_VENDOR_FROM_DATABASE=Ericsson Technology Licensing

bluetooth:v0001*
 ID_VENDOR_FROM_DATABASE=Nokia Mobile Phones

bluetooth:v0002*
 ID_VENDOR_FROM_DATABASE=Intel Corp.

bluetooth:v0003*
 ID_VENDOR_FROM_DATABASE=IBM Corp.

bluetooth:v0004*
 ID_VENDOR_FROM_DATABASE=Toshiba Corp.

bluetooth:v0005*
 ID_VENDOR_FROM_DATABASE=3Com

bluetooth:v0006*
 ID_VENDOR_FROM_DATABASE=Microsoft

bluetooth:v0007*
 ID_VENDOR_FROM_DATABASE=Lucent

bluetooth:v0008*
 ID_VENDOR_FROM_DATABASE=Motorola

bluetooth:v0009*
 ID_VENDOR_FROM_DATABASE=Infineon Technologies AG

bluetooth:v000A*
 ID_VENDOR_FROM_DATABASE=Cambridge Silicon Radio

bluetooth:v000B*
 ID_VENDOR_FROM_DATABASE=Silicon Wave

bluetooth:v000C*
 ID_VENDOR_FROM_DATABASE=Digianswer A/S

bluetooth:v000D*
 ID_VENDOR_FROM_DATABASE=Texas Instruments Inc.

bluetooth:v000E*
 ID_VENDOR_FROM_DATABASE=Ceva, Inc. (formerly Parthus Technologies, Inc.)

bluetooth:v000F*
 ID_VENDOR_FROM_DATABASE=Broadcom Corporation

bluetooth:v0010*
 ID_VENDOR_FROM_DATABASE=Mitel Semiconductor

bluetooth:v0011*
 ID_VENDOR_FROM_DATABASE=Widcomm, Inc

bluetooth:v0012*
 ID_VENDOR_FROM_DATABASE=Zeevo, Inc.

bluetooth:v0013*
 ID_VENDOR_FROM_DATABASE=Atmel Corporation

bluetooth:v0014*
 ID_VENDOR_FROM_DATABASE=Mitsubishi Electric Corporation

bluetooth:v0015*
 ID_VENDOR_FROM_DATABASE=RTX Telecom A/S

bluetooth:v0016*
 ID_VENDOR_FROM_DATABASE=KC Technology Inc.

bluetooth:v0017*
 ID_VENDOR_FROM_DATABASE=NewLogic

bluetooth:v0018*
 ID_VENDOR_FROM_DATABASE=Transilica, Inc.

bluetooth:v0019*
 ID_VENDOR_FROM_DATABASE=Rohde & Schwarz GmbH & Co. KG

bluetooth:v001A*
 ID_VENDOR_FROM_DATABASE=TTPCom Limited

bluetooth:v001B*
 ID_VENDOR_FROM_DATABASE=Signia Technologies, Inc.

bluetooth:v001C*
 ID_VENDOR_FROM_DATABASE=Conexant Systems Inc.

bluetooth:v001D*
 ID_VENDOR_FROM_DATABASE=Qualcomm

bluetooth:v001E*
 ID_VENDOR_FROM_DATABASE=Inventel

bluetooth:v001F*
 ID_VENDOR_FROM_DATABASE=AVM Berlin

bluetooth:v0020*
 ID_VENDOR_FROM_DATABASE=BandSpeed, Inc.

bluetooth:v0021*
 ID_VENDOR_FROM_DATABASE=Mansella Ltd

bluetooth:v0022*
 ID_VENDOR_FROM_DATABASE=NEC Corporation

bluetooth:v0023*
 ID_VENDOR_FROM_DATABASE=WavePlus Technology Co., Ltd.

bluetooth:v0024*
 ID_VENDOR_FROM_DATABASE=Alcatel

bluetooth:v0025*
 ID_VENDOR_FROM_DATABASE=NXP Semiconductors (formerly Philips Semiconductors)

bluetooth:v0026*
 ID_VENDOR_FROM_DATABASE=C Technologies

bluetooth:v0027*
 ID_VENDOR_FROM_DATABASE=Open Interface

bluetooth:v0028*
 ID_VENDOR_FROM_DATABASE=R F Micro Devices

bluetooth:v0029*
 ID_VENDOR_FROM_DATABASE=Hitachi Ltd

bluetooth:v002A*
 ID_VENDOR_FROM_DATABASE=Symbol Technologies, Inc.

bluetooth:v002B*
 ID_VENDOR_FROM_DATABASE=Tenovis

bluetooth:v002C*
 ID_VENDOR_FROM_DATABASE=Macronix International Co. Ltd.

bluetooth:v002D*
 ID_VENDOR_FROM_DATABASE=GCT Semiconductor

bluetooth:v002E*
 ID_VENDOR_FROM_DATABASE=Norwood Systems

bluetooth:v002F*
 ID_VENDOR_FROM_DATABASE=MewTel Technology Inc.

bluetooth:v0030*
 ID_VENDOR_FROM_DATABASE=ST Microelectronics

bluetooth:v0031*
 ID_VENDOR_FROM_DATABASE=Synopsis

bluetooth:v0032*
 ID_VENDOR_FROM_DATABASE=Red-M (Communications) Ltd

bluetooth:v0033*
 ID_VENDOR_FROM_DATABASE=Commil Ltd

bluetooth:v0034*
 ID_VENDOR_FROM_DATABASE=Computer Access Technology Corporation (CATC)

bluetooth:v0035*
 ID_VENDOR_FROM_DATABASE=Eclipse (HQ Espana) S.L.

bluetooth:v0036*
 ID_VENDOR_FROM_DATABASE=Renesas Electronics Corporation

bluetooth:v0037*
 ID_VENDOR_FROM_DATABASE=Mobilian Corporation

bluetooth:v0038*
 ID_VENDOR_FROM_DATABASE=Terax

bluetooth:v0039*
 ID_VENDOR_FROM_DATABASE=Integrated System Solution Corp.

bluetooth:v003A*
 ID_VENDOR_FROM_DATABASE=Matsushita Electric Industrial Co., Ltd.

bluetooth:v003B*
 ID_VENDOR_FROM_DATABASE=Gennum Corporation

bluetooth:v003C*
 ID_VENDOR_FROM_DATABASE=BlackBerry Limited (formerly Research In Motion)

bluetooth:v003D*
 ID_VENDOR_FROM_DATABASE=IPextreme, Inc.

bluetooth:v003E*
 ID_VENDOR_FROM_DATABASE=Systems and Chips, Inc.

bluetooth:v003F*
 ID_VENDOR_FROM_DATABASE=Bluetooth SIG, Inc.

bluetooth:v0040*
 ID_VENDOR_FROM_DATABASE=Seiko Epson Corporation

bluetooth:v0041*
 ID_VENDOR_FROM_DATABASE=Integrated Silicon Solution Taiwan, Inc.

bluetooth:v0042*
 ID_VENDOR_FROM_DATABASE=CONWISE Technology Corporation Ltd

bluetooth:v0043*
 ID_VENDOR_FROM_DATABASE=PARROT SA

bluetooth:v0044*
 ID_VENDOR_FROM_DATABASE=Socket Mobile

bluetooth:v0045*
 ID_VENDOR_FROM_DATABASE=Atheros Communications, Inc.

bluetooth:v0046*
 ID_VENDOR_FROM_DATABASE=MediaTek, Inc.

bluetooth:v0047*
 ID_VENDOR_FROM_DATABASE=Bluegiga

bluetooth:v0048*
 ID_VENDOR_FROM_DATABASE=Marvell Technology Group Ltd.

bluetooth:v0049*
 ID_VENDOR_FROM_DATABASE=3DSP Corporation

bluetooth:v004A*
 ID_VENDOR_FROM_DATABASE=Accel Semiconductor Ltd.

bluetooth:v004B*
 ID_VENDOR_FROM_DATABASE=Continental Automotive Systems

bluetooth:v004C*
 ID_VENDOR_FROM_DATABASE=Apple, Inc.

bluetooth:v004D*
 ID_VENDOR_FROM_DATABASE=Staccato Communications, Inc.

bluetooth:v004E*
 ID_VENDOR_FROM_DATABASE=Avago Technologies

bluetooth:v004F*
 ID_VENDOR_FROM_DATABASE=APT Licensing Ltd.

bluetooth:v0050*
 ID_VENDOR_FROM_DATABASE=SiRF Technology

bluetooth:v0051*
 ID_VENDOR_FROM_DATABASE=Tzero Technologies, Inc.

bluetooth:v0052*
 ID_VENDOR_FROM_DATABASE=J&M Corporation

bluetooth:v0053*
 ID_VENDOR_FROM_DATABASE=Free2move AB

bluetooth:v0054*
 ID_VENDOR_FROM_DATABASE=3DiJoy Corporation

bluetooth:v0055*
 ID_VENDOR_FROM_DATABASE=Plantronics, Inc.

bluetooth:v0056*
 ID_VENDOR_FROM_DATABASE=Sony Ericsson Mobile Communications

bluetooth:v0057*
 ID_VENDOR_FROM_DATABASE=Harman International Industries, Inc.

bluetooth:v0058*
 ID_VENDOR_FROM_DATABASE=Vizio, Inc.

bluetooth:v0059*
 ID_VENDOR_FROM_DATABASE=Nordic Semiconductor ASA

bluetooth:v005A*
 ID_VENDOR_FROM_DATABASE=EM Microelectronic-Marin SA

bluetooth:v005B*
 ID_VENDOR_FROM_DATABASE=Ralink Technology Corporation

bluetooth:v005C*
 ID_VENDOR_FROM_DATABASE=Belkin International, Inc.

bluetooth:v005D*
 ID_VENDOR_FROM_DATABASE=Realtek Semiconductor Corporation

bluetooth:v005E*
 ID_VENDOR_FROM_DATABASE=Stonestreet One, LLC

bluetooth:v005F*
 ID_VENDOR_FROM_DATABASE=Wicentric, Inc.

bluetooth:v0060*
 ID_VENDOR_FROM_DATABASE=RivieraWaves S.A.S

bluetooth:v0061*
 ID_VENDOR_FROM_DATABASE=RDA Microelectronics

bluetooth:v0062*
 ID_VENDOR_FROM_DATABASE=Gibson Guitars

bluetooth:v0063*
 ID_VENDOR_FROM_DATABASE=MiCommand Inc.

bluetooth:v0064*
 ID_VENDOR_FROM_DATABASE=Band XI International, LLC

bluetooth:v0065*
 ID_VENDOR_FROM_DATABASE=Hewlett-Packard Company

bluetooth:v0066*
 ID_VENDOR_FROM_DATABASE=9Solutions Oy

bluetooth:v0067*
 ID_VENDOR_FROM_DATABASE=GN Netcom A/S

bluetooth:v0068*
 ID_VENDOR_FROM_DATABASE=General Motors

bluetooth:v0069*
 ID_VENDOR_FROM_DATABASE=A&D Engineering, Inc.

bluetooth:v006A*
 ID_VENDOR_FROM_DATABASE=MindTree Ltd.

bluetooth:v006B*
 ID_VENDOR_FROM_DATABASE=Polar Electro OY

bluetooth:v006C*
 ID_VENDOR_FROM_DATABASE=Beautiful Enterprise Co., Ltd.

bluetooth:v006D*
 ID_VENDOR_FROM_DATABASE=BriarTek, Inc.

bluetooth:v006E*
 ID_VENDOR_FROM_DATABASE=Summit Data Communications, Inc.

bluetooth:v006F*
 ID_VENDOR_FROM_DATABASE=Sound ID

bluetooth:v0070*
 ID_VENDOR_FROM_DATABASE=Monster, LLC

bluetooth:v0071*
 ID_VENDOR_FROM_DATABASE=connectBlue AB

bluetooth:v0072*
 ID_VENDOR_FROM_DATABASE=ShangHai Super Smart Electronics Co. Ltd.

bluetooth:v0073*
 ID_VENDOR_FROM_DATABASE=Group Sense Ltd.

bluetooth:v0074*
 ID_VENDOR_FROM_DATABASE=Zomm, LLC

bluetooth:v0075*
 ID_VENDOR_FROM_DATABASE=Samsung Electronics Co. Ltd.

bluetooth:v0076*
 ID_VENDOR_FROM_DATABASE=Creative Technology Ltd.

bluetooth:v0077*
 ID_VENDOR_FROM_DATABASE=Laird Technologies

bluetooth:v0078*
 ID_VENDOR_FROM_DATABASE=Nike, Inc.

bluetooth:v0078p0001*
 ID_PRODUCT_FROM_DATABASE=Nike+ FuelBand

bluetooth:v0079*
 ID_VENDOR_FROM_DATABASE=lesswire AG

bluetooth:v007A*
 ID_VENDOR_FROM_DATABASE=MStar Semiconductor, Inc.

bluetooth:v007B*
 ID_VENDOR_FROM_DATABASE=Hanlynn Technologies

bluetooth:v007C*
 ID_VENDOR_FROM_DATABASE=A & R Cambridge

bluetooth:v007D*
 ID_VENDOR_FROM_DATABASE=Seers Technology Co. Ltd

bluetooth:v007E*
 ID_VENDOR_FROM_DATABASE=Sports Tracking Technologies Ltd.

bluetooth:v007F*
 ID_VENDOR_FROM_DATABASE=Autonet Mobile

bluetooth:v0080*
 ID_VENDOR_FROM_DATABASE=DeLorme Publishing Company, Inc.

bluetooth:v0081*
 ID_VENDOR_FROM_DATABASE=WuXi Vimicro

bluetooth:v0082*
 ID_VENDOR_FROM_DATABASE=Sennheiser Communications A/S

bluetooth:v0083*
 ID_VENDOR_FROM_DATABASE=TimeKeeping Systems, Inc.

bluetooth:v0084*
 ID_VENDOR_FROM_DATABASE=Ludus Helsinki Ltd.

bluetooth:v0085*
 ID_VENDOR_FROM_DATABASE=BlueRadios, Inc.

bluetooth:v0086*
 ID_VENDOR_FROM_DATABASE=equinox AG

bluetooth:v0087*
 ID_VENDOR_FROM_DATABASE=Garmin International, Inc.

bluetooth:v0088*
 ID_VENDOR_FROM_DATABASE=Ecotest

bluetooth:v0089*
 ID_VENDOR_FROM_DATABASE=GN ReSound A/S

bluetooth:v008A*
 ID_VENDOR_FROM_DATABASE=Jawbone

bluetooth:v008B*
 ID_VENDOR_FROM_DATABASE=Topcorn Positioning Systems, LLC

bluetooth:v008C*
 ID_VENDOR_FROM_DATABASE=Gimbal Inc. (formerly Qualcomm Labs, Inc. and Qualcomm Retail Solutions, Inc.)

bluetooth:v008D*
 ID_VENDOR_FROM_DATABASE=Zscan Software

bluetooth:v008E*
 ID_VENDOR_FROM_DATABASE=Quintic Corp.

bluetooth:v008F*
 ID_VENDOR_FROM_DATABASE=Stollman E+V GmbH

bluetooth:v0090*
 ID_VENDOR_FROM_DATABASE=Funai Electric Co., Ltd.

bluetooth:v0091*
 ID_VENDOR_FROM_DATABASE=Advanced PANMOBIL Systems GmbH & Co. KG

bluetooth:v0092*
 ID_VENDOR_FROM_DATABASE=ThinkOptics, Inc.

bluetooth:v0093*
 ID_VENDOR_FROM_DATABASE=Universal Electronics, Inc.

bluetooth:v0094*
 ID_VENDOR_FROM_DATABASE=Airoha Technology Corp.

bluetooth:v0095*
 ID_VENDOR_FROM_DATABASE=NEC Lighting, Ltd.

bluetooth:v0096*
 ID_VENDOR_FROM_DATABASE=ODM Technology, Inc.

bluetooth:v0097*
 ID_VENDOR_FROM_DATABASE=ConnecteDevice Ltd.

bluetooth:v0098*
 ID_VENDOR_FROM_DATABASE=zer01.tv GmbH

bluetooth:v0099*
 ID_VENDOR_FROM_DATABASE=i.Tech Dynamic Global Distribution Ltd.

bluetooth:v009A*
 ID_VENDOR_FROM_DATABASE=Alpwise

bluetooth:v009B*
 ID_VENDOR_FROM_DATABASE=Jiangsu Toppower Automotive Electronics Co., Ltd.

bluetooth:v009C*
 ID_VENDOR_FROM_DATABASE=Colorfy, Inc.

bluetooth:v009D*
 ID_VENDOR_FROM_DATABASE=Geoforce Inc.

bluetooth:v009E*
 ID_VENDOR_FROM_DATABASE=Bose Corporation

bluetooth:v009F*
 ID_VENDOR_FROM_DATABASE=Suunto Oy

bluetooth:v00A0*
 ID_VENDOR_FROM_DATABASE=Kensington Computer Products Group

bluetooth:v00A1*
 ID_VENDOR_FROM_DATABASE=SR-Medizinelektronik

bluetooth:v00A2*
 ID_VENDOR_FROM_DATABASE=Vertu Corporation Limited

bluetooth:v00A3*
 ID_VENDOR_FROM_DATABASE=Meta Watch Ltd.

bluetooth:v00A4*
 ID_VENDOR_FROM_DATABASE=LINAK A/S

bluetooth:v00A5*
 ID_VENDOR_FROM_DATABASE=OTL Dynamics LLC

bluetooth:v00A6*
 ID_VENDOR_FROM_DATABASE=Panda Ocean Inc.

bluetooth:v00A7*
 ID_VENDOR_FROM_DATABASE=Visteon Corporation

bluetooth:v00A8*
 ID_VENDOR_FROM_DATABASE=ARP Devices Limited

bluetooth:v00A9*
 ID_VENDOR_FROM_DATABASE=Magneti Marelli S.p.A

bluetooth:v00AA*
 ID_VENDOR_FROM_DATABASE=CAEN RFID srl

bluetooth:v00AB*
 ID_VENDOR_FROM_DATABASE=Ingenieur-Systemgruppe Zahn GmbH

bluetooth:v00AC*
 ID_VENDOR_FROM_DATABASE=Green Throttle Games

bluetooth:v00AD*
 ID_VENDOR_FROM_DATABASE=Peter Systemtechnik GmbH

bluetooth:v00AE*
 ID_VENDOR_FROM_DATABASE=Omegawave Oy

bluetooth:v00AF*
 ID_VENDOR_FROM_DATABASE=Cinetix

bluetooth:v00B0*
 ID_VENDOR_FROM_DATABASE=Passif Semiconductor Corp

bluetooth:v00B1*
 ID_VENDOR_FROM_DATABASE=Saris Cycling Group, Inc

bluetooth:v00B2*
 ID_VENDOR_FROM_DATABASE=Bekey A/S

bluetooth:v00B3*
 ID_VENDOR_FROM_DATABASE=Clarinox Technologies Pty. Ltd.

bluetooth:v00B4*
 ID_VENDOR_FROM_DATABASE=BDE Technology Co., Ltd.

bluetooth:v00B5*
 ID_VENDOR_FROM_DATABASE=Swirl Networks

bluetooth:v00B6*
 ID_VENDOR_FROM_DATABASE=Meso international

bluetooth:v00B7*
 ID_VENDOR_FROM_DATABASE=TreLab Ltd

bluetooth:v00B8*
 ID_VENDOR_FROM_DATABASE=Qualcomm Innovation Center, Inc. (QuIC)

bluetooth:v00B9*
 ID_VENDOR_FROM_DATABASE=Johnson Controls, Inc.

bluetooth:v00BA*
 ID_VENDOR_FROM_DATABASE=Starkey Laboratories Inc.

bluetooth:v00BB*
 ID_VENDOR_FROM_DATABASE=S-Power Electronics Limited

bluetooth:v00BC*
 ID_VENDOR_FROM_DATABASE=Ace Sensor Inc

bluetooth:v00BD*
 ID_VENDOR_FROM_DATABASE=Aplix Corporation

bluetooth:v00BE*
 ID_VENDOR_FROM_DATABASE=AAMP of America

bluetooth:v00BF*
 ID_VENDOR_FROM_DATABASE=Stalmart Technology Limited

bluetooth:v00C0*
 ID_VENDOR_FROM_DATABASE=AMICCOM Electronics Corporation

bluetooth:v00C1*
 ID_VENDOR_FROM_DATABASE=Shenzhen Excelsecu Data Technology Co.,Ltd

bluetooth:v00C2*
 ID_VENDOR_FROM_DATABASE=Geneq Inc.

bluetooth:v00C3*
 ID_VENDOR_FROM_DATABASE=adidas AG

bluetooth:v00C4*
 ID_VENDOR_FROM_DATABASE=LG Electronics

bluetooth:v00C5*
 ID_VENDOR_FROM_DATABASE=Onset Computer Corporation

bluetooth:v00C6*
 ID_VENDOR_FROM_DATABASE=Selfly BV

bluetooth:v00C7*
 ID_VENDOR_FROM_DATABASE=Quuppa Oy.

bluetooth:v00C8*
 ID_VENDOR_FROM_DATABASE=GeLo Inc

bluetooth:v00C9*
 ID_VENDOR_FROM_DATABASE=Evluma

bluetooth:v00CA*
 ID_VENDOR_FROM_DATABASE=MC10

bluetooth:v00CB*
 ID_VENDOR_FROM_DATABASE=Binauric SE

bluetooth:v00CC*
 ID_VENDOR_FROM_DATABASE=Beats Electronics

bluetooth:v00CD*
 ID_VENDOR_FROM_DATABASE=Microchip Technology Inc.

bluetooth:v00CE*
 ID_VENDOR_FROM_DATABASE=Elgato Systems GmbH

bluetooth:v00CF*
 ID_VENDOR_FROM_DATABASE=ARCHOS SA

bluetooth:v00D0*
 ID_VENDOR_FROM_DATABASE=Dexcom, Inc.

bluetooth:v00D1*
 ID_VENDOR_FROM_DATABASE=Polar Electro Europe B.V.

bluetooth:v00D2*
 ID_VENDOR_FROM_DATABASE=Dialog Semiconductor B.V.

bluetooth:v00D3*
 ID_VENDOR_FROM_DATABASE=Taixingbang Technology (HK) Co,. LTD.

bluetooth:v00D4*
 ID_VENDOR_FROM_DATABASE=Kawantech

bluetooth:v00D5*
 ID_VENDOR_FROM_DATABASE=Austco Communication Systems

bluetooth:v00D6*
 ID_VENDOR_FROM_DATABASE=Timex Group USA, Inc.

bluetooth:v00D7*
 ID_VENDOR_FROM_DATABASE=Qualcomm Technologies, Inc.

bluetooth:v00D8*
 ID_VENDOR_FROM_DATABASE=Qualcomm Connected Experiences, Inc.

bluetooth:v00D9*
 ID_VENDOR_FROM_DATABASE=Voyetra Turtle Beach

bluetooth:v00DA*
 ID_VENDOR_FROM_DATABASE=txtr GmbH

bluetooth:v00DB*
 ID_VENDOR_FROM_DATABASE=Biosentronics

bluetooth:v00DC*
 ID_VENDOR_FROM_DATABASE=Procter & Gamble

bluetooth:v00DD*
 ID_VENDOR_FROM_DATABASE=Hosiden Corporation

bluetooth:v00DE*
 ID_VENDOR_FROM_DATABASE=Muzik LLC

bluetooth:v00DF*
 ID_VENDOR_FROM_DATABASE=Misfit Wearables Corp

bluetooth:v00E0*
 ID_VENDOR_FROM_DATABASE=Google

bluetooth:v00E1*
 ID_VENDOR_FROM_DATABASE=Danlers Ltd

bluetooth:v00E2*
 ID_VENDOR_FROM_DATABASE=Semilink Inc

bluetooth:v00E3*
 ID_VENDOR_FROM_DATABASE=inMusic Brands, Inc

bluetooth:v00E4*
 ID_VENDOR_FROM_DATABASE=L.S. Research Inc.

bluetooth:v00E5*
 ID_VENDOR_FROM_DATABASE=Eden Software Consultants Ltd.

bluetooth:v00E6*
 ID_VENDOR_FROM_DATABASE=Freshtemp

bluetooth:v00E7*
 ID_VENDOR_FROM_DATABASE=KS Technologies

bluetooth:v00E8*
 ID_VENDOR_FROM_DATABASE=ACTS Technologies

bluetooth:v00E9*
 ID_VENDOR_FROM_DATABASE=Vtrack Systems

bluetooth:v00EA*
 ID_VENDOR_FROM_DATABASE=Nielsen-Kellerman Company

bluetooth:v00EB*
 ID_VENDOR_FROM_DATABASE=Server Technology, Inc.

bluetooth:v00EC*
 ID_VENDOR_FROM_DATABASE=BioResearch Associates

bluetooth:v00ED*
 ID_VENDOR_FROM_DATABASE=Jolly Logic, LLC

bluetooth:v00EE*
 ID_VENDOR_FROM_DATABASE=Above Average Outcomes, Inc.

bluetooth:v00EF*
 ID_VENDOR_FROM_DATABASE=Bitsplitters GmbH

bluetooth:v00F0*
 ID_VENDOR_FROM_DATABASE=PayPal, Inc.

bluetooth:v00F1*
 ID_VENDOR_FROM_DATABASE=Witron Technology Limited

bluetooth:v00F2*
 ID_VENDOR_FROM_DATABASE=Aether Things Inc. (formerly Morse Project Inc.)

bluetooth:v00F3*
 ID_VENDOR_FROM_DATABASE=Kent Displays Inc.

bluetooth:v00F4*
 ID_VENDOR_FROM_DATABASE=Nautilus Inc.

bluetooth:v00F5*
 ID_VENDOR_FROM_DATABASE=Smartifier Oy

bluetooth:v00F6*
 ID_VENDOR_FROM_DATABASE=Elcometer Limited

bluetooth:v00F7*
 ID_VENDOR_FROM_DATABASE=VSN Technologies Inc.

bluetooth:v00F8*
 ID_VENDOR_FROM_DATABASE=AceUni Corp., Ltd.

bluetooth:v00F9*
 ID_VENDOR_FROM_DATABASE=StickNFind

bluetooth:v00FA*
 ID_VENDOR_FROM_DATABASE=Crystal Code AB

bluetooth:v00FB*
 ID_VENDOR_FROM_DATABASE=KOUKAAM a.s.

bluetooth:v00FC*
 ID_VENDOR_FROM_DATABASE=Delphi Corporation

bluetooth:v00FD*
 ID_VENDOR_FROM_DATABASE=ValenceTech Limited

bluetooth:v00FE*
 ID_VENDOR_FROM_DATABASE=Reserved

bluetooth:v00FF*
 ID_VENDOR_FROM_DATABASE=Typo Products, LLC

bluetooth:v0100*
 ID_VENDOR_FROM_DATABASE=TomTom International BV

bluetooth:v0101*
 ID_VENDOR_FROM_DATABASE=Fugoo, Inc

bluetooth:v0102*
 ID_VENDOR_FROM_DATABASE=Keiser Corporation

bluetooth:v0103*
 ID_VENDOR_FROM_DATABASE=Bang & Olufsen A/S

bluetooth:v0104*
 ID_VENDOR_FROM_DATABASE=PLUS Locations Systems Pty Ltd

bluetooth:v0105*
 ID_VENDOR_FROM_DATABASE=Ubiquitous Computing Technology Corporation

bluetooth:v0106*
 ID_VENDOR_FROM_DATABASE=Innovative Yachtter Solutions

bluetooth:v0107*
 ID_VENDOR_FROM_DATABASE=William Demant Holding A/S

bluetooth:v0108*
 ID_VENDOR_FROM_DATABASE=Chicony Electronics Co., Ltd.

bluetooth:v0109*
 ID_VENDOR_FROM_DATABASE=Atus BV

bluetooth:v010A*
 ID_VENDOR_FROM_DATABASE=Codegate Ltd.

bluetooth:v010B*
 ID_VENDOR_FROM_DATABASE=ERi, Inc.

bluetooth:v010C*
 ID_VENDOR_FROM_DATABASE=Transducers Direct, LLC

bluetooth:v010D*
 ID_VENDOR_FROM_DATABASE=Fujitsu Ten Limited

bluetooth:v010E*
 ID_VENDOR_FROM_DATABASE=Audi AG

bluetooth:v010F*
 ID_VENDOR_FROM_DATABASE=HiSilicon Technologies Co., Ltd.

bluetooth:v0110*
 ID_VENDOR_FROM_DATABASE=Nippon Seiki Co., Ltd.

bluetooth:v0111*
 ID_VENDOR_FROM_DATABASE=Steelseries ApS

bluetooth:v0112*
 ID_VENDOR_FROM_DATABASE=vyzybl Inc.

bluetooth:v0113*
 ID_VENDOR_FROM_DATABASE=Openbrain Technologies, Co., Ltd.

bluetooth:v0114*
 ID_VENDOR_FROM_DATABASE=Xensr

bluetooth:v0115*
 ID_VENDOR_FROM_DATABASE=e.solutions

bluetooth:v0116*
 ID_VENDOR_FROM_DATABASE=1OAK Technologies

bluetooth:v0117*
 ID_VENDOR_FROM_DATABASE=Wimoto Technologies Inc

bluetooth:v0118*
 ID_VENDOR_FROM_DATABASE=Radius Networks, Inc.

bluetooth:v0119*
 ID_VENDOR_FROM_DATABASE=Wize Technology Co., Ltd.

bluetooth:v011A*
 ID_VENDOR_FROM_DATABASE=Qualcomm Labs, Inc.

bluetooth:v011B*
 ID_VENDOR_FROM_DATABASE=Aruba Networks

bluetooth:v011C*
 ID_VENDOR_FROM_DATABASE=Baidu

bluetooth:v011D*
 ID_VENDOR_FROM_DATABASE=Arendi AG

bluetooth:v011E*
 ID_VENDOR_FROM_DATABASE=Skoda Auto a.s.

bluetooth:v011F*
 ID_VENDOR_FROM_DATABASE=Volkswagon AG

bluetooth:v0120*
 ID_VENDOR_FROM_DATABASE=Porsche AG

bluetooth:v0121*
 ID_VENDOR_FROM_DATABASE=Sino Wealth Electronic Ltd.

bluetooth:v0122*
 ID_VENDOR_FROM_DATABASE=AirTurn, Inc.

bluetooth:v0123*
 ID_VENDOR_FROM_DATABASE=Kinsa, Inc.

bluetooth:v0124*
 ID_VENDOR_FROM_DATABASE=HID Global

bluetooth:v0125*
 ID_VENDOR_FROM_DATABASE=SEAT es

bluetooth:v0126*
 ID_VENDOR_FROM_DATABASE=Promethean Ltd.

bluetooth:v0127*
 ID_VENDOR_FROM_DATABASE=Salutica Allied Solutions

bluetooth:v0128*
 ID_VENDOR_FROM_DATABASE=GPSI Group Pty Ltd

bluetooth:v0129*
 ID_VENDOR_FROM_DATABASE=Nimble Devices Oy

bluetooth:v012A*
 ID_VENDOR_FROM_DATABASE=Changzhou Yongse Infotech Co., Ltd

bluetooth:v012B*
 ID_VENDOR_FROM_DATABASE=SportIQ

bluetooth:v012C*
 ID_VENDOR_FROM_DATABASE=TEMEC Instruments B.V.

bluetooth:v012D*
 ID_VENDOR_FROM_DATABASE=Sony Corporation

bluetooth:v012E*
 ID_VENDOR_FROM_DATABASE=ASSA ABLOY

bluetooth:v012F*
 ID_VENDOR_FROM_DATABASE=Clarion Co., Ltd.

bluetooth:v0130*
 ID_VENDOR_FROM_DATABASE=Warehouse Innovations

bluetooth:v0131*
 ID_VENDOR_FROM_DATABASE=Cypress Semiconductor Corporation

bluetooth:v0132*
 ID_VENDOR_FROM_DATABASE=MADS Inc

bluetooth:v0133*
 ID_VENDOR_FROM_DATABASE=Blue Maestro Limited

bluetooth:v0134*
 ID_VENDOR_FROM_DATABASE=Resolution Products, Inc.

bluetooth:v0135*
 ID_VENDOR_FROM_DATABASE=Airewear LLC

bluetooth:v0136*
 ID_VENDOR_FROM_DATABASE=Seed Labs, Inc. (formerly ETC sp. z.o.o.)

bluetooth:v0137*
 ID_VENDOR_FROM_DATABASE=Prestigio Plaza Ltd.

bluetooth:v0138*
 ID_VENDOR_FROM_DATABASE=NTEO Inc.

bluetooth:v0139*
 ID_VENDOR_FROM_DATABASE=Focus Systems Corporation

bluetooth:v013A*
 ID_VENDOR_FROM_DATABASE=Tencent Holdings Limited

bluetooth:v013B*
 ID_VENDOR_FROM_DATABASE=Allegion

bluetooth:v013C*
 ID_VENDOR_FROM_DATABASE=Murata Manufacuring Co., Ltd.

bluetooth:v013D*
 ID_VENDOR_FROM_DATABASE=WirelessWERX

bluetooth:v013E*
 ID_VENDOR_FROM_DATABASE=Nod, Inc.

bluetooth:v013F*
 ID_VENDOR_FROM_DATABASE=B&B Manufacturing Company

bluetooth:v0140*
 ID_VENDOR_FROM_DATABASE=Alpine Electronics (China) Co., Ltd

bluetooth:v0141*
 ID_VENDOR_FROM_DATABASE=FedEx Services

bluetooth:v0142*
 ID_VENDOR_FROM_DATABASE=Grape Systems Inc.

bluetooth:v0143*
 ID_VENDOR_FROM_DATABASE=Bkon Connect

bluetooth:v0144*
 ID_VENDOR_FROM_DATABASE=Lintech GmbH

bluetooth:v0145*
 ID_VENDOR_FROM_DATABASE=Novatel Wireless

bluetooth:v0146*
 ID_VENDOR_FROM_DATABASE=Ciright

bluetooth:v0147*
 ID_VENDOR_FROM_DATABASE=Mighty Cast, Inc.

bluetooth:v0148*
 ID_VENDOR_FROM_DATABASE=Ambimat Electronics

bluetooth:v0149*
 ID_VENDOR_FROM_DATABASE=Perytons Ltd.

bluetooth:v014A*
 ID_VENDOR_FROM_DATABASE=Tivoli Audio, LLC

bluetooth:v014B*
 ID_VENDOR_FROM_DATABASE=Master Lock

bluetooth:v014C*
 ID_VENDOR_FROM_DATABASE=Mesh-Net Ltd

bluetooth:v014D*
 ID_VENDOR_FROM_DATABASE=Huizhou Desay SV Automotive CO., LTD.

bluetooth:v014E*
 ID_VENDOR_FROM_DATABASE=Tangerine, Inc.

bluetooth:v014F*
 ID_VENDOR_FROM_DATABASE=B&W Group Ltd.

bluetooth:v0150*
 ID_VENDOR_FROM_DATABASE=Pioneer Corporation

bluetooth:v0151*
 ID_VENDOR_FROM_DATABASE=OnBeep

bluetooth:v0152*
 ID_VENDOR_FROM_DATABASE=Vernier Software & Technology

bluetooth:v0153*
 ID_VENDOR_FROM_DATABASE=ROL Ergo

bluetooth:v0154*
 ID_VENDOR_FROM_DATABASE=Pebble Technology

bluetooth:v0155*
 ID_VENDOR_FROM_DATABASE=NETATMO

bluetooth:v0156*
 ID_VENDOR_FROM_DATABASE=Accumulate AB

bluetooth:v0157*
 ID_VENDOR_FROM_DATABASE=Anhui Huami Information Technology Co., Ltd.

bluetooth:v0158*
 ID_VENDOR_FROM_DATABASE=Inmite s.r.o.

bluetooth:v0159*
 ID_VENDOR_FROM_DATABASE=ChefSteps, Inc.

bluetooth:v015A*
 ID_VENDOR_FROM_DATABASE=micas AG

bluetooth:v015B*
 ID_VENDOR_FROM_DATABASE=Biomedical Research Ltd.

bluetooth:v015C*
 ID_VENDOR_FROM_DATABASE=Pitius Tec S.L.

bluetooth:v015D*
 ID_VENDOR_FROM_DATABASE=Estimote, Inc.

bluetooth:v015E*
 ID_VENDOR_FROM_DATABASE=Unikey Technologies, Inc.

bluetooth:v015F*
 ID_VENDOR_FROM_DATABASE=Timer Cap Co.

bluetooth:v0160*
 ID_VENDOR_FROM_DATABASE=AwoX

bluetooth:v0161*
 ID_VENDOR_FROM_DATABASE=yikes

bluetooth:v0162*
 ID_VENDOR_FROM_DATABASE=MADSGlobal NZ Ltd.

bluetooth:v0163*
 ID_VENDOR_FROM_DATABASE=PCH International

bluetooth:v0164*
 ID_VENDOR_FROM_DATABASE=Qingdao Yeelink Information Technology Co., Ltd.

bluetooth:v0165*
 ID_VENDOR_FROM_DATABASE=Milwaukee Tool (formerly Milwaukee Electric Tools)

bluetooth:v0166*
 ID_VENDOR_FROM_DATABASE=MISHIK Pte Ltd

bluetooth:v0167*
 ID_VENDOR_FROM_DATABASE=Bayer HealthCare

bluetooth:v0168*
 ID_VENDOR_FROM_DATABASE=Spicebox LLC

bluetooth:v0169*
 ID_VENDOR_FROM_DATABASE=emberlight

bluetooth:v016A*
 ID_VENDOR_FROM_DATABASE=Cooper-Atkins Corporation

bluetooth:v016B*
 ID_VENDOR_FROM_DATABASE=Qblinks

bluetooth:v016C*
 ID_VENDOR_FROM_DATABASE=MYSPHERA

bluetooth:v016D*
 ID_VENDOR_FROM_DATABASE=LifeScan Inc

bluetooth:v016E*
 ID_VENDOR_FROM_DATABASE=Volantic AB

bluetooth:v016F*
 ID_VENDOR_FROM_DATABASE=Podo Labs, Inc

bluetooth:v0170*
 ID_VENDOR_FROM_DATABASE=Roche Diabetes Care AG

bluetooth:v0171*
 ID_VENDOR_FROM_DATABASE=Amazon Fulfillment Service

bluetooth:v0172*
 ID_VENDOR_FROM_DATABASE=Connovate Technology Private Limited

bluetooth:v0173*
 ID_VENDOR_FROM_DATABASE=Kocomojo, LLC

bluetooth:v0174*
 ID_VENDOR_FROM_DATABASE=Everykey LLC

bluetooth:v0175*
 ID_VENDOR_FROM_DATABASE=Dynamic Controls

bluetooth:v0176*
 ID_VENDOR_FROM_DATABASE=SentriLock

bluetooth:v0177*
 ID_VENDOR_FROM_DATABASE=I-SYST inc.

bluetooth:v0178*
 ID_VENDOR_FROM_DATABASE=CASIO COMPUTER CO., LTD.

bluetooth:v0179*
 ID_VENDOR_FROM_DATABASE=LAPIS Semiconductor Co., Ltd.

bluetooth:v017A*
 ID_VENDOR_FROM_DATABASE=Telemonitor, Inc.

bluetooth:v017B*
 ID_VENDOR_FROM_DATABASE=taskit GmbH

bluetooth:v017C*
 ID_VENDOR_FROM_DATABASE=Daimler AG

bluetooth:v017D*
 ID_VENDOR_FROM_DATABASE=BatAndCat

bluetooth:v017E*
 ID_VENDOR_FROM_DATABASE=BluDotz Ltd

bluetooth:v017F*
 ID_VENDOR_FROM_DATABASE=XTel ApS

bluetooth:v0180*
 ID_VENDOR_FROM_DATABASE=Gigaset Communications GmbH

bluetooth:v0181*
 ID_VENDOR_FROM_DATABASE=Gecko Health Innovations, Inc.

bluetooth:v0182*
 ID_VENDOR_FROM_DATABASE=HOP Ubiquitous

bluetooth:v0183*
 ID_VENDOR_FROM_DATABASE=To Be Assigned

bluetooth:v0184*
 ID_VENDOR_FROM_DATABASE=Nectar

bluetooth:v0185*
 ID_VENDOR_FROM_DATABASE=bel'apps LLC

bluetooth:v0186*
 ID_VENDOR_FROM_DATABASE=CORE Lighting Ltd

bluetooth:v0187*
 ID_VENDOR_FROM_DATABASE=Seraphim Sense Ltd

bluetooth:v0188*
 ID_VENDOR_FROM_DATABASE=Unico RBC

bluetooth:v0189*
 ID_VENDOR_FROM_DATABASE=Physical Enterprises Inc.

bluetooth:v018A*
 ID_VENDOR_FROM_DATABASE=Able Trend Technology Limited

bluetooth:v018B*
 ID_VENDOR_FROM_DATABASE=Konica Minolta, Inc.

bluetooth:v018C*
 ID_VENDOR_FROM_DATABASE=Wilo SE

bluetooth:v018D*
 ID_VENDOR_FROM_DATABASE=Extron Design Services

bluetooth:v018E*
 ID_VENDOR_FROM_DATABASE=Fitbit, Inc.

bluetooth:v018F*
 ID_VENDOR_FROM_DATABASE=Fireflies Systems

bluetooth:v0190*
 ID_VENDOR_FROM_DATABASE=Intelletto Technologies Inc.

bluetooth:v0191*
 ID_VENDOR_FROM_DATABASE=FDK CORPORATION

bluetooth:v0192*
 ID_VENDOR_FROM_DATABASE=Cloudleaf, Inc

bluetooth:v0193*
 ID_VENDOR_FROM_DATABASE=Maveric Automation LLC

bluetooth:v0194*
 ID_VENDOR_FROM_DATABASE=Acoustic Stream Corporation

bluetooth:v0195*
 ID_VENDOR_FROM_DATABASE=Zuli

bluetooth:v0196*
 ID_VENDOR_FROM_DATABASE=Paxton Access Ltd

bluetooth:v0197*
 ID_VENDOR_FROM_DATABASE=WiSilica Inc

bluetooth:v0198*
 ID_VENDOR_FROM_DATABASE=Vengit Limited

bluetooth:v0199*
 ID_VENDOR_FROM_DATABASE=SALTO SYSTEMS S.L.

bluetooth:v019A*
 ID_VENDOR_FROM_DATABASE=T-Engine Forum

bluetooth:v019B*
 ID_VENDOR_FROM_DATABASE=CUBETECH s.r.o.

bluetooth:v019C*
 ID_VENDOR_FROM_DATABASE=Cokiya Incorporated

bluetooth:v019D*
 ID_VENDOR_FROM_DATABASE=CVS Health

bluetooth:v019E*
 ID_VENDOR_FROM_DATABASE=Ceruus

bluetooth:v019F*
 ID_VENDOR_FROM_DATABASE=Strainstall Ltd

bluetooth:v01A0*
 ID_VENDOR_FROM_DATABASE=Channel Enterprises (HK) Ltd.

bluetooth:v01A1*
 ID_VENDOR_FROM_DATABASE=FIAMM

bluetooth:v01A2*
 ID_VENDOR_FROM_DATABASE=GIGALANE.CO.,LTD

bluetooth:v01A3*
 ID_VENDOR_FROM_DATABASE=EROAD

bluetooth:v01A4*
 ID_VENDOR_FROM_DATABASE=Mine Safety Appliances

bluetooth:v01A5*
 ID_VENDOR_FROM_DATABASE=Icon Health and Fitness

bluetooth:v01A6*
 ID_VENDOR_FROM_DATABASE=Asandoo GmbH

bluetooth:v01A7*
 ID_VENDOR_FROM_DATABASE=ENERGOUS CORPORATION

bluetooth:v01A8*
 ID_VENDOR_FROM_DATABASE=Taobao

bluetooth:v01A9*
 ID_VENDOR_FROM_DATABASE=Canon Inc.

bluetooth:v01AA*
 ID_VENDOR_FROM_DATABASE=Geophysical Technology Inc.

bluetooth:v01AB*
 ID_VENDOR_FROM_DATABASE=Facebook, Inc.

bluetooth:v01AC*
 ID_VENDOR_FROM_DATABASE=Nipro Diagnostics, Inc.

bluetooth:v01AD*
 ID_VENDOR_FROM_DATABASE=FlightSafety International

bluetooth:v01AE*
 ID_VENDOR_FROM_DATABASE=Earlens Corporation

bluetooth:v01AF*
 ID_VENDOR_FROM_DATABASE=Sunrise Micro Devices, Inc.

bluetooth:v01B0*
 ID_VENDOR_FROM_DATABASE=Star Micronics Co., Ltd.

bluetooth:v01B1*
 ID_VENDOR_FROM_DATABASE=Netizens Sp. z o.o.

bluetooth:v01B2*
 ID_VENDOR_FROM_DATABASE=Nymi Inc.

bluetooth:v01B3*
 ID_VENDOR_FROM_DATABASE=Nytec, Inc.

bluetooth:v01B4*
 ID_VENDOR_FROM_DATABASE=Trineo Sp. z o.o.

bluetooth:v01B5*
 ID_VENDOR_FROM_DATABASE=Nest Labs Inc.

bluetooth:v01B6*
 ID_VENDOR_FROM_DATABASE=LM Technologies Ltd

bluetooth:v01B7*
 ID_VENDOR_FROM_DATABASE=General Electric Company

bluetooth:v01B8*
 ID_VENDOR_FROM_DATABASE=i+D3 S.L.

bluetooth:v01B9*
 ID_VENDOR_FROM_DATABASE=HANA Micron

bluetooth:v01BA*
 ID_VENDOR_FROM_DATABASE=Stages Cycling LLC

bluetooth:v01BB*
 ID_VENDOR_FROM_DATABASE=Cochlear Bone Anchored Solutions AB

bluetooth:v01BC*
 ID_VENDOR_FROM_DATABASE=SenionLab AB

bluetooth:v01BD*
 ID_VENDOR_FROM_DATABASE=Syszone Co., Ltd

bluetooth:v01BE*
 ID_VENDOR_FROM_DATABASE=Pulsate Mobile Ltd.

bluetooth:v01BF*
 ID_VENDOR_FROM_DATABASE=Hong Kong HunterSun Electronic Limited

bluetooth:v01C0*
 ID_VENDOR_FROM_DATABASE=pironex GmbH

bluetooth:v01C1*
 ID_VENDOR_FROM_DATABASE=BRADATECH Corp.

bluetooth:v01C2*
 ID_VENDOR_FROM_DATABASE=Transenergooil AG

bluetooth:v01C3*
 ID_VENDOR_FROM_DATABASE=Bunch

bluetooth:v01C4*
 ID_VENDOR_FROM_DATABASE=DME Microelectronics

bluetooth:v01C5*
 ID_VENDOR_FROM_DATABASE=Bitcraze AB

bluetooth:v01C6*
 ID_VENDOR_FROM_DATABASE=HASWARE Inc.

bluetooth:v01C7*
 ID_VENDOR_FROM_DATABASE=Abiogenix Inc.

bluetooth:v01C8*
 ID_VENDOR_FROM_DATABASE=Poly-Control ApS

bluetooth:v01C9*
 ID_VENDOR_FROM_DATABASE=Avi-on

bluetooth:v01CA*
 ID_VENDOR_FROM_DATABASE=Laerdal Medical AS

bluetooth:v01CB*
 ID_VENDOR_FROM_DATABASE=Fetch My Pet

bluetooth:v01CC*
 ID_VENDOR_FROM_DATABASE=Sam Labs Ltd.

bluetooth:v01CD*
 ID_VENDOR_FROM_DATABASE=Chengdu Synwing Technology Ltd

bluetooth:v01CE*
 ID_VENDOR_FROM_DATABASE=HOUWA SYSTEM DESIGN, k.k.

bluetooth:v01CF*
 ID_VENDOR_FROM_DATABASE=BSH

bluetooth:v01D0*
 ID_VENDOR_FROM_DATABASE=Primus Inter Pares Ltd

bluetooth:v01D1*
 ID_VENDOR_FROM_DATABASE=August

bluetooth:v01D2*
 ID_VENDOR_FROM_DATABASE=Gill Electronics

bluetooth:v01D3*
 ID_VENDOR_FROM_DATABASE=Sky Wave Design

bluetooth:v01D4*
 ID_VENDOR_FROM_DATABASE=Newlab S.r.l.

bluetooth:v01D5*
 ID_VENDOR_FROM_DATABASE=ELAD srl

bluetooth:v01D6*
 ID_VENDOR_FROM_DATABASE=G-wearables inc.

bluetooth:v01D7*
 ID_VENDOR_FROM_DATABASE=Squadrone Systems Inc.

bluetooth:v01D8*
 ID_VENDOR_FROM_DATABASE=Code Corporation

bluetooth:v01D9*
 ID_VENDOR_FROM_DATABASE=Savant Systems LLC

bluetooth:v01DA*
 ID_VENDOR_FROM_DATABASE=Logitech International SA

bluetooth:v01DB*
 ID_VENDOR_FROM_DATABASE=Innblue Consulting

bluetooth:v01DC*
 ID_VENDOR_FROM_DATABASE=iParking Ltd.

bluetooth:v01DD*
 ID_VENDOR_FROM_DATABASE=Koninklijke Philips Electronics N.V.

bluetooth:v01DE*
 ID_VENDOR_FROM_DATABASE=Minelab Electronics Pty Limited

bluetooth:v01DF*
 ID_VENDOR_FROM_DATABASE=Bison Group Ltd.

bluetooth:v01E0*
 ID_VENDOR_FROM_DATABASE=Widex A/S

bluetooth:v01E1*
 ID_VENDOR_FROM_DATABASE=Jolla Ltd

bluetooth:v01E2*
 ID_VENDOR_FROM_DATABASE=Lectronix, Inc.

bluetooth:v01E3*
 ID_VENDOR_FROM_DATABASE=Caterpillar Inc

bluetooth:v01E4*
 ID_VENDOR_FROM_DATABASE=Freedom Innovations

bluetooth:v01E5*
 ID_VENDOR_FROM_DATABASE=Dynamic Devices Ltd

bluetooth:v01E6*
 ID_VENDOR_FROM_DATABASE=Technology Solutions (UK) Ltd

bluetooth:v01E7*
 ID_VENDOR_FROM_DATABASE=IPS Group Inc.

bluetooth:v01E8*
 ID_VENDOR_FROM_DATABASE=STIR