unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
blob 33936c52a106ccc47be1a2a3d59e6075d03add3c 131275 bytes (raw)
name: packages/bluetooth/bluetooth.el 	 # note: path name is non-authoritative(*)

   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
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
 
;;; bluetooth.el --- A Major mode for Bluetooth devices -*- lexical-binding: t -*-

;; Copyright (C) 2019 Free Software Foundation, Inc.

;; Author: Raffael Stocker <r.stocker@mnet-mail.de>
;; Maintainer: Raffael Stocker <r.stocker@mnet-mail.de>
;; Created: 13 Aug 2019
;; Version: 0.1
;; Package-Requires: ((emacs "25.1"))
;; Keywords: hardware
;; URL: https://elpa.gnu.org/packages/bluetooth

;; This file is part of GNU Emacs

;; GNU Emacs is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or (at
;; your option) any later version.

;; GNU Emacs is distributed in the hope that it will be useful, but
;; WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
;; General Public License for more details.

;; You should have received a copy of the GNU General Public License
;; along with this program.  If not, see <https://www.gnu.org/licenses/>.

;;; Commentary:

;; This package implements basic Bluetooth management functionality, such as
;; connecting and disconnecting devices, setting properties and aliases,
;; putting the adapter in discovery mode and controlling its power supply.
;; It also includes a pairing agent.
;; It uses the Bluez Bluetooth stack on GNU/Linux via the D-Bus interface.
;; Therefore, it requires an Emacs with D-Bus support compiled-in.
;;
;; To use the package, invoke `bluetooth-list-devices'.

;;; Code:

(require 'dbus)
(require 'cl-lib)
(require 'let-alist)
(require 'dash)
(require 'rx)

(defgroup bluetooth nil
  "Bluetooth device management."
  :group 'comm)

(defcustom bluetooth-bluez-bus :system
  "D-Bus bus that Bluez is registered on.
This is usually `:system' if bluetoothd runs as a system service, or
`:session' if it runs as a user service."
  :type '(symbol)
  :group 'bluetooth)

(defgroup bluetooth-faces nil
  "Faces used by Bluetooth mode."
  :group 'faces)

(defface bluetooth-info-heading
  '((t . (:foreground "royal blue" :weight bold)))
  "Face for device info headings."
  :group 'bluetooth-faces)

(defface bluetooth-info-attribute
  '((t . (:slant italic)))
  "Face for device attribute names."
  :group 'bluetooth-faces)

(defconst bluetooth-buffer-name "*Bluetooth*"
  "Name of the buffer in which to list bluetooth devices.")

(defconst bluetooth--mode-name "Bluetooth" "Pretty print mode name.")

(defvar bluetooth--mode-info '(:eval (and (eq major-mode 'bluetooth-mode)
					  (bluetooth--mode-info)))
  "Mode info display.")

(put 'bluetooth--mode-info 'risky-local-variable t)

;;; The state information list defines the kind of adapter state displayed
;;; in the mode-line.  The first element of a sublist is an adapter property,
;;; the second is a list containing first the current status of the item (t/nil),
;;; second the displayed string if the property is non-nil and
;;; third the displayed string if the property is nil.  If a
;;; display element is nil, nothing will be displayed for this property.
(defvar bluetooth--mode-state '(("Powered" . (nil nil "off"))
				("Discoverable" . (nil "discoverable" nil))
				("Pairable" . (nil "pairable" nil))
				("Discovering" . (nil "scan" nil)))
  "Mode line adapter state information.")

;;; Bluez service name as defined by the Bluez API
(defconst bluetooth--service "org.bluez" "D-Bus service name of Bluez.")

;;; Bluez root path as defined by the Bluez API
(defconst bluetooth--root "/org/bluez" "D-Bus path root for Bluez.")

;;; our path name for the pairing agent
(defconst bluetooth--own-path (concat dbus-path-emacs "/bluetooth")
  "D-Bus object path for the pairing agent.")

;;; these two variables hold D-Bus objects to allow clean-up in
;;; the kill-buffer-hook
(defvar bluetooth--method-objects '() "D-Bus method objects.")
(defvar bluetooth--adapter-signal nil "D-Bus adapter signal object.")

(eval-and-compile
  (defconst bluetooth--base-uuid "0000-1000-8000-00805f9b34fb"
    "Bluetooth base UUID."))

(defconst bluetooth--interfaces
  '((:device . "org.bluez.Device1")
    (:adapter . "org.bluez.Adapter1")
    (:agent-manager . "org.bluez.AgentManager1")
    (:agent . "org.bluez.Agent1")
    (:properties . "org.freedesktop.DBus.Properties"))
  "Bluez D-Bus interfaces.")

;;; Default timeout for D-Bus commands
(defvar bluetooth--timeout 5000 "Default timeout for Bluez D-Bus access.")

;;; This variable holds the device information as obtained from D-Bus.
(defvar bluetooth--device-info nil "Device info obtained from Bluez.")

;;; This alist specifies all the commands. The format is as follows:
;;;
;;; command . COMMAND specifies the command name
;;; method . "Method" specifies a D-Bus method "Method"
;;; toggle . "Tprop" specifies a D-Bus property "Tprop" that is toggled
;;; by the command
;;; set . "Prop" specifies a D-Bus property "Prop" that can be set by
;;; the command
;;; query . "Query" specifies a query issued in the minibuffer; this
;;; makes sense only if `set' is also specified
;;; api . [:device|:adapter] specifies the Bluez API to be used
;;; for the D-Bus command
;;; args . ARG-LIST adds ARG-LIST to the D-Bus method invocation; the
;;; ARG-LIST will be spliced and evaluated before the method call
;;;    The following special keywords are interpreted:
;;;    :path-devid replace by full object path
;;;                (e.g. "/org/bluez/hci0/dev_...")
;;; run . (FORM) runs the lisp FORM after the D-Bus command
;;; docstring . "STRING" adds STRING as documentation to the command
(defconst bluetooth--commands
  '(((command . connect) (method . "Connect") (api . :device)
     (docstring . "Connect to the Bluetooth device at point."))
    ((command . disconnect) (method . "Disconnect")
     (api . :device) (docstring . "Disconnect Bluetooth device at point."))
    ((command . toggle-blocked) (toggle . "Blocked")
     (api . :device) (docstring . "Mark Bluetooth device at point blocked."))
    ((command . toggle-trusted) (toggle . "Trusted")
     (api . :device) (docstring . "Mark Bluetooth device at point trusted."))
    ((command . set-alias) (set . "Alias")
     (query . "Alias (empty to reset): ") (api . :device)
     (docstring . "Set alias of Bluetooth device at point."))
    ((command . start-discovery) (method . "StartDiscovery")
     (api . :adapter) (docstring . "Start discovery mode."))
    ((command . stop-discovery) (method . "StopDiscovery")
     (api . :adapter) (docstring . "Stop discovery mode."))
    ((command . toggle-power) (toggle . "Powered")
     (api . :adapter) (docstring . "Toggle power supply of adapter."))
    ((command . pair) (method . "Pair")
     (api . :device) (docstring . "Pair with a device."))
    ((command . toggle-discoverable) (toggle . "Discoverable")
     (api . :adapter) (docstring . "Toggle discoverable mode."))
    ((command . toggle-pairable) (toggle . "Pairable")
     (api . :adapter) (docstring . "Toggle pairable mode.")))
  "Bluetooth command definitions.")

(defvar bluetooth-mode-map
  (let ((map (make-sparse-keymap)))
    (set-keymap-parent map tabulated-list-mode-map)
    (define-key map [?c] #'bluetooth-connect)
    (define-key map [?d] #'bluetooth-disconnect)
    (define-key map [?b] #'bluetooth-toggle-blocked)
    (define-key map [?t] #'bluetooth-toggle-trusted)
    (define-key map [?a] #'bluetooth-set-alias)
    (define-key map [?r] #'bluetooth-start-discovery)
    (define-key map [?R] #'bluetooth-stop-discovery)
    (define-key map [?s] #'bluetooth-toggle-power)
    (define-key map [?P] #'bluetooth-pair)
    (define-key map [?D] #'bluetooth-toggle-discoverable)
    (define-key map [?x] #'bluetooth-toggle-pairable)
    (define-key map [?i] #'bluetooth-show-device-info)
    (define-key map [?k] #'bluetooth-remove-device)
    (define-key map [?<] #'bluetooth-beginning-of-list)
    (define-key map [?>] #'bluetooth-end-of-list)
    map)
  "The Bluetooth mode keymap.")

;;; This function returns a list of bluetooth adapters and devices
;;; in the form
;;; (("hci0"
;;;   ("dev_78_AB_BB_DA_6C_7E" "dev_90_F1_AA_06_24_72")))
;;;
;;; The first element of each (sub-) list is an adapter name, followed
;;; by a list of devices known to this adapter.
(defun bluetooth--get-devices ()
  "Return a list of bluetooth adapters and devices connected to them."
  (mapcar (lambda (a)
	    (list a (dbus-introspect-get-node-names
		     bluetooth-bluez-bus bluetooth--service
		     (concat bluetooth--root "/" a))))
	  (dbus-introspect-get-node-names
	   bluetooth-bluez-bus bluetooth--service bluetooth--root)))

(defun bluetooth--dev-state (key device)
  "Return state information regarding KEY for DEVICE."
  (let ((value (cdr (assoc key (cadr device)))))
    (cond ((stringp value) value)
	  ((null value) "no")
	  (t "yes"))))

;;; This function provides the list entries for the tabulated-list
;;; view.  It is called from `tabulated-list-print'.
(defun bluetooth--list-entries ()
  "Provide the list entries for the tabulated view."
  (setq bluetooth--device-info
	(mapcan
	 (lambda (devlist)
	   (cl-loop for dev in (cadr devlist)
		    for path = (mapconcat #'identity
					  (list bluetooth--root (car devlist) dev)
					  "/")
		    collect (cons dev (list (dbus-get-all-properties
					     bluetooth-bluez-bus
					     bluetooth--service path
					     (alist-get :device
							bluetooth--interfaces))))))
	 (bluetooth--get-devices)))
  (mapcar (lambda (dev)
	    (list (car dev)
		  (cl-map 'vector (lambda (key) (bluetooth--dev-state key dev))
			  (mapcar #'car bluetooth--list-format))))
	  bluetooth--device-info))

(defun bluetooth--update-list ()
  "Update the list view."
  (with-current-buffer bluetooth-buffer-name
    (tabulated-list-print t)
    (hl-line-highlight)))

;;; List format for the main display buffer.
;;; NOTE: the strings MUST correspond to Bluez device properties
;;; as they are used to gather the information from Bluez.
(defconst bluetooth--list-format
  [("Alias" 30 t) ("Paired" 6 t) ("Connected" 9 t) ("Address" 17 t)
   ("Blocked" 7 t) ("Trusted" 7 t)] "The list view format for bluetooth mode.")

(define-derived-mode bluetooth-mode tabulated-list-mode
  bluetooth--mode-name
  "Major mode for managing Bluetooth devices."
  (setq tabulated-list-format bluetooth--list-format
	tabulated-list-entries #'bluetooth--list-entries
	tabulated-list-padding 1
	tabulated-list-sort-key (cons "Alias" nil))
  (tabulated-list-init-header)
  (tabulated-list-print)
  (hl-line-mode))

;;; Build up the index for Imenu.  This function is used as
;;; `imenu-create-index-function'.
(defun bluetooth--create-imenu-index ()
  "Create the Bluetooth device index for Imenu."
  (goto-char (point-min))
  (cl-loop for (pos entry) = (list (point) (tabulated-list-get-entry))
	   while entry
	   do (forward-line 1)
	   collect (cons (elt entry 0) pos)))

(defun bluetooth--call-method (dev-id api function &rest args)
  "For DEV-ID, invoke D-Bus FUNCTION on API, passing ARGS."
  (let ((path (cond ((and (eq :device api)
			  (not (null dev-id)))
		     (concat (bluetooth--dev-state
			      "Adapter"
			      (assoc dev-id bluetooth--device-info))
			     "/" dev-id))
		    ((eq :adapter api)
		     (concat bluetooth--root
			     "/"
			     (caar (bluetooth--get-devices))))
		    (t nil)))
	(interface (alist-get api bluetooth--interfaces)))
    (when path
      (apply function bluetooth-bluez-bus bluetooth--service path interface
	     (mapcar (lambda (x) (if (eq x :path-devid) (concat path "/" dev-id) x))
		     args)))))

;;; The following functions are the workers for the commands.
;;; They are used by `bluetooth--make-commands'.

(defun bluetooth--dbus-method (method api &rest args)
  "Invoke METHOD on D-Bus API with ARGS."
  (let ((dev-id (tabulated-list-get-id)))
    (apply #'bluetooth--call-method dev-id api
	   #'dbus-call-method-asynchronously method
	   #'bluetooth--update-list :timeout bluetooth--timeout args)))

(defun bluetooth--dbus-toggle (property api)
  "Toggle boolean PROPERTY on D-Bus API."
  (let* ((dev-id (tabulated-list-get-id))
	 (value (bluetooth--call-method dev-id api
					#'dbus-get-property property)))
    (bluetooth--call-method dev-id api #'dbus-set-property property
			    (not value))
    (bluetooth--update-list)))

(defun bluetooth--dbus-set (property arg api)
  "Set PROPERTY to ARG on D-Bus API."
  (let ((dev-id (tabulated-list-get-id)))
    (bluetooth--call-method dev-id api #'dbus-set-property property arg)
    (bluetooth--update-list)))

;;; end of worker function definitions

;;; This function generates all the commands.
;;; NOTE: The spaces after the unquotes are necessary for let-alist to expand
;;; the dotted names.
(defun bluetooth--make-commands ()
  "Generate the commands specified in `bluetooth--commands'."
  (dolist (cmd bluetooth--commands)
    (let-alist cmd
      (let ((command (intern (concat "bluetooth-" (symbol-name .command)))))
	(defalias command
	  (cond
	   (.method `(lambda () (interactive)
		       (bluetooth--dbus-method , .method , .api ,@ .args)
		       ,@ .run))
	   (.toggle `(lambda () (interactive)
		       (let ((value (bluetooth--dbus-toggle , .toggle , .api)))
			 ,@ .run)))
	   (.set `(lambda (arg) (interactive ,(concat "M" .query))
		    (bluetooth--dbus-set , .set arg , .api)
		    ,@ .run)))
	  .docstring)))))

(defun bluetooth--initialize-mode-info ()
  "Get the current adapter state and display it.
This function only uses the first adapter reported by Bluez."
  (let* ((adapters (dbus-introspect-get-node-names
		    bluetooth-bluez-bus bluetooth--service bluetooth--root))
	 (resp (dbus-get-all-properties bluetooth-bluez-bus bluetooth--service
					(concat bluetooth--root "/"
						(car adapters))
					(alist-get :adapter
						   bluetooth--interfaces)))
	 (info (mapcar (lambda (elt)
			 (list (car elt) (list (cdr (assoc (car elt) resp)))))
		       bluetooth--mode-state)))
    (bluetooth--handle-prop-change (alist-get :adapter bluetooth--interfaces)
    				   info)))

(defun bluetooth--cleanup ()
  "Clean up when mode buffer is killed."
  (setq mode-line-misc-info
	(cl-remove bluetooth--mode-info mode-line-misc-info))
  ;; This function is registered as a kill-buffer-hook, so we don't
  ;; want any errors to get in the way of killing the buffer
  (ignore-errors
    (dbus-call-method bluetooth-bluez-bus bluetooth--service bluetooth--root
		      (alist-get :agent-manager bluetooth--interfaces)
		      "UnregisterAgent"
		      :object-path bluetooth--own-path)
    (mapc #'dbus-unregister-object bluetooth--method-objects)
    (dbus-unregister-object bluetooth--adapter-signal)))

(defun bluetooth-remove-device ()
  "Remove Bluetooth device at point (unpaires device and host)."
  (interactive)
  (let ((dev-id (tabulated-list-get-id)))
    (when dev-id
      (bluetooth--call-method dev-id
			      :adapter
			      #'dbus-call-method-asynchronously
			      "RemoveDevice"
			      #'bluetooth--update-list
			      :timeout bluetooth--timeout
			      :object-path :path-devid))))

(defun bluetooth-end-of-list ()
  "Move cursor to the last list element."
  (interactive)
  (let ((column (current-column)))
    (goto-char (point-max))
    (forward-line -1)
    (goto-char (+ (point)
		  (- column (current-column))))))

(defun bluetooth-beginning-of-list ()
  "Move cursor to the first list element."
  (interactive)
  (let ((column (current-column)))
    (goto-char (point-min))
    (goto-char (+ (point)
		  (- column (current-column))))))

;;; This function is called from Emacs's mode-line update code
;;; and must not contain any calls to D-Bus functions.
(defun bluetooth--mode-info ()
  "Update the mode info display."
  (let ((info (mapconcat #'identity
			 (-keep (lambda (x) (if (cadr x)
					   (caddr x) (cadddr x)))
				bluetooth--mode-state)
			 ",")))
    (unless (string-blank-p info)
      (concat " [" info "] "))))

;;; This D-Bus signal handler listens to property changes of the
;;; adapter and updates the status display accordingly.
(defun bluetooth--handle-prop-change (interface data &rest _)
  "Handle property change signals on D-Bus INTERFACE as given by DATA.
Only adapter properties are considered."
  (when (string= interface (alist-get :adapter bluetooth--interfaces))
    (dolist (elt data)
      (let ((prop (car elt))
	    (value (caadr elt)))
	(when-let (state (cdr (assoc prop bluetooth--mode-state)))
	  (setcar state value))))))

;;; This function registers a signal handler for the _first_ adapter
;;; reported by Bluez.
(defun bluetooth--register-signal-handler ()
  "Register signal handler for adapter property changes."
  (let ((adapters (dbus-introspect-get-node-names bluetooth-bluez-bus
						  bluetooth--service
						  bluetooth--root)))
    (setq bluetooth--adapter-signal
	  (dbus-register-signal bluetooth-bluez-bus
				nil
				(concat bluetooth--root "/"
					(car adapters))
				(alist-get :properties
					   bluetooth--interfaces)
				"PropertiesChanged"
				#'bluetooth--handle-prop-change
				:arg-namespace
				(alist-get :adapter
					   bluetooth--interfaces)))))

;;;###autoload
(defun bluetooth-list-devices ()
  "Display a list of Bluetooth devices.
This function starts Bluetooth mode which offers an interface
offering device management functions, e.g. pairing, connecting,
scanning the bus, displaying device info etc."
  (interactive)
  ;; make sure D-Bus is (made) available
  (dbus-ping bluetooth-bluez-bus bluetooth--service bluetooth--timeout)
  (with-current-buffer (switch-to-buffer bluetooth-buffer-name)
    (unless (eq major-mode 'bluetooth-mode)
      (erase-buffer)
      (bluetooth-mode)
      (bluetooth--make-commands)
      (bluetooth--register-agent)
      (cl-pushnew bluetooth--mode-info mode-line-misc-info)
      (add-hook 'kill-buffer-hook #'bluetooth--cleanup nil t)
      (setq imenu-create-index-function #'bluetooth--create-imenu-index)
      (bluetooth--initialize-mode-info)
      (bluetooth--register-signal-handler))))

;;; Bluetooth pairing agent code

;;; The release function is not needed at the moment, but needs
;;; to be implemented for the agent API.
(defun bluetooth--release ()
  "Clean up after Bluetooth agent release.")

(defmacro bluetooth--with-alias (device &rest body)
  "Evaluate BODY with DEVICE alias bound to ALIAS."
  (declare (indent defun))
  `(let ((alias (bluetooth--call-method
		 (car (last (split-string ,device "/"))) :device
		 #'dbus-get-property "Alias")))
     ,@body))

(defmacro bluetooth--maybe-cancel-reject (&rest body)
  "Invoke BODY and maybe issue cancel and reject errors.
`org.bluez.Error.Canceled' is issued on `keyboard-quit' and
`org.bluez.Error.Rejected' is issued if BODY evaluates to nil."
  (declare (indent defun))
  `(or (condition-case nil
	   (progn ,@body)
	 (quit (signal 'dbus-error '("org.bluez.Error.Canceled"))))
       (signal 'dbus-error '("org.bluez.Error.Rejected"))))

(defun bluetooth--request-pin-code (device)
  "Request a pin code for DEVICE."
  (bluetooth--maybe-cancel-reject
    (bluetooth--with-alias device
      (save-match-data
	(let* ((pin (read-from-minibuffer
		     (format "Enter Bluetooth PIN for `%s': " alias)))
	       (trimmed-pin (substring pin 0 (min (length pin) 16)))
	       (case-fold-search nil))
	  (cond ((= 0 (length trimmed-pin))
		 (message "PIN has zero length")
		 nil)
		((string-match "[^[:alnum:]]" trimmed-pin)
		 (message "PIN contains non-alphanumeric characters")
		 nil)
		(t trimmed-pin)))))))

(defun bluetooth--display-pin-code (device pincode)
  "Display the PINCODE for DEVICE."
  (bluetooth--with-alias device
    (message "Bluetooth PIN for `%s': %s" alias pincode)
    :ignore))

(defun bluetooth--request-passkey (device)
  "Request passkey for DEVICE."
  (bluetooth--maybe-cancel-reject
    (bluetooth--with-alias device
      (let ((pk (read-from-minibuffer
		 (format "Enter Bluetooth Passkey for `%s': (0..999999) "
			 alias))))
	(min (max (string-to-number pk) 0) 999999)))))

(defun bluetooth--display-passkey (device passkey _)
  "Display PASSKEY for DEVICE, ignoring ENTERED (for now)."
  (bluetooth--with-alias device
    (message "Bluetooth Passkey for `%s': %06d" alias passkey)
    :ignore))

(defun bluetooth--request-confirmation (device passkey)
  "Request user confirmation that DEVICE's PASSKEY is correct."
  (bluetooth--maybe-cancel-reject
    (bluetooth--with-alias device
      (y-or-n-p
       (format "Is Bluetooth Passkey %06d for `%s' correct? " passkey alias))))
  :ignore)

(defun bluetooth--request-authorization (device)
  "Authorize Bluetooth DEVICE."
  (bluetooth--maybe-cancel-reject
    (bluetooth--with-alias device
      (y-or-n-p (format "Authorize Bluetooth device `%s'? " alias))))
  :ignore)

(defun bluetooth--authorize-service (device uuid)
  "Authorize Bluetooth service UUID for DEVICE."
  (bluetooth--maybe-cancel-reject
    (bluetooth--with-alias device
      (let ((p-uuid (bluetooth--parse-service-class-uuid uuid)))
	(y-or-n-p
	 (format "Authorize Bluetooth service `%s' for device `%s'? "
		 p-uuid alias)))))
  :ignore)

;;; This function usually gets called (from D-Bus) while we are
;;; in the minibuffer trying to read a passkey or PIN.  Tha call to
;;; `keyboard-quit' is used to break out of there.
(defun bluetooth--cancel ()
  "Cancel a pairing process."
  (keyboard-quit)
  (message "Pairing canceled"))

;;; This procedure registers the pairing agent.
(defun bluetooth--register-agent ()
  "Register as a pairing agent."
  (save-match-data
    (let ((methods '("Release" "RequestPinCode" "DisplayPinCode"
		     "RequestPasskey" "DisplayPasskey" "RequestConfirmation"
		     "RequestAuthorization" "AuthorizeService" "Cancel")))
      (setq bluetooth--method-objects
	    (cl-loop for method in methods
		     with case-fold-search = nil
		     for fname = (concat "bluetooth-"
					 (replace-regexp-in-string
					  "[A-Z][a-z]+"
					  (lambda (x) (concat "-" (downcase x)))
					  method t))
		     collect (dbus-register-method bluetooth-bluez-bus
						   dbus-service-emacs
						   bluetooth--own-path
						   (alist-get
						    :agent
						    bluetooth--interfaces)
						   method (intern fname) t)))))
  (dbus-register-service :session dbus-service-emacs)
  (dbus-call-method bluetooth-bluez-bus bluetooth--service bluetooth--root
		    (alist-get :agent-manager bluetooth--interfaces)
		    "RegisterAgent"
		    :object-path bluetooth--own-path "KeyboardDisplay"))

;;; The following constants define the meaning of the Bluetooth
;;; CLASS property, which is made up of a number of fields.
;;; The following components are used:
;;; NAME (string): a name describing the field type, e.g.
;;;   "service classes"
;;; MASK: the bit mask for the CLASS field
;;; SHIFT: a shift value to be applied before interpreting the
;;;   CLASS field
;;; FN: a function to be invoked on the masked and shifted CLASS
;;;   and DATA
;;; NEXT: the next field in the class property: NEXT can have
;;;   one of three different kinds of values:
;;;   - a field specification (e.g. bluetooth--class-major-dev-classes)
;;;   - a function returning the next field specification when
;;;     invoked with the masked and shifted CLASS and DATA
;;;   - nil, if no further processing of CLASS is necessary
;;; DATA: the data passed to the parsing (FN) or NEXT functions
;;;
;;; The information used in all the following lists has been taken
;;; from the Bluetooth website:
;;; https://www.bluetooth.com/specifications/assigned-numbers/
(defconst bluetooth--class-major-services
  '((name . "major service classes")
    (mask . #xffe000)
    (shift . 0)
    (fn . bluetooth--class-parse-bitfield)
    (next . bluetooth--class-major-dev-classes)
    (data . ((13 . "Limited Discoverable Mode")
	     (14 . "(reserved)")
	     (15 . "(reserved)")
	     (16 . "Positioning")
	     (17 . "Networking")
	     (18 . "Rendering")
	     (19 . "Capturing")
	     (20 . "Object Transfer")
	     (21 . "Audio")
	     (22 . "Telephony")
	     (23 . "Information"))))
  "Bluetooth major service classes.")

(defconst bluetooth--class-major-dev-classes
  '((name . "major device class")
    (mask . #x1f00)
    (shift . -8)
    (fn . bluetooth--class-parse-major)
    (next . bluetooth--class-get-minor)
    (data . ((#x0 . ("Miscellaneous" . nil))
	     (#x1 . ("Computer" . bluetooth--class-computer-minor-classes))
	     (#x2 . ("Phone" . bluetooth--class-phone-minor-classes))
	     (#x3 . ("LAN /Network Access point" .
		     bluetooth--class-network-minor-classes))
	     (#x4 . ("Audio/Video" . bluetooth--class-av-minor-classes))
	     (#x5 . ("Peripheral" . bluetooth--class-peripheral-minor-classes))
	     (#x6 . ("Imaging" . bluetooth--class-imaging-minor-classes))
	     (#x7 . ("Wearable" . bluetooth--class-wearable-minor-classes))
	     (#x8 . ("Toy" . bluetooth--class-toy-minor-classes))
	     (#x9 . ("Health" . bluetooth--class-health-minor-classes))
	     (#xf . ("Unspecified" . nil)))))
  "Bluetooth major device classes.")

(defconst bluetooth--class-computer-minor-classes
  '((name . "minor device class")
    (mask . #xfc)
    (shift . -2)
    (fn . bluetooth--class-parse-value)
    (next . nil)
    (data . ((#x0 . "Uncategorized")
	     (#x1 . "Desktop workstation")
	     (#x2 . "Server-class computer")
	     (#x3 . "Laptop")
	     (#x4 . "Handheld PC/PDA (clamshell)")
	     (#x5 . "Palm-size PC/PDA")
	     (#x6 . "Wearable computer (watch size)")
	     (#x7 . "Tablet"))))
  "Bluetooth computer minor classes.")

(defconst bluetooth--class-phone-minor-classes
  '((name . "minor device class")
    (mask . #xfc)
    (shift . -2)
    (fn . bluetooth--class-parse-value)
    (next . nil)
    (data . ((#x0 . "Uncategorized, code for device not assigned")
	     (#x1 . "Cellular")
	     (#x2 . "Cordless")
	     (#x3 . "Smartphone")
	     (#x4 . "Wired modem or voice gateway")
	     (#x5 . "Common ISDN access"))))
  "Bluetooth phone minor classes.")

(defconst bluetooth--class-network-minor-classes
  '((name . "minor device class")
    (mask . #xe0)
    (shift . -5)
    (fn . bluetooth--class-parse-value)
    (next . nil)
    (data . ((#x0 . "Fully available")
	     (#x1 . "1% to 17% utilized")
	     (#x2 . "17% to 33% utilized")
	     (#x3 . "33% to 50% utilized")
	     (#x4 . "50% to 67% utilized")
	     (#x5 . "67% to 83% utilized")
	     (#x6 . "83% to 99% utilized")
	     (#x7 . "No service available"))))
  "Bluetooth LAN/network minor classes.")

(defconst bluetooth--class-av-minor-classes
  '((name . "minor device class")
    (mask . #xfc)
    (shift . -2)
    (fn . bluetooth--class-parse-value)
    (next . nil)
    (data . ((#x0 . "Uncategorized")
	     (#x1 . "Wearable Headset Device")
	     (#x2 . "Hands-free Device")
	     (#x3 . "(Reserved)")
	     (#x4 . "Microphone")
	     (#x5 . "Loudspeaker")
	     (#x6 . "Headphones")
	     (#x7 . "Portable Audio")
	     (#x8 . "Car audio")
	     (#x9 . "Set-top box")
	     (#xa . "HiFi Audio Device")
	     (#xb . "VCR")
	     (#xc . "Video Camera")
	     (#xd . "Camcorder")
	     (#xe . "Video Monitor")
	     (#xf . "Video Display and Loudspeaker")
	     (#x10 . "Video Conferencing")
	     (#x11 . "(Reserved)")
	     (#x12 . "Gaming/Toy"))))
  "Bluetooth audio/video minor classes.")

(defconst bluetooth--class-peripheral-minor-classes
  '((name . "minor device class")
    (mask . #xfc)
    (shift . -2)
    (fn . bluetooth--class-parse-peripheral)
    (next . nil)
    (data . ((#x30 . ((#x00 . "Not Keyboard / Not Pointing Device")
		      (#x10 . "Keyboard")
		      (#x20 . "Pointing device")
		      (#x30 . "Combo keyboard/pointing device")))
	     (#xf . ((#x0 . "Uncategorized device")
		     (#x1 . "Joystick")
		     (#x2 . "Gamepad")
		     (#x3 . "Remote control")
		     (#x4 . "Sensing device")
		     (#x5 . "Digitizer tablet")
		     (#x6 . "Card Reader")
		     (#x7 . "Digital Pen")
		     (#x8 . "Handheld scanner")
		     (#x9 . "Handheld gestural input device"))))))
  "Bluetooth peripheral minor classes.")

(defconst bluetooth--class-imaging-minor-classes
  '((name . "minor device class")
    (mask . #xf0)
    (shift . 0)
    (fn . bluetooth--class-parse-bitfield)
    (next . nil)
    (data . ((4 . "Display")
	     (5 . "Camera")
	     (6 . "Scanner")
	     (7 . "Printer"))))
  "Bluetooth imaging minor class bits (inclusive).")

(defconst bluetooth--class-wearable-minor-classes
  '((name . "minor device class")
    (mask . #xfc)
    (shift . -2)
    (fn . bluetooth--class-parse-value)
    (next . nil)
    (data . ((#x1 . "Wristwatch")
	     (#x2 . "Pager")
	     (#x3 . "Jacket")
	     (#x4 . "Helmet")
	     (#x5 . "Glasses"))))
  "Bluetooth wearable minor classes.")

(defconst bluetooth--class-toy-minor-classes
  '((name . "minor device class")
    (mask . #xfc)
    (shift . -2)
    (fn . bluetooth--class-parse-value)
    (next . nil)
    (data . ((#x1 . "Robot")
	     (#x2 . "Vehicle")
	     (#x3 . "Doll / Action figure")
	     (#x4 . "Controller")
	     (#x5 . "Game"))))
  "Bluetooth toy minor classes.")

(defconst bluetooth--class-health-minor-classes
  '((name . "minor device class")
    (mask . #xfc)
    (shift . -2)
    (fn . bluetooth--class-parse-value)
    (next . nil)
    (data . ((#x0 . "Undefined")
	     (#x1 . "Blood Pressure Monitor")
	     (#x2 . "Thermometer")
	     (#x3 . "Weighing Scale")
	     (#x4 . "Glucose Meter")
	     (#x5 . "Pulse Oximeter")
	     (#x6 . "Heart/Pulse Rate Monitor")
	     (#x7 . "Health Data Display")
	     (#x8 . "Step Counter")
	     (#x9 . "Body Composition Analyzer")
	     (#xa . "Peak Flow Monitor")
	     (#xb . "Medication Monitor")
	     (#xc . "Knee Prosthesis")
	     (#xd . "Ankle Prosthesis")
	     (#xe . "Generic Health Manager")
	     (#xf . "Personal Mobility Device"))))
  "Bluetooth health minor classes.")

(defconst bluetooth--uuid-alists
  '((#xfff0 . bluetooth--sdo-uuid-alist)
    (#xfd00 . bluetooth--member-uuid-alist)
    (#x1800 . bluetooth--gatt-service-uuid-alist)
    (#x0 . bluetooth--service-class-uuid-alist))
  "Bluetooth UUID alists sorted by beginning of range.")

(defconst bluetooth--service-class-uuid-alist
  #s(hash-table
     size 50 data
     (#x1000
      ("ServiceDiscoveryServerServiceClassID"
       "Bluetooth Core Specification")
      #x1001 ("BrowseGroupDescriptorServiceClassID"
	      "Bluetooth Core Specification")
      #x1101 ("SerialPort" "Serial Port Profile (SPP)")
      #x1102 ("LANAccessUsingPPP" "LAN Access Profile")
      #x1103 ("DialupNetworking" "Dial-up Networking Profile (DUN)")
      #x1104 ("IrMCSync" "Synchronization Profile (SYNC)")
      #x1105 ("OBEXObjectPush" "Object Push Profile (OPP)")
      #x1106 ("OBEXFileTransfer" "File Transfer Profile (FTP)")
      #x1107 ("IrMCSyncCommand" "Synchronization Profile (SYNC)")
      #x1108 ("Headset" "Headset Profile (HSP)")
      #x1109 ("CordlessTelephony" "Cordless Telephony Profile (CTP)")
      #x110A ("AudioSource" "Advanced Audio Distribution Profile (A2DP)")
      #x110B ("AudioSink" "Advanced Audio Distribution Profile (A2DP)")
      #x110C ("A/V_RemoteControlTarget"
	      "Audio/Video Remote Control Profile (AVRCP)")
      #x110D ("AdvancedAudioDistribution"
	      "Advanced Audio Distribution Profile (A2DP)")
      #x110E ("A/V_RemoteControl"
	      "Audio/Video Remote Control Profile (AVRCP)")
      #x110F ("A/V_RemoteControlController"
	      "Audio/Video Remote Control Profile (AVRCP)")
      #x1110 ("Intercom" "Intercom Profile (ICP)")
      #x1111 ("Fax" "Fax Profile (FAX)")
      #x1112 ("Headset - Audio Gateway (AG)" "Headset Profile (HSP)")
      #x1113 ("WAP" (concat "Interoperability Requirements for Bluetooth"
			    " technology as a WAP, Bluetooth SIG"))
      #x1114 ("WAP_CLIENT"
	      (concat "Interoperability Requirements for"
		      " Bluetooth technology as a WAP, Bluetooth SIG"))
      #x1115 ("PANU" "Personal Area Networking Profile (PAN)")
      #x1116 ("NAP" "Personal Area Networking Profile (PAN)")
      #x1117 ("GN" "Personal Area Networking Profile (PAN)")
      #x1118 ("DirectPrinting" "Basic Printing Profile (BPP)")
      #x1119 ("ReferencePrinting" "See Basic Printing Profile (BPP)")
      #x111A ("Basic Imaging Profile" "Basic Imaging Profile (BIP)")
      #x111B ("ImagingResponder" "Basic Imaging Profile (BIP)")
      #x111C ("ImagingAutomaticArchive" "Basic Imaging Profile (BIP)")
      #x111D ("ImagingReferencedObjects" "Basic Imaging Profile (BIP)")
      #x111E ("Handsfree" "Hands-Free Profile (HFP)")
      #x111F ("HandsfreeAudioGateway" "Hands-free Profile (HFP)")
      #x1120 ("DirectPrintingReferenceObjectsService"
	      "Basic Printing Profile (BPP)")
      #x1121 ("ReflectedUI" "Basic Printing Profile (BPP)")
      #x1122 ("BasicPrinting" "Basic Printing Profile (BPP)")
      #x1123 ("PrintingStatus" "Basic Printing Profile (BPP)")
      #x1124 ("HumanInterfaceDeviceService" "Human Interface Device (HID)")
      #x1125 ("HardcopyCableReplacement"
	      "Hardcopy Cable Replacement Profile (HCRP)")
      #x1126 ("HCR_Print" "Hardcopy Cable Replacement Profile (HCRP)")
      #x1127 ("HCR_Scan" "Hardcopy Cable Replacement Profile (HCRP)")
      #x1128 ("Common_ISDN_Access" "Common ISDN Access Profile (CIP)")
      #x112D ("SIM_Access" "SIM Access Profile (SAP)")
      #x112E ("Phonebook Access - PCE" "Phonebook Access Profile (PBAP)")
      #x112F ("Phonebook Access - PSE" "Phonebook Access Profile (PBAP)")
      #x1130 ("Phonebook Access" "Phonebook Access Profile (PBAP)")
      #x1131 ("Headset - HS" "Headset Profile (HSP)")
      #x1132 ("Message Access Server" "Message Access Profile (MAP)")
      #x1133 ("Message Notification Server" "Message Access Profile (MAP)")
      #x1134 ("Message Access Profile" "Message Access Profile (MAP)")
      #x1135 ("GNSS" "Global Navigation Satellite System Profile (GNSS)")
      #x1136 ("GNSS_Server"
	      "Global Navigation Satellite System Profile (GNSS)")
      #x1137 ("​3D Display" "​3D Synchronization Profile (3DSP)")#x1138 ("​3D Glasses" "​3D Synchronization Profile (3DSP)")
      #x1139 ("​3D Synchronization" "​3D Synchronization Profile (3DSP)")#x113A ("​MPS Profile UUID" "​Multi-Profile Specification (MPS)")#x113B ("​MPS SC UUID" "​Multi-Profile Specification (MPS)")#x113C ("​CTN Access Service​"
	      "​Calendar, Task, and Notes (CTN) Profile")#x113D ("​CTN Notification Service​"
	      "​​Calendar Tasks and Notes (CTN) Profile")#x113E ("​CTN Profile" "​​Calendar Tasks and Notes (CTN) Profile")
      #x1200 ("PnPInformation" "Device Identification (DID)")
      #x1201 ("GenericNetworking" "N/A")
      #x1202 ("GenericFileTransfer" "N/A")
      #x1203 ("GenericAudio" "N/A")
      #x1204 ("GenericTelephony" "N/A")
      #x1205 ("UPNP_Service" "Enhanced Service Discovery Profile (ESDP)")
      #x1206 ("UPNP_IP_Service" "Enhanced Service Discovery Profile (ESDP)")
      #x1300 ("ESDP_UPNP_IP_PAN" "Enhanced Service Discovery Profile (ESDP)")
      #x1301 ("ESDP_UPNP_IP_LAP" "Enhanced Service Discovery Profile (ESDP)")
      #x1302 ("ESDP_UPNP_L2CAP" "Enhanced Service Discovery Profile (ESDP)")
      #x1303 ("VideoSource" "Video Distribution Profile (VDP)")
      #x1304 ("VideoSink" "Video Distribution Profile (VDP)")
      #x1305 ("VideoDistribution" "Video Distribution Profile (VDP)")
      #x1400 ("HDP" "Health Device Profile")
      #x1401 ("HDP Source" "Health Device Profile (HDP)")
      #x1402 ("HDP Sink" "Health Device Profile (HDP)")))
  "Bluetooth service class UUIDs.")

(defconst bluetooth--gatt-service-uuid-alist
  #s(hash-table
     size 20 data
     (#x1800
      ("Generic Access" "org.bluetooth.service.generic_access" "GSS")
      #x1811 ("Alert Notification Service"
	      "org.bluetooth.service.alert_notification" "GSS")
      #x1815 ("Automation IO" "org.bluetooth.service.automation_io" "GSS")
      #x180F ("Battery Service" "org.bluetooth.service.battery_service"
	      "GSS")
      #x183B ("Binary Sensor" "GATT Service UUID" "BSS")
      #x1810 ("Blood Pressure" "org.bluetooth.service.blood_pressure" "GSS")
      #x181B ("Body Composition" "org.bluetooth.service.body_composition"
	      "GSS")
      #x181E ("Bond Management Service"
	      "org.bluetooth.service.bond_management" "GSS")
      #x181F ("Continuous Glucose Monitoring"
	      "org.bluetooth.service.continuous_glucose_monitoring" "GSS")
      #x1805 ("Current Time Service" "org.bluetooth.service.current_time"
	      "GSS")
      #x1818 ("Cycling Power" "org.bluetooth.service.cycling_power" "GSS")
      #x1816 ("Cycling Speed and Cadence"
	      "org.bluetooth.service.cycling_speed_and_cadence" "GSS")
      #x180A ("Device Information" "org.bluetooth.service.device_information"
	      "GSS")
      #x183C ("Emergency Configuration" "GATT Service UUID" "EMCS")
      #x181A ("Environmental Sensing"
	      "org.bluetooth.service.environmental_sensing" "GSS")
      #x1826 ("Fitness Machine" "org.bluetooth.service.fitness_machine"
	      "GSS")
      #x1801 ("Generic Attribute" "org.bluetooth.service.generic_attribute"
	      "GSS")
      #x1808 ("Glucose" "org.bluetooth.service.glucose" "GSS")
      #x1809 ("Health Thermometer" "org.bluetooth.service.health_thermometer"
	      "GSS")
      #x180D ("Heart Rate" "org.bluetooth.service.heart_rate" "GSS")
      #x1823 ("HTTP Proxy" "org.bluetooth.service.http_proxy" "GSS")
      #x1812 ("Human Interface Device"
	      "org.bluetooth.service.human_interface_device" "GSS")
      #x1802 ("Immediate Alert" "org.bluetooth.service.immediate_alert"
	      "GSS")
      #x1821 ("Indoor Positioning" "org.bluetooth.service.indoor_positioning"
	      "GSS")
      #x183A ("Insulin Delivery" "org.bluetooth.service.insulin_delivery"
	      "GSS")
      #x1820 ("Internet Protocol Support Service"
	      "org.bluetooth.service.internet_protocol_support" "GSS")
      #x1803 ("Link Loss" "org.bluetooth.service.link_loss" "GSS")
      #x1819 ("Location and Navigation"
	      "org.bluetooth.service.location_and_navigation" "GSS")
      #x1827 ("Mesh Provisioning Service"
	      "org.bluetooth.service.mesh_provisioning" "GSS")
      #x1828 ("Mesh Proxy Service" "org.bluetooth.service.mesh_proxy" "GSS")
      #x1807 ("Next DST Change Service"
	      "org.bluetooth.service.next_dst_change" "GSS")
      #x1825 ("Object Transfer Service"
	      "org.bluetooth.service.object_transfer" "GSS")
      #x180E ("Phone Alert Status Service"
	      "org.bluetooth.service.phone_alert_status" "GSS")
      #x1822 ("Pulse Oximeter Service" "org.bluetooth.service.pulse_oximeter"
	      "GSS")
      #x1829 ("Reconnection Configuration"
	      "org.bluetooth.service.reconnection_configuration" "GSS")
      #x1806 ("Reference Time Update Service"
	      "org.bluetooth.service.reference_time_update" "GSS")
      #x1814 ("Running Speed and Cadence"
	      "org.bluetooth.service.running_speed_and_cadence" "GSS")
      #x1813 ("Scan Parameters" "org.bluetooth.service.scan_parameters"
	      "GSS")
      #x1824 ("Transport Discovery"
	      "org.bluetooth.service.transport_discovery" "GSS")
      #x1804 ("Tx Power" "org.bluetooth.service.tx_power" "GSS")
      #x181C ("User Data" "org.bluetooth.service.user_data" "GSS")
      #x181D ("Weight Scale" "org.bluetooth.service.weight_scale" "GSS")))
  "Bluetooth GATT service UUIDs.")

(defconst bluetooth--sdo-uuid-alist
  #s(hash-table
     size 5 data
     (#xFFF9
      ("Fast IDentity Online Alliance (FIDO)"
       "FIDO2 secure client-to-authenticator transport")
      #xFFFA ("ASTM International" "ASTM Remote ID")
      #xFFFB ("Thread Group, Inc." "Direct Thread Commissioning")
      #xFFFC ("AirFuel Alliance"
	      "Wireless Power Transfer (WPT) Service")
      #xFFFD ("Fast IDentity Online Alliance"
	      "Universal Second Factor Authenticator Service")
      #xFFFE ("AirFuel Alliance" "Wireless Power Transfer Service")))
  "Bluetooth standards development organizations UUIDS.")

(defconst bluetooth--member-uuid-alist
  #s(hash-table
     size 100 data
     (#xFEFF
      ("GN Netcom")
      #xFEFE ("GN ReSound A/S")
      #xFEFD ("Gimbal, Inc.")
      #xFEFC ("Gimbal, Inc.")
      #xFEFB ("Telit Wireless Solutions (Formerly Stollmann E+V GmbH)")
      #xFEFA ("PayPal, Inc.")
      #xFEF9 ("PayPal, Inc.")
      #xFEF8 ("Aplix Corporation")
      #xFEF7 ("Aplix Corporation")
      #xFEF6 ("Wicentric, Inc.")
      #xFEF5 ("Dialog Semiconductor GmbH")
      #xFEF4 ("Google")
      #xFEF3 ("Google")
      #xFEF2 ("CSR")
      #xFEF1 ("CSR")
      #xFEF0 ("Intel")
      #xFEEF ("Polar Electro Oy ")
      #xFEEE ("Polar Electro Oy ")
      #xFEED ("Tile, Inc.")
      #xFEEC ("Tile, Inc.")
      #xFEEB ("Swirl Networks, Inc.")
      #xFEEA ("Swirl Networks, Inc.")
      #xFEE9 ("Quintic Corp.")
      #xFEE8 ("Quintic Corp.")
      #xFEE7 ("Tencent Holdings Limited.")
      #xFEE6 ("Silvair, Inc.")
      #xFEE5 ("Nordic Semiconductor ASA")
      #xFEE4 ("Nordic Semiconductor ASA")
      #xFEE3 ("Anki, Inc.")
      #xFEE2 ("Anki, Inc.")
      #xFEE1 ("Anhui Huami Information Technology Co., Ltd. ")
      #xFEE0 ("Anhui Huami Information Technology Co., Ltd. ")
      #xFEDF ("Design SHIFT")
      #xFEDE ("Coin, Inc.")
      #xFEDD ("Jawbone")
      #xFEDC ("Jawbone")
      #xFEDB ("Perka, Inc.")
      #xFEDA ("ISSC Technologies Corp. ")
      #xFED9 ("Pebble Technology Corporation")
      #xFED8 ("Google")
      #xFED7 ("Broadcom")
      #xFED6 ("Broadcom")
      #xFED5 ("Plantronics Inc.")
      #xFED4 ("Apple, Inc.")
      #xFED3 ("Apple, Inc.")
      #xFED2 ("Apple, Inc.")
      #xFED1 ("Apple, Inc.")
      #xFED0 ("Apple, Inc.")
      #xFECF ("Apple, Inc.")
      #xFECE ("Apple, Inc.")
      #xFECD ("Apple, Inc.")
      #xFECC ("Apple, Inc.")
      #xFECB ("Apple, Inc.")
      #xFECA ("Apple, Inc.")
      #xFEC9 ("Apple, Inc.")
      #xFEC8 ("Apple, Inc.")
      #xFEC7 ("Apple, Inc.")
      #xFEC6 ("Kocomojo, LLC")
      #xFEC5 ("Realtek Semiconductor Corp.")
      #xFEC4 ("PLUS Location Systems")
      #xFEC3 ("360fly, Inc.")
      #xFEC2 ("Blue Spark Technologies, Inc.")
      #xFEC1 ("KDDI Corporation")
      #xFEC0 ("KDDI Corporation")
      #xFEBF ("Nod, Inc.")
      #xFEBE ("Bose Corporation")
      #xFEBD ("Clover Network, Inc")
      #xFEBC ("Dexcom Inc")
      #xFEBB ("adafruit industries")
      #xFEBA ("Tencent Holdings Limited")
      #xFEB9 ("LG Electronics")
      #xFEB8 ("Facebook, Inc.")
      #xFEB7 ("Facebook, Inc.")
      #xFEB6 ("Vencer Co., Ltd")
      #xFEB5 ("WiSilica Inc.")
      #xFEB4 ("WiSilica Inc.")
      #xFEB3 ("Taobao")
      #xFEB2 ("Microsoft Corporation")
      #xFEB1 ("Electronics Tomorrow Limited")
      #xFEB0 ("Nest Labs Inc")
      #xFEAF ("Nest Labs Inc")
      #xFEAE ("Nokia")
      #xFEAD ("Nokia")
      #xFEAC ("Nokia")
      #xFEAB ("Nokia")
      #xFEAA ("Google")
      #xFEA9 ("Savant Systems LLC")
      #xFEA8 ("Savant Systems LLC")
      #xFEA7 ("UTC Fire and Security")
      #xFEA6 ("GoPro, Inc.")
      #xFEA5 ("GoPro, Inc.")
      #xFEA4 ("Paxton Access Ltd")
      #xFEA3 ("ITT Industries")
      #xFEA2 ("Intrepid Control Systems, Inc.")
      #xFEA1 ("Intrepid Control Systems, Inc.")
      #xFEA0 ("Google")
      #xFE9F ("Google")
      #xFE9E ("Dialog Semiconductor B.V.")
      #xFE9D ("Mobiquity Networks Inc")
      #xFE9C ("GSI Laboratories, Inc.")
      #xFE9B ("Samsara Networks, Inc")
      #xFE9A ("Estimote")
      #xFE99 ("Currant Inc")
      #xFE98 ("Currant Inc")
      #xFE97 ("Tesla Motors Inc.")
      #xFE96 ("Tesla Motors Inc.")
      #xFE95 ("Xiaomi Inc.")
      #xFE94 ("OttoQ In")
      #xFE93 ("OttoQ In")
      #xFE92 ("Jarden Safety & Security")
      #xFE91 ("Shanghai Imilab Technology Co., Ltd")
      #xFE90 ("JUMA")
      #xFE8F ("CSR")
      #xFE8E ("ARM Ltd")
      #xFE8D ("Interaxon Inc.")
      #xFE8C ("TRON Forum")
      #xFE8B ("Apple, Inc.")
      #xFE8A ("Apple, Inc.")
      #xFE89 ("B&O Play A/S")
      #xFE88 ("SALTO SYSTEMS S.L.")
      #xFE87 ("Qingdao Yeelink Information Technology Co., Ltd. ( 青岛亿联客信息技术有限公司 )")
      #xFE86 ("HUAWEI Technologies Co., Ltd. ( 华为技术有限公司 )")
      #xFE85 ("RF Digital Corp")
      #xFE84 ("RF Digital Corp")
      #xFE83 ("Blue Bite")
      #xFE82 ("Medtronic Inc.")
      #xFE81 ("Medtronic Inc.")
      #xFE80 ("Doppler Lab")
      #xFE7F ("Doppler Lab")
      #xFE7E ("Awear Solutions Ltd")
      #xFE7D ("Aterica Health Inc.")
      #xFE7C ("Telit Wireless Solutions (Formerly Stollmann E+V GmbH)")
      #xFE7B ("Orion Labs, Inc.")
      #xFE7A ("Bragi GmbH")
      #xFE79 ("Zebra Technologies")
      #xFE78 ("Hewlett-Packard Company")
      #xFE77 ("Hewlett-Packard Company")
      #xFE76 ("TangoMe")
      #xFE75 ("TangoMe")
      #xFE74 ("unwire")
      #xFE73 ("Abbott (formerly St. Jude Medical, Inc.)")
      #xFE72 ("Abbott (formerly St. Jude Medical, Inc.)")
      #xFE71 ("Plume Design Inc")
      #xFE70 ("Beijing Jingdong Century Trading Co., Ltd.")
      #xFE6F ("LINE Corporation")
      #xFE6E ("The University of Tokyo")
      #xFE6D ("The University of Tokyo")
      #xFE6C ("TASER International, Inc.")
      #xFE6B ("TASER International, Inc.")
      #xFE6A ("Kontakt Micro-Location Sp. z o.o.")
      #xFE69 ("Capsule Technologies Inc.")
      #xFE68 ("Capsule Technologies Inc.")
      #xFE67 ("Lab Sensor Solutions")
      #xFE66 ("Intel Corporation")
      #xFE65 ("CHIPOLO d.o.o.")
      #xFE64 ("Siemens AG")
      #xFE63 ("Connected Yard, Inc.")
      #xFE62 ("Indagem Tech LLC")
      #xFE61 ("Logitech International SA")
      #xFE60 ("Lierda Science & Technology Group Co., Ltd.")
      #xFE5F ("Eyefi, Inc.")
      #xFE5E ("Plastc Corporation")
      #xFE5D ("Grundfos A/S")
      #xFE5C ("million hunters GmbH")
      #xFE5B ("GT-tronics HK Ltd")
      #xFE5A ("Cronologics Corporation")
      #xFE59 ("Nordic Semiconductor ASA")
      #xFE58 ("Nordic Semiconductor ASA")
      #xFE57 ("Dotted Labs")
      #xFE56 ("Google Inc.")
      #xFE55 ("Google Inc.")
      #xFE54 ("Motiv, Inc.")
      #xFE53 ("3M")
      #xFE52 ("SetPoint Medical")
      #xFE51 ("SRAM")
      #xFE50 ("Google Inc.")
      #xFE4F ("Molekule, Inc.")
      #xFE4E ("NTT docomo")
      #xFE4D ("Casambi Technologies Oy")
      #xFE4C ("Volkswagen AG")
      #xFE4B ("Signify Netherlands B.V. (formerly Philips Lighting B.V.)")
      #xFE4A ("OMRON HEALTHCARE Co., Ltd.")
      #xFE49 ("SenionLab AB")
      #xFE48 ("General Motors")
      #xFE47 ("General Motors")
      #xFE46 ("B&O Play A/S")
      #xFE45 ("Snapchat Inc")
      #xFE44 ("SK Telecom")
      #xFE43 ("Andreas Stihl AG & Co. KG")
      #xFE42 ("Nets A/S")
      #xFE41 ("Inugo Systems Limited")
      #xFE40 ("Inugo Systems Limited")
      #xFE3F ("Friday Labs Limited")
      #xFE3E ("BD Medical")
      #xFE3D ("BD Medical")
      #xFE3C ("alibaba")
      #xFE3B ("Dobly Laboratories")
      #xFE3A ("TTS Tooltechnic Systems AG & Co. KG")
      #xFE39 ("TTS Tooltechnic Systems AG & Co. KG")
      #xFE38 ("Spaceek LTD")
      #xFE37 ("Spaceek LTD")
      #xFE36 ("HUAWEI Technologies Co., Ltd")
      #xFE35 ("HUAWEI Technologies Co., Ltd")
      #xFE34 ("SmallLoop LLC")
      #xFE33 ("CHIPOLO d.o.o.")
      #xFE32 ("Pro-Mark, Inc.")
      #xFE31 ("Volkswagen AG")
      #xFE30 ("Volkswagen AG")
      #xFE2F ("CRESCO Wireless, Inc")
      #xFE2E ("ERi,Inc.")
      #xFE2D ("SMART INNOVATION Co., Ltd")
      #xFE2C ("Google")
      #xFE2B ("ITT Industries")
      #xFE2A ("DaisyWorks, Inc.")
      #xFE29 ("Gibson Innovations")
      #xFE28 ("Ayla Networks")
      #xFE27 ("Google")
      #xFE26 ("Google")
      #xFE25 ("Apple, Inc.")
      #xFE24 ("August Home Inc")
      #xFE23 ("Zoll Medical Corporation")
      #xFE22 ("Zoll Medical Corporation")
      #xFE21 ("Bose Corporation")
      #xFE20 ("Emerson")
      #xFE1F ("Garmin International, Inc.")
      #xFE1E ("Smart Innovations Co., Ltd")
      #xFE1D ("Illuminati Instrument Corporation")
      #xFE1C ("NetMedia, Inc.")
      #xFE1B ("Tyto Life LLC")
      #xFE1A ("Tyto Life LLC")
      #xFE19 ("Google, Inc")
      #xFE18 ("Runtime, Inc.")
      #xFE17 ("Telit Wireless Solutions GmbH")
      #xFE16 ("Footmarks, Inc.")
      #xFE15 ("Amazon.com Services, Inc.")
      #xFE14 ("Flextronics International USA Inc.")
      #xFE13 ("Apple Inc.")
      #xFE12 ("M-Way Solutions GmbH")
      #xFE11 ("GMC-I Messtechnik GmbH")
      #xFE10 ("Lapis Semiconductor Co., Ltd.")
      #xFE0F ("Signify Netherlands B.V. (formerly Philips Lighting B.V.)")
      #xFE0E ("Setec Pty Ltd")
      #xFE0D ("Procter & Gamble")
      #xFE0C ("Procter & Gamble")
      #xFE0B ("ruwido austria gmbh")
      #xFE0A ("ruwido austria gmbh")
      #xFE09 ("Pillsy, Inc.")
      #xFE08 ("Microsoft")
      #xFE07 ("Sonos, Inc.")
      #xFE06 ("Qualcomm Technologies, Inc.")
      #xFE05 ("CORE Transport Technologies NZ Limited")
      #xFE04 ("OpenPath Security Inc")
      #xFE03 ("Amazon.com Services, Inc.")
      #xFE02 ("Robert Bosch GmbH")
      #xFE01 ("Duracell U.S. Operations Inc.")
      #xFE00 ("Amazon.com Services, Inc.")
      #xFDFF ("OSRAM GmbH")
      #xFDFE ("ADHERIUM(NZ) LIMITED")
      #xFDFD ("RecursiveSoft Inc.")
      #xFDFC ("Optrel AG")
      #xFDFB ("Tandem Diabetes Care")
      #xFDFA ("Tandem Diabetes Care")
      #xFDF9 ("INIA")
      #xFDF8 ("Onvocal")
      #xFDF7 ("HP Inc.")
      #xFDF6 ("AIAIAI ApS")
      #xFDF5 ("Milwaukee Electric Tools")
      #xFDF4 ("O. E. M. Controls, Inc.")
      #xFDF3 ("Amersports")
      #xFDF2 ("AMICCOM Electronics Corporation")
      #xFDF1 ("LAMPLIGHT Co., Ltd")
      #xFDF0 ("Google Inc.")
      #xFDEF ("ART AND PROGRAM, INC.")
      #xFDEE ("Huawei Technologies Co., Ltd.")
      #xFDED ("Pole Star")
      #xFDEC ("Mannkind Corporation")
      #xFDEB ("Syntronix Corporation")
      #xFDEA ("SeeScan, Inc")
      #xFDE9 ("Spacesaver Corporation")
      #xFDE8 ("Robert Bosch GmbH")
      #xFDE7 ("SECOM Co., LTD")
      #xFDE6 ("Intelletto Technologies Inc")
      #xFDE5 ("SMK Corporation")
      #xFDE4 ("JUUL Labs, Inc.")
      #xFDE3 ("Abbott Diabetes Care")
      #xFDE2 ("Google Inc.")
      #xFDE1 ("Fortin Electronic Systems")
      #xFDE0 ("John Deere")
      #xFDDF ("Harman International")
      #xFDDE ("Noodle Technology Inc.")
      #xFDDD ("Arch Systems Inc")
      #xFDDC ("4iiii Innovations Inc.")
      #xFDDB ("Samsung Electronics Co., Ltd.")
      #xFDDA ("MHCS")
      #xFDD9 ("Jiangsu Teranovo Tech Co., Ltd.")
      #xFDD8 ("Jiangsu Teranovo Tech Co., Ltd.")
      #xFDD7 ("Emerson")
      #xFDD6 ("Ministry of Supply")
      #xFDD5 ("Brompton Bicycle Ltd")
      #xFDD4 ("LX Solutions Pty Limited")
      #xFDD3 ("FUBA Automotive Electronics GmbH")
      #xFDD2 ("Bose Corporation")
      #xFDD1 ("Huawei Technologies Co., Ltd")
      #xFDD0 ("Huawei Technologies Co., Ltd")
      #xFDCF ("Nalu Medical, Inc")
      #xFDCE ("SENNHEISER electronic GmbH & Co. KG")
      #xFDCD ("Qingping Technology (Beijing) Co., Ltd.")
      #xFDCC ("Shoof Technologies")
      #xFDCB ("Meggitt SA")
      #xFDCA ("Fortin Electronic Systems")
      #xFDC9 ("Busch-Jaeger Elektro GmbH")
      #xFDC8 ("Hach – Danaher")
      #xFDC7 ("Eli Lilly and Company")
      #xFDC6 ("Eli Lilly and Company")
      #xFDC5 ("Automatic Labs")
      #xFDC4 ("Simavita (Aust) Pty Ltd")
      #xFDC3 ("Baidu Online Network Technology (Beijing) Co., Ltd")
      #xFDC2 ("Baidu Online Network Technology (Beijing) Co., Ltd")
      #xFDC1 ("Hunter Douglas")
      #xFDC0 ("Hunter Douglas")
      #xFDBF ("California Things Inc.")
      #xFDBE ("California Things Inc.")
      #xFDBD ("Clover Network, Inc.")
      #xFDBC ("Emerson")
      #xFDBB ("Profoto")
      #xFDBA ("Comcast Cable Corporation")
      #xFDB9 ("Comcast Cable Corporation")
      #xFDB8 ("LivaNova USA Inc.")
      #xFDB7 ("LivaNova USA Inc.")
      #xFDB6 ("GWA Hygiene GmbH")
      #xFDB5 ("ECSG")
      #xFDB4 ("HP Inc")
      #xFDB3 ("Audiodo AB")
      #xFDB2 ("Portable Multimedia Ltd")
      #xFDB1 ("Proxy Technologies, Inc.")
      #xFDB0 ("Proxy Technologies, Inc.")
      #xFDAF ("Wiliot LTD")
      #xFDAE ("Houwa System Design, k.k.")
      #xFDAD ("Houwa System Design, k.k.")
      #xFDAC ("Tentacle Sync GmbH")
      #xFDAB ("Xiaomi Inc.")
      #xFDAA ("Xiaomi Inc.")
      #xFDA9 ("Rhombus Systems, Inc.")
      #xFDA8 ("PSA Peugeot Citroën")
      #xFDA7 ("WWZN Information Technology Company Limited")
      #xFDA6 ("WWZN Information Technology Company Limited")
      #xFDA5 ("Neurostim OAB, Inc.")
      #xFDA4 ("Inseego Corp.")
      #xFDA3 ("Inseego Corp.")
      #xFDA2 ("Groove X, Inc")
      #xFDA1 ("Groove X, Inc")
      #xFDA0 ("Secugen Corporation")
      #xFD9F ("VitalTech Affiliates LLC")
      #xFD9E ("The Coca-Cola Company")
      #xFD9D ("Gastec Corporation")
      #xFD9C ("Huawei Technologies Co., Ltd.")
      #xFD9B ("Huawei Technologies Co., Ltd.")
      #xFD9A ("Huawei Technologies Co., Ltd.")
      #xFD99 ("ABB Oy")
      #xFD98 ("Disney Worldwide Services, Inc.")
      #xFD97 ("June Life, Inc.")
      #xFD96 ("Google LLC")
      #xFD95 ("Rigado")
      #xFD94 ("Hewlett Packard Enterprise")
      #xFD93 ("Bayerische Motoren Werke AG")
      #xFD92 ("Qualcomm Technologies International, Ltd. (QTIL)")
      #xFD91 ("Groove X, Inc.")
      #xFD90 ("Guangzhou SuperSound Information Technology Co., Ltd")
      #xFD8F ("Matrix ComSec Pvt. Ltd.")
      #xFD8E ("Motorola Solutions")
      #xFD8D ("quip NYC Inc.")
      #xFD8C ("Google LLC")
      #xFD8B ("Jigowatts Inc.")
      #xFD8A ("Signify Netherlands B.V.")
      #xFD89 ("Urbanminded LTD")
      #xFD88 ("Urbanminded LTD")
      #xFD87 ("Google LLC")))
  "Bluetooth manufacturer UUIDs.")

(defun bluetooth--parse-service-class-uuid (uuid)
  "Parse UUID and return short and long service class names."
  (let ((uuid-re (rx (seq bos (submatch (= 8 xdigit))
			  "-" (eval bluetooth--base-uuid) eos))))
    (save-match-data
      (when (string-match uuid-re uuid)
	(let ((service-id (string-to-number (match-string 1 uuid) 16)))
	  (or (gethash service-id
			 (symbol-value
			  (cdr (-find (lambda (x) (>= service-id (car x)))
				      bluetooth--uuid-alists))))
	      (list  (format "#x%08x" service-id) "unknown")))))))

(defun bluetooth--parse-class (class)
  "Parse the CLASS property of a Bluetooth device."
  (cl-labels ((parse (field-def acc)
		     (let-alist field-def
		       (let* ((m-field (lsh (logand class .mask) .shift))
			      (res (cons .name
					 (list (funcall .fn m-field .data))))
			      (n-acc (push res acc)))
			 (cond ((functionp .next)
				(let ((spec (funcall .next m-field .data)))
				  (if spec
				      (parse spec n-acc)
				    (nreverse n-acc))))
			       ((not (null .next))
				(parse (symbol-value .next) n-acc))
			       (t (nreverse n-acc)))))))
    (parse bluetooth--class-major-services '())))

(defun bluetooth--class-parse-bitfield (bitfield data)
  "Parse BITFIELD using DATA as specification."
  (or (delq nil (mapcar (lambda (x)
			  (if (/= 0 (logand bitfield (lsh 1 (car x))))
			      (cdr x)
			    nil))
			data))
      "unknown"))

(defun bluetooth--class-parse-major (field data)
  "Parse major class FIELD using DATA as specification."
  (or (car (alist-get field data))
      "unknown"))

(defun bluetooth--class-parse-value (field data)
  "Parse minor class FIELD using DATA as specification."
  (or (alist-get field data)
      "unknown"))

(defun bluetooth--class-parse-peripheral (field data)
  "Parse peripheral class FIELD using DATA as specification."
  (or (list (bluetooth--class-parse-value (logand (caar data) field)
					  (cdar data))
	    (bluetooth--class-parse-value (logand (caadr data) field)
					  (cdadr data)))
      "unknown"))

(defun bluetooth--class-get-minor (field data)
  "Get the minor field spec for FIELD using DATA as specification."
  (symbol-value (cdr (alist-get field data))))

(defun bluetooth-show-device-info ()
  "Show detailed information on the device at point."
  (interactive)
  (cl-flet ((ins-heading (text)
			 (insert (propertize text 'face
					     'bluetooth-info-heading)))
	    (ins-attr (attr value)
		      (insert (propertize (format "%15s" attr)
					  'face
					  'bluetooth-info-attribute))
		      (insert ": " value "\n")))
    (let ((dev-id (tabulated-list-get-id)))
      (when dev-id
	(bluetooth--with-alias dev-id
	  (with-current-buffer-window
	   "*Bluetooth device info*" nil nil
	   (let ((props (bluetooth--call-method
			 (car (last (split-string dev-id "/"))) :device
			 #'dbus-get-all-properties)))
	     (ins-heading "Bluetooth device info\n\n")
	     (ins-attr "Alias" alias)
	     (when-let (address (cdr (assoc "Address" props)))
	       (ins-attr "Address" address))
	     (when-let (addr-type (cdr (assoc "AddressType" props)))
	       (ins-attr "Address type" addr-type))
	     (let ((rssi (cdr (assoc "RSSI" props)))
		   (tx-power (cdr (assoc "TxPower" props))))
	       (when rssi
		 (ins-attr "RSSI" (format "%4d dBm" rssi)))
	       (when tx-power
		 (ins-attr "Tx Power" (format "%4d dBm" tx-power)))
	       (when (and rssi tx-power)
		 (ins-attr "Path loss" (format "%4d dB" (- tx-power rssi)))))
	     (when-let (mf-info (cadr (assoc "ManufacturerData" props)))
	       (ins-attr "Manufacturer" (or (gethash (car mf-info)
						     bluetooth--manufacturer-ids)
					    "unknown")))
	     (when-let (class (cdr (assoc "Class" props)))
	       (let ((p-class (bluetooth--parse-class class)))
		 (ins-heading "\nService and device classes\n")
		 (dolist (x p-class)
		   (insert (propertize
			    (format "%s:\n"  (car x))
			    'face 'bluetooth-info-attribute))
		   (if (listp (cadr x))
		       (dolist (elt (cadr x))
			 (insert (format "%15s %s\n" "" elt)))
		     (insert (format "%15s %s\n" "" (cadr x)))))))
	     (when-let (uuids (cdr (assoc "UUIDs" props)))
	       (ins-heading "\nSerives (UUIDs)\n")
	       (dolist (id uuids)
		 (let ((desc (or (bluetooth--parse-service-class-uuid id)
				 (list id))))
		   (when (car desc)
		     (insert (format "%30s  " (car desc))))
		   (when (cadr desc)
		     (insert (format "%s " (cadr desc))))
		   (when (caddr desc)
		     (insert (format "(%s)" (caddr desc))))
		   (insert "\n")))))
	   (special-mode)))))))

;;; Very long list of manufacturer IDs.
;;; Last updated: 05. Nov 2019
(defconst bluetooth--manufacturer-ids
  #s(hash-table
     size 500 data
     (#x0000
      "Ericsson Technology Licensing"
      #x0001 "Nokia Mobile Phones"
      #x0002 "Intel Corp"
      #x0003 "IBM Corp"
      #x0004 "Toshiba Corp"
      #x0005 "3Com"
      #x0006 "Microsoft"
      #x0007 "Lucent"
      #x0008 "Motorola"
      #x0009 "Infineon Technologies AG"
      #x000A "Qualcomm Technologies International, Ltd. (QTIL)"
      #x000B "Silicon Wave"
      #x000C "Digianswer A/S"
      #x000D "Texas Instruments Inc"
      #x000E "Parthus Technologies Inc"
      #x000F "Broadcom Corporation"
      #x0010 "Mitel Semiconductor"
      #x0011 "Widcomm, Inc"
      #x0012 "Zeevo, Inc"
      #x0013 "Atmel Corporation"
      #x0014 "Mitsubishi Electric Corporation"
      #x0015 "RTX Telecom A/S"
      #x0016 "KC Technology Inc"
      #x0017 "Newlogic"
      #x0018 "Transilica, Inc"
      #x0019 "Rohde & Schwarz GmbH & Co. KG"
      #x001A "TTPCom Limited"
      #x001B "Signia Technologies, Inc"
      #x001C "Conexant Systems Inc"
      #x001D "Qualcomm"
      #x001E "Inventel"
      #x001F "AVM Berlin"
      #x0020 "BandSpeed, Inc"
      #x0021 "Mansella Ltd"
      #x0022 "NEC Corporation"
      #x0023 "WavePlus Technology Co., Ltd"
      #x0024 "Alcatel"
      #x0025 "NXP Semiconductors (formerly Philips Semiconductors)"
      #x0026 "C Technologies"
      #x0027 "Open Interface"
      #x0028 "R F Micro Devices"
      #x0029 "Hitachi Ltd"
      #x002A "Symbol Technologies, Inc"
      #x002B "Tenovis"
      #x002C "Macronix International Co. Ltd"
      #x002D "GCT Semiconductor"
      #x002E "Norwood Systems"
      #x002F "MewTel Technology Inc"
      #x0030 "ST Microelectronics"
      #x0031 "Synopsys, Inc"
      #x0032 "Red-M (Communications) Ltd"
      #x0033 "Commil Ltd"
      #x0034 "Computer Access Technology Corporation (CATC)"
      #x0035 "Eclipse (HQ Espana) S.L"
      #x0036 "Renesas Electronics Corporation"
      #x0037 "Mobilian Corporation"
      #x0038 "Syntronix Corporation"
      #x0039 "Integrated System Solution Corp"
      #x003A "Panasonic Corporation (formerly Matsushita Electric Industrial Co., Ltd)"
      #x003B "Gennum Corporation"
      #x003C "BlackBerry Limited  (formerly Research In Motion)"
      #x003D "IPextreme, Inc."
      #x003E "Systems and Chips, Inc"
      #x003F "Bluetooth SIG, Inc"
      #x0040 "Seiko Epson Corporation"
      #x0041 "Integrated Silicon Solution Taiwan, Inc"
      #x0042 "CONWISE Technology Corporation Ltd"
      #x0043 "PARROT AUTOMOTIVE SAS"
      #x0044 "Socket Mobile"
      #x0045 "Atheros Communications, Inc"
      #x0046 "MediaTek, Inc"
      #x0047 "Bluegiga"
      #x0048 "Marvell Technology Group Ltd"
      #x0049 "3DSP Corporation"
      #x004A "Accel Semiconductor Ltd"
      #x004B "Continental Automotive Systems"
      #x004C "Apple, Inc"
      #x004D "Staccato Communications, Inc"
      #x004E "Avago Technologies"
      #x004F "APT Ltd"
      #x0050 "SiRF Technology, Inc"
      #x0051 "Tzero Technologies, Inc"
      #x0052 "J&M Corporation"
      #x0053 "Free2move AB"
      #x0054 "3DiJoy Corporation"
      #x0055 "Plantronics, Inc"
      #x0056 "Sony Ericsson Mobile Communications"
      #x0057 "Harman International Industries, Inc"
      #x0058 "Vizio, Inc"
      #x0059 "Nordic Semiconductor ASA"
      #x005A "EM Microelectronic-Marin SA"
      #x005B "Ralink Technology Corporation"
      #x005C "Belkin International, Inc"
      #x005D "Realtek Semiconductor Corporation"
      #x005E "Stonestreet One, LLC"
      #x005F "Wicentric, Inc"
      #x0060 "RivieraWaves S.A.S"
      #x0061 "RDA Microelectronics"
      #x0062 "Gibson Guitars"
      #x0063 "MiCommand Inc"
      #x0064 "Band XI International, LLC"
      #x0065 "Hewlett-Packard Company"
      #x0066 "9Solutions Oy"
      #x0067 "GN Netcom A/S"
      #x0068 "General Motors"
      #x0069 "A&D Engineering, Inc"
      #x006A "MindTree Ltd"
      #x006B "Polar Electro OY"
      #x006C "Beautiful Enterprise Co., Ltd"
      #x006D "BriarTek, Inc"
      #x006E "Summit Data Communications, Inc"
      #x006F "Sound ID"
      #x0070 "Monster, LLC"
      #x0071 "connectBlue AB"
      #x0072 "ShangHai Super Smart Electronics Co. Ltd"
      #x0073 "Group Sense Ltd"
      #x0074 "Zomm, LLC"
      #x0075 "Samsung Electronics Co. Ltd"
      #x0076 "Creative Technology Ltd"
      #x0077 "Laird Technologies"
      #x0078 "Nike, Inc"
      #x0079 "lesswire AG"
      #x007A "MStar Semiconductor, Inc"
      #x007B "Hanlynn Technologies"
      #x007C "A & R Cambridge"
      #x007D "Seers Technology Co., Ltd"
      #x007E "Sports Tracking Technologies Ltd"
      #x007F "Autonet Mobile"
      #x0080 "DeLorme Publishing Company, Inc"
      #x0081 "WuXi Vimicro"
      #x0082 "Sennheiser Communications A/S"
      #x0083 "TimeKeeping Systems, Inc"
      #x0084 "Ludus Helsinki Ltd"
      #x0085 "BlueRadios, Inc"
      #x0086 "Equinux AG"
      #x0087 "Garmin International, Inc"
      #x0088 "Ecotest"
      #x0089 "GN ReSound A/S"
      #x008A "Jawbone"
      #x008B "Topcon Positioning Systems, LLC"
      #x008C "Gimbal Inc. (formerly Qualcomm Labs, Inc. and Qualcomm Retail Solutions, Inc)"
      #x008D "Zscan Software"
      #x008E "Quintic Corp"
      #x008F "Telit Wireless Solutions GmbH (formerly Stollmann E+V GmbH)"
      #x0090 "Funai Electric Co., Ltd"
      #x0091 "Advanced PANMOBIL systems GmbH & Co. KG"
      #x0092 "ThinkOptics, Inc"
      #x0093 "Universal Electronics, Inc"
      #x0094 "Airoha Technology Corp"
      #x0095 "NEC Lighting, Ltd"
      #x0096 "ODM Technology, Inc"
      #x0097 "ConnecteDevice Ltd"
      #x0098 "zero1.tv GmbH"
      #x0099 "i.Tech Dynamic Global Distribution Ltd"
      #x009A "Alpwise"
      #x009B "Jiangsu Toppower Automotive Electronics Co., Ltd"
      #x009C "Colorfy, Inc"
      #x009D "Geoforce Inc"
      #x009E "Bose Corporation"
      #x009F "Suunto Oy"
      #x00A0 "Kensington Computer Products Group"
      #x00A1 "SR-Medizinelektronik"
      #x00A2 "Vertu Corporation Limited"
      #x00A3 "Meta Watch Ltd"
      #x00A4 "LINAK A/S"
      #x00A5 "OTL Dynamics LLC"
      #x00A6 "Panda Ocean Inc"
      #x00A7 "Visteon Corporation"
      #x00A8 "ARP Devices Limited"
      #x00A9 "Magneti Marelli S.p.A"
      #x00AA "CAEN RFID srl"
      #x00AB "Ingenieur-Systemgruppe Zahn GmbH"
      #x00AC "Green Throttle Games"
      #x00AD "Peter Systemtechnik GmbH"
      #x00AE "Omegawave Oy"
      #x00AF "Cinetix"
      #x00B0 "Passif Semiconductor Corp"
      #x00B1 "Saris Cycling Group, Inc"
      #x00B2 "​Bekey A/S"
      #x00B3 "​Clarinox Technologies Pty. Ltd"
      #x00B4 "​BDE Technology Co., Ltd"
      #x00B5 "Swirl Networks"
      #x00B6 "​Meso international"
      #x00B7 "​TreLab Ltd"
      #x00B8 "​Qualcomm Innovation Center, Inc. (QuIC)"
      #x00B9 "​​Johnson Controls, Inc"
      #x00BA "​Starkey Laboratories Inc"
      #x00BB "​​S-Power Electronics Limited"
      #x00BC "​​Ace Sensor Inc"
      #x00BD "​​Aplix Corporation"
      #x00BE "​​AAMP of America"
      #x00BF "​​Stalmart Technology Limited"
      #x00C0 "​​AMICCOM Electronics Corporation"
      #x00C1 "​​Shenzhen Excelsecu Data Technology Co.,Ltd"
      #x00C2 "​​Geneq Inc"
      #x00C3 "​​adidas AG"
      #x00C4 "​​LG Electronics"
      #x00C5 "​Onset Computer Corporation"
      #x00C6 "​Selfly BV"
      #x00C7 "​Quuppa Oy"
      #x00C8 "GeLo Inc"
      #x00C9 "Evluma"
      #x00CA "MC10"
      #x00CB "Binauric SE"
      #x00CC "Beats Electronics"
      #x00CD "Microchip Technology Inc"
      #x00CE "Elgato Systems GmbH"
      #x00CF "ARCHOS SA"
      #x00D0 "Dexcom, Inc"
      #x00D1 "Polar Electro Europe B.V"
      #x00D2 "Dialog Semiconductor B.V"
      #x00D3 "Taixingbang Technology (HK) Co,. LTD"
      #x00D4 "Kawantech"
      #x00D5 "Austco Communication Systems"
      #x00D6 "Timex Group USA, Inc"
      #x00D7 "Qualcomm Technologies, Inc"
      #x00D8 "Qualcomm Connected Experiences, Inc"
      #x00D9 "Voyetra Turtle Beach"
      #x00DA "txtr GmbH"
      #x00DB "Biosentronics"
      #x00DC "Procter & Gamble"
      #x00DD "Hosiden Corporation"
      #x00DE "Muzik LLC"
      #x00DF "Misfit Wearables Corp"
      #x00E0 "Google"
      #x00E1 "Danlers Ltd"
      #x00E2 "Semilink Inc"
      #x00E3 "inMusic Brands, Inc"
      #x00E4 "L.S. Research Inc"
      #x00E5 "Eden Software Consultants Ltd"
      #x00E6 "Freshtemp"
      #x00E7 "​KS Technologies"
      #x00E8 "​ACTS Technologies"
      #x00E9 "​Vtrack Systems"
      #x00EA "​Nielsen-Kellerman Company"
      #x00EB "Server Technology Inc"
      #x00EC "BioResearch Associates"
      #x00ED "Jolly Logic, LLC"
      #x00EE "Above Average Outcomes, Inc"
      #x00EF "Bitsplitters GmbH"
      #x00F0 "PayPal, Inc"
      #x00F1 "Witron Technology Limited"
      #x00F2 "Morse Project Inc"
      #x00F3 "Kent Displays Inc"
      #x00F4 "Nautilus Inc"
      #x00F5 "Smartifier Oy"
      #x00F6 "Elcometer Limited"
      #x00F7 "VSN Technologies, Inc"
      #x00F8 "AceUni Corp., Ltd"
      #x00F9 "StickNFind"
      #x00FA "Crystal Code AB"
      #x00FB "KOUKAAM a.s"
      #x00FC "Delphi Corporation"
      #x00FD "ValenceTech Limited"
      #x00FE "Stanley Black and Decker"
      #x00FF "Typo Products, LLC"
      #x0100 "TomTom International BV"
      #x0101 "Fugoo, Inc"
      #x0102 "Keiser Corporation"
      #x0103 "Bang & Olufsen A/S"
      #x0104 "PLUS Location Systems Pty Ltd"
      #x0105 "Ubiquitous Computing Technology Corporation"
      #x0106 "Innovative Yachtter Solutions"
      #x0107 "William Demant Holding A/S"
      #x0108 "Chicony Electronics Co., Ltd"
      #x0109 "Atus BV"
      #x010A "Codegate Ltd"
      #x010B "ERi, Inc"
      #x010C "Transducers Direct, LLC"
      #x010D "DENSO TEN LIMITED (formerly Fujitsu Ten LImited)"
      #x010E "Audi AG"
      #x010F "HiSilicon Technologies Col, Ltd"
      #x0110 "Nippon Seiki Co., Ltd"
      #x0111 "Steelseries ApS"
      #x0112 "Visybl Inc"
      #x0113 "Openbrain Technologies, Co., Ltd"
      #x0114 "Xensr"
      #x0115 "e.solutions"
      #x0116 "10AK Technologies"
      #x0117 "Wimoto Technologies Inc"
      #x0118 "Radius Networks, Inc"
      #x0119 "Wize Technology Co., Ltd"
      #x011A "Qualcomm Labs, Inc"
      #x011B "Hewlett Packard Enterprise"
      #x011C "Baidu"
      #x011D "Arendi AG"
      #x011E "Skoda Auto a.s"
      #x011F "Volkswagen AG"
      #x0120 "Porsche AG"
      #x0121 "Sino Wealth Electronic Ltd"
      #x0122 "AirTurn, Inc"
      #x0123 "Kinsa, Inc"
      #x0124 "HID Global"
      #x0125 "SEAT es"
      #x0126 "Promethean Ltd"
      #x0127 "Salutica Allied Solutions"
      #x0128 "GPSI Group Pty Ltd"
      #x0129 "Nimble Devices Oy"
      #x012A "Changzhou Yongse Infotech  Co., Ltd"
      #x012B "SportIQ"
      #x012C "TEMEC Instruments B.V"
      #x012D "Sony Corporation"
      #x012E "ASSA ABLOY"
      #x012F "Clarion Co. Inc"
      #x0130 "Warehouse Innovations"
      #x0131 "Cypress Semiconductor"
      #x0132 "MADS Inc"
      #x0133 "Blue Maestro Limited"
      #x0134 "Resolution Products, Ltd"
      #x0135 "Aireware LLC"
      #x0136 "Silvair, Inc"
      #x0137 "Prestigio Plaza Ltd"
      #x0138 "NTEO Inc"
      #x0139 "Focus Systems Corporation"
      #x013A "Tencent Holdings Ltd"
      #x013B "Allegion"
      #x013C "Murata Manufacturing Co., Ltd"
      #x013D "WirelessWERX"
      #x013E "Nod, Inc"
      #x013F "B&B Manufacturing Company"
      #x0140 "Alpine Electronics (China) Co., Ltd"
      #x0141 "FedEx Services"
      #x0142 "Grape Systems Inc"
      #x0143 "Bkon Connect"
      #x0144 "Lintech GmbH"
      #x0145 "Novatel Wireless"
      #x0146 "Ciright"
      #x0147 "Mighty Cast, Inc"
      #x0148 "Ambimat Electronics"
      #x0149 "Perytons Ltd"
      #x014A "Tivoli Audio, LLC"
      #x014B "Master Lock"
      #x014C "Mesh-Net Ltd"
      #x014D "HUIZHOU DESAY SV AUTOMOTIVE CO., LTD"
      #x014E "Tangerine, Inc"
      #x014F "B&W Group Ltd"
      #x0150 "Pioneer Corporation"
      #x0151 "OnBeep"
      #x0152 "Vernier Software & Technology"
      #x0153 "ROL Ergo"
      #x0154 "Pebble Technology"
      #x0155 "NETATMO"
      #x0156 "Accumulate AB"
      #x0157 "Anhui Huami Information Technology Co., Ltd"
      #x0158 "Inmite s.r.o"
      #x0159 "ChefSteps, Inc"
      #x015A "micas AG"
      #x015B "Biomedical Research Ltd"
      #x015C "Pitius Tec S.L"
      #x015D "Estimote, Inc"
      #x015E "Unikey Technologies, Inc"
      #x015F "Timer Cap Co"
      #x0160 "AwoX"
      #x0161 "yikes"
      #x0162 "MADSGlobalNZ Ltd"
      #x0163 "PCH International"
      #x0164 "Qingdao Yeelink Information Technology Co., Ltd"
      #x0165 "Milwaukee Tool (Formally Milwaukee Electric Tools)"
      #x0166 "MISHIK Pte Ltd"
      #x0167 "Ascensia Diabetes Care US Inc"
      #x0168 "Spicebox LLC"
      #x0169 "emberlight"
      #x016A "Cooper-Atkins Corporation"
      #x016B "Qblinks"
      #x016C "MYSPHERA"
      #x016D "LifeScan Inc"
      #x016E "Volantic AB"
      #x016F "Podo Labs, Inc"
      #x0170 "Roche Diabetes Care AG"
      #x0171 "Amazon Fulfillment Service"
      #x0172 "Connovate Technology Private Limited"
      #x0173 "Kocomojo, LLC"
      #x0174 "Everykey Inc"
      #x0175 "Dynamic Controls"
      #x0176 "SentriLock"
      #x0177 "I-SYST inc"
      #x0178 "CASIO COMPUTER CO., LTD"
      #x0179 "LAPIS Semiconductor Co., Ltd"
      #x017A "Telemonitor, Inc"
      #x017B "taskit GmbH"
      #x017C "Daimler AG"
      #x017D "BatAndCat"
      #x017E "BluDotz Ltd"
      #x017F "XTel Wireless ApS"
      #x0180 "Gigaset Communications GmbH"
      #x0181 "Gecko Health Innovations, Inc"
      #x0182 "HOP Ubiquitous"
      #x0183 "Walt Disney"
      #x0184 "Nectar"
      #x0185 "bel'apps LLC"
      #x0186 "CORE Lighting Ltd"
      #x0187 "Seraphim Sense Ltd"
      #x0188 "Unico RBC"
      #x0189 "Physical Enterprises Inc"
      #x018A "Able Trend Technology Limited"
      #x018B "Konica Minolta, Inc"
      #x018C "Wilo SE"
      #x018D "Extron Design Services"
      #x018E "Fitbit, Inc"
      #x018F "Fireflies Systems"
      #x0190 "Intelletto Technologies Inc"
      #x0191 "FDK CORPORATION"
      #x0192 "Cloudleaf, Inc"
      #x0193 "Maveric Automation LLC"
      #x0194 "Acoustic Stream Corporation"
      #x0195 "Zuli"
      #x0196 "Paxton Access Ltd"
      #x0197 "WiSilica Inc"
      #x0198 "VENGIT Korlatolt Felelossegu Tarsasag"
      #x0199 "SALTO SYSTEMS S.L"
      #x019A "TRON Forum (formerly T-Engine Forum)"
      #x019B "CUBETECH s.r.o"
      #x019C "Cokiya Incorporated"
      #x019D "CVS Health"
      #x019E "Ceruus"
      #x019F "Strainstall Ltd"
      #x01A0 "Channel Enterprises (HK) Ltd"
      #x01A1 "FIAMM"
      #x01A2 "GIGALANE.CO.,LTD"
      #x01A3 "EROAD"
      #x01A4 "Mine Safety Appliances"
      #x01A5 "Icon Health and Fitness"
      #x01A6 "Wille Engineering (formely as Asandoo GmbH)"
      #x01A7 "ENERGOUS CORPORATION"
      #x01A8 "Taobao"
      #x01A9 "Canon Inc"
      #x01AA "Geophysical Technology Inc"
      #x01AB "Facebook, Inc"
      #x01AC "Trividia Health, Inc"
      #x01AD "FlightSafety International"
      #x01AE "Earlens Corporation"
      #x01AF "Sunrise Micro Devices, Inc"
      #x01B0 "Star Micronics Co., Ltd"
      #x01B1 "Netizens Sp. z o.o"
      #x01B2 "Nymi Inc"
      #x01B3 "Nytec, Inc"
      #x01B4 "Trineo Sp. z o.o"
      #x01B5 "Nest Labs Inc"
      #x01B6 "LM Technologies Ltd"
      #x01B7 "General Electric Company"
      #x01B8 "i+D3 S.L"
      #x01B9 "HANA Micron"
      #x01BA "Stages Cycling LLC"
      #x01BB "Cochlear Bone Anchored Solutions AB"
      #x01BC "SenionLab AB"
      #x01BD "Syszone Co., Ltd"
      #x01BE "Pulsate Mobile Ltd"
      #x01BF "Hong Kong HunterSun Electronic Limited"
      #x01C0 "pironex GmbH"
      #x01C1 "BRADATECH Corp"
      #x01C2 "Transenergooil AG"
      #x01C3 "Bunch"
      #x01C4 "DME Microelectronics"
      #x01C5 "Bitcraze AB"
      #x01C6 "HASWARE Inc"
      #x01C7 "Abiogenix Inc"
      #x01C8 "Poly-Control ApS"
      #x01C9 "Avi-on"
      #x01CA "Laerdal Medical AS"
      #x01CB "Fetch My Pet"
      #x01CC "Sam Labs Ltd"
      #x01CD "Chengdu Synwing Technology Ltd"
      #x01CE "HOUWA SYSTEM DESIGN, k.k"
      #x01CF "BSH"
      #x01D0 "Primus Inter Pares Ltd"
      #x01D1 "August Home, Inc"
      #x01D2 "Gill Electronics"
      #x01D3 "Sky Wave Design"
      #x01D4 "Newlab S.r.l"
      #x01D5 "ELAD srl"
      #x01D6 "G-wearables inc"
      #x01D7 "Squadrone Systems Inc"
      #x01D8 "Code Corporation"
      #x01D9 "Savant Systems LLC"
      #x01DA "Logitech International SA"
      #x01DB "Innblue Consulting"
      #x01DC "iParking Ltd"
      #x01DD "Koninklijke Philips Electronics N.V"
      #x01DE "Minelab Electronics Pty Limited"
      #x01DF "Bison Group Ltd"
      #x01E0 "Widex A/S"
      #x01E1 "Jolla Ltd"
      #x01E2 "Lectronix, Inc"
      #x01E3 "Caterpillar Inc"
      #x01E4 "Freedom Innovations"
      #x01E5 "Dynamic Devices Ltd"
      #x01E6 "Technology Solutions (UK) Ltd"
      #x01E7 "IPS Group Inc"
      #x01E8 "STIR"
      #x01E9 "Sano, Inc"
      #x01EA "Advanced Application Design, Inc"
      #x01EB "AutoMap LLC"
      #x01EC "Spreadtrum Communications Shanghai Ltd"
      #x01ED "CuteCircuit LTD"
      #x01EE "Valeo Service"
      #x01EF "Fullpower Technologies, Inc"
      #x01F0 "KloudNation"
      #x01F1 "Zebra Technologies Corporation"
      #x01F2 "Itron, Inc"
      #x01F3 "The University of Tokyo"
      #x01F4 "UTC Fire and Security"
      #x01F5 "Cool Webthings Limited"
      #x01F6 "DJO Global"
      #x01F7 "Gelliner Limited"
      #x01F8 "Anyka (Guangzhou) Microelectronics Technology Co, LTD"
      #x01F9 "Medtronic Inc"
      #x01FA "Gozio Inc"
      #x01FB "Form Lifting, LLC"
      #x01FC "Wahoo Fitness, LLC"
      #x01FD "Kontakt Micro-Location Sp. z o.o"
      #x01FE "Radio Systems Corporation"
      #x01FF "Freescale Semiconductor, Inc"
      #x0200 "Verifone Systems Pte Ltd. Taiwan Branch"
      #x0201 "AR Timing"
      #x0202 "Rigado LLC"
      #x0203 "Kemppi Oy"
      #x0204 "Tapcentive Inc"
      #x0205 "Smartbotics Inc"
      #x0206 "Otter Products, LLC"
      #x0207 "STEMP Inc"
      #x0208 "LumiGeek LLC"
      #x0209 "InvisionHeart Inc"
      #x020A "Macnica Inc"
      #x020B "Jaguar Land Rover Limited"
      #x020C "CoroWare Technologies, Inc"
      #x020D "Simplo Technology Co., LTD"
      #x020E "Omron Healthcare Co., LTD"
      #x020F "Comodule GMBH"
      #x0210 "ikeGPS"
      #x0211 "Telink Semiconductor Co. Ltd"
      #x0212 "Interplan Co., Ltd"
      #x0213 "Wyler AG"
      #x0214 "IK Multimedia Production srl"
      #x0215 "Lukoton Experience Oy"
      #x0216 "MTI Ltd"
      #x0217 "Tech4home, Lda"
      #x0218 "Hiotech AB"
      #x0219 "DOTT Limited"
      #x021A "Blue Speck Labs, LLC"
      #x021B "Cisco Systems, Inc"
      #x021C "Mobicomm Inc"
      #x021D "Edamic"
      #x021E "Goodnet, Ltd"
      #x021F "Luster Leaf Products  Inc"
      #x0220 "Manus Machina BV"
      #x0221 "Mobiquity Networks Inc"
      #x0222 "Praxis Dynamics"
      #x0223 "Philip Morris Products S.A"
      #x0224 "Comarch SA"
      #x0225 "Nestlé Nespresso S.A"
      #x0226 "Merlinia A/S"
      #x0227 "LifeBEAM Technologies"
      #x0228 "Twocanoes Labs, LLC"
      #x0229 "Muoverti Limited"
      #x022A "Stamer Musikanlagen GMBH"
      #x022B "Tesla Motors"
      #x022C "Pharynks Corporation"
      #x022D "Lupine"
      #x022E "Siemens AG"
      #x022F "Huami (Shanghai) Culture Communication CO., LTD"
      #x0230 "Foster Electric Company, Ltd"
      #x0231 "ETA SA"
      #x0232 "x-Senso Solutions Kft"
      #x0233 "Shenzhen SuLong Communication Ltd"
      #x0234 "FengFan (BeiJing) Technology Co, Ltd"
      #x0235 "Qrio Inc"
      #x0236 "Pitpatpet Ltd"
      #x0237 "MSHeli s.r.l"
      #x0238 "Trakm8 Ltd"
      #x0239 "JIN CO, Ltd"
      #x023A "Alatech Tehnology"
      #x023B "Beijing CarePulse Electronic Technology Co, Ltd"
      #x023C "Awarepoint"
      #x023D "ViCentra B.V"
      #x023E "Raven Industries"
      #x023F "WaveWare Technologies Inc"
      #x0240 "Argenox Technologies"
      #x0241 "Bragi GmbH"
      #x0242 "16Lab Inc"
      #x0243 "Masimo Corp"
      #x0244 "Iotera Inc"
      #x0245 "Endress+Hauser"
      #x0246 "ACKme Networks, Inc"
      #x0247 "FiftyThree Inc"
      #x0248 "Parker Hannifin Corp"
      #x0249 "Transcranial Ltd"
      #x024A "Uwatec AG"
      #x024B "Orlan LLC"
      #x024C "Blue Clover Devices"
      #x024D "M-Way Solutions GmbH"
      #x024E "Microtronics Engineering GmbH"
      #x024F "Schneider Schreibgeräte GmbH"
      #x0250 "Sapphire Circuits LLC"
      #x0251 "Lumo Bodytech Inc"
      #x0252 "UKC Technosolution"
      #x0253 "Xicato Inc"
      #x0254 "Playbrush"
      #x0255 "Dai Nippon Printing Co., Ltd"
      #x0256 "G24 Power Limited"
      #x0257 "AdBabble Local Commerce Inc"
      #x0258 "Devialet SA"
      #x0259 "ALTYOR"
      #x025A "University of Applied Sciences Valais/Haute Ecole Valaisanne"
      #x025B "Five Interactive, LLC dba Zendo"
      #x025C "NetEase(Hangzhou)Network co.Ltd"
      #x025D "Lexmark International Inc"
      #x025E "Fluke Corporation"
      #x025F "Yardarm Technologies"
      #x0260 "SensaRx"
      #x0261 "SECVRE GmbH"
      #x0262 "Glacial Ridge Technologies"
      #x0263 "Identiv, Inc"
      #x0264 "DDS, Inc"
      #x0265 "SMK Corporation"
      #x0266 "Schawbel Technologies LLC"
      #x0267 "XMI Systems SA"
      #x0268 "Cerevo"
      #x0269 "Torrox GmbH & Co KG"
      #x026A "Gemalto"
      #x026B "DEKA Research & Development Corp"
      #x026C "Domster Tadeusz Szydlowski"
      #x026D "Technogym SPA"
      #x026E "FLEURBAEY BVBA"
      #x026F "Aptcode Solutions"
      #x0270 "LSI ADL Technology"
      #x0271 "Animas Corp"
      #x0272 "Alps Electric Co., Ltd"
      #x0273 "OCEASOFT"
      #x0274 "Motsai Research"
      #x0275 "Geotab"
      #x0276 "E.G.O. Elektro-Geraetebau GmbH"
      #x0277 "bewhere inc"
      #x0278 "Johnson Outdoors Inc"
      #x0279 "steute Schaltgerate GmbH & Co. KG"
      #x027A "Ekomini inc"
      #x027B "DEFA AS"
      #x027C "Aseptika Ltd"
      #x027D "HUAWEI Technologies Co., Ltd"
      #x027E "HabitAware, LLC"
      #x027F "ruwido austria gmbh"
      #x0280 "ITEC corporation"
      #x0281 "StoneL"
      #x0282 "Sonova AG"
      #x0283 "Maven Machines, Inc"
      #x0284 "Synapse Electronics"
      #x0285 "Standard Innovation Inc"
      #x0286 "RF Code, Inc"
      #x0287 "Wally Ventures S.L"
      #x0288 "Willowbank Electronics Ltd"
      #x0289 "SK Telecom"
      #x028A "Jetro AS"
      #x028B "Code Gears LTD"
      #x028C "NANOLINK APS"
      #x028D "IF, LLC"
      #x028E "RF Digital Corp"
      #x028F "Church & Dwight Co., Inc"
      #x0290 "Multibit Oy"
      #x0291 "CliniCloud Inc"
      #x0292 "SwiftSensors"
      #x0293 "Blue Bite"
      #x0294 "ELIAS GmbH"
      #x0295 "Sivantos GmbH"
      #x0296 "Petzl"
      #x0297 "storm power ltd"
      #x0298 "EISST Ltd"
      #x0299 "Inexess Technology Simma KG"
      #x029A "Currant, Inc"
      #x029B "C2 Development, Inc"
      #x029C "Blue Sky Scientific, LLC"
      #x029D "ALOTTAZS LABS, LLC"
      #x029E "Kupson spol. s r.o"
      #x029F "Areus Engineering GmbH"
      #x02A0 "Impossible Camera GmbH"
      #x02A1 "InventureTrack Systems"
      #x02A2 "LockedUp"
      #x02A3 "Itude"
      #x02A4 "Pacific Lock Company"
      #x02A5 "Tendyron Corporation ( 天地融科技股份有限公司)"
      #x02A6 "Robert Bosch GmbH"
      #x02A7 "Illuxtron international B.V"
      #x02A8 "miSport Ltd"
      #x02A9 "Chargelib"
      #x02AA "Doppler Lab"
      #x02AB "BBPOS Limited"
      #x02AC "RTB Elektronik GmbH & Co. KG"
      #x02AD "Rx Networks, Inc"
      #x02AE "WeatherFlow, Inc"
      #x02AF "Technicolor USA Inc"
      #x02B0 "Bestechnic(Shanghai),Ltd"
      #x02B1 "Raden Inc"
      #x02B2 "JouZen Oy"
      #x02B3 "CLABER S.P.A"
      #x02B4 "Hyginex, Inc"
      #x02B5 "HANSHIN ELECTRIC RAILWAY CO.,LTD"
      #x02B6 "Schneider Electric"
      #x02B7 "Oort Technologies LLC"
      #x02B8 "Chrono Therapeutics"
      #x02B9 "Rinnai Corporation"
      #x02BA "Swissprime Technologies AG"
      #x02BB "Koha.,Co.Ltd"
      #x02BC "Genevac Ltd"
      #x02BD "Chemtronics"
      #x02BE "Seguro Technology Sp. z o.o"
      #x02BF "Redbird Flight Simulations"
      #x02C0 "Dash Robotics"
      #x02C1 "LINE Corporation"
      #x02C2 "Guillemot Corporation"
      #x02C3 "Techtronic Power Tools Technology Limited"
      #x02C4 "Wilson Sporting Goods"
      #x02C5 "Lenovo (Singapore) Pte Ltd. ( 联想(新加坡))"
      #x02C6 "Ayatan Sensors"
      #x02C7 "Electronics Tomorrow Limited"
      #x02C8 "VASCO Data Security International, Inc"
      #x02C9 "PayRange Inc"
      #x02CA "ABOV Semiconductor"
      #x02CB "AINA-Wireless Inc"
      #x02CC "Eijkelkamp Soil & Water"
      #x02CD "BMA ergonomics b.v"
      #x02CE "Teva Branded Pharmaceutical Products R&D, Inc"
      #x02CF "Anima"
      #x02D0 "3M"
      #x02D1 "Empatica Srl"
      #x02D2 "Afero, Inc"
      #x02D3 "Powercast Corporation"
      #x02D4 "Secuyou ApS"
      #x02D5 "OMRON Corporation"
      #x02D6 "Send Solutions"
      #x02D7 "NIPPON SYSTEMWARE CO.,LTD"
      #x02D8 "Neosfar"
      #x02D9 "Fliegl Agrartechnik GmbH"
      #x02DA "Gilvader"
      #x02DB "Digi International Inc (R)"
      #x02DC "DeWalch Technologies, Inc"
      #x02DD "Flint Rehabilitation Devices, LLC"
      #x02DE "Samsung SDS Co., Ltd"
      #x02DF "Blur Product Development"
      #x02E0 "University of Michigan"
      #x02E1 "Victron Energy BV"
      #x02E2 "NTT docomo"
      #x02E3 "Carmanah Technologies Corp"
      #x02E4 "Bytestorm Ltd"
      #x02E5 "Espressif Incorporated ( 乐鑫信息科技(上海)有限公司)"
      #x02E6 "Unwire"
      #x02E7 "Connected Yard, Inc"
      #x02E8 "American Music Environments"
      #x02E9 "Sensogram Technologies, Inc"
      #x02EA "Fujitsu Limited"
      #x02EB "Ardic Technology"
      #x02EC "Delta Systems, Inc"
      #x02ED "HTC Corporation"
      #x02EE "Citizen Holdings Co., Ltd"
      #x02EF "SMART-INNOVATION.inc"
      #x02F0 "Blackrat Software"
      #x02F1 "The Idea Cave, LLC"
      #x02F2 "GoPro, Inc"
      #x02F3 "AuthAir, Inc"
      #x02F4 "Vensi, Inc"
      #x02F5 "Indagem Tech LLC"
      #x02F6 "Intemo Technologies"
      #x02F7 "DreamVisions co., Ltd"
      #x02F8 "Runteq Oy Ltd"
      #x02F9 "IMAGINATION TECHNOLOGIES LTD"
      #x02FA "CoSTAR TEchnologies"
      #x02FB "Clarius Mobile Health Corp"
      #x02FC "Shanghai Frequen Microelectronics Co., Ltd"
      #x02FD "Uwanna, Inc"
      #x02FE "Lierda Science & Technology Group Co., Ltd"
      #x02FF "Silicon Laboratories"
      #x0300 "World Moto Inc"
      #x0301 "Giatec Scientific Inc"
      #x0302 "Loop Devices, Inc"
      #x0303 "IACA electronique"
      #x0304 "Proxy Technologies, Inc"
      #x0305 "Swipp ApS"
      #x0306 "Life Laboratory Inc"
      #x0307 "FUJI INDUSTRIAL CO.,LTD"
      #x0308 "Surefire, LLC"
      #x0309 "Dolby Labs"
      #x030A "Ellisys"
      #x030B "Magnitude Lighting Converters"
      #x030C "Hilti AG"
      #x030D "Devdata S.r.l"
      #x030E "Deviceworx"
      #x030F "Shortcut Labs"
      #x0310 "SGL Italia S.r.l"
      #x0311 "PEEQ DATA"
      #x0312 "Ducere Technologies Pvt Ltd"
      #x0313 "DiveNav, Inc"
      #x0314 "RIIG AI Sp. z o.o"
      #x0315 "Thermo Fisher Scientific"
      #x0316 "AG Measurematics Pvt. Ltd"
      #x0317 "CHUO Electronics CO., LTD"
      #x0318 "Aspenta International"
      #x0319 "Eugster Frismag AG"
      #x031A "Amber wireless GmbH"
      #x031B "HQ Inc"
      #x031C "Lab Sensor Solutions"
      #x031D "Enterlab ApS"
      #x031E "Eyefi, Inc"
      #x031F "MetaSystem S.p.A"
      #x0320 "SONO ELECTRONICS. CO., LTD"
      #x0321 "Jewelbots"
      #x0322 "Compumedics Limited"
      #x0323 "Rotor Bike Components"
      #x0324 "Astro, Inc"
      #x0325 "Amotus Solutions"
      #x0326 "Healthwear Technologies (Changzhou)Ltd"
      #x0327 "Essex Electronics"
      #x0328 "Grundfos A/S"
      #x0329 "Eargo, Inc"
      #x032A "Electronic Design Lab"
      #x032B "ESYLUX"
      #x032C "NIPPON SMT.CO.,Ltd"
      #x032D "BM innovations GmbH"
      #x032E "indoormap"
      #x032F "OttoQ Inc"
      #x0330 "North Pole Engineering"
      #x0331 "3flares Technologies Inc"
      #x0332 "Electrocompaniet A.S"
      #x0333 "Mul-T-Lock"
      #x0334 "Corentium AS"
      #x0335 "Enlighted Inc"
      #x0336 "GISTIC"
      #x0337 "AJP2 Holdings, LLC"
      #x0338 "COBI GmbH"
      #x0339 "Blue Sky Scientific, LLC"
      #x033A "Appception, Inc"
      #x033B "Courtney Thorne Limited"
      #x033C "Virtuosys"
      #x033D "TPV Technology Limited"
      #x033E "Monitra SA"
      #x033F "Automation Components, Inc"
      #x0340 "Letsense s.r.l"
      #x0341 "Etesian Technologies LLC"
      #x0342 "GERTEC BRASIL LTDA"
      #x0343 "Drekker Development Pty. Ltd"
      #x0344 "Whirl Inc"
      #x0345 "Locus Positioning"
      #x0346 "Acuity Brands Lighting, Inc"
      #x0347 "Prevent Biometrics"
      #x0348 "Arioneo"
      #x0349 "VersaMe"
      #x034A "Vaddio"
      #x034B "Libratone A/S"
      #x034C "HM Electronics, Inc"
      #x034D "TASER International, Inc"
      #x034E "SafeTrust Inc"
      #x034F "Heartland Payment Systems"
      #x0350 "Bitstrata Systems Inc"
      #x0351 "Pieps GmbH"
      #x0352 "iRiding(Xiamen)Technology Co.,Ltd"
      #x0353 "Alpha Audiotronics, Inc"
      #x0354 "TOPPAN FORMS CO.,LTD"
      #x0355 "Sigma Designs, Inc"
      #x0356 "Spectrum Brands, Inc"
      #x0357 "Polymap Wireless"
      #x0358 "MagniWare Ltd"
      #x0359 "Novotec Medical GmbH"
      #x035A "Medicom Innovation Partner a/s"
      #x035B "Matrix Inc"
      #x035C "Eaton Corporation"
      #x035D "KYS"
      #x035E "Naya Health, Inc"
      #x035F "Acromag"
      #x0360 "Insulet Corporation"
      #x0361 "Wellinks Inc"
      #x0362 "ON Semiconductor"
      #x0363 "FREELAP SA"
      #x0364 "Favero Electronics Srl"
      #x0365 "BioMech Sensor LLC"
      #x0366 "BOLTT Sports technologies Private limited"
      #x0367 "Saphe International"
      #x0368 "Metormote AB"
      #x0369 "littleBits"
      #x036A "SetPoint Medical"
      #x036B "BRControls Products BV"
      #x036C "Zipcar"
      #x036D "AirBolt Pty Ltd"
      #x036E "KeepTruckin Inc"
      #x036F "Motiv, Inc"
      #x0370 "Wazombi Labs OÜ"
      #x0371 "ORBCOMM"
      #x0372 "Nixie Labs, Inc"
      #x0373 "AppNearMe Ltd"
      #x0374 "Holman Industries"
      #x0375 "Expain AS"
      #x0376 "Electronic Temperature Instruments Ltd"
      #x0377 "Plejd AB"
      #x0378 "Propeller Health"
      #x0379 "Shenzhen iMCO Electronic Technology Co.,Ltd"
      #x037A "Algoria"
      #x037B "Apption Labs Inc"
      #x037C "Cronologics Corporation"
      #x037D "MICRODIA Ltd"
      #x037E "lulabytes S.L"
      #x037F "Nestec S.A"
      #x0380 "LLC MEGA-F service"
      #x0381 "Sharp Corporation"
      #x0382 "Precision Outcomes Ltd"
      #x0383 "Kronos Incorporated"
      #x0384 "OCOSMOS Co., Ltd"
      #x0385 "Embedded Electronic Solutions Ltd. dba e2Solutions"
      #x0386 "Aterica Inc"
      #x0387 "BluStor PMC, Inc"
      #x0388 "Kapsch TrafficCom AB"
      #x0389 "ActiveBlu Corporation"
      #x038A "Kohler Mira Limited"
      #x038B "Noke"
      #x038C "Appion Inc"
      #x038D "Resmed Ltd"
      #x038E "Crownstone B.V"
      #x038F "Xiaomi Inc"
      #x0390 "INFOTECH s.r.o"
      #x0391 "Thingsquare AB"
      #x0392 "T&D"
      #x0393 "LAVAZZA S.p.A"
      #x0394 "Netclearance Systems, Inc"
      #x0395 "SDATAWAY"
      #x0396 "BLOKS GmbH"
      #x0397 "LEGO System A/S"
      #x0398 "Thetatronics Ltd"
      #x0399 "Nikon Corporation"
      #x039A "NeST"
      #x039B "South Silicon Valley Microelectronics"
      #x039C "ALE International"
      #x039D "CareView Communications, Inc"
      #x039E "SchoolBoard Limited"
      #x039F "Molex Corporation"
      #x03A0 "IVT Wireless Limited"
      #x03A1 "Alpine Labs LLC"
      #x03A2 "Candura Instruments"
      #x03A3 "SmartMovt Technology Co., Ltd"
      #x03A4 "Token Zero Ltd"
      #x03A5 "ACE CAD Enterprise Co., Ltd. (ACECAD)"
      #x03A6 "Medela, Inc"
      #x03A7 "AeroScout"
      #x03A8 "Esrille Inc"
      #x03A9 "THINKERLY SRL"
      #x03AA "Exon Sp. z o.o"
      #x03AB "Meizu Technology Co., Ltd"
      #x03AC "Smablo LTD"
      #x03AD "XiQ"
      #x03AE "Allswell Inc"
      #x03AF "Comm-N-Sense Corp DBA Verigo"
      #x03B0 "VIBRADORM GmbH"
      #x03B1 "Otodata Wireless Network Inc"
      #x03B2 "Propagation Systems Limited"
      #x03B3 "Midwest Instruments & Controls"
      #x03B4 "Alpha Nodus, inc"
      #x03B5 "petPOMM, Inc"
      #x03B6 "Mattel"
      #x03B7 "Airbly Inc"
      #x03B8 "A-Safe Limited"
      #x03B9 "FREDERIQUE CONSTANT SA"
      #x03BA "Maxscend Microelectronics Company Limited"
      #x03BB "Abbott Diabetes Care"
      #x03BC "ASB Bank Ltd"
      #x03BD "amadas"
      #x03BE "Applied Science, Inc"
      #x03BF "iLumi Solutions Inc"
      #x03C0 "Arch Systems Inc"
      #x03C1 "Ember Technologies, Inc"
      #x03C2 "Snapchat Inc"
      #x03C3 "Casambi Technologies Oy"
      #x03C4 "Pico Technology Inc"
      #x03C5 "St. Jude Medical, Inc"
      #x03C6 "Intricon"
      #x03C7 "Structural Health Systems, Inc"
      #x03C8 "Avvel International"
      #x03C9 "Gallagher Group"
      #x03CA "In2things Automation Pvt. Ltd"
      #x03CB "SYSDEV Srl"
      #x03CC "Vonkil Technologies Ltd"
      #x03CD "Wynd Technologies, Inc"
      #x03CE "CONTRINEX S.A"
      #x03CF "MIRA, Inc"
      #x03D0 "Watteam Ltd"
      #x03D1 "Density Inc"
      #x03D2 "IOT Pot India Private Limited"
      #x03D3 "Sigma Connectivity AB"
      #x03D4 "PEG PEREGO SPA"
      #x03D5 "Wyzelink Systems Inc"
      #x03D6 "Yota Devices LTD"
      #x03D7 "FINSECUR"
      #x03D8 "Zen-Me Labs Ltd"
      #x03D9 "3IWare Co., Ltd"
      #x03DA "EnOcean GmbH"
      #x03DB "Instabeat, Inc"
      #x03DC "Nima Labs"
      #x03DD "Andreas Stihl AG & Co. KG"
      #x03DE "Nathan Rhoades LLC"
      #x03DF "Grob Technologies, LLC"
      #x03E0 "Actions (Zhuhai) Technology Co., Limited"
      #x03E1 "SPD Development Company Ltd"
      #x03E2 "Sensoan Oy"
      #x03E3 "Qualcomm Life Inc"
      #x03E4 "Chip-ing AG"
      #x03E5 "ffly4u"
      #x03E6 "IoT Instruments Oy"
      #x03E7 "TRUE Fitness Technology"
      #x03E8 "Reiner Kartengeraete GmbH & Co. KG"
      #x03E9 "SHENZHEN LEMONJOY TECHNOLOGY CO., LTD"
      #x03EA "Hello Inc"
      #x03EB "Evollve Inc"
      #x03EC "Jigowatts Inc"
      #x03ED "BASIC MICRO.COM,INC"
      #x03EE "CUBE TECHNOLOGIES"
      #x03EF "foolography GmbH"
      #x03F0 "CLINK"
      #x03F1 "Hestan Smart Cooking Inc"
      #x03F2 "WindowMaster A/S"
      #x03F3 "Flowscape AB"
      #x03F4 "PAL Technologies Ltd"
      #x03F5 "WHERE, Inc"
      #x03F6 "Iton Technology Corp"
      #x03F7 "Owl Labs Inc"
      #x03F8 "Rockford Corp"
      #x03F9 "Becon Technologies Co.,Ltd"
      #x03FA "Vyassoft Technologies Inc"
      #x03FB "Nox Medical"
      #x03FC "Kimberly-Clark"
      #x03FD "Trimble Navigation Ltd"
      #x03FE "Littelfuse"
      #x03FF "Withings"
      #x0400 "i-developer IT Beratung UG"
      #x0401 "Relations Inc"
      #x0402 "Sears Holdings Corporation"
      #x0403 "Gantner Electronic GmbH"
      #x0404 "Authomate Inc"
      #x0405 "Vertex International, Inc"
      #x0406 "Airtago"
      #x0407 "Swiss Audio SA"
      #x0408 "ToGetHome Inc"
      #x0409 "AXIS"
      #x040A "Openmatics"
      #x040B "Jana Care Inc"
      #x040C "Senix Corporation"
      #x040D "NorthStar Battery Company, LLC"
      #x040E "SKF (U.K.) Limited"
      #x040F "CO-AX Technology, Inc"
      #x0410 "Fender Musical Instruments"
      #x0411 "Luidia Inc"
      #x0412 "SEFAM"
      #x0413 "Wireless Cables Inc"
      #x0414 "Lightning Protection International Pty Ltd"
      #x0415 "Uber Technologies Inc"
      #x0416 "SODA GmbH"
      #x0417 "Fatigue Science"
      #x0418 "Alpine Electronics Inc"
      #x0419 "Novalogy LTD"
      #x041A "Friday Labs Limited"
      #x041B "OrthoAccel Technologies"
      #x041C "WaterGuru, Inc"
      #x041D "Benning Elektrotechnik und Elektronik GmbH & Co. KG"
      #x041E "Dell Computer Corporation"
      #x041F "Kopin Corporation"
      #x0420 "TecBakery GmbH"
      #x0421 "Backbone Labs, Inc"
      #x0422 "DELSEY SA"
      #x0423 "Chargifi Limited"
      #x0424 "Trainesense Ltd"
      #x0425 "Unify Software and Solutions GmbH & Co. KG"
      #x0426 "Husqvarna AB"
      #x0427 "Focus fleet and fuel management inc"
      #x0428 "SmallLoop, LLC"
      #x0429 "Prolon Inc"
      #x042A "BD Medical"
      #x042B "iMicroMed Incorporated"
      #x042C "Ticto N.V"
      #x042D "Meshtech AS"
      #x042E "MemCachier Inc"
      #x042F "Danfoss A/S"
      #x0430 "SnapStyk Inc"
      #x0431 "Amway Corporation"
      #x0432 "Silk Labs, Inc"
      #x0433 "Pillsy Inc"
      #x0434 "Hatch Baby, Inc"
      #x0435 "Blocks Wearables Ltd"
      #x0436 "Drayson Technologies (Europe) Limited"
      #x0437 "eBest IOT Inc"
      #x0438 "Helvar Ltd"
      #x0439 "Radiance Technologies"
      #x043A "Nuheara Limited"
      #x043B "Appside co., ltd"
      #x043C "DeLaval"
      #x043D "Coiler Corporation"
      #x043E "Thermomedics, Inc"
      #x043F "Tentacle Sync GmbH"
      #x0440 "Valencell, Inc"
      #x0441 "iProtoXi Oy"
      #x0442 "SECOM CO., LTD"
      #x0443 "Tucker International LLC"
      #x0444 "Metanate Limited"
      #x0445 "Kobian Canada Inc"
      #x0446 "NETGEAR, Inc"
      #x0447 "Fabtronics Australia Pty Ltd"
      #x0448 "Grand Centrix GmbH"
      #x0449 "1UP USA.com llc"
      #x044A "SHIMANO INC"
      #x044B "Nain Inc"
      #x044C "LifeStyle Lock, LLC"
      #x044D "VEGA Grieshaber KG"
      #x044E "Xtrava Inc"
      #x044F "TTS Tooltechnic Systems AG & Co. KG"
      #x0450 "Teenage Engineering AB"
      #x0451 "Tunstall Nordic AB"
      #x0452 "Svep Design Center AB"
      #x0453 "GreenPeak Technologies BV"
      #x0454 "Sphinx Electronics GmbH & Co KG"
      #x0455 "Atomation"
      #x0456 "Nemik Consulting Inc"
      #x0457 "RF INNOVATION"
      #x0458 "Mini Solution Co., Ltd"
      #x0459 "Lumenetix, Inc"
      #x045A "2048450 Ontario Inc"
      #x045B "SPACEEK LTD"
      #x045C "Delta T Corporation"
      #x045D "Boston Scientific Corporation"
      #x045E "Nuviz, Inc"
      #x045F "Real Time Automation, Inc"
      #x0460 "Kolibree"
      #x0461 "vhf elektronik GmbH"
      #x0462 "Bonsai Systems GmbH"
      #x0463 "Fathom Systems Inc"
      #x0464 "Bellman & Symfon"
      #x0465 "International Forte Group LLC"
      #x0466 "CycleLabs Solutions inc"
      #x0467 "Codenex Oy"
      #x0468 "Kynesim Ltd"
      #x0469 "Palago AB"
      #x046A "INSIGMA INC"
      #x046B "PMD Solutions"
      #x046C "Qingdao Realtime Technology Co., Ltd"
      #x046D "BEGA Gantenbrink-Leuchten KG"
      #x046E "Pambor Ltd"
      #x046F "Develco Products A/S"
      #x0470 "iDesign s.r.l"
      #x0471 "TiVo Corp"
      #x0472 "Control-J Pty Ltd"
      #x0473 "Steelcase, Inc"
      #x0474 "iApartment co., ltd"
      #x0475 "Icom inc"
      #x0476 "Oxstren Wearable Technologies Private Limited"
      #x0477 "Blue Spark Technologies"
      #x0478 "FarSite Communications Limited"
      #x0479 "mywerk system GmbH"
      #x047A "Sinosun Technology Co., Ltd"
      #x047B "MIYOSHI ELECTRONICS CORPORATION"
      #x047C "POWERMAT LTD"
      #x047D "Occly LLC"
      #x047E "OurHub Dev IvS"
      #x047F "Pro-Mark, Inc"
      #x0480 "Dynometrics Inc"
      #x0481 "Quintrax Limited"
      #x0482 "POS Tuning Udo Vosshenrich GmbH & Co. KG"
      #x0483 "Multi Care Systems B.V"
      #x0484 "Revol Technologies Inc"
      #x0485 "SKIDATA AG"
      #x0486 "DEV TECNOLOGIA INDUSTRIA, COMERCIO E MANUTENCAO DE EQUIPAMENTOS LTDA. - ME"
      #x0487 "Centrica Connected Home"
      #x0488 "Automotive Data Solutions Inc"
      #x0489 "Igarashi Engineering"
      #x048A "Taelek Oy"
      #x048B "CP Electronics Limited"
      #x048C "Vectronix AG"
      #x048D "S-Labs Sp. z o.o"
      #x048E "Companion Medical, Inc"
      #x048F "BlueKitchen GmbH"
      #x0490 "Matting AB"
      #x0491 "SOREX - Wireless Solutions GmbH"
      #x0492 "ADC Technology, Inc"
      #x0493 "Lynxemi Pte Ltd"
      #x0494 "SENNHEISER electronic GmbH & Co. KG"
      #x0495 "LMT Mercer Group, Inc"
      #x0496 "Polymorphic Labs LLC"
      #x0497 "Cochlear Limited"
      #x0498 "METER Group, Inc. USA"
      #x0499 "Ruuvi Innovations Ltd"
      #x049A "Situne AS"
      #x049B "nVisti, LLC"
      #x049C "DyOcean"
      #x049D "Uhlmann & Zacher GmbH"
      #x049E "AND!XOR LLC"
      #x049F "tictote AB"
      #x04A0 "Vypin, LLC"
      #x04A1 "PNI Sensor Corporation"
      #x04A2 "ovrEngineered, LLC"
      #x04A3 "GT-tronics HK Ltd"
      #x04A4 "Herbert Waldmann GmbH & Co. KG"
      #x04A5 "Guangzhou FiiO Electronics Technology Co.,Ltd"
      #x04A6 "Vinetech Co., Ltd"
      #x04A7 "Dallas Logic Corporation"
      #x04A8 "BioTex, Inc"
      #x04A9 "DISCOVERY SOUND TECHNOLOGY, LLC"
      #x04AA "LINKIO SAS"
      #x04AB "Harbortronics, Inc"
      #x04AC "Undagrid B.V"
      #x04AD "Shure Inc"
      #x04AE "ERM Electronic Systems LTD"
      #x04AF "BIOROWER Handelsagentur GmbH"
      #x04B0 "Weba Sport und Med. Artikel GmbH"
      #x04B1 "Kartographers Technologies Pvt. Ltd"
      #x04B2 "The Shadow on the Moon"
      #x04B3 "mobike (Hong Kong) Limited"
      #x04B4 "Inuheat Group AB"
      #x04B5 "Swiftronix AB"
      #x04B6 "Diagnoptics Technologies"
      #x04B7 "Analog Devices, Inc"
      #x04B8 "Soraa Inc"
      #x04B9 "CSR Building Products Limited"
      #x04BA "Crestron Electronics, Inc"
      #x04BB "Neatebox Ltd"
      #x04BC "Draegerwerk AG & Co. KGaA"
      #x04BD "AlbynMedical"
      #x04BE "Averos FZCO"
      #x04BF "VIT Initiative, LLC"
      #x04C0 "Statsports International"
      #x04C1 "Sospitas, s.r.o"
      #x04C2 "Dmet Products Corp"
      #x04C3 "Mantracourt Electronics Limited"
      #x04C4 "TeAM Hutchins AB"
      #x04C5 "Seibert Williams Glass, LLC"
      #x04C6 "Insta GmbH"
      #x04C7 "Svantek Sp. z o.o"
      #x04C8 "Shanghai Flyco Electrical Appliance Co., Ltd"
      #x04C9 "Thornwave Labs Inc"
      #x04CA "Steiner-Optik GmbH"
      #x04CB "Novo Nordisk A/S"
      #x04CC "Enflux Inc"
      #x04CD "Safetech Products LLC"
      #x04CE "GOOOLED S.R.L"
      #x04CF "DOM Sicherheitstechnik GmbH & Co. KG"
      #x04D0 "Olympus Corporation"
      #x04D1 "KTS GmbH"
      #x04D2 "Anloq Technologies Inc"
      #x04D3 "Queercon, Inc"
      #x04D4 "5th Element Ltd"
      #x04D5 "Gooee Limited"
      #x04D6 "LUGLOC LLC"
      #x04D7 "Blincam, Inc"
      #x04D8 "FUJIFILM Corporation"
      #x04D9 "RandMcNally"
      #x04DA "Franceschi Marina snc"
      #x04DB "Engineered Audio, LLC"
      #x04DC "IOTTIVE (OPC) PRIVATE LIMITED"
      #x04DD "4MOD Technology"
      #x04DE "Lutron Electronics Co., Inc"
      #x04DF "Emerson"
      #x04E0 "Guardtec, Inc"
      #x04E1 "REACTEC LIMITED"
      #x04E2 "EllieGrid"
      #x04E3 "Under Armour"
      #x04E4 "Woodenshark"
      #x04E5 "Avack Oy"
      #x04E6 "Smart Solution Technology, Inc"
      #x04E7 "REHABTRONICS INC"
      #x04E8 "STABILO International"
      #x04E9 "Busch Jaeger Elektro GmbH"
      #x04EA "Pacific Bioscience Laboratories, Inc"
      #x04EB "Bird Home Automation GmbH"
      #x04EC "Motorola Solutions"
      #x04ED "R9 Technology, Inc"
      #x04EE "Auxivia"
      #x04EF "DaisyWorks, Inc"
      #x04F0 "Kosi Limited"
      #x04F1 "Theben AG"
      #x04F2 "InDreamer Techsol Private Limited"
      #x04F3 "Cerevast Medical"
      #x04F4 "ZanCompute Inc"
      #x04F5 "Pirelli Tyre S.P.A"
      #x04F6 "McLear Limited"
      #x04F7 "Shenzhen Huiding Technology Co.,Ltd"
      #x04F8 "Convergence Systems Limited"
      #x04F9 "Interactio"
      #x04FA "Androtec GmbH"
      #x04FB "Benchmark Drives GmbH & Co. KG"
      #x04FC "SwingLync L. L. C"
      #x04FD "Tapkey GmbH"
      #x04FE "Woosim Systems Inc"
      #x04FF "Microsemi Corporation"
      #x0500 "Wiliot LTD"
      #x0501 "Polaris IND"
      #x0502 "Specifi-Kali LLC"
      #x0503 "Locoroll, Inc"
      #x0504 "PHYPLUS Inc"
      #x0505 "Inplay Technologies LLC"
      #x0506 "Hager"
      #x0507 "Yellowcog"
      #x0508 "Axes System sp. z o. o"
      #x0509 "myLIFTER Inc"
      #x050A "Shake-on B.V"
      #x050B "Vibrissa Inc"
      #x050C "OSRAM GmbH"
      #x050D "TRSystems GmbH"
      #x050E "Yichip Microelectronics (Hangzhou) Co.,Ltd"
      #x050F "Foundation Engineering LLC"
      #x0510 "UNI-ELECTRONICS, INC"
      #x0511 "Brookfield Equinox LLC"
      #x0512 "Soprod SA"
      #x0513 "9974091 Canada Inc"
      #x0514 "FIBRO GmbH"
      #x0515 "RB Controls Co., Ltd"
      #x0516 "Footmarks"
      #x0517 "Amtronic Sverige AB (formerly Amcore AB)"
      #x0518 "MAMORIO.inc"
      #x0519 "Tyto Life LLC"
      #x051A "Leica Camera AG"
      #x051B "Angee Technologies Ltd"
      #x051C "EDPS"
      #x051D "OFF Line Co., Ltd"
      #x051E "Detect Blue Limited"
      #x051F "Setec Pty Ltd"
      #x0520 "Target Corporation"
      #x0521 "IAI Corporation"
      #x0522 "NS Tech, Inc"
      #x0523 "MTG Co., Ltd"
      #x0524 "Hangzhou iMagic Technology Co., Ltd"
      #x0525 "HONGKONG NANO IC TECHNOLOGIES  CO., LIMITED"
      #x0526 "Honeywell International Inc"
      #x0527 "Albrecht JUNG"
      #x0528 "Lunera Lighting Inc"
      #x0529 "Lumen UAB"
      #x052A "Keynes Controls Ltd"
      #x052B "Novartis AG"
      #x052C "Geosatis SA"
      #x052D "EXFO, Inc"
      #x052E "LEDVANCE GmbH"
      #x052F "Center ID Corp"
      #x0530 "Adolene, Inc"
      #x0531 "D&M Holdings Inc"
      #x0532 "CRESCO Wireless, Inc"
      #x0533 "Nura Operations Pty Ltd"
      #x0534 "Frontiergadget, Inc"
      #x0535 "Smart Component Technologies Limited"
      #x0536 "ZTR Control Systems LLC"
      #x0537 "MetaLogics Corporation"
      #x0538 "Medela AG"
      #x0539 "OPPLE Lighting Co., Ltd"
      #x053A "Savitech Corp"
      #x053B "prodigy"
      #x053C "Screenovate Technologies Ltd"
      #x053D "TESA SA"
      #x053E "CLIM8 LIMITED"
      #x053F "Silergy Corp"
      #x0540 "SilverPlus, Inc"
      #x0541 "Sharknet srl"
      #x0542 "Mist Systems, Inc"
      #x0543 "MIWA LOCK CO.,Ltd"
      #x0544 "OrthoSensor, Inc"
      #x0545 "Candy Hoover Group s.r.l"
      #x0546 "Apexar Technologies S.A"
      #x0547 "LOGICDATA d.o.o"
      #x0548 "Knick Elektronische Messgeraete GmbH & Co. KG"
      #x0549 "Smart Technologies and Investment Limited"
      #x054A "Linough Inc"
      #x054B "Advanced Electronic Designs, Inc"
      #x054C "Carefree Scott Fetzer Co Inc"
      #x054D "Sensome"
      #x054E "FORTRONIK storitve d.o.o"
      #x054F "Sinnoz"
      #x0550 "Versa Networks, Inc"
      #x0551 "Sylero"
      #x0552 "Avempace SARL"
      #x0553 "Nintendo Co., Ltd"
      #x0554 "National Instruments"
      #x0555 "KROHNE Messtechnik GmbH"
      #x0556 "Otodynamics Ltd"
      #x0557 "Arwin Technology Limited"
      #x0558 "benegear, inc"
      #x0559 "Newcon Optik"
      #x055A "CANDY HOUSE, Inc"
      #x055B "FRANKLIN TECHNOLOGY INC"
      #x055C "Lely"
      #x055D "Valve Corporation"
      #x055E "Hekatron Vertriebs GmbH"
      #x055F "PROTECH S.A.S. DI GIRARDI ANDREA & C"
      #x0560 "Sarita CareTech APS (formerly Sarita CareTech IVS)"
      #x0561 "Finder S.p.A"
      #x0562 "Thalmic Labs Inc"
      #x0563 "Steinel Vertrieb GmbH"
      #x0564 "Beghelli Spa"
      #x0565 "Beijing Smartspace Technologies Inc"
      #x0566 "CORE TRANSPORT TECHNOLOGIES NZ LIMITED"
      #x0567 "Xiamen Everesports Goods Co., Ltd"
      #x0568 "Bodyport Inc"
      #x0569 "Audionics System, INC"
      #x056A "Flipnavi Co.,Ltd"
      #x056B "Rion Co., Ltd"
      #x056C "Long Range Systems, LLC"
      #x056D "Redmond Industrial Group LLC"
      #x056E "VIZPIN INC"
      #x056F "BikeFinder AS"
      #x0570 "Consumer Sleep Solutions LLC"
      #x0571 "PSIKICK, INC"
      #x0572 "AntTail.com"
      #x0573 "Lighting Science Group Corp"
      #x0574 "AFFORDABLE ELECTRONICS INC"
      #x0575 "Integral Memroy Plc"
      #x0576 "Globalstar, Inc"
      #x0577 "True Wearables, Inc"
      #x0578 "Wellington Drive Technologies Ltd"
      #x0579 "Ensemble Tech Private Limited"
      #x057A "OMNI Remotes"
      #x057B "Duracell U.S. Operations Inc"
      #x057C "Toor Technologies LLC"
      #x057D "Instinct Performance"
      #x057E "Beco, Inc"
      #x057F "Scuf Gaming International, LLC"
      #x0580 "ARANZ Medical Limited"
      #x0581 "LYS TECHNOLOGIES LTD"
      #x0582 "Breakwall Analytics, LLC"
      #x0583 "Code Blue Communications"
      #x0584 "Gira Giersiepen GmbH & Co. KG"
      #x0585 "Hearing Lab Technology"
      #x0586 "LEGRAND"
      #x0587 "Derichs GmbH"
      #x0588 "ALT-TEKNIK LLC"
      #x0589 "Star Technologies"
      #x058A "START TODAY CO.,LTD"
      #x058B "Maxim Integrated Products"
      #x058C "MERCK Kommanditgesellschaft auf Aktien"
      #x058D "Jungheinrich Aktiengesellschaft"
      #x058E "Oculus VR, LLC"
      #x058F "HENDON SEMICONDUCTORS PTY LTD"
      #x0590 "Pur3 Ltd"
      #x0591 "Viasat Group S.p.A"
      #x0592 "IZITHERM"
      #x0593 "Spaulding Clinical Research"
      #x0594 "Kohler Company"
      #x0595 "Inor Process AB"
      #x0596 "My Smart Blinds"
      #x0597 "RadioPulse Inc"
      #x0598 "rapitag GmbH"
      #x0599 "Lazlo326, LLC"
      #x059A "Teledyne Lecroy, Inc"
      #x059B "Dataflow Systems Limited"
      #x059C "Macrogiga Electronics"
      #x059D "Tandem Diabetes Care"
      #x059E "Polycom, Inc"
      #x059F "Fisher & Paykel Healthcare"
      #x05A0 "RCP Software Oy"
      #x05A1 "Shanghai Xiaoyi Technology Co.,Ltd"
      #x05A2 "ADHERIUM(NZ) LIMITED"
      #x05A3 "Axiomware Systems Incorporated"
      #x05A4 "O. E. M. Controls, Inc"
      #x05A5 "Kiiroo BV"
      #x05A6 "Telecon Mobile Limited"
      #x05A7 "Sonos Inc"
      #x05A8 "Tom Allebrandi Consulting"
      #x05A9 "Monidor"
      #x05AA "Tramex Limited"
      #x05AB "Nofence AS"
      #x05AC "GoerTek Dynaudio Co., Ltd"
      #x05AD "INIA"
      #x05AE "CARMATE MFG.CO.,LTD"
      #x05AF "ONvocal"
      #x05B0 "NewTec GmbH"
      #x05B1 "Medallion Instrumentation Systems"
      #x05B2 "CAREL INDUSTRIES S.P.A"
      #x05B3 "Parabit Systems, Inc"
      #x05B4 "White Horse Scientific ltd"
      #x05B5 "verisilicon"
      #x05B6 "Elecs Industry Co.,Ltd"
      #x05B7 "Beijing Pinecone Electronics Co.,Ltd"
      #x05B8 "Ambystoma Labs Inc"
      #x05B9 "Suzhou Pairlink Network Technology"
      #x05BA "igloohome"
      #x05BB "Oxford Metrics plc"
      #x05BC "Leviton Mfg. Co., Inc"
      #x05BD "ULC Robotics Inc"
      #x05BE "RFID Global by Softwork SrL"
      #x05BF "Real-World-Systems Corporation"
      #x05C0 "Nalu Medical, Inc"
      #x05C1 "P.I.Engineering"
      #x05C2 "Grote Industries"
      #x05C3 "Runtime, Inc"
      #x05C4 "Codecoup sp. z o.o. sp. k"
      #x05C5 "SELVE GmbH & Co. KG"
      #x05C6 "Smart Animal Training Systems, LLC"
      #x05C7 "Lippert Components, INC"
      #x05C8 "SOMFY SAS"
      #x05C9 "TBS Electronics B.V"
      #x05CA "MHL Custom Inc"
      #x05CB "LucentWear LLC"
      #x05CC "WATTS ELECTRONICS"
      #x05CD "RJ Brands LLC"
      #x05CE "V-ZUG Ltd"
      #x05CF "Biowatch SA"
      #x05D0 "Anova Applied Electronics"
      #x05D1 "Lindab AB"
      #x05D2 "frogblue TECHNOLOGY GmbH"
      #x05D3 "Acurable Limited"
      #x05D4 "LAMPLIGHT Co., Ltd"
      #x05D5 "TEGAM, Inc"
      #x05D6 "Zhuhai Jieli technology Co.,Ltd"
      #x05D7 "modum.io AG"
      #x05D8 "Farm Jenny LLC"
      #x05D9 "Toyo Electronics Corporation"
      #x05DA "Applied Neural Research Corp"
      #x05DB "Avid Identification Systems, Inc"
      #x05DC "Petronics Inc"
      #x05DD "essentim GmbH"
      #x05DE "QT Medical INC"
      #x05DF "VIRTUALCLINIC.DIRECT LIMITED"
      #x05E0 "Viper Design LLC"
      #x05E1 "Human, Incorporated"
      #x05E2 "stAPPtronics GmbH"
      #x05E3 "Elemental Machines, Inc"
      #x05E4 "Taiyo Yuden Co., Ltd"
      #x05E5 "INEO ENERGY& SYSTEMS"
      #x05E6 "Motion Instruments Inc"
      #x05E7 "PressurePro"
      #x05E8 "COWBOY"
      #x05E9 "iconmobile GmbH"
      #x05EA "ACS-Control-System GmbH"
      #x05EB "Bayerische Motoren Werke AG"
      #x05EC "Gycom Svenska AB"
      #x05ED "Fuji Xerox Co., Ltd"
      #x05EE "Glide Inc"
      #x05EF "SIKOM AS"
      #x05F0 "beken"
      #x05F1 "The Linux Foundation"
      #x05F2 "Try and E CO.,LTD"
      #x05F3 "SeeScan"
      #x05F4 "Clearity, LLC"
      #x05F5 "GS TAG"
      #x05F6 "DPTechnics"
      #x05F7 "TRACMO, INC"
      #x05F8 "Anki Inc"
      #x05F9 "Hagleitner Hygiene International GmbH"
      #x05FA "Konami Sports Life Co., Ltd"
      #x05FB "Arblet Inc"
      #x05FC "Masbando GmbH"
      #x05FD "Innoseis"
      #x05FE "Niko"
      #x05FF "Wellnomics Ltd"
      #x0600 "iRobot Corporation"
      #x0601 "Schrader Electronics"
      #x0602 "Geberit International AG"
      #x0603 "Fourth Evolution Inc"
      #x0604 "Cell2Jack LLC"
      #x0605 "FMW electronic Futterer u. Maier-Wolf OHG"
      #x0606 "John Deere"
      #x0607 "Rookery Technology Ltd"
      #x0608 "KeySafe-Cloud"
      #x0609 "BUCHI Labortechnik AG"
      #x060A "IQAir AG"
      #x060B "Triax Technologies Inc"
      #x060C "Vuzix Corporation"
      #x060D "TDK Corporation"
      #x060E "Blueair AB"
      #x060F "Signify Netherlands"
      #x0610 "ADH GUARDIAN USA LLC"
      #x0611 "Beurer GmbH"
      #x0612 "Playfinity AS"
      #x0613 "Hans Dinslage GmbH"
      #x0614 "OnAsset Intelligence, Inc"
      #x0615 "INTER ACTION Corporation"
      #x0616 "OS42 UG (haftungsbeschraenkt)"
      #x0617 "WIZCONNECTED COMPANY LIMITED"
      #x0618 "Audio-Technica Corporation"
      #x0619 "Six Guys Labs, s.r.o"
      #x061A "R.W. Beckett Corporation"
      #x061B "silex technology, inc"
      #x061C "Univations Limited"
      #x061D "SENS Innovation ApS"
      #x061E "Diamond Kinetics, Inc"
      #x061F "Phrame Inc"
      #x0620 "Forciot Oy"
      #x0621 "Noordung d.o.o"
      #x0622 "Beam Labs, LLC"
      #x0623 "Philadelphia Scientific (U.K.) Limited"
      #x0624 "Biovotion AG"
      #x0625 "Square Panda, Inc"
      #x0626 "Amplifico"
      #x0627 "WEG S.A"
      #x0628 "Ensto Oy"
      #x0629 "PHONEPE PVT LTD"
      #x062A "Lunatico Astronomia SL"
      #x062B "MinebeaMitsumi Inc"
      #x062C "ASPion GmbH"
      #x062D "Vossloh-Schwabe Deutschland GmbH"
      #x062E "Procept"
      #x062F "ONKYO Corporation"
      #x0630 "Asthrea D.O.O"
      #x0631 "Fortiori Design LLC"
      #x0632 "Hugo Muller GmbH & Co KG"
      #x0633 "Wangi Lai PLT"
      #x0634 "Fanstel Corp"
      #x0635 "Crookwood"
      #x0636 "ELECTRONICA INTEGRAL DE SONIDO S.A"
      #x0637 "GiP Innovation Tools GmbH"
      #x0638 "LX SOLUTIONS PTY LIMITED"
      #x0639 "Shenzhen Minew Technologies Co., Ltd"
      #x063A "Prolojik Limited"
      #x063B "Kromek Group Plc"
      #x063C "Contec Medical Systems Co., Ltd"
      #x063D "Xradio Technology Co.,Ltd"
      #x063E "The Indoor Lab, LLC"
      #x063F "LDL TECHNOLOGY"
      #x0640 "Parkifi"
      #x0641 "Revenue Collection Systems FRANCE SAS"
      #x0642 "Bluetrum Technology Co.,Ltd"
      #x0643 "makita corporation"
      #x0644 "Apogee Instruments"
      #x0645 "BM3"
      #x0646 "SGV Group Holding GmbH & Co. KG"
      #x0647 "MED-EL"
      #x0648 "Ultune Technologies"
      #x0649 "Ryeex Technology Co.,Ltd"
      #x064A "Open Research Institute, Inc"
      #x064B "Scale-Tec, Ltd"
      #x064C "Zumtobel Group AG"
      #x064D "iLOQ Oy"
      #x064E "KRUXWorks Technologies Private Limited"
      #x064F "Digital Matter Pty Ltd"
      #x0650 "Coravin, Inc"
      #x0651 "Stasis Labs, Inc"
      #x0652 "ITZ Innovations- und Technologiezentrum GmbH"
      #x0653 "Meggitt SA"
      #x0654 "Ledlenser GmbH & Co. KG"
      #x0655 "Renishaw PLC"
      #x0656 "ZhuHai AdvanPro Technology Company Limited"
      #x0657 "Meshtronix Limited"
      #x0658 "Payex Norge AS"
      #x0659 "UnSeen Technologies Oy"
      #x065A "Zound Industries International AB"
      #x065B "Sesam Solutions BV"
      #x065C "PixArt Imaging Inc"
      #x065D "Panduit Corp"
      #x065E "Alo AB"
      #x065F "Ricoh Company Ltd"
      #x0660 "RTC Industries, Inc"
      #x0661 "Mode Lighting Limited"
      #x0662 "Particle Industries, Inc"
      #x0663 "Advanced Telemetry Systems, Inc"
      #x0664 "RHA TECHNOLOGIES LTD"
      #x0665 "Pure International Limited"
      #x0666 "WTO Werkzeug-Einrichtungen GmbH"
      #x0667 "Spark Technology Labs Inc"
      #x0668 "Bleb Technology srl"
      #x0669 "Livanova USA, Inc"
      #x066A "Brady Worldwide Inc"
      #x066B "DewertOkin GmbH"
      #x066C "Ztove ApS"
      #x066D "Venso EcoSolutions AB"
      #x066E "Eurotronik Kranj d.o.o"
      #x066F "Hug Technology Ltd"
      #x0670 "Gema Switzerland GmbH"
      #x0671 "Buzz Products Ltd"
      #x0672 "Kopi"
      #x0673 "Innova Ideas Limited"
      #x0674 "BeSpoon"
      #x0675 "Deco Enterprises, Inc"
      #x0676 "Expai Solutions Private Limited"
      #x0677 "Innovation First, Inc"
      #x0678 "SABIK Offshore GmbH"
      #x0679 "4iiii Innovations Inc"
      #x067A "The Energy Conservatory, Inc"
      #x067B "I.FARM, INC"
      #x067C "Tile, Inc"
      #x067D "Form Athletica Inc"
      #x067E "MbientLab Inc"
      #x067F "NETGRID S.N.C. DI BISSOLI MATTEO, CAMPOREALE SIMONE, TOGNETTI FEDERICO"
      #x0680 "Mannkind Corporation"
      #x0681 "Trade FIDES a.s"
      #x0682 "Photron Limited"
      #x0683 "Eltako GmbH"
      #x0684 "Dermalapps, LLC"
      #x0685 "Greenwald Industries"
      #x0686 "inQs Co., Ltd"
      #x0687 "Cherry GmbH"
      #x0688 "Amsted Digital Solutions Inc"
      #x0689 "Tacx b.v"
      #x068A "Raytac Corporation"
      #x068B "Jiangsu Teranovo Tech Co., Ltd"
      #x068C "Changzhou Sound Dragon Electronics and Acoustics Co., Ltd"
      #x068D "JetBeep Inc"
      #x068E "Razer Inc"
      #x068F "JRM Group Limited"
      #x0690 "Eccrine Systems, Inc"
      #x0691 "Curie Point AB"
      #x0692 "Georg Fischer AG"
      #x0693 "Hach - Danaher"
      #x0694 "T&A Laboratories LLC"
      #x0695 "Koki Holdings Co., Ltd"
      #x0696 "Gunakar Private Limited"
      #x0697 "Stemco Products Inc"
      #x0698 "Wood IT Security, LLC"
      #x0699 "RandomLab SAS"
      #x069A "Adero, Inc. (formerly as TrackR, Inc)"
      #x069B "Dragonchip Limited"
      #x069C "Noomi AB"
      #x069D "Vakaros LLC"
      #x069E "Delta Electronics, Inc"
      #x069F "FlowMotion Technologies AS"
      #x06A0 "OBIQ Location Technology Inc"
      #x06A1 "Cardo Systems, Ltd"
      #x06A2 "Globalworx GmbH"
      #x06A3 "Nymbus, LLC"
      #x06A4 "Sanyo Techno Solutions Tottori Co., Ltd"
      #x06A5 "TEKZITEL PTY LTD"
      #x06A6 "Roambee Corporation"
      #x06A7 "Chipsea Technologies (ShenZhen) Corp"
      #x06A8 "GD Midea Air-Conditioning Equipment Co., Ltd"
      #x06A9 "Soundmax Electronics Limited"
      #x06AA "Produal Oy"
      #x06AB "HMS Industrial Networks AB"
      #x06AC "Ingchips Technology Co., Ltd"
      #x06AD "InnovaSea Systems Inc"
      #x06AE "SenseQ Inc"
      #x06AF "Shoof Technologies"
      #x06B0 "BRK Brands, Inc"
      #x06B1 "SimpliSafe, Inc"
      #x06B2 "Tussock Innovation 2013 Limited"
      #x06B3 "The Hablab ApS"
      #x06B4 "Sencilion Oy"
      #x06B5 "Wabilogic Ltd"
      #x06B6 "Sociometric Solutions, Inc"
      #x06B7 "iCOGNIZE GmbH"
      #x06B8 "ShadeCraft, Inc"
      #x06B9 "Beflex Inc"
      #x06BA "Beaconzone Ltd"
      #x06BB "Leaftronix Analogic Solutions Private Limited"
      #x06BC "TWS Srl"
      #x06BD "ABB Oy"
      #x06BE "HitSeed Oy"
      #x06BF "Delcom Products Inc"
      #x06C0 "CAME S.p.A"
      #x06C1 "Alarm.com Holdings, Inc"
      #x06C2 "Measurlogic Inc"
      #x06C3 "King I Electronics.Co.,Ltd"
      #x06C4 "Dream Labs GmbH"
      #x06C5 "Urban Compass, Inc"
      #x06C6 "Simm Tronic Limited"
      #x06C7 "Somatix Inc"
      #x06C8 "Storz & Bickel GmbH & Co. KG"
      #x06C9 "MYLAPS B.V"
      #x06CA "Shenzhen Zhongguang Infotech Technology Development Co., Ltd"
      #x06CB "Dyeware, LLC"
      #x06CC "Dongguan SmartAction Technology Co.,Ltd"
      #x06CD "DIG Corporation"
      #x06CE "FIOR & GENTZ"
      #x06CF "Belparts N.V"
      #x06D0 "Etekcity Corporation"
      #x06D1 "Meyer Sound Laboratories, Incorporated"
      #x06D2 "CeoTronics AG"
      #x06D3 "TriTeq Lock and Security, LLC"
      #x06D4 "DYNAKODE TECHNOLOGY PRIVATE LIMITED"
      #x06D5 "Sensirion AG"
      #x06D6 "JCT Healthcare Pty Ltd"
      #x06D7 "FUBA Automotive Electronics GmbH"
      #x06D8 "AW Company"
      #x06D9 "Shanghai Mountain View Silicon Co.,Ltd"
      #x06DA "Zliide Technologies ApS"
      #x06DB "Automatic Labs, Inc"
      #x06DC "Industrial Network Controls, LLC"
      #x06DD "Intellithings Ltd"
      #x06DE "Navcast, Inc"
      #x06DF "Hubbell Lighting, Inc"
      #x06E0 "Avaya"
      #x06E1 "Milestone AV Technologies LLC"
      #x06E2 "Alango Technologies Ltd"
      #x06E3 "Spinlock Ltd"
      #x06E4 "Aluna"
      #x06E5 "OPTEX CO.,LTD"
      #x06E6 "NIHON DENGYO KOUSAKU"
      #x06E7 "VELUX A/S"
      #x06E8 "Almendo Technologies GmbH"
      #x06E9 "Zmartfun Electronics, Inc"
      #x06EA "SafeLine Sweden AB"
      #x06EB "Houston Radar LLC"
      #x06EC "Sigur"
      #x06ED "J Neades Ltd"
      #x06EE "Avantis Systems Limited"
      #x06EF "ALCARE Co., Ltd"
      #x06F0 "Chargy Technologies, SL"
      #x06F1 "Shibutani Co., Ltd"
      #x06F2 "Trapper Data AB"
      #x06F3 "Alfred International Inc"
      #x06F4 "Near Field Solutions Ltd"
      #x06F5 "Vigil Technologies Inc"
      #x06F6 "Vitulo Plus BV"
      #x06F7 "WILKA Schliesstechnik GmbH"
      #x06F8 "BodyPlus Technology Co.,Ltd"
      #x06F9 "happybrush GmbH"
      #x06FA "Enequi AB"
      #x06FB "Sartorius AG"
      #x06FC "Tom Communication Industrial Co.,Ltd"
      #x06FD "ESS Embedded System Solutions Inc"
      #x06FE "Mahr GmbH"
      #x06FF "Redpine Signals Inc"
      #x0700 "TraqFreq LLC"
      #x0701 "PAFERS TECH"
      #x0702 "Akciju sabiedriba SAF TEHNIKA"
      #x0703 "Beijing Jingdong Century Trading Co., Ltd"
      #x0704 "JBX Designs Inc"
      #x0705 "AB Electrolux"
      #x0706 "Wernher von Braun Center for ASdvanced Research"
      #x0707 "Essity Hygiene and Health Aktiebolag"
      #x0708 "Be Interactive Co., Ltd"
      #x0709 "Carewear Corp"
      #x070A "Huf Hülsbeck & Fürst GmbH & Co. KG"
      #x070B "Element Products, Inc"
      #x070C "Beijing Winner Microelectronics Co.,Ltd"
      #x070D "SmartSnugg Pty Ltd"
      #x070E "FiveCo Sarl"
      #x070F "California Things Inc"
      #x0710 "Audiodo AB"
      #x0711 "ABAX AS"
      #x0712 "Bull Group Company Limited"
      #x0713 "Respiri Limited"
      #x0714 "MindPeace Safety LLC"
      #x0715 "Vgyan Solutions"
      #x0716 "Altonics"
      #x0717 "iQsquare BV"
      #x0718 "IDIBAIX enginneering"
      #x0719 "ECSG"
      #x071A "REVSMART WEARABLE HK CO LTD"
      #x071B "Precor"
      #x071C "F5 Sports, Inc"
      #x071D "exoTIC Systems"
      #x071E "DONGGUAN HELE ELECTRONICS CO., LTD"
      #x071F "Dongguan Liesheng Electronic Co.Ltd"
      #x0720 "Oculeve, Inc"
      #x0721 "Clover Network, Inc"
      #x0722 "Xiamen Eholder Electronics Co.Ltd"
      #x0723 "Ford Motor Company"
      #x0724 "Guangzhou SuperSound Information Technology Co.,Ltd"
      #x0725 "Tedee Sp. z o.o"
      #x0726 "PHC Corporation"
      #x0727 "STALKIT AS"
      #x0728 "Eli Lilly and Company"
      #x0729 "SwaraLink Technologies"
      #x072A "JMR embedded systems GmbH"
      #x072B "Bitkey Inc"
      #x072C "GWA Hygiene GmbH"
      #x072D "Safera Oy"
      #x072E "Open Platform Systems LLC"
      #x072F "OnePlus Electronics (Shenzhen) Co., Ltd"
      #x0730 "Wildlife Acoustics, Inc"
      #x0731 "ABLIC Inc"
      #x0732 "Dairy Tech, Inc"
      #x0733 "Iguanavation, Inc"
      #x0734 "DiUS Computing Pty Ltd"
      #x0735 "UpRight Technologies LTD"
      #x0736 "FrancisFund, LLC"
      #x0737 "LLC Navitek"
      #x0738 "Glass Security Pte Ltd"
      #x0739 "Jiangsu Qinheng Co., Ltd"
      #x073A "Chandler Systems Inc"
      #x073B "Fantini Cosmi s.p.a"
      #x073C "Acubit ApS"
      #x073D "Beijing Hao Heng Tian Tech Co., Ltd"
      #x073E "Bluepack S.R.L"
      #x073F "Beijing Unisoc Technologies Co., Ltd"
      #x0740 "HITIQ LIMITED"
      #x0741 "MAC SRL"
      #x0742 "DML LLC"
      #x0743 "Sanofi"
      #x0744 "SOCOMEC"
      #x0745 "WIZNOVA, Inc"
      #x0746 "Seitec Elektronik GmbH"
      #x0747 "OR Technologies Pty Ltd"
      #x0748 "GuangZhou KuGou Computer Technology Co.Ltd"
      #x0749 "DIAODIAO (Beijing) Technology Co., Ltd"
      #x074A "Illusory Studios LLC"
      #x074B "Sarvavid Software Solutions LLP"
      #x074C "iopool s.a"
      #x074D "Amtech Systems, LLC"
      #x074E "EAGLE DETECTION SA"
      #x074F "MEDIATECH S.R.L"
      #x0750 "Hamilton Professional Services of Canada Incorporated"
      #x0751 "Changsha JEMO IC Design Co.,Ltd"
      #x0752 "Elatec GmbH"
      #x0753 "JLG Industries, Inc"
      #x0754 "Michael Parkin"
      #x0755 "Brother Industries, Ltd"
      #x0756 "Lumens For Less, Inc"
      #x0757 "ELA Innovation"
      #x0758 "umanSense AB"
      #x0759 "Shanghai InGeek Cyber Security Co., Ltd"
      #x075A "HARMAN CO.,LTD"
      #x075B "Smart Sensor Devices AB"
      #x075C "Antitronics Inc"
      #x075D "RHOMBUS SYSTEMS, INC"
      #x075E "Katerra Inc"
      #x075F "Remote Solution Co., LTD"
      #x0760 "Vimar SpA"
      #x0761 "Mantis Tech LLC"
      #x0762 "TerOpta Ltd"
      #x0763 "PIKOLIN S.L"
      #x0764 "WWZN Information Technology Company Limited"
      #x0765 "Voxx International"
      #x0766 "ART AND PROGRAM, INC"
      #x0767 "NITTO DENKO ASIA TECHNICAL CENTRE PTE. LTD"
      #x0768 "Peloton Interactive Inc"
      #x0769 "Force Impact Technologies"
      #x076A "Dmac Mobile Developments, LLC"
      #x076B "Engineered Medical Technologies"
      #x076C "Noodle Technology inc"
      #x076D "Graesslin GmbH"
      #x076E "WuQi technologies, Inc"
      #x076F "Successful Endeavours Pty Ltd"
      #x0770 "InnoCon Medical ApS"
      #x0771 "Corvex Connected Safety"
      #x0772 "Thirdwayv Inc"
      #x0773 "Echoflex Solutions Inc"
      #x0774 "C-MAX Asia Limited"
      #x0775 "4eBusiness GmbH"
      #x0776 "Cyber Transport Control GmbH"
      #x0777 "Cue"
      #x0778 "KOAMTAC INC"
      #x0779 "Loopshore Oy"
      #x077A "Niruha Systems Private Limited"
      #x077B "AmaterZ, Inc"
      #x077C "radius co., ltd"
      #x077D "Sensority, s.r.o"
      #x077E "Sparkage Inc"
      #x077F "Glenview Software Corporation"
      #x0780 "Finch Technologies Ltd"
      #x0781 "Qingping Technology (Beijing) Co., Ltd"
      #x0782 "DeviceDrive AS"
      #x0783 "ESEMBER LIMITED LIABILITY COMPANY"
      #x0784 "audifon GmbH & Co. KG"
      #x0785 "O2 Micro, Inc"
      #x0786 "HLP Controls Pty Limited"
      #x0787 "Pangaea Solution"
      #x0788 "BubblyNet, LLC"
      #x078A "The Wildflower Foundation"
      #x078B "Optikam Tech Inc"
      #x078C "MINIBREW HOLDING B.V"
      #x078D "Cybex GmbH"
      #x078E "FUJIMIC NIIGATA, INC"
      #x078F "Hanna Instruments, Inc"
      #x0790 "KOMPAN A/S"
      #x0791 "Scosche Industries, Inc"
      #x0792 "Provo Craft"
      #x0793 "AEV spol. s r.o"
      #x0794 "The Coca-Cola Company"
      #x0795 "GASTEC CORPORATION"
      #x0796 "StarLeaf Ltd"
      #x0797 "Water-i.d. GmbH"
      #x0798 "HoloKit, Inc"
      #x0799 "PlantChoir Inc"
      #x079A "GuangDong Oppo Mobile Telecommunications Corp., Ltd"
      #x079B "CST ELECTRONICS (PROPRIETARY) LIMITED"
      #x079C "Sky UK Limited"
      #x079D "Digibale Pty Ltd"
      #x079E "Smartloxx GmbH"
      #x079F "Pune Scientific LLP"
      #x07A0 "Regent Beleuchtungskorper AG"
      #x07A1 "Apollo Neuroscience, Inc"
      #x07A2 "Roku, Inc"
      #x07A3 "Comcast Cable"
      #x07A4 "Xiamen Mage Information Technology Co., Ltd"
      #x07A5 "RAB Lighting, Inc"
      #x07A6 "Musen Connect, Inc"
      #x07A7 "Zume, Inc"
      #x07A8 "conbee GmbH"
      #x07A9 "Bruel & Kjaer Sound & Vibration"
      #x07AA "The Kroger Co"
      #x07AB "Granite River Solutions, Inc"
      #x07AC "LoupeDeck Oy"
      #x07AD "New H3C Technologies Co.,Ltd"
      #x07AE "Aurea Solucoes Tecnologicas Ltda"
      #x07AF "Hong Kong Bouffalo Lab Limited"
      #x07B0 "GV Concepts Inc"
      #x07B1 "Thomas Dynamics, LLC"
      #x07B2 "Moeco IOT Inc"
      #x07B3 "2N TELEKOMUNIKACE a.s"
      #x07B4 "Hormann KG Antriebstechnik"
      #x07B5 "CRONO CHIP, S.L"
      #x07B6 "Soundbrenner Limited"
      #x07B7 "ETABLISSEMENTS GEORGES RENAULT"
      #x07B8 "iSwip"
      #x07B9 "Epona Biotec Limited"
      #x07BA "Battery-Biz Inc"
      #x07BB "EPIC S.R.L"
      #x07BC "KD CIRCUITS LLC"
      #x07BD "Genedrive Diagnostics Ltd"
      #x07BE "Axentia Technologies AB"
      #x07BF "REGULA Ltd"
      #x07C0 "Biral AG"
      #x07C1 "A.W. Chesterton Company"
      #x07C2 "Radinn AB"
      #x07C3 "CIMTechniques, Inc"
      #x07C4 "Johnson Health Tech NA"
      #x07C5 "June Life, Inc"
      #x07C6 "Bluenetics GmbH"
      #x07C7 "iaconicDesign Inc"
      #x07C8 "WRLDS Creations AB"
      #x07C9 "Skullcandy, Inc"
      #x07CA "Modul-System HH AB"
      #x07CB "West Pharmaceutical Services, Inc"
      #x07CC "Barnacle Systems Inc"
      #x07CD "Smart Wave Technologies Canada Inc"
      #x07CE "Shanghai Top-Chip Microelectronics Tech. Co., LTD"
      #x07CF "NeoSensory, Inc"
      #x07D0 "Hangzhou Tuya Information  Technology Co., Ltd"
      #x07D1 "Shanghai Panchip Microelectronics Co., Ltd"
      #x07D2 "React Accessibility Limited"
      #x07D3 "LIVNEX Co.,Ltd"
      #x07D4 "Kano Computing Limited"
      #x07D5 "hoots classic GmbH"
      #x07D6 "ecobee Inc"
      #x07D7 "Nanjing Qinheng Microelectronics Co., Ltd"
      #x07D8 "SOLUTIONS AMBRA INC"
      #x07D9 "Micro-Design, Inc"
      #x07DA "STARLITE Co., Ltd"
      #x07DB "Remedee Labs"
      #x07DC "ThingOS GmbH"
      #x07DD "Linear Circuits"
      #x07DE "Unlimited Engineering SL"
      #x07DF "Snap-on Incorporated"
      #x07E0 "Edifier International Limited"
      #x07E1 "Lucie Labs"
      #x07E2 "Alfred Kaercher SE & Co. KG"
      #x07E3 "Audiowise Technology Inc"
      #x07E4 "Geeksme S.L"
      #x07E5 "Minut, Inc"
      #x07E6 "Autogrow Systems Limited"
      #x07E7 "Komfort IQ, Inc"
      #x07E8 "Packetcraft, Inc"
      #x07E9 "Häfele GmbH & Co KG"
      #x07EA "ShapeLog, Inc"
      #x07EB "NOVABASE S.R.L"
      #x07EC "Frecce LLC"
      #x07ED "Joule IQ, INC"
      #x07EE "KidzTek LLC"
      #x07EF "Aktiebolaget Sandvik Coromant"
      #x07F0 "e-moola.com Pty Ltd"
      #x07F1 "GSM Innovations Pty Ltd"
      #x07F2 "SERENE GROUP, INC"
      #x07F3 "DIGISINE ENERGYTECH CO. LTD"
      #x07F4 "MEDIRLAB Orvosbiologiai Fejleszto Korlatolt Felelossegu Tarsasag"
      #x07F5 "Byton North America Corporation"
      #x07F6 "Shenzhen TonliScience and Technology Development Co.,Ltd"
      #x07F7 "Cesar Systems Ltd"
      #x07F8 "quip NYC Inc"
      #x07F9 "Direct Communication Solutions, Inc"
      #x07FA "Klipsch Group, Inc"
      #x07FB "Access Co., Ltd"
      #x07FC "Renault SA"
      #x07FD "JSK CO., LTD"
      #x07FE "BIROTA"
      #x07FF "maxon motor ltd"
      #x0800 "Optek"
      #x0801 "CRONUS ELECTRONICS LTD"
      #x0802 "NantSound, Inc"
      #x0803 "Domintell s.a"
      #x0804 "Andon Health Co.,Ltd"
      #x0805 "Urbanminded Ltd"
      #x0806 "TYRI Sweden AB"
      #x0807 "ECD Electronic Components GmbH Dresden"
      #x0808 "SISTEMAS KERN, SOCIEDAD ANÓMINA"
      #x0809 "Trulli Audio"
      #x080A "Altaneos"
      #x080B "Nanoleaf Canada Limited"
      #x080C "Ingy B.V"
      #x080D "Azbil Co"
      #x080E "TATTCOM LLC"
      #x080F "Paradox Engineering SA"
      #x0810 "LECO Corporation"
      #x0811 "Becker Antriebe GmbH"
      #x0812 "Mstream Technologies., Inc"
      #x0813 "Flextronics International USA Inc"
      #x0814 "Ossur hf"
      #x0815 "SKC Inc"
      #x0816 "SPICA SYSTEMS LLC"
      #x0817 "Wangs Alliance Corporation"
      #x0818 "tatwah SA"
      #x0819 "Hunter Douglas Inc"
      #x081A "Shenzhen Conex"
      #x081B "DIM3"
      #x081C "Bobrick Washroom Equipment, Inc"
      #x081D "Potrykus Holdings and Development LLC"
      #x081E "iNFORM Technology GmbH"
      #x081F "eSenseLab LTD"
      #x0820 "Brilliant Home Technology, Inc"
      #x0821 "INOVA Geophysical, Inc"
      #x0822 "adafruit industries"
      #x0823 "Nexite Ltd"
      #x0824 "8Power Limited"
      #x0825 "CME PTE. LTD."
      #x0826 "Hyundai Motor Company"
      #x0827 "Kickmaker"
      #x0828 "Shanghai Suisheng Information Technology Co., Ltd."
      #x0829 "HEXAGON METROLOGY DIVISION ROMER"
      #x082A "Mitutoyo Corporation"
      #x082B "shenzhen fitcare electronics Co.,Ltd"
      #x082C "INGICS TECHNOLOGY CO., LTD."
      #x082D "INCUS PERFORMANCE LTD."
      #x082E "ABB S.p.A."
      #x082F "Blippit AB"
      #x0830 "Core Health and Fitness LLC"
      #x0831 "Foxble, LLC"
      #x0832 "Intermotive,Inc."
      #x0833 "Conneqtech B.V."
      #x0834 "RIKEN KEIKI CO., LTD."
      #x0835 "Canopy Growth Corporation"
      #x0836 "Bitwards Oy"))
  "Bluetooth manufacturer IDs.")

(provide 'bluetooth)

;;; bluetooth.el ends here

debug log:

solving 33936c52a ...
found 33936c52a in https://yhetil.org/emacs-bugs/878sosyfz3.fsf@mnet-mail.de/

applying [1/1] https://yhetil.org/emacs-bugs/878sosyfz3.fsf@mnet-mail.de/
diff --git a/packages/bluetooth/bluetooth.el b/packages/bluetooth/bluetooth.el
new file mode 100644
index 000000000..33936c52a

1:361: space before tab in indent.
    				   info)))
Checking patch packages/bluetooth/bluetooth.el...
Applied patch packages/bluetooth/bluetooth.el cleanly.
warning: 1 line adds whitespace errors.

index at:
100644 33936c52a106ccc47be1a2a3d59e6075d03add3c	packages/bluetooth/bluetooth.el

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).