1 /*-
2 * util.c
3 *
4 * SPDX-License-Identifier: BSD-2-Clause
5 *
6 * Copyright (c) 2001 Maksim Yevmenkin <m_evmenkin@yahoo.com>
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 * SUCH DAMAGE.
29 *
30 * $Id: util.c,v 1.2 2003/05/19 17:29:29 max Exp $
31 */
32
33 #include <sys/param.h>
34 #define L2CAP_SOCKET_CHECKED
35 #include <bluetooth.h>
36 #include <stdio.h>
37 #include <string.h>
38
39 #define SIZE(x) (sizeof((x))/sizeof((x)[0]))
40
41 char const *
hci_link2str(int link_type)42 hci_link2str(int link_type)
43 {
44 static char const * const t[] = {
45 /* NG_HCI_LINK_SCO */ "SCO",
46 /* NG_HCI_LINK_ACL */ "ACL"
47 };
48
49 return (link_type >= SIZE(t)? "?" : t[link_type]);
50 } /* hci_link2str */
51
52 char const *
hci_pin2str(int type)53 hci_pin2str(int type)
54 {
55 static char const * const t[] = {
56 /* 0x00 */ "Variable PIN",
57 /* 0x01 */ "Fixed PIN"
58 };
59
60 return (type >= SIZE(t)? "?" : t[type]);
61 } /* hci_pin2str */
62
63 char const *
hci_scan2str(int scan)64 hci_scan2str(int scan)
65 {
66 static char const * const t[] = {
67 /* 0x00 */ "No Scan enabled",
68 /* 0x01 */ "Inquiry Scan enabled. Page Scan disabled",
69 /* 0x02 */ "Inquiry Scan disabled. Page Scan enabled",
70 /* 0x03 */ "Inquiry Scan enabled. Page Scan enabled"
71 };
72
73 return (scan >= SIZE(t)? "?" : t[scan]);
74 } /* hci_scan2str */
75
76 char const *
hci_encrypt2str(int encrypt,int brief)77 hci_encrypt2str(int encrypt, int brief)
78 {
79 static char const * const t[] = {
80 /* 0x00 */ "Disabled",
81 /* 0x01 */ "Only for point-to-point packets",
82 /* 0x02 */ "Both point-to-point and broadcast packets"
83 };
84
85 static char const * const t1[] = {
86 /* NG_HCI_ENCRYPTION_MODE_NONE */ "NONE",
87 /* NG_HCI_ENCRYPTION_MODE_P2P */ "P2P",
88 /* NG_HCI_ENCRYPTION_MODE_ALL */ "ALL",
89 };
90
91 if (brief)
92 return (encrypt >= SIZE(t1)? "?" : t1[encrypt]);
93
94 return (encrypt >= SIZE(t)? "?" : t[encrypt]);
95 } /* hci_encrypt2str */
96
97 char const *
hci_coding2str(int coding)98 hci_coding2str(int coding)
99 {
100 static char const * const t[] = {
101 /* 0x00 */ "Linear",
102 /* 0x01 */ "u-law",
103 /* 0x02 */ "A-law",
104 /* 0x03 */ "Reserved"
105 };
106
107 return (coding >= SIZE(t)? "?" : t[coding]);
108 } /* hci_coding2str */
109
110 char const *
hci_vdata2str(int data)111 hci_vdata2str(int data)
112 {
113 static char const * const t[] = {
114 /* 0x00 */ "1's complement",
115 /* 0x01 */ "2's complement",
116 /* 0x02 */ "Sign-Magnitude",
117 /* 0x03 */ "Reserved"
118 };
119
120 return (data >= SIZE(t)? "?" : t[data]);
121 } /* hci_vdata2str */
122
123 char const *
hci_hmode2str(int mode,char * buffer,int size)124 hci_hmode2str(int mode, char *buffer, int size)
125 {
126 static char const * const t[] = {
127 /* 0x01 */ "Suspend Page Scan ",
128 /* 0x02 */ "Suspend Inquiry Scan ",
129 /* 0x04 */ "Suspend Periodic Inquiries "
130 };
131
132 if (buffer != NULL && size > 0) {
133 int n;
134
135 memset(buffer, 0, size);
136 size--;
137 for (n = 0; n < SIZE(t); n++) {
138 int len = strlen(buffer);
139
140 if (len >= size)
141 break;
142 if (mode & (1 << n))
143 strncat(buffer, t[n], size - len);
144 }
145 }
146
147 return (buffer);
148 } /* hci_hmode2str */
149
150 char const *
hci_ver2str(int ver)151 hci_ver2str(int ver)
152 {
153 static char const * const t[] = {
154 /* 0x00 */ "Bluetooth HCI Specification 1.0B",
155 /* 0x01 */ "Bluetooth HCI Specification 1.1",
156 /* 0x02 */ "Bluetooth HCI Specification 1.2",
157 /* 0x03 */ "Bluetooth HCI Specification 2.0",
158 /* 0x04 */ "Bluetooth HCI Specification 2.1",
159 /* 0x05 */ "Bluetooth HCI Specification 3.0",
160 /* 0x06 */ "Bluetooth HCI Specification 4.0",
161 /* 0x07 */ "Bluetooth HCI Specification 4.1",
162 /* 0x08 */ "Bluetooth HCI Specification 4.2",
163 /* 0x09 */ "Bluetooth HCI Specification 5.0",
164 /* 0x0a */ "Bluetooth HCI Specification 5.1",
165 /* 0x0b */ "Bluetooth HCI Specification 5.2"
166 };
167
168 return (ver >= SIZE(t)? "?" : t[ver]);
169 } /* hci_ver2str */
170
171 char const *
hci_lmpver2str(int ver)172 hci_lmpver2str(int ver)
173 {
174 static char const * const t[] = {
175 /* 0x00 */ "Bluetooth LMP 1.0",
176 /* 0x01 */ "Bluetooth LMP 1.1",
177 /* 0x02 */ "Bluetooth LMP 1.2",
178 /* 0x03 */ "Bluetooth LMP 2.0",
179 /* 0x04 */ "Bluetooth LMP 2.1",
180 /* 0x05 */ "Bluetooth LMP 3.0",
181 /* 0x06 */ "Bluetooth LMP 4.0",
182 /* 0x07 */ "Bluetooth LMP 4.1",
183 /* 0x08 */ "Bluetooth LMP 4.2",
184 /* 0x09 */ "Bluetooth LMP 5.0",
185 /* 0x0a */ "Bluetooth LMP 5.1",
186 /* 0x0b */ "Bluetooth LMP 5.2"
187 };
188
189 return (ver >= SIZE(t)? "?" : t[ver]);
190 } /* hci_lmpver2str */
191
192 char const *
hci_manufacturer2str(int m)193 hci_manufacturer2str(int m)
194 {
195 static char const * const t[] = {
196 /* 0000 */ "Ericsson Technology Licensing",
197 /* 0001 */ "Nokia Mobile Phones",
198 /* 0002 */ "Intel Corp.",
199 /* 0003 */ "IBM Corp.",
200 /* 0004 */ "Toshiba Corp.",
201 /* 0005 */ "3Com",
202 /* 0006 */ "Microsoft",
203 /* 0007 */ "Lucent",
204 /* 0008 */ "Motorola",
205 /* 0009 */ "Infineon Technologies AG",
206 /* 0010 */ "Qualcomm Technologies International, Ltd. (QTIL)",
207 /* 0011 */ "Silicon Wave",
208 /* 0012 */ "Digianswer A/S",
209 /* 0013 */ "Texas Instruments Inc.",
210 /* 0014 */ "Parthus Technologies Inc.",
211 /* 0015 */ "Broadcom Corporation",
212 /* 0016 */ "Mitel Semiconductor",
213 /* 0017 */ "Widcomm, Inc.",
214 /* 0018 */ "Zeevo, Inc.",
215 /* 0019 */ "Atmel Corporation",
216 /* 0020 */ "Mitsubishi Electric Corporation",
217 /* 0021 */ "RTX Telecom A/S",
218 /* 0022 */ "KC Technology Inc.",
219 /* 0023 */ "Newlogic",
220 /* 0024 */ "Transilica, Inc.",
221 /* 0025 */ "Rohde & Schwarz GmbH & Co. KG",
222 /* 0026 */ "TTPCom Limited",
223 /* 0027 */ "Signia Technologies, Inc.",
224 /* 0028 */ "Conexant Systems Inc.",
225 /* 0029 */ "Qualcomm",
226 /* 0030 */ "Inventel",
227 /* 0031 */ "AVM Berlin",
228 /* 0032 */ "BandSpeed, Inc.",
229 /* 0033 */ "Mansella Ltd",
230 /* 0034 */ "NEC Corporation",
231 /* 0035 */ "WavePlus Technology Co., Ltd.",
232 /* 0036 */ "Alcatel",
233 /* 0037 */ "NXP Semiconductors (formerly Philips Semiconductors)",
234 /* 0038 */ "C Technologies",
235 /* 0039 */ "Open Interface",
236 /* 0040 */ "R F Micro Devices",
237 /* 0041 */ "Hitachi Ltd",
238 /* 0042 */ "Symbol Technologies, Inc.",
239 /* 0043 */ "Tenovis",
240 /* 0044 */ "Macronix International Co. Ltd.",
241 /* 0045 */ "GCT Semiconductor",
242 /* 0046 */ "Norwood Systems",
243 /* 0047 */ "MewTel Technology Inc.",
244 /* 0048 */ "ST Microelectronics",
245 /* 0049 */ "Synopsys, Inc.",
246 /* 0050 */ "Red-M (Communications) Ltd",
247 /* 0051 */ "Commil Ltd",
248 /* 0052 */ "Computer Access Technology Corporation (CATC)",
249 /* 0053 */ "Eclipse (HQ Espana) S.L.",
250 /* 0054 */ "Renesas Electronics Corporation",
251 /* 0055 */ "Mobilian Corporation",
252 /* 0056 */ "Syntronix Corporation",
253 /* 0057 */ "Integrated System Solution Corp.",
254 /* 0058 */ "Panasonic Corporation (formerly Matsushita Electric Industrial Co., Ltd.)",
255 /* 0059 */ "Gennum Corporation",
256 /* 0060 */ "BlackBerry Limited (formerly Research In Motion)",
257 /* 0061 */ "IPextreme, Inc.",
258 /* 0062 */ "Systems and Chips, Inc",
259 /* 0063 */ "Bluetooth SIG, Inc",
260 /* 0064 */ "Seiko Epson Corporation",
261 /* 0065 */ "Integrated Silicon Solution Taiwan, Inc.",
262 /* 0066 */ "CONWISE Technology Corporation Ltd",
263 /* 0067 */ "PARROT AUTOMOTIVE SAS",
264 /* 0068 */ "Socket Mobile",
265 /* 0069 */ "Atheros Communications, Inc.",
266 /* 0070 */ "MediaTek, Inc.",
267 /* 0071 */ "Bluegiga",
268 /* 0072 */ "Marvell Technology Group Ltd.",
269 /* 0073 */ "3DSP Corporation",
270 /* 0074 */ "Accel Semiconductor Ltd.",
271 /* 0075 */ "Continental Automotive Systems",
272 /* 0076 */ "Apple, Inc.",
273 /* 0077 */ "Staccato Communications, Inc.",
274 /* 0078 */ "Avago Technologies",
275 /* 0079 */ "APT Ltd.",
276 /* 0080 */ "SiRF Technology, Inc.",
277 /* 0081 */ "Tzero Technologies, Inc.",
278 /* 0082 */ "J&M Corporation",
279 /* 0083 */ "Free2move AB",
280 /* 0084 */ "3DiJoy Corporation",
281 /* 0085 */ "Plantronics, Inc.",
282 /* 0086 */ "Sony Ericsson Mobile Communications",
283 /* 0087 */ "Harman International Industries, Inc.",
284 /* 0088 */ "Vizio, Inc.",
285 /* 0089 */ "Nordic Semiconductor ASA",
286 /* 0090 */ "EM Microelectronic-Marin SA",
287 /* 0091 */ "Ralink Technology Corporation",
288 /* 0092 */ "Belkin International, Inc.",
289 /* 0093 */ "Realtek Semiconductor Corporation",
290 /* 0094 */ "Stonestreet One, LLC",
291 /* 0095 */ "Wicentric, Inc.",
292 /* 0096 */ "RivieraWaves S.A.S",
293 /* 0097 */ "RDA Microelectronics",
294 /* 0098 */ "Gibson Guitars",
295 /* 0099 */ "MiCommand Inc.",
296 /* 0100 */ "Band XI International, LLC",
297 /* 0101 */ "Hewlett-Packard Company",
298 /* 0102 */ "9Solutions Oy",
299 /* 0103 */ "GN Netcom A/S",
300 /* 0104 */ "General Motors",
301 /* 0105 */ "A&D Engineering, Inc.",
302 /* 0106 */ "MindTree Ltd.",
303 /* 0107 */ "Polar Electro OY",
304 /* 0108 */ "Beautiful Enterprise Co., Ltd.",
305 /* 0109 */ "BriarTek, Inc",
306 /* 0110 */ "Summit Data Communications, Inc.",
307 /* 0111 */ "Sound ID",
308 /* 0112 */ "Monster, LLC",
309 /* 0113 */ "connectBlue AB",
310 /* 0114 */ "ShangHai Super Smart Electronics Co. Ltd.",
311 /* 0115 */ "Group Sense Ltd.",
312 /* 0116 */ "Zomm, LLC",
313 /* 0117 */ "Samsung Electronics Co. Ltd.",
314 /* 0118 */ "Creative Technology Ltd.",
315 /* 0119 */ "Laird Technologies",
316 /* 0120 */ "Nike, Inc.",
317 /* 0121 */ "lesswire AG",
318 /* 0122 */ "MStar Semiconductor, Inc.",
319 /* 0123 */ "Hanlynn Technologies",
320 /* 0124 */ "A & R Cambridge",
321 /* 0125 */ "Seers Technology Co., Ltd.",
322 /* 0126 */ "Sports Tracking Technologies Ltd.",
323 /* 0127 */ "Autonet Mobile",
324 /* 0128 */ "DeLorme Publishing Company, Inc.",
325 /* 0129 */ "WuXi Vimicro",
326 /* 0130 */ "Sennheiser Communications A/S",
327 /* 0131 */ "TimeKeeping Systems, Inc.",
328 /* 0132 */ "Ludus Helsinki Ltd.",
329 /* 0133 */ "BlueRadios, Inc.",
330 /* 0134 */ "Equinux AG",
331 /* 0135 */ "Garmin International, Inc.",
332 /* 0136 */ "Ecotest",
333 /* 0137 */ "GN ReSound A/S",
334 /* 0138 */ "Jawbone",
335 /* 0139 */ "Topcon Positioning Systems, LLC",
336 /* 0140 */ "Gimbal Inc. (formerly Qualcomm Labs, Inc. and Qualcomm Retail Solutions, Inc.)",
337 /* 0141 */ "Zscan Software",
338 /* 0142 */ "Quintic Corp",
339 /* 0143 */ "Telit Wireless Solutions GmbH (formerly Stollmann E+V GmbH)",
340 /* 0144 */ "Funai Electric Co., Ltd.",
341 /* 0145 */ "Advanced PANMOBIL systems GmbH & Co. KG",
342 /* 0146 */ "ThinkOptics, Inc.",
343 /* 0147 */ "Universal Electronics, Inc.",
344 /* 0148 */ "Airoha Technology Corp.",
345 /* 0149 */ "NEC Lighting, Ltd.",
346 /* 0150 */ "ODM Technology, Inc.",
347 /* 0151 */ "ConnecteDevice Ltd.",
348 /* 0152 */ "zero1.tv GmbH",
349 /* 0153 */ "i.Tech Dynamic Global Distribution Ltd.",
350 /* 0154 */ "Alpwise",
351 /* 0155 */ "Jiangsu Toppower Automotive Electronics Co., Ltd.",
352 /* 0156 */ "Colorfy, Inc.",
353 /* 0157 */ "Geoforce Inc.",
354 /* 0158 */ "Bose Corporation",
355 /* 0159 */ "Suunto Oy",
356 /* 0160 */ "Kensington Computer Products Group",
357 /* 0161 */ "SR-Medizinelektronik",
358 /* 0162 */ "Vertu Corporation Limited",
359 /* 0163 */ "Meta Watch Ltd.",
360 /* 0164 */ "LINAK A/S",
361 /* 0165 */ "OTL Dynamics LLC",
362 /* 0166 */ "Panda Ocean Inc.",
363 /* 0167 */ "Visteon Corporation",
364 /* 0168 */ "ARP Devices Limited",
365 /* 0169 */ "MARELLI EUROPE S.P.A. (formerly Magneti Marelli S.p.A.)",
366 /* 0170 */ "CAEN RFID srl",
367 /* 0171 */ "Ingenieur-Systemgruppe Zahn GmbH",
368 /* 0172 */ "Green Throttle Games",
369 /* 0173 */ "Peter Systemtechnik GmbH",
370 /* 0174 */ "Omegawave Oy",
371 /* 0175 */ "Cinetix",
372 /* 0176 */ "Passif Semiconductor Corp",
373 /* 0177 */ "Saris Cycling Group, Inc",
374 /* 0178 */ "Bekey A/S",
375 /* 0179 */ "Clarinox Technologies Pty. Ltd.",
376 /* 0180 */ "BDE Technology Co., Ltd.",
377 /* 0181 */ "Swirl Networks",
378 /* 0182 */ "Meso international",
379 /* 0183 */ "TreLab Ltd",
380 /* 0184 */ "Qualcomm Innovation Center, Inc. (QuIC)",
381 /* 0185 */ "Johnson Controls, Inc.",
382 /* 0186 */ "Starkey Laboratories Inc.",
383 /* 0187 */ "S-Power Electronics Limited",
384 /* 0188 */ "Ace Sensor Inc",
385 /* 0189 */ "Aplix Corporation",
386 /* 0190 */ "AAMP of America",
387 /* 0191 */ "Stalmart Technology Limited",
388 /* 0192 */ "AMICCOM Electronics Corporation",
389 /* 0193 */ "Shenzhen Excelsecu Data Technology Co.,Ltd",
390 /* 0194 */ "Geneq Inc.",
391 /* 0195 */ "adidas AG",
392 /* 0196 */ "LG Electronics",
393 /* 0197 */ "Onset Computer Corporation",
394 /* 0198 */ "Selfly BV",
395 /* 0199 */ "Quuppa Oy.",
396 /* 0200 */ "GeLo Inc",
397 /* 0201 */ "Evluma",
398 /* 0202 */ "MC10",
399 /* 0203 */ "Binauric SE",
400 /* 0204 */ "Beats Electronics",
401 /* 0205 */ "Microchip Technology Inc.",
402 /* 0206 */ "Elgato Systems GmbH",
403 /* 0207 */ "ARCHOS SA",
404 /* 0208 */ "Dexcom, Inc.",
405 /* 0209 */ "Polar Electro Europe B.V.",
406 /* 0210 */ "Dialog Semiconductor B.V.",
407 /* 0211 */ "Taixingbang Technology (HK) Co,. LTD.",
408 /* 0212 */ "Kawantech",
409 /* 0213 */ "Austco Communication Systems",
410 /* 0214 */ "Timex Group USA, Inc.",
411 /* 0215 */ "Qualcomm Technologies, Inc.",
412 /* 0216 */ "Qualcomm Connected Experiences, Inc.",
413 /* 0217 */ "Voyetra Turtle Beach",
414 /* 0218 */ "txtr GmbH",
415 /* 0219 */ "Biosentronics",
416 /* 0220 */ "Procter & Gamble",
417 /* 0221 */ "Hosiden Corporation",
418 /* 0222 */ "Muzik LLC",
419 /* 0223 */ "Misfit Wearables Corp",
420 /* 0224 */ "Google",
421 /* 0225 */ "Danlers Ltd",
422 /* 0226 */ "Semilink Inc",
423 /* 0227 */ "inMusic Brands, Inc",
424 /* 0228 */ "L.S. Research Inc.",
425 /* 0229 */ "Eden Software Consultants Ltd.",
426 /* 0230 */ "Freshtemp",
427 /* 0231 */ "KS Technologies",
428 /* 0232 */ "ACTS Technologies",
429 /* 0233 */ "Vtrack Systems",
430 /* 0234 */ "Nielsen-Kellerman Company",
431 /* 0235 */ "Server Technology Inc.",
432 /* 0236 */ "BioResearch Associates",
433 /* 0237 */ "Jolly Logic, LLC",
434 /* 0238 */ "Above Average Outcomes, Inc.",
435 /* 0239 */ "Bitsplitters GmbH",
436 /* 0240 */ "PayPal, Inc.",
437 /* 0241 */ "Witron Technology Limited",
438 /* 0242 */ "Morse Project Inc.",
439 /* 0243 */ "Kent Displays Inc.",
440 /* 0244 */ "Nautilus Inc.",
441 /* 0245 */ "Smartifier Oy",
442 /* 0246 */ "Elcometer Limited",
443 /* 0247 */ "VSN Technologies, Inc.",
444 /* 0248 */ "AceUni Corp., Ltd.",
445 /* 0249 */ "StickNFind",
446 /* 0250 */ "Crystal Code AB",
447 /* 0251 */ "KOUKAAM a.s.",
448 /* 0252 */ "Delphi Corporation",
449 /* 0253 */ "ValenceTech Limited",
450 /* 0254 */ "Stanley Black and Decker",
451 /* 0255 */ "Typo Products, LLC",
452 /* 0256 */ "TomTom International BV",
453 /* 0257 */ "Fugoo, Inc.",
454 /* 0258 */ "Keiser Corporation",
455 /* 0259 */ "Bang & Olufsen A/S",
456 /* 0260 */ "PLUS Location Systems Pty Ltd",
457 /* 0261 */ "Ubiquitous Computing Technology Corporation",
458 /* 0262 */ "Innovative Yachtter Solutions",
459 /* 0263 */ "William Demant Holding A/S",
460 /* 0264 */ "Chicony Electronics Co., Ltd.",
461 /* 0265 */ "Atus BV",
462 /* 0266 */ "Codegate Ltd",
463 /* 0267 */ "ERi, Inc",
464 /* 0268 */ "Transducers Direct, LLC",
465 /* 0269 */ "DENSO TEN LIMITED (formerly Fujitsu Ten LImited)",
466 /* 0270 */ "Audi AG",
467 /* 0271 */ "HiSilicon Technologies CO., LIMITED",
468 /* 0272 */ "Nippon Seiki Co., Ltd.",
469 /* 0273 */ "Steelseries ApS",
470 /* 0274 */ "Visybl Inc.",
471 /* 0275 */ "Openbrain Technologies, Co., Ltd.",
472 /* 0276 */ "Xensr",
473 /* 0277 */ "e.solutions",
474 /* 0278 */ "10AK Technologies",
475 /* 0279 */ "Wimoto Technologies Inc",
476 /* 0280 */ "Radius Networks, Inc.",
477 /* 0281 */ "Wize Technology Co., Ltd.",
478 /* 0282 */ "Qualcomm Labs, Inc.",
479 /* 0283 */ "Hewlett Packard Enterprise",
480 /* 0284 */ "Baidu",
481 /* 0285 */ "Arendi AG",
482 /* 0286 */ "Skoda Auto a.s.",
483 /* 0287 */ "Volkswagen AG",
484 /* 0288 */ "Porsche AG",
485 /* 0289 */ "Sino Wealth Electronic Ltd.",
486 /* 0290 */ "AirTurn, Inc.",
487 /* 0291 */ "Kinsa, Inc",
488 /* 0292 */ "HID Global",
489 /* 0293 */ "SEAT es",
490 /* 0294 */ "Promethean Ltd.",
491 /* 0295 */ "Salutica Allied Solutions",
492 /* 0296 */ "GPSI Group Pty Ltd",
493 /* 0297 */ "Nimble Devices Oy",
494 /* 0298 */ "Changzhou Yongse Infotech Co., Ltd.",
495 /* 0299 */ "SportIQ",
496 /* 0300 */ "TEMEC Instruments B.V.",
497 /* 0301 */ "Sony Corporation",
498 /* 0302 */ "ASSA ABLOY",
499 /* 0303 */ "Clarion Co. Inc.",
500 /* 0304 */ "Warehouse Innovations",
501 /* 0305 */ "Cypress Semiconductor",
502 /* 0306 */ "MADS Inc",
503 /* 0307 */ "Blue Maestro Limited",
504 /* 0308 */ "Resolution Products, Ltd.",
505 /* 0309 */ "Aireware LLC",
506 /* 0310 */ "Silvair, Inc.",
507 /* 0311 */ "Prestigio Plaza Ltd.",
508 /* 0312 */ "NTEO Inc.",
509 /* 0313 */ "Focus Systems Corporation",
510 /* 0314 */ "Tencent Holdings Ltd.",
511 /* 0315 */ "Allegion",
512 /* 0316 */ "Murata Manufacturing Co., Ltd.",
513 /* 0317 */ "WirelessWERX",
514 /* 0318 */ "Nod, Inc.",
515 /* 0319 */ "B&B Manufacturing Company",
516 /* 0320 */ "Alpine Electronics (China) Co., Ltd",
517 /* 0321 */ "FedEx Services",
518 /* 0322 */ "Grape Systems Inc.",
519 /* 0323 */ "Bkon Connect",
520 /* 0324 */ "Lintech GmbH",
521 /* 0325 */ "Novatel Wireless",
522 /* 0326 */ "Ciright",
523 /* 0327 */ "Mighty Cast, Inc.",
524 /* 0328 */ "Ambimat Electronics",
525 /* 0329 */ "Perytons Ltd.",
526 /* 0330 */ "Tivoli Audio, LLC",
527 /* 0331 */ "Master Lock",
528 /* 0332 */ "Mesh-Net Ltd",
529 /* 0333 */ "HUIZHOU DESAY SV AUTOMOTIVE CO., LTD.",
530 /* 0334 */ "Tangerine, Inc.",
531 /* 0335 */ "B&W Group Ltd.",
532 /* 0336 */ "Pioneer Corporation",
533 /* 0337 */ "OnBeep",
534 /* 0338 */ "Vernier Software & Technology",
535 /* 0339 */ "ROL Ergo",
536 /* 0340 */ "Pebble Technology",
537 /* 0341 */ "NETATMO",
538 /* 0342 */ "Accumulate AB",
539 /* 0343 */ "Anhui Huami Information Technology Co., Ltd.",
540 /* 0344 */ "Inmite s.r.o.",
541 /* 0345 */ "ChefSteps, Inc.",
542 /* 0346 */ "micas AG",
543 /* 0347 */ "Biomedical Research Ltd.",
544 /* 0348 */ "Pitius Tec S.L.",
545 /* 0349 */ "Estimote, Inc.",
546 /* 0350 */ "Unikey Technologies, Inc.",
547 /* 0351 */ "Timer Cap Co.",
548 /* 0352 */ "AwoX",
549 /* 0353 */ "yikes",
550 /* 0354 */ "MADSGlobalNZ Ltd.",
551 /* 0355 */ "PCH International",
552 /* 0356 */ "Qingdao Yeelink Information Technology Co., Ltd.",
553 /* 0357 */ "Milwaukee Tool (Formally Milwaukee Electric Tools)",
554 /* 0358 */ "MISHIK Pte Ltd",
555 /* 0359 */ "Ascensia Diabetes Care US Inc.",
556 /* 0360 */ "Spicebox LLC",
557 /* 0361 */ "emberlight",
558 /* 0362 */ "Cooper-Atkins Corporation",
559 /* 0363 */ "Qblinks",
560 /* 0364 */ "MYSPHERA",
561 /* 0365 */ "LifeScan Inc",
562 /* 0366 */ "Volantic AB",
563 /* 0367 */ "Podo Labs, Inc",
564 /* 0368 */ "Roche Diabetes Care AG",
565 /* 0369 */ "Amazon.com Services, LLC (formerly Amazon Fulfillment Service)",
566 /* 0370 */ "Connovate Technology Private Limited",
567 /* 0371 */ "Kocomojo, LLC",
568 /* 0372 */ "Everykey Inc.",
569 /* 0373 */ "Dynamic Controls",
570 /* 0374 */ "SentriLock",
571 /* 0375 */ "I-SYST inc.",
572 /* 0376 */ "CASIO COMPUTER CO., LTD.",
573 /* 0377 */ "LAPIS Semiconductor Co., Ltd.",
574 /* 0378 */ "Telemonitor, Inc.",
575 /* 0379 */ "taskit GmbH",
576 /* 0380 */ "Daimler AG",
577 /* 0381 */ "BatAndCat",
578 /* 0382 */ "BluDotz Ltd",
579 /* 0383 */ "XTel Wireless ApS",
580 /* 0384 */ "Gigaset Communications GmbH",
581 /* 0385 */ "Gecko Health Innovations, Inc.",
582 /* 0386 */ "HOP Ubiquitous",
583 /* 0387 */ "Walt Disney",
584 /* 0388 */ "Nectar",
585 /* 0389 */ "bel'apps LLC",
586 /* 0390 */ "CORE Lighting Ltd",
587 /* 0391 */ "Seraphim Sense Ltd",
588 /* 0392 */ "Unico RBC",
589 /* 0393 */ "Physical Enterprises Inc.",
590 /* 0394 */ "Able Trend Technology Limited",
591 /* 0395 */ "Konica Minolta, Inc.",
592 /* 0396 */ "Wilo SE",
593 /* 0397 */ "Extron Design Services",
594 /* 0398 */ "Fitbit, Inc.",
595 /* 0399 */ "Fireflies Systems",
596 /* 0400 */ "Intelletto Technologies Inc.",
597 /* 0401 */ "FDK CORPORATION",
598 /* 0402 */ "Cloudleaf, Inc",
599 /* 0403 */ "Maveric Automation LLC",
600 /* 0404 */ "Acoustic Stream Corporation",
601 /* 0405 */ "Zuli",
602 /* 0406 */ "Paxton Access Ltd",
603 /* 0407 */ "WiSilica Inc.",
604 /* 0408 */ "VENGIT Korlatolt Felelossegu Tarsasag",
605 /* 0409 */ "SALTO SYSTEMS S.L.",
606 /* 0410 */ "TRON Forum (formerly T-Engine Forum)",
607 /* 0411 */ "CUBETECH s.r.o.",
608 /* 0412 */ "Cokiya Incorporated",
609 /* 0413 */ "CVS Health",
610 /* 0414 */ "Ceruus",
611 /* 0415 */ "Strainstall Ltd",
612 /* 0416 */ "Channel Enterprises (HK) Ltd.",
613 /* 0417 */ "FIAMM",
614 /* 0418 */ "GIGALANE.CO.,LTD",
615 /* 0419 */ "EROAD",
616 /* 0420 */ "Mine Safety Appliances",
617 /* 0421 */ "Icon Health and Fitness",
618 /* 0422 */ "Wille Engineering (formerly as Asandoo GmbH)",
619 /* 0423 */ "ENERGOUS CORPORATION",
620 /* 0424 */ "Taobao",
621 /* 0425 */ "Canon Inc.",
622 /* 0426 */ "Geophysical Technology Inc.",
623 /* 0427 */ "Facebook, Inc.",
624 /* 0428 */ "Trividia Health, Inc.",
625 /* 0429 */ "FlightSafety International",
626 /* 0430 */ "Earlens Corporation",
627 /* 0431 */ "Sunrise Micro Devices, Inc.",
628 /* 0432 */ "Star Micronics Co., Ltd.",
629 /* 0433 */ "Netizens Sp. z o.o.",
630 /* 0434 */ "Nymi Inc.",
631 /* 0435 */ "Nytec, Inc.",
632 /* 0436 */ "Trineo Sp. z o.o.",
633 /* 0437 */ "Nest Labs Inc.",
634 /* 0438 */ "LM Technologies Ltd",
635 /* 0439 */ "General Electric Company",
636 /* 0440 */ "i+D3 S.L.",
637 /* 0441 */ "HANA Micron",
638 /* 0442 */ "Stages Cycling LLC",
639 /* 0443 */ "Cochlear Bone Anchored Solutions AB",
640 /* 0444 */ "SenionLab AB",
641 /* 0445 */ "Syszone Co., Ltd",
642 /* 0446 */ "Pulsate Mobile Ltd.",
643 /* 0447 */ "Hong Kong HunterSun Electronic Limited",
644 /* 0448 */ "pironex GmbH",
645 /* 0449 */ "BRADATECH Corp.",
646 /* 0450 */ "Transenergooil AG",
647 /* 0451 */ "Bunch",
648 /* 0452 */ "DME Microelectronics",
649 /* 0453 */ "Bitcraze AB",
650 /* 0454 */ "HASWARE Inc.",
651 /* 0455 */ "Abiogenix Inc.",
652 /* 0456 */ "Poly-Control ApS",
653 /* 0457 */ "Avi-on",
654 /* 0458 */ "Laerdal Medical AS",
655 /* 0459 */ "Fetch My Pet",
656 /* 0460 */ "Sam Labs Ltd.",
657 /* 0461 */ "Chengdu Synwing Technology Ltd",
658 /* 0462 */ "HOUWA SYSTEM DESIGN, k.k.",
659 /* 0463 */ "BSH",
660 /* 0464 */ "Primus Inter Pares Ltd",
661 /* 0465 */ "August Home, Inc",
662 /* 0466 */ "Gill Electronics",
663 /* 0467 */ "Sky Wave Design",
664 /* 0468 */ "Newlab S.r.l.",
665 /* 0469 */ "ELAD srl",
666 /* 0470 */ "G-wearables inc.",
667 /* 0471 */ "Squadrone Systems Inc.",
668 /* 0472 */ "Code Corporation",
669 /* 0473 */ "Savant Systems LLC",
670 /* 0474 */ "Logitech International SA",
671 /* 0475 */ "Innblue Consulting",
672 /* 0476 */ "iParking Ltd.",
673 /* 0477 */ "Koninklijke Philips Electronics N.V.",
674 /* 0478 */ "Minelab Electronics Pty Limited",
675 /* 0479 */ "Bison Group Ltd.",
676 /* 0480 */ "Widex A/S",
677 /* 0481 */ "Jolla Ltd",
678 /* 0482 */ "Lectronix, Inc.",
679 /* 0483 */ "Caterpillar Inc",
680 /* 0484 */ "Freedom Innovations",
681 /* 0485 */ "Dynamic Devices Ltd",
682 /* 0486 */ "Technology Solutions (UK) Ltd",
683 /* 0487 */ "IPS Group Inc.",
684 /* 0488 */ "STIR",
685 /* 0489 */ "Sano, Inc.",
686 /* 0490 */ "Advanced Application Design, Inc.",
687 /* 0491 */ "AutoMap LLC",
688 /* 0492 */ "Spreadtrum Communications Shanghai Ltd",
689 /* 0493 */ "CuteCircuit LTD",
690 /* 0494 */ "Valeo Service",
691 /* 0495 */ "Fullpower Technologies, Inc.",
692 /* 0496 */ "KloudNation",
693 /* 0497 */ "Zebra Technologies Corporation",
694 /* 0498 */ "Itron, Inc.",
695 /* 0499 */ "The University of Tokyo",
696 /* 0500 */ "UTC Fire and Security",
697 /* 0501 */ "Cool Webthings Limited",
698 /* 0502 */ "DJO Global",
699 /* 0503 */ "Gelliner Limited",
700 /* 0504 */ "Anyka (Guangzhou) Microelectronics Technology Co, LTD",
701 /* 0505 */ "Medtronic Inc.",
702 /* 0506 */ "Gozio Inc.",
703 /* 0507 */ "Form Lifting, LLC",
704 /* 0508 */ "Wahoo Fitness, LLC",
705 /* 0509 */ "Kontakt Micro-Location Sp. z o.o.",
706 /* 0510 */ "Radio Systems Corporation",
707 /* 0511 */ "Freescale Semiconductor, Inc.",
708 /* 0512 */ "Verifone Systems Pte Ltd. Taiwan Branch",
709 /* 0513 */ "AR Timing",
710 /* 0514 */ "Rigado LLC",
711 /* 0515 */ "Kemppi Oy",
712 /* 0516 */ "Tapcentive Inc.",
713 /* 0517 */ "Smartbotics Inc.",
714 /* 0518 */ "Otter Products, LLC",
715 /* 0519 */ "STEMP Inc.",
716 /* 0520 */ "LumiGeek LLC",
717 /* 0521 */ "InvisionHeart Inc.",
718 /* 0522 */ "Macnica Inc.",
719 /* 0523 */ "Jaguar Land Rover Limited",
720 /* 0524 */ "CoroWare Technologies, Inc",
721 /* 0525 */ "Simplo Technology Co., LTD",
722 /* 0526 */ "Omron Healthcare Co., LTD",
723 /* 0527 */ "Comodule GMBH",
724 /* 0528 */ "ikeGPS",
725 /* 0529 */ "Telink Semiconductor Co. Ltd",
726 /* 0530 */ "Interplan Co., Ltd",
727 /* 0531 */ "Wyler AG",
728 /* 0532 */ "IK Multimedia Production srl",
729 /* 0533 */ "Lukoton Experience Oy",
730 /* 0534 */ "MTI Ltd",
731 /* 0535 */ "Tech4home, Lda",
732 /* 0536 */ "Hiotech AB",
733 /* 0537 */ "DOTT Limited",
734 /* 0538 */ "Blue Speck Labs, LLC",
735 /* 0539 */ "Cisco Systems, Inc",
736 /* 0540 */ "Mobicomm Inc",
737 /* 0541 */ "Edamic",
738 /* 0542 */ "Goodnet, Ltd",
739 /* 0543 */ "Luster Leaf Products Inc",
740 /* 0544 */ "Manus Machina BV",
741 /* 0545 */ "Mobiquity Networks Inc",
742 /* 0546 */ "Praxis Dynamics",
743 /* 0547 */ "Philip Morris Products S.A.",
744 /* 0548 */ "Comarch SA",
745 /* 0549 */ "Nestlé Nespresso S.A.",
746 /* 0550 */ "Merlinia A/S",
747 /* 0551 */ "LifeBEAM Technologies",
748 /* 0552 */ "Twocanoes Labs, LLC",
749 /* 0553 */ "Muoverti Limited",
750 /* 0554 */ "Stamer Musikanlagen GMBH",
751 /* 0555 */ "Tesla Motors",
752 /* 0556 */ "Pharynks Corporation",
753 /* 0557 */ "Lupine",
754 /* 0558 */ "Siemens AG",
755 /* 0559 */ "Huami (Shanghai) Culture Communication CO., LTD",
756 /* 0560 */ "Foster Electric Company, Ltd",
757 /* 0561 */ "ETA SA",
758 /* 0562 */ "x-Senso Solutions Kft",
759 /* 0563 */ "Shenzhen SuLong Communication Ltd",
760 /* 0564 */ "FengFan (BeiJing) Technology Co, Ltd",
761 /* 0565 */ "Qrio Inc",
762 /* 0566 */ "Pitpatpet Ltd",
763 /* 0567 */ "MSHeli s.r.l.",
764 /* 0568 */ "Trakm8 Ltd",
765 /* 0569 */ "JIN CO, Ltd",
766 /* 0570 */ "Alatech Tehnology",
767 /* 0571 */ "Beijing CarePulse Electronic Technology Co, Ltd",
768 /* 0572 */ "Awarepoint",
769 /* 0573 */ "ViCentra B.V.",
770 /* 0574 */ "Raven Industries",
771 /* 0575 */ "WaveWare Technologies Inc.",
772 /* 0576 */ "Argenox Technologies",
773 /* 0577 */ "Bragi GmbH",
774 /* 0578 */ "16Lab Inc",
775 /* 0579 */ "Masimo Corp",
776 /* 0580 */ "Iotera Inc",
777 /* 0581 */ "Endress+Hauser",
778 /* 0582 */ "ACKme Networks, Inc.",
779 /* 0583 */ "FiftyThree Inc.",
780 /* 0584 */ "Parker Hannifin Corp",
781 /* 0585 */ "Transcranial Ltd",
782 /* 0586 */ "Uwatec AG",
783 /* 0587 */ "Orlan LLC",
784 /* 0588 */ "Blue Clover Devices",
785 /* 0589 */ "M-Way Solutions GmbH",
786 /* 0590 */ "Microtronics Engineering GmbH",
787 /* 0591 */ "Schneider Schreibgeräte GmbH",
788 /* 0592 */ "Sapphire Circuits LLC",
789 /* 0593 */ "Lumo Bodytech Inc.",
790 /* 0594 */ "UKC Technosolution",
791 /* 0595 */ "Xicato Inc.",
792 /* 0596 */ "Playbrush",
793 /* 0597 */ "Dai Nippon Printing Co., Ltd.",
794 /* 0598 */ "G24 Power Limited",
795 /* 0599 */ "AdBabble Local Commerce Inc.",
796 /* 0600 */ "Devialet SA",
797 /* 0601 */ "ALTYOR",
798 /* 0602 */ "University of Applied Sciences Valais/Haute Ecole Valaisanne",
799 /* 0603 */ "Five Interactive, LLC dba Zendo",
800 /* 0604 */ "NetEase (Hangzhou) Network co.Ltd.",
801 /* 0605 */ "Lexmark International Inc.",
802 /* 0606 */ "Fluke Corporation",
803 /* 0607 */ "Yardarm Technologies",
804 /* 0608 */ "SensaRx",
805 /* 0609 */ "SECVRE GmbH",
806 /* 0610 */ "Glacial Ridge Technologies",
807 /* 0611 */ "Identiv, Inc.",
808 /* 0612 */ "DDS, Inc.",
809 /* 0613 */ "SMK Corporation",
810 /* 0614 */ "Schawbel Technologies LLC",
811 /* 0615 */ "XMI Systems SA",
812 /* 0616 */ "Cerevo",
813 /* 0617 */ "Torrox GmbH & Co KG",
814 /* 0618 */ "Gemalto",
815 /* 0619 */ "DEKA Research & Development Corp.",
816 /* 0620 */ "Domster Tadeusz Szydlowski",
817 /* 0621 */ "Technogym SPA",
818 /* 0622 */ "FLEURBAEY BVBA",
819 /* 0623 */ "Aptcode Solutions",
820 /* 0624 */ "LSI ADL Technology",
821 /* 0625 */ "Animas Corp",
822 /* 0626 */ "Alps Electric Co., Ltd.",
823 /* 0627 */ "OCEASOFT",
824 /* 0628 */ "Motsai Research",
825 /* 0629 */ "Geotab",
826 /* 0630 */ "E.G.O. Elektro-Geraetebau GmbH",
827 /* 0631 */ "bewhere inc",
828 /* 0632 */ "Johnson Outdoors Inc",
829 /* 0633 */ "steute Schaltgerate GmbH & Co. KG",
830 /* 0634 */ "Ekomini inc.",
831 /* 0635 */ "DEFA AS",
832 /* 0636 */ "Aseptika Ltd",
833 /* 0637 */ "HUAWEI Technologies Co., Ltd.",
834 /* 0638 */ "HabitAware, LLC",
835 /* 0639 */ "ruwido austria gmbh",
836 /* 0640 */ "ITEC corporation",
837 /* 0641 */ "StoneL",
838 /* 0642 */ "Sonova AG",
839 /* 0643 */ "Maven Machines, Inc.",
840 /* 0644 */ "Synapse Electronics",
841 /* 0645 */ "Standard Innovation Inc.",
842 /* 0646 */ "RF Code, Inc.",
843 /* 0647 */ "Wally Ventures S.L.",
844 /* 0648 */ "Willowbank Electronics Ltd",
845 /* 0649 */ "SK Telecom",
846 /* 0650 */ "Jetro AS",
847 /* 0651 */ "Code Gears LTD",
848 /* 0652 */ "NANOLINK APS",
849 /* 0653 */ "IF, LLC",
850 /* 0654 */ "RF Digital Corp",
851 /* 0655 */ "Church & Dwight Co., Inc",
852 /* 0656 */ "Multibit Oy",
853 /* 0657 */ "CliniCloud Inc",
854 /* 0658 */ "SwiftSensors",
855 /* 0659 */ "Blue Bite",
856 /* 0660 */ "ELIAS GmbH",
857 /* 0661 */ "Sivantos GmbH",
858 /* 0662 */ "Petzl",
859 /* 0663 */ "storm power ltd",
860 /* 0664 */ "EISST Ltd",
861 /* 0665 */ "Inexess Technology Simma KG",
862 /* 0666 */ "Currant, Inc.",
863 /* 0667 */ "C2 Development, Inc.",
864 /* 0668 */ "Blue Sky Scientific, LLC",
865 /* 0669 */ "ALOTTAZS LABS, LLC",
866 /* 0670 */ "Kupson spol. s r.o.",
867 /* 0671 */ "Areus Engineering GmbH",
868 /* 0672 */ "Impossible Camera GmbH",
869 /* 0673 */ "InventureTrack Systems",
870 /* 0674 */ "LockedUp",
871 /* 0675 */ "Itude",
872 /* 0676 */ "Pacific Lock Company",
873 /* 0677 */ "Tendyron Corporation",
874 /* 0678 */ "Robert Bosch GmbH",
875 /* 0679 */ "Illuxtron international B.V.",
876 /* 0680 */ "miSport Ltd.",
877 /* 0681 */ "Chargelib",
878 /* 0682 */ "Doppler Lab",
879 /* 0683 */ "BBPOS Limited",
880 /* 0684 */ "RTB Elektronik GmbH & Co. KG",
881 /* 0685 */ "Rx Networks, Inc.",
882 /* 0686 */ "WeatherFlow, Inc.",
883 /* 0687 */ "Technicolor USA Inc.",
884 /* 0688 */ "Bestechnic(Shanghai),Ltd",
885 /* 0689 */ "Raden Inc",
886 /* 0690 */ "JouZen Oy",
887 /* 0691 */ "CLABER S.P.A.",
888 /* 0692 */ "Hyginex, Inc.",
889 /* 0693 */ "HANSHIN ELECTRIC RAILWAY CO.,LTD.",
890 /* 0694 */ "Schneider Electric",
891 /* 0695 */ "Oort Technologies LLC",
892 /* 0696 */ "Chrono Therapeutics",
893 /* 0697 */ "Rinnai Corporation",
894 /* 0698 */ "Swissprime Technologies AG",
895 /* 0699 */ "Koha.,Co.Ltd",
896 /* 0700 */ "Genevac Ltd",
897 /* 0701 */ "Chemtronics",
898 /* 0702 */ "Seguro Technology Sp. z o.o.",
899 /* 0703 */ "Redbird Flight Simulations",
900 /* 0704 */ "Dash Robotics",
901 /* 0705 */ "LINE Corporation",
902 /* 0706 */ "Guillemot Corporation",
903 /* 0707 */ "Techtronic Power Tools Technology Limited",
904 /* 0708 */ "Wilson Sporting Goods",
905 /* 0709 */ "Lenovo (Singapore) Pte Ltd.",
906 /* 0710 */ "Ayatan Sensors",
907 /* 0711 */ "Electronics Tomorrow Limited",
908 /* 0712 */ "VASCO Data Security International, Inc.",
909 /* 0713 */ "PayRange Inc.",
910 /* 0714 */ "ABOV Semiconductor",
911 /* 0715 */ "AINA-Wireless Inc.",
912 /* 0716 */ "Eijkelkamp Soil & Water",
913 /* 0717 */ "BMA ergonomics b.v.",
914 /* 0718 */ "Teva Branded Pharmaceutical Products R&D, Inc.",
915 /* 0719 */ "Anima",
916 /* 0720 */ "3M",
917 /* 0721 */ "Empatica Srl",
918 /* 0722 */ "Afero, Inc.",
919 /* 0723 */ "Powercast Corporation",
920 /* 0724 */ "Secuyou ApS",
921 /* 0725 */ "OMRON Corporation",
922 /* 0726 */ "Send Solutions",
923 /* 0727 */ "NIPPON SYSTEMWARE CO.,LTD.",
924 /* 0728 */ "Neosfar",
925 /* 0729 */ "Fliegl Agrartechnik GmbH",
926 /* 0730 */ "Gilvader",
927 /* 0731 */ "Digi International Inc (R)",
928 /* 0732 */ "DeWalch Technologies, Inc.",
929 /* 0733 */ "Flint Rehabilitation Devices, LLC",
930 /* 0734 */ "Samsung SDS Co., Ltd.",
931 /* 0735 */ "Blur Product Development",
932 /* 0736 */ "University of Michigan",
933 /* 0737 */ "Victron Energy BV",
934 /* 0738 */ "NTT docomo",
935 /* 0739 */ "Carmanah Technologies Corp.",
936 /* 0740 */ "Bytestorm Ltd.",
937 /* 0741 */ "Espressif Incorporated",
938 /* 0742 */ "Unwire",
939 /* 0743 */ "Connected Yard, Inc.",
940 /* 0744 */ "American Music Environments",
941 /* 0745 */ "Sensogram Technologies, Inc.",
942 /* 0746 */ "Fujitsu Limited",
943 /* 0747 */ "Ardic Technology",
944 /* 0748 */ "Delta Systems, Inc",
945 /* 0749 */ "HTC Corporation",
946 /* 0750 */ "Citizen Holdings Co., Ltd.",
947 /* 0751 */ "SMART-INNOVATION.inc",
948 /* 0752 */ "Blackrat Software",
949 /* 0753 */ "The Idea Cave, LLC",
950 /* 0754 */ "GoPro, Inc.",
951 /* 0755 */ "AuthAir, Inc",
952 /* 0756 */ "Vensi, Inc.",
953 /* 0757 */ "Indagem Tech LLC",
954 /* 0758 */ "Intemo Technologies",
955 /* 0759 */ "DreamVisions co., Ltd.",
956 /* 0760 */ "Runteq Oy Ltd",
957 /* 0761 */ "IMAGINATION TECHNOLOGIES LTD",
958 /* 0762 */ "CoSTAR TEchnologies",
959 /* 0763 */ "Clarius Mobile Health Corp.",
960 /* 0764 */ "Shanghai Frequen Microelectronics Co., Ltd.",
961 /* 0765 */ "Uwanna, Inc.",
962 /* 0766 */ "Lierda Science & Technology Group Co., Ltd.",
963 /* 0767 */ "Silicon Laboratories",
964 /* 0768 */ "World Moto Inc.",
965 /* 0769 */ "Giatec Scientific Inc.",
966 /* 0770 */ "Loop Devices, Inc",
967 /* 0771 */ "IACA electronique",
968 /* 0772 */ "Proxy Technologies, Inc.",
969 /* 0773 */ "Swipp ApS",
970 /* 0774 */ "Life Laboratory Inc.",
971 /* 0775 */ "FUJI INDUSTRIAL CO.,LTD.",
972 /* 0776 */ "Surefire, LLC",
973 /* 0777 */ "Dolby Labs",
974 /* 0778 */ "Ellisys",
975 /* 0779 */ "Magnitude Lighting Converters",
976 /* 0780 */ "Hilti AG",
977 /* 0781 */ "Devdata S.r.l.",
978 /* 0782 */ "Deviceworx",
979 /* 0783 */ "Shortcut Labs",
980 /* 0784 */ "SGL Italia S.r.l.",
981 /* 0785 */ "PEEQ DATA",
982 /* 0786 */ "Ducere Technologies Pvt Ltd",
983 /* 0787 */ "DiveNav, Inc.",
984 /* 0788 */ "RIIG AI Sp. z o.o.",
985 /* 0789 */ "Thermo Fisher Scientific",
986 /* 0790 */ "AG Measurematics Pvt. Ltd.",
987 /* 0791 */ "CHUO Electronics CO., LTD.",
988 /* 0792 */ "Aspenta International",
989 /* 0793 */ "Eugster Frismag AG",
990 /* 0794 */ "Amber wireless GmbH",
991 /* 0795 */ "HQ Inc",
992 /* 0796 */ "Lab Sensor Solutions",
993 /* 0797 */ "Enterlab ApS",
994 /* 0798 */ "Eyefi, Inc.",
995 /* 0799 */ "MetaSystem S.p.A.",
996 /* 0800 */ "SONO ELECTRONICS. CO., LTD",
997 /* 0801 */ "Jewelbots",
998 /* 0802 */ "Compumedics Limited",
999 /* 0803 */ "Rotor Bike Components",
1000 /* 0804 */ "Astro, Inc.",
1001 /* 0805 */ "Amotus Solutions",
1002 /* 0806 */ "Healthwear Technologies (Changzhou)Ltd",
1003 /* 0807 */ "Essex Electronics",
1004 /* 0808 */ "Grundfos A/S",
1005 /* 0809 */ "Eargo, Inc.",
1006 /* 0810 */ "Electronic Design Lab",
1007 /* 0811 */ "ESYLUX",
1008 /* 0812 */ "NIPPON SMT.CO.,Ltd",
1009 /* 0813 */ "BM innovations GmbH",
1010 /* 0814 */ "indoormap",
1011 /* 0815 */ "OttoQ Inc",
1012 /* 0816 */ "North Pole Engineering",
1013 /* 0817 */ "3flares Technologies Inc.",
1014 /* 0818 */ "Electrocompaniet A.S.",
1015 /* 0819 */ "Mul-T-Lock",
1016 /* 0820 */ "Corentium AS",
1017 /* 0821 */ "Enlighted Inc",
1018 /* 0822 */ "GISTIC",
1019 /* 0823 */ "AJP2 Holdings, LLC",
1020 /* 0824 */ "COBI GmbH",
1021 /* 0825 */ "Blue Sky Scientific, LLC",
1022 /* 0826 */ "Appception, Inc.",
1023 /* 0827 */ "Courtney Thorne Limited",
1024 /* 0828 */ "Virtuosys",
1025 /* 0829 */ "TPV Technology Limited",
1026 /* 0830 */ "Monitra SA",
1027 /* 0831 */ "Automation Components, Inc.",
1028 /* 0832 */ "Letsense s.r.l.",
1029 /* 0833 */ "Etesian Technologies LLC",
1030 /* 0834 */ "GERTEC BRASIL LTDA.",
1031 /* 0835 */ "Drekker Development Pty. Ltd.",
1032 /* 0836 */ "Whirl Inc",
1033 /* 0837 */ "Locus Positioning",
1034 /* 0838 */ "Acuity Brands Lighting, Inc",
1035 /* 0839 */ "Prevent Biometrics",
1036 /* 0840 */ "Arioneo",
1037 /* 0841 */ "VersaMe",
1038 /* 0842 */ "Vaddio",
1039 /* 0843 */ "Libratone A/S",
1040 /* 0844 */ "HM Electronics, Inc.",
1041 /* 0845 */ "TASER International, Inc.",
1042 /* 0846 */ "SafeTrust Inc.",
1043 /* 0847 */ "Heartland Payment Systems",
1044 /* 0848 */ "Bitstrata Systems Inc.",
1045 /* 0849 */ "Pieps GmbH",
1046 /* 0850 */ "iRiding(Xiamen)Technology Co.,Ltd.",
1047 /* 0851 */ "Alpha Audiotronics, Inc.",
1048 /* 0852 */ "TOPPAN FORMS CO.,LTD.",
1049 /* 0853 */ "Sigma Designs, Inc.",
1050 /* 0854 */ "Spectrum Brands, Inc.",
1051 /* 0855 */ "Polymap Wireless",
1052 /* 0856 */ "MagniWare Ltd.",
1053 /* 0857 */ "Novotec Medical GmbH",
1054 /* 0858 */ "Medicom Innovation Partner a/s",
1055 /* 0859 */ "Matrix Inc.",
1056 /* 0860 */ "Eaton Corporation",
1057 /* 0861 */ "KYS",
1058 /* 0862 */ "Naya Health, Inc.",
1059 /* 0863 */ "Acromag",
1060 /* 0864 */ "Insulet Corporation",
1061 /* 0865 */ "Wellinks Inc.",
1062 /* 0866 */ "ON Semiconductor",
1063 /* 0867 */ "FREELAP SA",
1064 /* 0868 */ "Favero Electronics Srl",
1065 /* 0869 */ "BioMech Sensor LLC",
1066 /* 0870 */ "BOLTT Sports technologies Private limited",
1067 /* 0871 */ "Saphe International",
1068 /* 0872 */ "Metormote AB",
1069 /* 0873 */ "littleBits",
1070 /* 0874 */ "SetPoint Medical",
1071 /* 0875 */ "BRControls Products BV",
1072 /* 0876 */ "Zipcar",
1073 /* 0877 */ "AirBolt Pty Ltd",
1074 /* 0878 */ "KeepTruckin Inc",
1075 /* 0879 */ "Motiv, Inc.",
1076 /* 0880 */ "Wazombi Labs OU",
1077 /* 0881 */ "ORBCOMM",
1078 /* 0882 */ "Nixie Labs, Inc.",
1079 /* 0883 */ "AppNearMe Ltd",
1080 /* 0884 */ "Holman Industries",
1081 /* 0885 */ "Expain AS",
1082 /* 0886 */ "Electronic Temperature Instruments Ltd",
1083 /* 0887 */ "Plejd AB",
1084 /* 0888 */ "Propeller Health",
1085 /* 0889 */ "Shenzhen iMCO Electronic Technology Co.,Ltd",
1086 /* 0890 */ "Algoria",
1087 /* 0891 */ "Apption Labs Inc.",
1088 /* 0892 */ "Cronologics Corporation",
1089 /* 0893 */ "MICRODIA Ltd.",
1090 /* 0894 */ "lulabytes S.L.",
1091 /* 0895 */ "Societe des Produits Nestle S.A. (formerly Nestec S.A.)",
1092 /* 0896 */ "LLC \"MEGA-F service\"",
1093 /* 0897 */ "Sharp Corporation",
1094 /* 0898 */ "Precision Outcomes Ltd",
1095 /* 0899 */ "Kronos Incorporated",
1096 /* 0900 */ "OCOSMOS Co., Ltd.",
1097 /* 0901 */ "Embedded Electronic Solutions Ltd. dba e2Solutions",
1098 /* 0902 */ "Aterica Inc.",
1099 /* 0903 */ "BluStor PMC, Inc.",
1100 /* 0904 */ "Kapsch TrafficCom AB",
1101 /* 0905 */ "ActiveBlu Corporation",
1102 /* 0906 */ "Kohler Mira Limited",
1103 /* 0907 */ "Noke",
1104 /* 0908 */ "Appion Inc.",
1105 /* 0909 */ "Resmed Ltd",
1106 /* 0910 */ "Crownstone B.V.",
1107 /* 0911 */ "Xiaomi Inc.",
1108 /* 0912 */ "INFOTECH s.r.o.",
1109 /* 0913 */ "Thingsquare AB",
1110 /* 0914 */ "T&D",
1111 /* 0915 */ "LAVAZZA S.p.A.",
1112 /* 0916 */ "Netclearance Systems, Inc.",
1113 /* 0917 */ "SDATAWAY",
1114 /* 0918 */ "BLOKS GmbH",
1115 /* 0919 */ "LEGO System A/S",
1116 /* 0920 */ "Thetatronics Ltd",
1117 /* 0921 */ "Nikon Corporation",
1118 /* 0922 */ "NeST",
1119 /* 0923 */ "South Silicon Valley Microelectronics",
1120 /* 0924 */ "ALE International",
1121 /* 0925 */ "CareView Communications, Inc.",
1122 /* 0926 */ "SchoolBoard Limited",
1123 /* 0927 */ "Molex Corporation",
1124 /* 0928 */ "IVT Wireless Limited",
1125 /* 0929 */ "Alpine Labs LLC",
1126 /* 0930 */ "Candura Instruments",
1127 /* 0931 */ "SmartMovt Technology Co., Ltd",
1128 /* 0932 */ "Token Zero Ltd",
1129 /* 0933 */ "ACE CAD Enterprise Co., Ltd. (ACECAD)",
1130 /* 0934 */ "Medela, Inc",
1131 /* 0935 */ "AeroScout",
1132 /* 0936 */ "Esrille Inc.",
1133 /* 0937 */ "THINKERLY SRL",
1134 /* 0938 */ "Exon Sp. z o.o.",
1135 /* 0939 */ "Meizu Technology Co., Ltd.",
1136 /* 0940 */ "Smablo LTD",
1137 /* 0941 */ "XiQ",
1138 /* 0942 */ "Allswell Inc.",
1139 /* 0943 */ "Comm-N-Sense Corp DBA Verigo",
1140 /* 0944 */ "VIBRADORM GmbH",
1141 /* 0945 */ "Otodata Wireless Network Inc.",
1142 /* 0946 */ "Propagation Systems Limited",
1143 /* 0947 */ "Midwest Instruments & Controls",
1144 /* 0948 */ "Alpha Nodus, inc.",
1145 /* 0949 */ "petPOMM, Inc",
1146 /* 0950 */ "Mattel",
1147 /* 0951 */ "Airbly Inc.",
1148 /* 0952 */ "A-Safe Limited",
1149 /* 0953 */ "FREDERIQUE CONSTANT SA",
1150 /* 0954 */ "Maxscend Microelectronics Company Limited",
1151 /* 0955 */ "Abbott",
1152 /* 0956 */ "ASB Bank Ltd",
1153 /* 0957 */ "amadas",
1154 /* 0958 */ "Applied Science, Inc.",
1155 /* 0959 */ "iLumi Solutions Inc.",
1156 /* 0960 */ "Arch Systems Inc.",
1157 /* 0961 */ "Ember Technologies, Inc.",
1158 /* 0962 */ "Snapchat Inc",
1159 /* 0963 */ "Casambi Technologies Oy",
1160 /* 0964 */ "Pico Technology Inc.",
1161 /* 0965 */ "St. Jude Medical, Inc.",
1162 /* 0966 */ "Intricon",
1163 /* 0967 */ "Structural Health Systems, Inc.",
1164 /* 0968 */ "Avvel International",
1165 /* 0969 */ "Gallagher Group",
1166 /* 0970 */ "In2things Automation Pvt. Ltd.",
1167 /* 0971 */ "SYSDEV Srl",
1168 /* 0972 */ "Vonkil Technologies Ltd",
1169 /* 0973 */ "Wynd Technologies, Inc.",
1170 /* 0974 */ "CONTRINEX S.A.",
1171 /* 0975 */ "MIRA, Inc.",
1172 /* 0976 */ "Watteam Ltd",
1173 /* 0977 */ "Density Inc.",
1174 /* 0978 */ "IOT Pot India Private Limited",
1175 /* 0979 */ "Sigma Connectivity AB",
1176 /* 0980 */ "PEG PEREGO SPA",
1177 /* 0981 */ "Wyzelink Systems Inc.",
1178 /* 0982 */ "Yota Devices LTD",
1179 /* 0983 */ "FINSECUR",
1180 /* 0984 */ "Zen-Me Labs Ltd",
1181 /* 0985 */ "3IWare Co., Ltd.",
1182 /* 0986 */ "EnOcean GmbH",
1183 /* 0987 */ "Instabeat, Inc",
1184 /* 0988 */ "Nima Labs",
1185 /* 0989 */ "Andreas Stihl AG & Co. KG",
1186 /* 0990 */ "Nathan Rhoades LLC",
1187 /* 0991 */ "Grob Technologies, LLC",
1188 /* 0992 */ "Actions (Zhuhai) Technology Co., Limited",
1189 /* 0993 */ "SPD Development Company Ltd",
1190 /* 0994 */ "Sensoan Oy",
1191 /* 0995 */ "Qualcomm Life Inc",
1192 /* 0996 */ "Chip-ing AG",
1193 /* 0997 */ "ffly4u",
1194 /* 0998 */ "IoT Instruments Oy",
1195 /* 0999 */ "TRUE Fitness Technology",
1196 /* 1000 */ "Reiner Kartengeraete GmbH & Co. KG.",
1197 /* 1001 */ "SHENZHEN LEMONJOY TECHNOLOGY CO., LTD.",
1198 /* 1002 */ "Hello Inc.",
1199 /* 1003 */ "Evollve Inc.",
1200 /* 1004 */ "Jigowatts Inc.",
1201 /* 1005 */ "BASIC MICRO.COM,INC.",
1202 /* 1006 */ "CUBE TECHNOLOGIES",
1203 /* 1007 */ "foolography GmbH",
1204 /* 1008 */ "CLINK",
1205 /* 1009 */ "Hestan Smart Cooking Inc.",
1206 /* 1010 */ "WindowMaster A/S",
1207 /* 1011 */ "Flowscape AB",
1208 /* 1012 */ "PAL Technologies Ltd",
1209 /* 1013 */ "WHERE, Inc.",
1210 /* 1014 */ "Iton Technology Corp.",
1211 /* 1015 */ "Owl Labs Inc.",
1212 /* 1016 */ "Rockford Corp.",
1213 /* 1017 */ "Becon Technologies Co.,Ltd.",
1214 /* 1018 */ "Vyassoft Technologies Inc",
1215 /* 1019 */ "Nox Medical",
1216 /* 1020 */ "Kimberly-Clark",
1217 /* 1021 */ "Trimble Navigation Ltd.",
1218 /* 1022 */ "Littelfuse",
1219 /* 1023 */ "Withings",
1220 /* 1024 */ "i-developer IT Beratung UG",
1221 /* 1025 */ "Relations Inc.",
1222 /* 1026 */ "Sears Holdings Corporation",
1223 /* 1027 */ "Gantner Electronic GmbH",
1224 /* 1028 */ "Authomate Inc",
1225 /* 1029 */ "Vertex International, Inc.",
1226 /* 1030 */ "Airtago",
1227 /* 1031 */ "Swiss Audio SA",
1228 /* 1032 */ "ToGetHome Inc.",
1229 /* 1033 */ "AXIS",
1230 /* 1034 */ "Openmatics",
1231 /* 1035 */ "Jana Care Inc.",
1232 /* 1036 */ "Senix Corporation",
1233 /* 1037 */ "NorthStar Battery Company, LLC",
1234 /* 1038 */ "SKF (U.K.) Limited",
1235 /* 1039 */ "CO-AX Technology, Inc.",
1236 /* 1040 */ "Fender Musical Instruments",
1237 /* 1041 */ "Luidia Inc",
1238 /* 1042 */ "SEFAM",
1239 /* 1043 */ "Wireless Cables Inc",
1240 /* 1044 */ "Lightning Protection International Pty Ltd",
1241 /* 1045 */ "Uber Technologies Inc",
1242 /* 1046 */ "SODA GmbH",
1243 /* 1047 */ "Fatigue Science",
1244 /* 1048 */ "Alpine Electronics Inc.",
1245 /* 1049 */ "Novalogy LTD",
1246 /* 1050 */ "Friday Labs Limited",
1247 /* 1051 */ "OrthoAccel Technologies",
1248 /* 1052 */ "WaterGuru, Inc.",
1249 /* 1053 */ "Benning Elektrotechnik und Elektronik GmbH & Co. KG",
1250 /* 1054 */ "Dell Computer Corporation",
1251 /* 1055 */ "Kopin Corporation",
1252 /* 1056 */ "TecBakery GmbH",
1253 /* 1057 */ "Backbone Labs, Inc.",
1254 /* 1058 */ "DELSEY SA",
1255 /* 1059 */ "Chargifi Limited",
1256 /* 1060 */ "Trainesense Ltd.",
1257 /* 1061 */ "Unify Software and Solutions GmbH & Co. KG",
1258 /* 1062 */ "Husqvarna AB",
1259 /* 1063 */ "Focus fleet and fuel management inc",
1260 /* 1064 */ "SmallLoop, LLC",
1261 /* 1065 */ "Prolon Inc.",
1262 /* 1066 */ "BD Medical",
1263 /* 1067 */ "iMicroMed Incorporated",
1264 /* 1068 */ "Ticto N.V.",
1265 /* 1069 */ "Meshtech AS",
1266 /* 1070 */ "MemCachier Inc.",
1267 /* 1071 */ "Danfoss A/S",
1268 /* 1072 */ "SnapStyk Inc.",
1269 /* 1073 */ "Amway Corporation",
1270 /* 1074 */ "Silk Labs, Inc.",
1271 /* 1075 */ "Pillsy Inc.",
1272 /* 1076 */ "Hatch Baby, Inc.",
1273 /* 1077 */ "Blocks Wearables Ltd.",
1274 /* 1078 */ "Drayson Technologies (Europe) Limited",
1275 /* 1079 */ "eBest IOT Inc.",
1276 /* 1080 */ "Helvar Ltd",
1277 /* 1081 */ "Radiance Technologies",
1278 /* 1082 */ "Nuheara Limited",
1279 /* 1083 */ "Appside co., ltd.",
1280 /* 1084 */ "DeLaval",
1281 /* 1085 */ "Coiler Corporation",
1282 /* 1086 */ "Thermomedics, Inc.",
1283 /* 1087 */ "Tentacle Sync GmbH",
1284 /* 1088 */ "Valencell, Inc.",
1285 /* 1089 */ "iProtoXi Oy",
1286 /* 1090 */ "SECOM CO., LTD.",
1287 /* 1091 */ "Tucker International LLC",
1288 /* 1092 */ "Metanate Limited",
1289 /* 1093 */ "Kobian Canada Inc.",
1290 /* 1094 */ "NETGEAR, Inc.",
1291 /* 1095 */ "Fabtronics Australia Pty Ltd",
1292 /* 1096 */ "Grand Centrix GmbH",
1293 /* 1097 */ "1UP USA.com llc",
1294 /* 1098 */ "SHIMANO INC.",
1295 /* 1099 */ "Nain Inc.",
1296 /* 1100 */ "LifeStyle Lock, LLC",
1297 /* 1101 */ "VEGA Grieshaber KG",
1298 /* 1102 */ "Xtrava Inc.",
1299 /* 1103 */ "TTS Tooltechnic Systems AG & Co. KG",
1300 /* 1104 */ "Teenage Engineering AB",
1301 /* 1105 */ "Tunstall Nordic AB",
1302 /* 1106 */ "Svep Design Center AB",
1303 /* 1107 */ "GreenPeak Technologies BV",
1304 /* 1108 */ "Sphinx Electronics GmbH & Co KG",
1305 /* 1109 */ "Atomation",
1306 /* 1110 */ "Nemik Consulting Inc",
1307 /* 1111 */ "RF INNOVATION",
1308 /* 1112 */ "Mini Solution Co., Ltd.",
1309 /* 1113 */ "Lumenetix, Inc",
1310 /* 1114 */ "2048450 Ontario Inc",
1311 /* 1115 */ "SPACEEK LTD",
1312 /* 1116 */ "Delta T Corporation",
1313 /* 1117 */ "Boston Scientific Corporation",
1314 /* 1118 */ "Nuviz, Inc.",
1315 /* 1119 */ "Real Time Automation, Inc.",
1316 /* 1120 */ "Kolibree",
1317 /* 1121 */ "vhf elektronik GmbH",
1318 /* 1122 */ "Bonsai Systems GmbH",
1319 /* 1123 */ "Fathom Systems Inc.",
1320 /* 1124 */ "Bellman & Symfon",
1321 /* 1125 */ "International Forte Group LLC",
1322 /* 1126 */ "CycleLabs Solutions inc.",
1323 /* 1127 */ "Codenex Oy",
1324 /* 1128 */ "Kynesim Ltd",
1325 /* 1129 */ "Palago AB",
1326 /* 1130 */ "INSIGMA INC.",
1327 /* 1131 */ "PMD Solutions",
1328 /* 1132 */ "Qingdao Realtime Technology Co., Ltd.",
1329 /* 1133 */ "BEGA Gantenbrink-Leuchten KG",
1330 /* 1134 */ "Pambor Ltd.",
1331 /* 1135 */ "Develco Products A/S",
1332 /* 1136 */ "iDesign s.r.l.",
1333 /* 1137 */ "TiVo Corp",
1334 /* 1138 */ "Control-J Pty Ltd",
1335 /* 1139 */ "Steelcase, Inc.",
1336 /* 1140 */ "iApartment co., ltd.",
1337 /* 1141 */ "Icom inc.",
1338 /* 1142 */ "Oxstren Wearable Technologies Private Limited",
1339 /* 1143 */ "Blue Spark Technologies",
1340 /* 1144 */ "FarSite Communications Limited",
1341 /* 1145 */ "mywerk system GmbH",
1342 /* 1146 */ "Sinosun Technology Co., Ltd.",
1343 /* 1147 */ "MIYOSHI ELECTRONICS CORPORATION",
1344 /* 1148 */ "POWERMAT LTD",
1345 /* 1149 */ "Occly LLC",
1346 /* 1150 */ "OurHub Dev IvS",
1347 /* 1151 */ "Pro-Mark, Inc.",
1348 /* 1152 */ "Dynometrics Inc.",
1349 /* 1153 */ "Quintrax Limited",
1350 /* 1154 */ "POS Tuning Udo Vosshenrich GmbH & Co. KG",
1351 /* 1155 */ "Multi Care Systems B.V.",
1352 /* 1156 */ "Revol Technologies Inc",
1353 /* 1157 */ "SKIDATA AG",
1354 /* 1158 */ "DEV TECNOLOGIA INDUSTRIA, COMERCIO E MANUTENCAO DE EQUIPAMENTOS LTDA. - ME",
1355 /* 1159 */ "Centrica Connected Home",
1356 /* 1160 */ "Automotive Data Solutions Inc",
1357 /* 1161 */ "Igarashi Engineering",
1358 /* 1162 */ "Taelek Oy",
1359 /* 1163 */ "CP Electronics Limited",
1360 /* 1164 */ "Vectronix AG",
1361 /* 1165 */ "S-Labs Sp. z o.o.",
1362 /* 1166 */ "Companion Medical, Inc.",
1363 /* 1167 */ "BlueKitchen GmbH",
1364 /* 1168 */ "Matting AB",
1365 /* 1169 */ "SOREX - Wireless Solutions GmbH",
1366 /* 1170 */ "ADC Technology, Inc.",
1367 /* 1171 */ "Lynxemi Pte Ltd",
1368 /* 1172 */ "SENNHEISER electronic GmbH & Co. KG",
1369 /* 1173 */ "LMT Mercer Group, Inc",
1370 /* 1174 */ "Polymorphic Labs LLC",
1371 /* 1175 */ "Cochlear Limited",
1372 /* 1176 */ "METER Group, Inc. USA",
1373 /* 1177 */ "Ruuvi Innovations Ltd.",
1374 /* 1178 */ "Situne AS",
1375 /* 1179 */ "nVisti, LLC",
1376 /* 1180 */ "DyOcean",
1377 /* 1181 */ "Uhlmann & Zacher GmbH",
1378 /* 1182 */ "AND!XOR LLC",
1379 /* 1183 */ "tictote AB",
1380 /* 1184 */ "Vypin, LLC",
1381 /* 1185 */ "PNI Sensor Corporation",
1382 /* 1186 */ "ovrEngineered, LLC",
1383 /* 1187 */ "GT-tronics HK Ltd",
1384 /* 1188 */ "Herbert Waldmann GmbH & Co. KG",
1385 /* 1189 */ "Guangzhou FiiO Electronics Technology Co.,Ltd",
1386 /* 1190 */ "Vinetech Co., Ltd",
1387 /* 1191 */ "Dallas Logic Corporation",
1388 /* 1192 */ "BioTex, Inc.",
1389 /* 1193 */ "DISCOVERY SOUND TECHNOLOGY, LLC",
1390 /* 1194 */ "LINKIO SAS",
1391 /* 1195 */ "Harbortronics, Inc.",
1392 /* 1196 */ "Undagrid B.V.",
1393 /* 1197 */ "Shure Inc",
1394 /* 1198 */ "ERM Electronic Systems LTD",
1395 /* 1199 */ "BIOROWER Handelsagentur GmbH",
1396 /* 1200 */ "Weba Sport und Med. Artikel GmbH",
1397 /* 1201 */ "Kartographers Technologies Pvt. Ltd.",
1398 /* 1202 */ "The Shadow on the Moon",
1399 /* 1203 */ "mobike (Hong Kong) Limited",
1400 /* 1204 */ "Inuheat Group AB",
1401 /* 1205 */ "Swiftronix AB",
1402 /* 1206 */ "Diagnoptics Technologies",
1403 /* 1207 */ "Analog Devices, Inc.",
1404 /* 1208 */ "Soraa Inc.",
1405 /* 1209 */ "CSR Building Products Limited",
1406 /* 1210 */ "Crestron Electronics, Inc.",
1407 /* 1211 */ "Neatebox Ltd",
1408 /* 1212 */ "Draegerwerk AG & Co. KGaA",
1409 /* 1213 */ "AlbynMedical",
1410 /* 1214 */ "Averos FZCO",
1411 /* 1215 */ "VIT Initiative, LLC",
1412 /* 1216 */ "Statsports International",
1413 /* 1217 */ "Sospitas, s.r.o.",
1414 /* 1218 */ "Dmet Products Corp.",
1415 /* 1219 */ "Mantracourt Electronics Limited",
1416 /* 1220 */ "TeAM Hutchins AB",
1417 /* 1221 */ "Seibert Williams Glass, LLC",
1418 /* 1222 */ "Insta GmbH",
1419 /* 1223 */ "Svantek Sp. z o.o.",
1420 /* 1224 */ "Shanghai Flyco Electrical Appliance Co., Ltd.",
1421 /* 1225 */ "Thornwave Labs Inc",
1422 /* 1226 */ "Steiner-Optik GmbH",
1423 /* 1227 */ "Novo Nordisk A/S",
1424 /* 1228 */ "Enflux Inc.",
1425 /* 1229 */ "Safetech Products LLC",
1426 /* 1230 */ "GOOOLED S.R.L.",
1427 /* 1231 */ "DOM Sicherheitstechnik GmbH & Co. KG",
1428 /* 1232 */ "Olympus Corporation",
1429 /* 1233 */ "KTS GmbH",
1430 /* 1234 */ "Anloq Technologies Inc.",
1431 /* 1235 */ "Queercon, Inc",
1432 /* 1236 */ "5th Element Ltd",
1433 /* 1237 */ "Gooee Limited",
1434 /* 1238 */ "LUGLOC LLC",
1435 /* 1239 */ "Blincam, Inc.",
1436 /* 1240 */ "FUJIFILM Corporation",
1437 /* 1241 */ "RandMcNally",
1438 /* 1242 */ "Franceschi Marina snc",
1439 /* 1243 */ "Engineered Audio, LLC.",
1440 /* 1244 */ "IOTTIVE (OPC) PRIVATE LIMITED",
1441 /* 1245 */ "4MOD Technology",
1442 /* 1246 */ "Lutron Electronics Co., Inc.",
1443 /* 1247 */ "Emerson",
1444 /* 1248 */ "Guardtec, Inc.",
1445 /* 1249 */ "REACTEC LIMITED",
1446 /* 1250 */ "EllieGrid",
1447 /* 1251 */ "Under Armour",
1448 /* 1252 */ "Woodenshark",
1449 /* 1253 */ "Avack Oy",
1450 /* 1254 */ "Smart Solution Technology, Inc.",
1451 /* 1255 */ "REHABTRONICS INC.",
1452 /* 1256 */ "STABILO International",
1453 /* 1257 */ "Busch Jaeger Elektro GmbH",
1454 /* 1258 */ "Pacific Bioscience Laboratories, Inc",
1455 /* 1259 */ "Bird Home Automation GmbH",
1456 /* 1260 */ "Motorola Solutions",
1457 /* 1261 */ "R9 Technology, Inc.",
1458 /* 1262 */ "Auxivia",
1459 /* 1263 */ "DaisyWorks, Inc",
1460 /* 1264 */ "Kosi Limited",
1461 /* 1265 */ "Theben AG",
1462 /* 1266 */ "InDreamer Techsol Private Limited",
1463 /* 1267 */ "Cerevast Medical",
1464 /* 1268 */ "ZanCompute Inc.",
1465 /* 1269 */ "Pirelli Tyre S.P.A.",
1466 /* 1270 */ "McLear Limited",
1467 /* 1271 */ "Shenzhen Huiding Technology Co.,Ltd.",
1468 /* 1272 */ "Convergence Systems Limited",
1469 /* 1273 */ "Interactio",
1470 /* 1274 */ "Androtec GmbH",
1471 /* 1275 */ "Benchmark Drives GmbH & Co. KG",
1472 /* 1276 */ "SwingLync L. L. C.",
1473 /* 1277 */ "Tapkey GmbH",
1474 /* 1278 */ "Woosim Systems Inc.",
1475 /* 1279 */ "Microsemi Corporation",
1476 /* 1280 */ "Wiliot LTD.",
1477 /* 1281 */ "Polaris IND",
1478 /* 1282 */ "Specifi-Kali LLC",
1479 /* 1283 */ "Locoroll, Inc",
1480 /* 1284 */ "PHYPLUS Inc",
1481 /* 1285 */ "Inplay Technologies LLC",
1482 /* 1286 */ "Hager",
1483 /* 1287 */ "Yellowcog",
1484 /* 1288 */ "Axes System sp. z o. o.",
1485 /* 1289 */ "myLIFTER Inc.",
1486 /* 1290 */ "Shake-on B.V.",
1487 /* 1291 */ "Vibrissa Inc.",
1488 /* 1292 */ "OSRAM GmbH",
1489 /* 1293 */ "TRSystems GmbH",
1490 /* 1294 */ "Yichip Microelectronics (Hangzhou) Co.,Ltd.",
1491 /* 1295 */ "Foundation Engineering LLC",
1492 /* 1296 */ "UNI-ELECTRONICS, INC.",
1493 /* 1297 */ "Brookfield Equinox LLC",
1494 /* 1298 */ "Soprod SA",
1495 /* 1299 */ "9974091 Canada Inc.",
1496 /* 1300 */ "FIBRO GmbH",
1497 /* 1301 */ "RB Controls Co., Ltd.",
1498 /* 1302 */ "Footmarks",
1499 /* 1303 */ "Amtronic Sverige AB (formerly Amcore AB)",
1500 /* 1304 */ "MAMORIO.inc",
1501 /* 1305 */ "Tyto Life LLC",
1502 /* 1306 */ "Leica Camera AG",
1503 /* 1307 */ "Angee Technologies Ltd.",
1504 /* 1308 */ "EDPS",
1505 /* 1309 */ "OFF Line Co., Ltd.",
1506 /* 1310 */ "Detect Blue Limited",
1507 /* 1311 */ "Setec Pty Ltd",
1508 /* 1312 */ "Target Corporation",
1509 /* 1313 */ "IAI Corporation",
1510 /* 1314 */ "NS Tech, Inc.",
1511 /* 1315 */ "MTG Co., Ltd.",
1512 /* 1316 */ "Hangzhou iMagic Technology Co., Ltd",
1513 /* 1317 */ "HONGKONG NANO IC TECHNOLOGIES CO., LIMITED",
1514 /* 1318 */ "Honeywell International Inc.",
1515 /* 1319 */ "Albrecht JUNG",
1516 /* 1320 */ "Lunera Lighting Inc.",
1517 /* 1321 */ "Lumen UAB",
1518 /* 1322 */ "Keynes Controls Ltd",
1519 /* 1323 */ "Novartis AG",
1520 /* 1324 */ "Geosatis SA",
1521 /* 1325 */ "EXFO, Inc.",
1522 /* 1326 */ "LEDVANCE GmbH",
1523 /* 1327 */ "Center ID Corp.",
1524 /* 1328 */ "Adolene, Inc.",
1525 /* 1329 */ "D&M Holdings Inc.",
1526 /* 1330 */ "CRESCO Wireless, Inc.",
1527 /* 1331 */ "Nura Operations Pty Ltd",
1528 /* 1332 */ "Frontiergadget, Inc.",
1529 /* 1333 */ "Smart Component Technologies Limited",
1530 /* 1334 */ "ZTR Control Systems LLC",
1531 /* 1335 */ "MetaLogics Corporation",
1532 /* 1336 */ "Medela AG",
1533 /* 1337 */ "OPPLE Lighting Co., Ltd",
1534 /* 1338 */ "Savitech Corp.,",
1535 /* 1339 */ "prodigy",
1536 /* 1340 */ "Screenovate Technologies Ltd",
1537 /* 1341 */ "TESA SA",
1538 /* 1342 */ "CLIM8 LIMITED",
1539 /* 1343 */ "Silergy Corp",
1540 /* 1344 */ "SilverPlus, Inc",
1541 /* 1345 */ "Sharknet srl",
1542 /* 1346 */ "Mist Systems, Inc.",
1543 /* 1347 */ "MIWA LOCK CO.,Ltd",
1544 /* 1348 */ "OrthoSensor, Inc.",
1545 /* 1349 */ "Candy Hoover Group s.r.l",
1546 /* 1350 */ "Apexar Technologies S.A.",
1547 /* 1351 */ "LOGICDATA d.o.o.",
1548 /* 1352 */ "Knick Elektronische Messgeraete GmbH & Co. KG",
1549 /* 1353 */ "Smart Technologies and Investment Limited",
1550 /* 1354 */ "Linough Inc.",
1551 /* 1355 */ "Advanced Electronic Designs, Inc.",
1552 /* 1356 */ "Carefree Scott Fetzer Co Inc",
1553 /* 1357 */ "Sensome",
1554 /* 1358 */ "FORTRONIK storitve d.o.o.",
1555 /* 1359 */ "Sinnoz",
1556 /* 1360 */ "Versa Networks, Inc.",
1557 /* 1361 */ "Sylero",
1558 /* 1362 */ "Avempace SARL",
1559 /* 1363 */ "Nintendo Co., Ltd.",
1560 /* 1364 */ "National Instruments",
1561 /* 1365 */ "KROHNE Messtechnik GmbH",
1562 /* 1366 */ "Otodynamics Ltd",
1563 /* 1367 */ "Arwin Technology Limited",
1564 /* 1368 */ "benegear, inc.",
1565 /* 1369 */ "Newcon Optik",
1566 /* 1370 */ "CANDY HOUSE, Inc.",
1567 /* 1371 */ "FRANKLIN TECHNOLOGY INC",
1568 /* 1372 */ "Lely",
1569 /* 1373 */ "Valve Corporation",
1570 /* 1374 */ "Hekatron Vertriebs GmbH",
1571 /* 1375 */ "PROTECH S.A.S. DI GIRARDI ANDREA & C.",
1572 /* 1376 */ "Sarita CareTech APS (formerly Sarita CareTech IVS)",
1573 /* 1377 */ "Finder S.p.A.",
1574 /* 1378 */ "Thalmic Labs Inc.",
1575 /* 1379 */ "Steinel Vertrieb GmbH",
1576 /* 1380 */ "Beghelli Spa",
1577 /* 1381 */ "Beijing Smartspace Technologies Inc.",
1578 /* 1382 */ "CORE TRANSPORT TECHNOLOGIES NZ LIMITED",
1579 /* 1383 */ "Xiamen Everesports Goods Co., Ltd",
1580 /* 1384 */ "Bodyport Inc.",
1581 /* 1385 */ "Audionics System, INC.",
1582 /* 1386 */ "Flipnavi Co.,Ltd.",
1583 /* 1387 */ "Rion Co., Ltd.",
1584 /* 1388 */ "Long Range Systems, LLC",
1585 /* 1389 */ "Redmond Industrial Group LLC",
1586 /* 1390 */ "VIZPIN INC.",
1587 /* 1391 */ "BikeFinder AS",
1588 /* 1392 */ "Consumer Sleep Solutions LLC",
1589 /* 1393 */ "PSIKICK, INC.",
1590 /* 1394 */ "AntTail.com",
1591 /* 1395 */ "Lighting Science Group Corp.",
1592 /* 1396 */ "AFFORDABLE ELECTRONICS INC",
1593 /* 1397 */ "Integral Memory Plc",
1594 /* 1398 */ "Globalstar, Inc.",
1595 /* 1399 */ "True Wearables, Inc.",
1596 /* 1400 */ "Wellington Drive Technologies Ltd",
1597 /* 1401 */ "Ensemble Tech Private Limited",
1598 /* 1402 */ "OMNI Remotes",
1599 /* 1403 */ "Duracell U.S. Operations Inc.",
1600 /* 1404 */ "Toor Technologies LLC",
1601 /* 1405 */ "Instinct Performance",
1602 /* 1406 */ "Beco, Inc",
1603 /* 1407 */ "Scuf Gaming International, LLC",
1604 /* 1408 */ "ARANZ Medical Limited",
1605 /* 1409 */ "LYS TECHNOLOGIES LTD",
1606 /* 1410 */ "Breakwall Analytics, LLC",
1607 /* 1411 */ "Code Blue Communications",
1608 /* 1412 */ "Gira Giersiepen GmbH & Co. KG",
1609 /* 1413 */ "Hearing Lab Technology",
1610 /* 1414 */ "LEGRAND",
1611 /* 1415 */ "Derichs GmbH",
1612 /* 1416 */ "ALT-TEKNIK LLC",
1613 /* 1417 */ "Star Technologies",
1614 /* 1418 */ "START TODAY CO.,LTD.",
1615 /* 1419 */ "Maxim Integrated Products",
1616 /* 1420 */ "MERCK Kommanditgesellschaft auf Aktien",
1617 /* 1421 */ "Jungheinrich Aktiengesellschaft",
1618 /* 1422 */ "Oculus VR, LLC",
1619 /* 1423 */ "HENDON SEMICONDUCTORS PTY LTD",
1620 /* 1424 */ "Pur3 Ltd",
1621 /* 1425 */ "Viasat Group S.p.A.",
1622 /* 1426 */ "IZITHERM",
1623 /* 1427 */ "Spaulding Clinical Research",
1624 /* 1428 */ "Kohler Company",
1625 /* 1429 */ "Inor Process AB",
1626 /* 1430 */ "My Smart Blinds",
1627 /* 1431 */ "RadioPulse Inc",
1628 /* 1432 */ "rapitag GmbH",
1629 /* 1433 */ "Lazlo326, LLC.",
1630 /* 1434 */ "Teledyne Lecroy, Inc.",
1631 /* 1435 */ "Dataflow Systems Limited",
1632 /* 1436 */ "Macrogiga Electronics",
1633 /* 1437 */ "Tandem Diabetes Care",
1634 /* 1438 */ "Polycom, Inc.",
1635 /* 1439 */ "Fisher & Paykel Healthcare",
1636 /* 1440 */ "RCP Software Oy",
1637 /* 1441 */ "Shanghai Xiaoyi Technology Co.,Ltd.",
1638 /* 1442 */ "ADHERIUM(NZ) LIMITED",
1639 /* 1443 */ "Axiomware Systems Incorporated",
1640 /* 1444 */ "O. E. M. Controls, Inc.",
1641 /* 1445 */ "Kiiroo BV",
1642 /* 1446 */ "Telecon Mobile Limited",
1643 /* 1447 */ "Sonos Inc",
1644 /* 1448 */ "Tom Allebrandi Consulting",
1645 /* 1449 */ "Monidor",
1646 /* 1450 */ "Tramex Limited",
1647 /* 1451 */ "Nofence AS",
1648 /* 1452 */ "GoerTek Dynaudio Co., Ltd.",
1649 /* 1453 */ "INIA",
1650 /* 1454 */ "CARMATE MFG.CO.,LTD",
1651 /* 1455 */ "ONvocal",
1652 /* 1456 */ "NewTec GmbH",
1653 /* 1457 */ "Medallion Instrumentation Systems",
1654 /* 1458 */ "CAREL INDUSTRIES S.P.A.",
1655 /* 1459 */ "Parabit Systems, Inc.",
1656 /* 1460 */ "White Horse Scientific ltd",
1657 /* 1461 */ "verisilicon",
1658 /* 1462 */ "Elecs Industry Co.,Ltd.",
1659 /* 1463 */ "Beijing Pinecone Electronics Co.,Ltd.",
1660 /* 1464 */ "Ambystoma Labs Inc.",
1661 /* 1465 */ "Suzhou Pairlink Network Technology",
1662 /* 1466 */ "igloohome",
1663 /* 1467 */ "Oxford Metrics plc",
1664 /* 1468 */ "Leviton Mfg. Co., Inc.",
1665 /* 1469 */ "ULC Robotics Inc.",
1666 /* 1470 */ "RFID Global by Softwork SrL",
1667 /* 1471 */ "Real-World-Systems Corporation",
1668 /* 1472 */ "Nalu Medical, Inc.",
1669 /* 1473 */ "P.I.Engineering",
1670 /* 1474 */ "Grote Industries",
1671 /* 1475 */ "Runtime, Inc.",
1672 /* 1476 */ "Codecoup sp. z o.o. sp. k.",
1673 /* 1477 */ "SELVE GmbH & Co. KG",
1674 /* 1478 */ "Smart Animal Training Systems, LLC",
1675 /* 1479 */ "Lippert Components, INC",
1676 /* 1480 */ "SOMFY SAS",
1677 /* 1481 */ "TBS Electronics B.V.",
1678 /* 1482 */ "MHL Custom Inc",
1679 /* 1483 */ "LucentWear LLC",
1680 /* 1484 */ "WATTS ELECTRONICS",
1681 /* 1485 */ "RJ Brands LLC",
1682 /* 1486 */ "V-ZUG Ltd",
1683 /* 1487 */ "Biowatch SA",
1684 /* 1488 */ "Anova Applied Electronics",
1685 /* 1489 */ "Lindab AB",
1686 /* 1490 */ "frogblue TECHNOLOGY GmbH",
1687 /* 1491 */ "Acurable Limited",
1688 /* 1492 */ "LAMPLIGHT Co., Ltd.",
1689 /* 1493 */ "TEGAM, Inc.",
1690 /* 1494 */ "Zhuhai Jieli technology Co.,Ltd",
1691 /* 1495 */ "modum.io AG",
1692 /* 1496 */ "Farm Jenny LLC",
1693 /* 1497 */ "Toyo Electronics Corporation",
1694 /* 1498 */ "Applied Neural Research Corp",
1695 /* 1499 */ "Avid Identification Systems, Inc.",
1696 /* 1500 */ "Petronics Inc.",
1697 /* 1501 */ "essentim GmbH",
1698 /* 1502 */ "QT Medical INC.",
1699 /* 1503 */ "VIRTUALCLINIC.DIRECT LIMITED",
1700 /* 1504 */ "Viper Design LLC",
1701 /* 1505 */ "Human, Incorporated",
1702 /* 1506 */ "stAPPtronics GmbH",
1703 /* 1507 */ "Elemental Machines, Inc.",
1704 /* 1508 */ "Taiyo Yuden Co., Ltd",
1705 /* 1509 */ "INEO ENERGY& SYSTEMS",
1706 /* 1510 */ "Motion Instruments Inc.",
1707 /* 1511 */ "PressurePro",
1708 /* 1512 */ "COWBOY",
1709 /* 1513 */ "iconmobile GmbH",
1710 /* 1514 */ "ACS-Control-System GmbH",
1711 /* 1515 */ "Bayerische Motoren Werke AG",
1712 /* 1516 */ "Gycom Svenska AB",
1713 /* 1517 */ "Fuji Xerox Co., Ltd",
1714 /* 1518 */ "Glide Inc.",
1715 /* 1519 */ "SIKOM AS",
1716 /* 1520 */ "beken",
1717 /* 1521 */ "The Linux Foundation",
1718 /* 1522 */ "Try and E CO.,LTD.",
1719 /* 1523 */ "SeeScan",
1720 /* 1524 */ "Clearity, LLC",
1721 /* 1525 */ "GS TAG",
1722 /* 1526 */ "DPTechnics",
1723 /* 1527 */ "TRACMO, INC.",
1724 /* 1528 */ "Anki Inc.",
1725 /* 1529 */ "Hagleitner Hygiene International GmbH",
1726 /* 1530 */ "Konami Sports Life Co., Ltd.",
1727 /* 1531 */ "Arblet Inc.",
1728 /* 1532 */ "Masbando GmbH",
1729 /* 1533 */ "Innoseis",
1730 /* 1534 */ "Niko nv",
1731 /* 1535 */ "Wellnomics Ltd",
1732 /* 1536 */ "iRobot Corporation",
1733 /* 1537 */ "Schrader Electronics",
1734 /* 1538 */ "Geberit International AG",
1735 /* 1539 */ "Fourth Evolution Inc",
1736 /* 1540 */ "Cell2Jack LLC",
1737 /* 1541 */ "FMW electronic Futterer u. Maier-Wolf OHG",
1738 /* 1542 */ "John Deere",
1739 /* 1543 */ "Rookery Technology Ltd",
1740 /* 1544 */ "KeySafe-Cloud",
1741 /* 1545 */ "BUCHI Labortechnik AG",
1742 /* 1546 */ "IQAir AG",
1743 /* 1547 */ "Triax Technologies Inc",
1744 /* 1548 */ "Vuzix Corporation",
1745 /* 1549 */ "TDK Corporation",
1746 /* 1550 */ "Blueair AB",
1747 /* 1551 */ "Signify Netherlands",
1748 /* 1552 */ "ADH GUARDIAN USA LLC",
1749 /* 1553 */ "Beurer GmbH",
1750 /* 1554 */ "Playfinity AS",
1751 /* 1555 */ "Hans Dinslage GmbH",
1752 /* 1556 */ "OnAsset Intelligence, Inc.",
1753 /* 1557 */ "INTER ACTION Corporation",
1754 /* 1558 */ "OS42 UG (haftungsbeschraenkt)",
1755 /* 1559 */ "WIZCONNECTED COMPANY LIMITED",
1756 /* 1560 */ "Audio-Technica Corporation",
1757 /* 1561 */ "Six Guys Labs, s.r.o.",
1758 /* 1562 */ "R.W. Beckett Corporation",
1759 /* 1563 */ "silex technology, inc.",
1760 /* 1564 */ "Univations Limited",
1761 /* 1565 */ "SENS Innovation ApS",
1762 /* 1566 */ "Diamond Kinetics, Inc.",
1763 /* 1567 */ "Phrame Inc.",
1764 /* 1568 */ "Forciot Oy",
1765 /* 1569 */ "Noordung d.o.o.",
1766 /* 1570 */ "Beam Labs, LLC",
1767 /* 1571 */ "Philadelphia Scientific (U.K.) Limited",
1768 /* 1572 */ "Biovotion AG",
1769 /* 1573 */ "Square Panda, Inc.",
1770 /* 1574 */ "Amplifico",
1771 /* 1575 */ "WEG S.A.",
1772 /* 1576 */ "Ensto Oy",
1773 /* 1577 */ "PHONEPE PVT LTD",
1774 /* 1578 */ "Lunatico Astronomia SL",
1775 /* 1579 */ "MinebeaMitsumi Inc.",
1776 /* 1580 */ "ASPion GmbH",
1777 /* 1581 */ "Vossloh-Schwabe Deutschland GmbH",
1778 /* 1582 */ "Procept",
1779 /* 1583 */ "ONKYO Corporation",
1780 /* 1584 */ "Asthrea D.O.O.",
1781 /* 1585 */ "Fortiori Design LLC",
1782 /* 1586 */ "Hugo Muller GmbH & Co KG",
1783 /* 1587 */ "Wangi Lai PLT",
1784 /* 1588 */ "Fanstel Corp",
1785 /* 1589 */ "Crookwood",
1786 /* 1590 */ "ELECTRONICA INTEGRAL DE SONIDO S.A.",
1787 /* 1591 */ "GiP Innovation Tools GmbH",
1788 /* 1592 */ "LX SOLUTIONS PTY LIMITED",
1789 /* 1593 */ "Shenzhen Minew Technologies Co., Ltd.",
1790 /* 1594 */ "Prolojik Limited",
1791 /* 1595 */ "Kromek Group Plc",
1792 /* 1596 */ "Contec Medical Systems Co., Ltd.",
1793 /* 1597 */ "Xradio Technology Co.,Ltd.",
1794 /* 1598 */ "The Indoor Lab, LLC",
1795 /* 1599 */ "LDL TECHNOLOGY",
1796 /* 1600 */ "Parkifi",
1797 /* 1601 */ "Revenue Collection Systems FRANCE SAS",
1798 /* 1602 */ "Bluetrum Technology Co.,Ltd",
1799 /* 1603 */ "makita corporation",
1800 /* 1604 */ "Apogee Instruments",
1801 /* 1605 */ "BM3",
1802 /* 1606 */ "SGV Group Holding GmbH & Co. KG",
1803 /* 1607 */ "MED-EL",
1804 /* 1608 */ "Ultune Technologies",
1805 /* 1609 */ "Ryeex Technology Co.,Ltd.",
1806 /* 1610 */ "Open Research Institute, Inc.",
1807 /* 1611 */ "Scale-Tec, Ltd",
1808 /* 1612 */ "Zumtobel Group AG",
1809 /* 1613 */ "iLOQ Oy",
1810 /* 1614 */ "KRUXWorks Technologies Private Limited",
1811 /* 1615 */ "Digital Matter Pty Ltd",
1812 /* 1616 */ "Coravin, Inc.",
1813 /* 1617 */ "Stasis Labs, Inc.",
1814 /* 1618 */ "ITZ Innovations- und Technologiezentrum GmbH",
1815 /* 1619 */ "Meggitt SA",
1816 /* 1620 */ "Ledlenser GmbH & Co. KG",
1817 /* 1621 */ "Renishaw PLC",
1818 /* 1622 */ "ZhuHai AdvanPro Technology Company Limited",
1819 /* 1623 */ "Meshtronix Limited",
1820 /* 1624 */ "Payex Norge AS",
1821 /* 1625 */ "UnSeen Technologies Oy",
1822 /* 1626 */ "Zound Industries International AB",
1823 /* 1627 */ "Sesam Solutions BV",
1824 /* 1628 */ "PixArt Imaging Inc.",
1825 /* 1629 */ "Panduit Corp.",
1826 /* 1630 */ "Alo AB",
1827 /* 1631 */ "Ricoh Company Ltd",
1828 /* 1632 */ "RTC Industries, Inc.",
1829 /* 1633 */ "Mode Lighting Limited",
1830 /* 1634 */ "Particle Industries, Inc.",
1831 /* 1635 */ "Advanced Telemetry Systems, Inc.",
1832 /* 1636 */ "RHA TECHNOLOGIES LTD",
1833 /* 1637 */ "Pure International Limited",
1834 /* 1638 */ "WTO Werkzeug-Einrichtungen GmbH",
1835 /* 1639 */ "Spark Technology Labs Inc.",
1836 /* 1640 */ "Bleb Technology srl",
1837 /* 1641 */ "Livanova USA, Inc.",
1838 /* 1642 */ "Brady Worldwide Inc.",
1839 /* 1643 */ "DewertOkin GmbH",
1840 /* 1644 */ "Ztove ApS",
1841 /* 1645 */ "Venso EcoSolutions AB",
1842 /* 1646 */ "Eurotronik Kranj d.o.o.",
1843 /* 1647 */ "Hug Technology Ltd",
1844 /* 1648 */ "Gema Switzerland GmbH",
1845 /* 1649 */ "Buzz Products Ltd.",
1846 /* 1650 */ "Kopi",
1847 /* 1651 */ "Innova Ideas Limited",
1848 /* 1652 */ "BeSpoon",
1849 /* 1653 */ "Deco Enterprises, Inc.",
1850 /* 1654 */ "Expai Solutions Private Limited",
1851 /* 1655 */ "Innovation First, Inc.",
1852 /* 1656 */ "SABIK Offshore GmbH",
1853 /* 1657 */ "4iiii Innovations Inc.",
1854 /* 1658 */ "The Energy Conservatory, Inc.",
1855 /* 1659 */ "I.FARM, INC.",
1856 /* 1660 */ "Tile, Inc.",
1857 /* 1661 */ "Form Athletica Inc.",
1858 /* 1662 */ "MbientLab Inc",
1859 /* 1663 */ "NETGRID S.N.C. DI BISSOLI MATTEO, CAMPOREALE SIMONE, TOGNETTI FEDERICO",
1860 /* 1664 */ "Mannkind Corporation",
1861 /* 1665 */ "Trade FIDES a.s.",
1862 /* 1666 */ "Photron Limited",
1863 /* 1667 */ "Eltako GmbH",
1864 /* 1668 */ "Dermalapps, LLC",
1865 /* 1669 */ "Greenwald Industries",
1866 /* 1670 */ "inQs Co., Ltd.",
1867 /* 1671 */ "Cherry GmbH",
1868 /* 1672 */ "Amsted Digital Solutions Inc.",
1869 /* 1673 */ "Tacx b.v.",
1870 /* 1674 */ "Raytac Corporation",
1871 /* 1675 */ "Jiangsu Teranovo Tech Co., Ltd.",
1872 /* 1676 */ "Changzhou Sound Dragon Electronics and Acoustics Co., Ltd",
1873 /* 1677 */ "JetBeep Inc.",
1874 /* 1678 */ "Razer Inc.",
1875 /* 1679 */ "JRM Group Limited",
1876 /* 1680 */ "Eccrine Systems, Inc.",
1877 /* 1681 */ "Curie Point AB",
1878 /* 1682 */ "Georg Fischer AG",
1879 /* 1683 */ "Hach - Danaher",
1880 /* 1684 */ "T&A Laboratories LLC",
1881 /* 1685 */ "Koki Holdings Co., Ltd.",
1882 /* 1686 */ "Gunakar Private Limited",
1883 /* 1687 */ "Stemco Products Inc",
1884 /* 1688 */ "Wood IT Security, LLC",
1885 /* 1689 */ "RandomLab SAS",
1886 /* 1690 */ "Adero, Inc. (formerly as TrackR, Inc.)",
1887 /* 1691 */ "Dragonchip Limited",
1888 /* 1692 */ "Noomi AB",
1889 /* 1693 */ "Vakaros LLC",
1890 /* 1694 */ "Delta Electronics, Inc.",
1891 /* 1695 */ "FlowMotion Technologies AS",
1892 /* 1696 */ "OBIQ Location Technology Inc.",
1893 /* 1697 */ "Cardo Systems, Ltd",
1894 /* 1698 */ "Globalworx GmbH",
1895 /* 1699 */ "Nymbus, LLC",
1896 /* 1700 */ "Sanyo Techno Solutions Tottori Co., Ltd.",
1897 /* 1701 */ "TEKZITEL PTY LTD",
1898 /* 1702 */ "Roambee Corporation",
1899 /* 1703 */ "Chipsea Technologies (ShenZhen) Corp.",
1900 /* 1704 */ "GD Midea Air-Conditioning Equipment Co., Ltd.",
1901 /* 1705 */ "Soundmax Electronics Limited",
1902 /* 1706 */ "Produal Oy",
1903 /* 1707 */ "HMS Industrial Networks AB",
1904 /* 1708 */ "Ingchips Technology Co., Ltd.",
1905 /* 1709 */ "InnovaSea Systems Inc.",
1906 /* 1710 */ "SenseQ Inc.",
1907 /* 1711 */ "Shoof Technologies",
1908 /* 1712 */ "BRK Brands, Inc.",
1909 /* 1713 */ "SimpliSafe, Inc.",
1910 /* 1714 */ "Tussock Innovation 2013 Limited",
1911 /* 1715 */ "The Hablab ApS",
1912 /* 1716 */ "Sencilion Oy",
1913 /* 1717 */ "Wabilogic Ltd.",
1914 /* 1718 */ "Sociometric Solutions, Inc.",
1915 /* 1719 */ "iCOGNIZE GmbH",
1916 /* 1720 */ "ShadeCraft, Inc",
1917 /* 1721 */ "Beflex Inc.",
1918 /* 1722 */ "Beaconzone Ltd",
1919 /* 1723 */ "Leaftronix Analogic Solutions Private Limited",
1920 /* 1724 */ "TWS Srl",
1921 /* 1725 */ "ABB Oy",
1922 /* 1726 */ "HitSeed Oy",
1923 /* 1727 */ "Delcom Products Inc.",
1924 /* 1728 */ "CAME S.p.A.",
1925 /* 1729 */ "Alarm.com Holdings, Inc",
1926 /* 1730 */ "Measurlogic Inc.",
1927 /* 1731 */ "King I Electronics.Co.,Ltd",
1928 /* 1732 */ "Dream Labs GmbH",
1929 /* 1733 */ "Urban Compass, Inc",
1930 /* 1734 */ "Simm Tronic Limited",
1931 /* 1735 */ "Somatix Inc",
1932 /* 1736 */ "Storz & Bickel GmbH & Co. KG",
1933 /* 1737 */ "MYLAPS B.V.",
1934 /* 1738 */ "Shenzhen Zhongguang Infotech Technology Development Co., Ltd",
1935 /* 1739 */ "Dyeware, LLC",
1936 /* 1740 */ "Dongguan SmartAction Technology Co.,Ltd.",
1937 /* 1741 */ "DIG Corporation",
1938 /* 1742 */ "FIOR & GENTZ",
1939 /* 1743 */ "Belparts N.V.",
1940 /* 1744 */ "Etekcity Corporation",
1941 /* 1745 */ "Meyer Sound Laboratories, Incorporated",
1942 /* 1746 */ "CeoTronics AG",
1943 /* 1747 */ "TriTeq Lock and Security, LLC",
1944 /* 1748 */ "DYNAKODE TECHNOLOGY PRIVATE LIMITED",
1945 /* 1749 */ "Sensirion AG",
1946 /* 1750 */ "JCT Healthcare Pty Ltd",
1947 /* 1751 */ "FUBA Automotive Electronics GmbH",
1948 /* 1752 */ "AW Company",
1949 /* 1753 */ "Shanghai Mountain View Silicon Co.,Ltd.",
1950 /* 1754 */ "Zliide Technologies ApS",
1951 /* 1755 */ "Automatic Labs, Inc.",
1952 /* 1756 */ "Industrial Network Controls, LLC",
1953 /* 1757 */ "Intellithings Ltd.",
1954 /* 1758 */ "Navcast, Inc.",
1955 /* 1759 */ "Hubbell Lighting, Inc.",
1956 /* 1760 */ "Avaya",
1957 /* 1761 */ "Milestone AV Technologies LLC",
1958 /* 1762 */ "Alango Technologies Ltd",
1959 /* 1763 */ "Spinlock Ltd",
1960 /* 1764 */ "Aluna",
1961 /* 1765 */ "OPTEX CO.,LTD.",
1962 /* 1766 */ "NIHON DENGYO KOUSAKU",
1963 /* 1767 */ "VELUX A/S",
1964 /* 1768 */ "Almendo Technologies GmbH",
1965 /* 1769 */ "Zmartfun Electronics, Inc.",
1966 /* 1770 */ "SafeLine Sweden AB",
1967 /* 1771 */ "Houston Radar LLC",
1968 /* 1772 */ "Sigur",
1969 /* 1773 */ "J Neades Ltd",
1970 /* 1774 */ "Avantis Systems Limited",
1971 /* 1775 */ "ALCARE Co., Ltd.",
1972 /* 1776 */ "Chargy Technologies, SL",
1973 /* 1777 */ "Shibutani Co., Ltd.",
1974 /* 1778 */ "Trapper Data AB",
1975 /* 1779 */ "Alfred International Inc.",
1976 /* 1780 */ "Near Field Solutions Ltd",
1977 /* 1781 */ "Vigil Technologies Inc.",
1978 /* 1782 */ "Vitulo Plus BV",
1979 /* 1783 */ "WILKA Schliesstechnik GmbH",
1980 /* 1784 */ "BodyPlus Technology Co.,Ltd",
1981 /* 1785 */ "happybrush GmbH",
1982 /* 1786 */ "Enequi AB",
1983 /* 1787 */ "Sartorius AG",
1984 /* 1788 */ "Tom Communication Industrial Co.,Ltd.",
1985 /* 1789 */ "ESS Embedded System Solutions Inc.",
1986 /* 1790 */ "Mahr GmbH",
1987 /* 1791 */ "Redpine Signals Inc",
1988 /* 1792 */ "TraqFreq LLC",
1989 /* 1793 */ "PAFERS TECH",
1990 /* 1794 */ "Akciju sabiedriba \"SAF TEHNIKA\"",
1991 /* 1795 */ "Beijing Jingdong Century Trading Co., Ltd.",
1992 /* 1796 */ "JBX Designs Inc.",
1993 /* 1797 */ "AB Electrolux",
1994 /* 1798 */ "Wernher von Braun Center for ASdvanced Research",
1995 /* 1799 */ "Essity Hygiene and Health Aktiebolag",
1996 /* 1800 */ "Be Interactive Co., Ltd",
1997 /* 1801 */ "Carewear Corp.",
1998 /* 1802 */ "Huf Hülsbeck & Fürst GmbH & Co. KG",
1999 /* 1803 */ "Element Products, Inc.",
2000 /* 1804 */ "Beijing Winner Microelectronics Co.,Ltd",
2001 /* 1805 */ "SmartSnugg Pty Ltd",
2002 /* 1806 */ "FiveCo Sarl",
2003 /* 1807 */ "California Things Inc.",
2004 /* 1808 */ "Audiodo AB",
2005 /* 1809 */ "ABAX AS",
2006 /* 1810 */ "Bull Group Company Limited",
2007 /* 1811 */ "Respiri Limited",
2008 /* 1812 */ "MindPeace Safety LLC",
2009 /* 1813 */ "Vgyan Solutions",
2010 /* 1814 */ "Altonics",
2011 /* 1815 */ "iQsquare BV",
2012 /* 1816 */ "IDIBAIX enginneering",
2013 /* 1817 */ "ECSG",
2014 /* 1818 */ "REVSMART WEARABLE HK CO LTD",
2015 /* 1819 */ "Precor",
2016 /* 1820 */ "F5 Sports, Inc",
2017 /* 1821 */ "exoTIC Systems",
2018 /* 1822 */ "DONGGUAN HELE ELECTRONICS CO., LTD",
2019 /* 1823 */ "Dongguan Liesheng Electronic Co.Ltd",
2020 /* 1824 */ "Oculeve, Inc.",
2021 /* 1825 */ "Clover Network, Inc.",
2022 /* 1826 */ "Xiamen Eholder Electronics Co.Ltd",
2023 /* 1827 */ "Ford Motor Company",
2024 /* 1828 */ "Guangzhou SuperSound Information Technology Co.,Ltd",
2025 /* 1829 */ "Tedee Sp. z o.o.",
2026 /* 1830 */ "PHC Corporation",
2027 /* 1831 */ "STALKIT AS",
2028 /* 1832 */ "Eli Lilly and Company",
2029 /* 1833 */ "SwaraLink Technologies",
2030 /* 1834 */ "JMR embedded systems GmbH",
2031 /* 1835 */ "Bitkey Inc.",
2032 /* 1836 */ "GWA Hygiene GmbH",
2033 /* 1837 */ "Safera Oy",
2034 /* 1838 */ "Open Platform Systems LLC",
2035 /* 1839 */ "OnePlus Electronics (Shenzhen) Co., Ltd.",
2036 /* 1840 */ "Wildlife Acoustics, Inc.",
2037 /* 1841 */ "ABLIC Inc.",
2038 /* 1842 */ "Dairy Tech, Inc.",
2039 /* 1843 */ "Iguanavation, Inc.",
2040 /* 1844 */ "DiUS Computing Pty Ltd",
2041 /* 1845 */ "UpRight Technologies LTD",
2042 /* 1846 */ "FrancisFund, LLC",
2043 /* 1847 */ "LLC Navitek",
2044 /* 1848 */ "Glass Security Pte Ltd",
2045 /* 1849 */ "Jiangsu Qinheng Co., Ltd.",
2046 /* 1850 */ "Chandler Systems Inc.",
2047 /* 1851 */ "Fantini Cosmi s.p.a.",
2048 /* 1852 */ "Acubit ApS",
2049 /* 1853 */ "Beijing Hao Heng Tian Tech Co., Ltd.",
2050 /* 1854 */ "Bluepack S.R.L.",
2051 /* 1855 */ "Beijing Unisoc Technologies Co., Ltd.",
2052 /* 1856 */ "HITIQ LIMITED",
2053 /* 1857 */ "MAC SRL",
2054 /* 1858 */ "DML LLC",
2055 /* 1859 */ "Sanofi",
2056 /* 1860 */ "SOCOMEC",
2057 /* 1861 */ "WIZNOVA, Inc.",
2058 /* 1862 */ "Seitec Elektronik GmbH",
2059 /* 1863 */ "OR Technologies Pty Ltd",
2060 /* 1864 */ "GuangZhou KuGou Computer Technology Co.Ltd",
2061 /* 1865 */ "DIAODIAO (Beijing) Technology Co., Ltd.",
2062 /* 1866 */ "Illusory Studios LLC",
2063 /* 1867 */ "Sarvavid Software Solutions LLP",
2064 /* 1868 */ "iopool s.a.",
2065 /* 1869 */ "Amtech Systems, LLC",
2066 /* 1870 */ "EAGLE DETECTION SA",
2067 /* 1871 */ "MEDIATECH S.R.L.",
2068 /* 1872 */ "Hamilton Professional Services of Canada Incorporated",
2069 /* 1873 */ "Changsha JEMO IC Design Co.,Ltd",
2070 /* 1874 */ "Elatec GmbH",
2071 /* 1875 */ "JLG Industries, Inc.",
2072 /* 1876 */ "Michael Parkin",
2073 /* 1877 */ "Brother Industries, Ltd",
2074 /* 1878 */ "Lumens For Less, Inc",
2075 /* 1879 */ "ELA Innovation",
2076 /* 1880 */ "umanSense AB",
2077 /* 1881 */ "Shanghai InGeek Cyber Security Co., Ltd.",
2078 /* 1882 */ "HARMAN CO.,LTD.",
2079 /* 1883 */ "Smart Sensor Devices AB",
2080 /* 1884 */ "Antitronics Inc.",
2081 /* 1885 */ "RHOMBUS SYSTEMS, INC.",
2082 /* 1886 */ "Katerra Inc.",
2083 /* 1887 */ "Remote Solution Co., LTD.",
2084 /* 1888 */ "Vimar SpA",
2085 /* 1889 */ "Mantis Tech LLC",
2086 /* 1890 */ "TerOpta Ltd",
2087 /* 1891 */ "PIKOLIN S.L.",
2088 /* 1892 */ "WWZN Information Technology Company Limited",
2089 /* 1893 */ "Voxx International",
2090 /* 1894 */ "ART AND PROGRAM, INC.",
2091 /* 1895 */ "NITTO DENKO ASIA TECHNICAL CENTRE PTE. LTD.",
2092 /* 1896 */ "Peloton Interactive Inc.",
2093 /* 1897 */ "Force Impact Technologies",
2094 /* 1898 */ "Dmac Mobile Developments, LLC",
2095 /* 1899 */ "Engineered Medical Technologies",
2096 /* 1900 */ "Noodle Technology inc",
2097 /* 1901 */ "Graesslin GmbH",
2098 /* 1902 */ "WuQi technologies, Inc.",
2099 /* 1903 */ "Successful Endeavours Pty Ltd",
2100 /* 1904 */ "InnoCon Medical ApS",
2101 /* 1905 */ "Corvex Connected Safety",
2102 /* 1906 */ "Thirdwayv Inc.",
2103 /* 1907 */ "Echoflex Solutions Inc.",
2104 /* 1908 */ "C-MAX Asia Limited",
2105 /* 1909 */ "4eBusiness GmbH",
2106 /* 1910 */ "Cyber Transport Control GmbH",
2107 /* 1911 */ "Cue",
2108 /* 1912 */ "KOAMTAC INC.",
2109 /* 1913 */ "Loopshore Oy",
2110 /* 1914 */ "Niruha Systems Private Limited",
2111 /* 1915 */ "AmaterZ, Inc.",
2112 /* 1916 */ "radius co., ltd.",
2113 /* 1917 */ "Sensority, s.r.o.",
2114 /* 1918 */ "Sparkage Inc.",
2115 /* 1919 */ "Glenview Software Corporation",
2116 /* 1920 */ "Finch Technologies Ltd.",
2117 /* 1921 */ "Qingping Technology (Beijing) Co., Ltd.",
2118 /* 1922 */ "DeviceDrive AS",
2119 /* 1923 */ "ESEMBER LIMITED LIABILITY COMPANY",
2120 /* 1924 */ "audifon GmbH & Co. KG",
2121 /* 1925 */ "O2 Micro, Inc.",
2122 /* 1926 */ "HLP Controls Pty Limited",
2123 /* 1927 */ "Pangaea Solution",
2124 /* 1928 */ "BubblyNet, LLC",
2125 /* 1930 */ "The Wildflower Foundation",
2126 /* 1931 */ "Optikam Tech Inc.",
2127 /* 1932 */ "MINIBREW HOLDING B.V",
2128 /* 1933 */ "Cybex GmbH",
2129 /* 1934 */ "FUJIMIC NIIGATA, INC.",
2130 /* 1935 */ "Hanna Instruments, Inc.",
2131 /* 1936 */ "KOMPAN A/S",
2132 /* 1937 */ "Scosche Industries, Inc.",
2133 /* 1938 */ "Provo Craft",
2134 /* 1939 */ "AEV spol. s r.o.",
2135 /* 1940 */ "The Coca-Cola Company",
2136 /* 1941 */ "GASTEC CORPORATION",
2137 /* 1942 */ "StarLeaf Ltd",
2138 /* 1943 */ "Water-i.d. GmbH",
2139 /* 1944 */ "HoloKit, Inc.",
2140 /* 1945 */ "PlantChoir Inc.",
2141 /* 1946 */ "GuangDong Oppo Mobile Telecommunications Corp., Ltd.",
2142 /* 1947 */ "CST ELECTRONICS (PROPRIETARY) LIMITED",
2143 /* 1948 */ "Sky UK Limited",
2144 /* 1949 */ "Digibale Pty Ltd",
2145 /* 1950 */ "Smartloxx GmbH",
2146 /* 1951 */ "Pune Scientific LLP",
2147 /* 1952 */ "Regent Beleuchtungskorper AG",
2148 /* 1953 */ "Apollo Neuroscience, Inc.",
2149 /* 1954 */ "Roku, Inc.",
2150 /* 1955 */ "Comcast Cable",
2151 /* 1956 */ "Xiamen Mage Information Technology Co., Ltd.",
2152 /* 1957 */ "RAB Lighting, Inc.",
2153 /* 1958 */ "Musen Connect, Inc.",
2154 /* 1959 */ "Zume, Inc.",
2155 /* 1960 */ "conbee GmbH",
2156 /* 1961 */ "Bruel & Kjaer Sound & Vibration",
2157 /* 1962 */ "The Kroger Co.",
2158 /* 1963 */ "Granite River Solutions, Inc.",
2159 /* 1964 */ "LoupeDeck Oy",
2160 /* 1965 */ "New H3C Technologies Co.,Ltd",
2161 /* 1966 */ "Aurea Solucoes Tecnologicas Ltda.",
2162 /* 1967 */ "Hong Kong Bouffalo Lab Limited",
2163 /* 1968 */ "GV Concepts Inc.",
2164 /* 1969 */ "Thomas Dynamics, LLC",
2165 /* 1970 */ "Moeco IOT Inc.",
2166 /* 1971 */ "2N TELEKOMUNIKACE a.s.",
2167 /* 1972 */ "Hormann KG Antriebstechnik",
2168 /* 1973 */ "CRONO CHIP, S.L.",
2169 /* 1974 */ "Soundbrenner Limited",
2170 /* 1975 */ "ETABLISSEMENTS GEORGES RENAULT",
2171 /* 1976 */ "iSwip",
2172 /* 1977 */ "Epona Biotec Limited",
2173 /* 1978 */ "Battery-Biz Inc.",
2174 /* 1979 */ "EPIC S.R.L.",
2175 /* 1980 */ "KD CIRCUITS LLC",
2176 /* 1981 */ "Genedrive Diagnostics Ltd",
2177 /* 1982 */ "Axentia Technologies AB",
2178 /* 1983 */ "REGULA Ltd.",
2179 /* 1984 */ "Biral AG",
2180 /* 1985 */ "A.W. Chesterton Company",
2181 /* 1986 */ "Radinn AB",
2182 /* 1987 */ "CIMTechniques, Inc.",
2183 /* 1988 */ "Johnson Health Tech NA",
2184 /* 1989 */ "June Life, Inc.",
2185 /* 1990 */ "Bluenetics GmbH",
2186 /* 1991 */ "iaconicDesign Inc.",
2187 /* 1992 */ "WRLDS Creations AB",
2188 /* 1993 */ "Skullcandy, Inc.",
2189 /* 1994 */ "Modul-System HH AB",
2190 /* 1995 */ "West Pharmaceutical Services, Inc.",
2191 /* 1996 */ "Barnacle Systems Inc.",
2192 /* 1997 */ "Smart Wave Technologies Canada Inc",
2193 /* 1998 */ "Shanghai Top-Chip Microelectronics Tech. Co., LTD",
2194 /* 1999 */ "NeoSensory, Inc.",
2195 /* 2000 */ "Hangzhou Tuya Information Technology Co., Ltd",
2196 /* 2001 */ "Shanghai Panchip Microelectronics Co., Ltd",
2197 /* 2002 */ "React Accessibility Limited",
2198 /* 2003 */ "LIVNEX Co.,Ltd.",
2199 /* 2004 */ "Kano Computing Limited",
2200 /* 2005 */ "hoots classic GmbH",
2201 /* 2006 */ "ecobee Inc.",
2202 /* 2007 */ "Nanjing Qinheng Microelectronics Co., Ltd",
2203 /* 2008 */ "SOLUTIONS AMBRA INC.",
2204 /* 2009 */ "Micro-Design, Inc.",
2205 /* 2010 */ "STARLITE Co., Ltd.",
2206 /* 2011 */ "Remedee Labs",
2207 /* 2012 */ "ThingOS GmbH",
2208 /* 2013 */ "Linear Circuits",
2209 /* 2014 */ "Unlimited Engineering SL",
2210 /* 2015 */ "Snap-on Incorporated",
2211 /* 2016 */ "Edifier International Limited",
2212 /* 2017 */ "Lucie Labs",
2213 /* 2018 */ "Alfred Kaercher SE & Co. KG",
2214 /* 2019 */ "Audiowise Technology Inc.",
2215 /* 2020 */ "Geeksme S.L.",
2216 /* 2021 */ "Minut, Inc.",
2217 /* 2022 */ "Autogrow Systems Limited",
2218 /* 2023 */ "Komfort IQ, Inc.",
2219 /* 2024 */ "Packetcraft, Inc.",
2220 /* 2025 */ "Häfele GmbH & Co KG",
2221 /* 2026 */ "ShapeLog, Inc.",
2222 /* 2027 */ "NOVABASE S.R.L.",
2223 /* 2028 */ "Frecce LLC",
2224 /* 2029 */ "Joule IQ, INC.",
2225 /* 2030 */ "KidzTek LLC",
2226 /* 2031 */ "Aktiebolaget Sandvik Coromant",
2227 /* 2032 */ "e-moola.com Pty Ltd",
2228 /* 2033 */ "GSM Innovations Pty Ltd",
2229 /* 2034 */ "SERENE GROUP, INC",
2230 /* 2035 */ "DIGISINE ENERGYTECH CO. LTD.",
2231 /* 2036 */ "MEDIRLAB Orvosbiologiai Fejleszto Korlatolt Felelossegu Tarsasag",
2232 /* 2037 */ "Byton North America Corporation",
2233 /* 2038 */ "Shenzhen TonliScience and Technology Development Co.,Ltd",
2234 /* 2039 */ "Cesar Systems Ltd.",
2235 /* 2040 */ "quip NYC Inc.",
2236 /* 2041 */ "Direct Communication Solutions, Inc.",
2237 /* 2042 */ "Klipsch Group, Inc.",
2238 /* 2043 */ "Access Co., Ltd",
2239 /* 2044 */ "Renault SA",
2240 /* 2045 */ "JSK CO., LTD.",
2241 /* 2046 */ "BIROTA",
2242 /* 2047 */ "maxon motor ltd.",
2243 /* 2048 */ "Optek",
2244 /* 2049 */ "CRONUS ELECTRONICS LTD",
2245 /* 2050 */ "NantSound, Inc.",
2246 /* 2051 */ "Domintell s.a.",
2247 /* 2052 */ "Andon Health Co.,Ltd",
2248 /* 2053 */ "Urbanminded Ltd",
2249 /* 2054 */ "TYRI Sweden AB",
2250 /* 2055 */ "ECD Electronic Components GmbH Dresden",
2251 /* 2056 */ "SISTEMAS KERN, SOCIEDAD ANÓMINA",
2252 /* 2057 */ "Trulli Audio",
2253 /* 2058 */ "Altaneos",
2254 /* 2059 */ "Nanoleaf Canada Limited",
2255 /* 2060 */ "Ingy B.V.",
2256 /* 2061 */ "Azbil Co.",
2257 /* 2062 */ "TATTCOM LLC",
2258 /* 2063 */ "Paradox Engineering SA",
2259 /* 2064 */ "LECO Corporation",
2260 /* 2065 */ "Becker Antriebe GmbH",
2261 /* 2066 */ "Mstream Technologies., Inc.",
2262 /* 2067 */ "Flextronics International USA Inc.",
2263 /* 2068 */ "Ossur hf.",
2264 /* 2069 */ "SKC Inc",
2265 /* 2070 */ "SPICA SYSTEMS LLC",
2266 /* 2071 */ "Wangs Alliance Corporation",
2267 /* 2072 */ "tatwah SA",
2268 /* 2073 */ "Hunter Douglas Inc",
2269 /* 2074 */ "Shenzhen Conex",
2270 /* 2075 */ "DIM3",
2271 /* 2076 */ "Bobrick Washroom Equipment, Inc.",
2272 /* 2077 */ "Potrykus Holdings and Development LLC",
2273 /* 2078 */ "iNFORM Technology GmbH",
2274 /* 2079 */ "eSenseLab LTD",
2275 /* 2080 */ "Brilliant Home Technology, Inc.",
2276 /* 2081 */ "INOVA Geophysical, Inc.",
2277 /* 2082 */ "adafruit industries",
2278 /* 2083 */ "Nexite Ltd",
2279 /* 2084 */ "8Power Limited",
2280 /* 2085 */ "CME PTE. LTD.",
2281 /* 2086 */ "Hyundai Motor Company",
2282 /* 2087 */ "Kickmaker",
2283 /* 2088 */ "Shanghai Suisheng Information Technology Co., Ltd.",
2284 /* 2089 */ "HEXAGON",
2285 /* 2090 */ "Mitutoyo Corporation",
2286 /* 2091 */ "shenzhen fitcare electronics Co.,Ltd",
2287 /* 2092 */ "INGICS TECHNOLOGY CO., LTD.",
2288 /* 2093 */ "INCUS PERFORMANCE LTD.",
2289 /* 2094 */ "ABB S.p.A.",
2290 /* 2095 */ "Blippit AB",
2291 /* 2096 */ "Core Health and Fitness LLC",
2292 /* 2097 */ "Foxble, LLC",
2293 /* 2098 */ "Intermotive,Inc.",
2294 /* 2099 */ "Conneqtech B.V.",
2295 /* 2100 */ "RIKEN KEIKI CO., LTD.,",
2296 /* 2101 */ "Canopy Growth Corporation",
2297 /* 2102 */ "Bitwards Oy",
2298 /* 2103 */ "vivo Mobile Communication Co., Ltd.",
2299 /* 2104 */ "Etymotic Research, Inc.",
2300 /* 2105 */ "A puissance 3",
2301 /* 2106 */ "BPW Bergische Achsen Kommanditgesellschaft",
2302 /* 2107 */ "Piaggio Fast Forward",
2303 /* 2108 */ "BeerTech LTD",
2304 /* 2109 */ "Tokenize, Inc.",
2305 /* 2110 */ "Zorachka LTD",
2306 /* 2111 */ "D-Link Corp.",
2307 /* 2112 */ "Down Range Systems LLC",
2308 /* 2113 */ "General Luminaire (Shanghai) Co., Ltd.",
2309 /* 2114 */ "Tangshan HongJia electronic technology co., LTD.",
2310 /* 2115 */ "FRAGRANCE DELIVERY TECHNOLOGIES LTD",
2311 /* 2116 */ "Pepperl + Fuchs GmbH",
2312 /* 2117 */ "Dometic Corporation",
2313 /* 2118 */ "USound GmbH",
2314 /* 2119 */ "DNANUDGE LIMITED",
2315 /* 2120 */ "JUJU JOINTS CANADA CORP.",
2316 /* 2121 */ "Dopple Technologies B.V.",
2317 /* 2122 */ "ARCOM",
2318 /* 2123 */ "Biotechware SRL",
2319 /* 2124 */ "ORSO Inc.",
2320 /* 2125 */ "SafePort",
2321 /* 2126 */ "Carol Cole Company",
2322 /* 2127 */ "Embedded Fitness B.V.",
2323 /* 2128 */ "Yealink (Xiamen) Network Technology Co.,LTD",
2324 /* 2129 */ "Subeca, Inc.",
2325 /* 2130 */ "Cognosos, Inc.",
2326 /* 2131 */ "Pektron Group Limited",
2327 /* 2132 */ "Tap Sound System",
2328 /* 2133 */ "Helios Hockey, Inc.",
2329 /* 2134 */ "Canopy Growth Corporation",
2330 /* 2135 */ "Parsyl Inc",
2331 /* 2136 */ "SOUNDBOKS",
2332 /* 2137 */ "BlueUp",
2333 /* 2138 */ "DAKATECH",
2334 /* 2139 */ "RICOH ELECTRONIC DEVICES CO., LTD.",
2335 /* 2140 */ "ACOS CO.,LTD.",
2336 /* 2141 */ "Guilin Zhishen Information Technology Co.,Ltd.",
2337 /* 2142 */ "Krog Systems LLC",
2338 /* 2143 */ "COMPEGPS TEAM,SOCIEDAD LIMITADA",
2339 /* 2144 */ "Alflex Products B.V.",
2340 /* 2145 */ "SmartSensor Labs Ltd",
2341 /* 2146 */ "SmartDrive Inc.",
2342 /* 2147 */ "Yo-tronics Technology Co., Ltd.",
2343 /* 2148 */ "Rafaelmicro",
2344 /* 2149 */ "Emergency Lighting Products Limited",
2345 /* 2150 */ "LAONZ Co.,Ltd",
2346 /* 2151 */ "Western Digital Techologies, Inc.",
2347 /* 2152 */ "WIOsense GmbH & Co. KG",
2348 /* 2153 */ "EVVA Sicherheitstechnologie GmbH",
2349 /* 2154 */ "Odic Incorporated",
2350 /* 2155 */ "Pacific Track, LLC",
2351 /* 2156 */ "Revvo Technologies, Inc.",
2352 /* 2157 */ "Biometrika d.o.o.",
2353 /* 2158 */ "Vorwerk Elektrowerke GmbH & Co. KG",
2354 /* 2159 */ "Trackunit A/S",
2355 /* 2160 */ "Wyze Labs, Inc",
2356 /* 2161 */ "Dension Elektronikai Kft. (formerly: Dension Audio Systems Ltd.)",
2357 /* 2162 */ "11 Health & Technologies Limited",
2358 /* 2163 */ "Innophase Incorporated",
2359 /* 2164 */ "Treegreen Limited",
2360 /* 2165 */ "Berner International LLC",
2361 /* 2166 */ "SmartResQ ApS",
2362 /* 2167 */ "Tome, Inc.",
2363 /* 2168 */ "The Chamberlain Group, Inc.",
2364 /* 2169 */ "MIZUNO Corporation",
2365 /* 2170 */ "ZRF, LLC",
2366 /* 2171 */ "BYSTAMP",
2367 /* 2172 */ "Crosscan GmbH",
2368 /* 2173 */ "Konftel AB",
2369 /* 2174 */ "1bar.net Limited",
2370 /* 2175 */ "Phillips Connect Technologies LLC",
2371 /* 2176 */ "imagiLabs AB",
2372 /* 2177 */ "Optalert",
2373 /* 2178 */ "PSYONIC, Inc.",
2374 /* 2179 */ "Wintersteiger AG",
2375 /* 2180 */ "Controlid Industria, Comercio de Hardware e Servicos de Tecnologia Ltda",
2376 /* 2181 */ "LEVOLOR, INC.",
2377 /* 2182 */ "Xsens Technologies B.V.",
2378 /* 2183 */ "Hydro-Gear Limited Partnership",
2379 /* 2184 */ "EnPointe Fencing Pty Ltd",
2380 /* 2185 */ "XANTHIO",
2381 /* 2186 */ "sclak s.r.l.",
2382 /* 2187 */ "Tricorder Arraay Technologies LLC",
2383 /* 2188 */ "GB Solution co.,Ltd",
2384 /* 2189 */ "Soliton Systems K.K.",
2385 /* 2190 */ "GIGA-TMS INC",
2386 /* 2191 */ "Tait International Limited",
2387 /* 2192 */ "NICHIEI INTEC CO., LTD.",
2388 /* 2193 */ "SmartWireless GmbH & Co. KG",
2389 /* 2194 */ "Ingenieurbuero Birnfeld UG (haftungsbeschraenkt)",
2390 /* 2195 */ "Maytronics Ltd",
2391 /* 2196 */ "EPIFIT",
2392 /* 2197 */ "Gimer medical",
2393 /* 2198 */ "Nokian Renkaat Oyj",
2394 /* 2199 */ "Current Lighting Solutions LLC",
2395 /* 2200 */ "Sensibo, Inc.",
2396 /* 2201 */ "SFS unimarket AG",
2397 /* 2202 */ "Private limited company \"Teltonika\"",
2398 /* 2203 */ "Saucon Technologies",
2399 /* 2204 */ "Embedded Devices Co. Company",
2400 /* 2205 */ "J-J.A.D.E. Enterprise LLC",
2401 /* 2206 */ "i-SENS, inc.",
2402 /* 2207 */ "Witschi Electronic Ltd",
2403 /* 2208 */ "Aclara Technologies LLC",
2404 /* 2209 */ "EXEO TECH CORPORATION",
2405 /* 2210 */ "Epic Systems Co., Ltd.",
2406 /* 2211 */ "Hoffmann SE",
2407 /* 2212 */ "Realme Chongqing Mobile Telecommunications Corp., Ltd.",
2408 /* 2213 */ "UMEHEAL Ltd",
2409 /* 2214 */ "Intelligenceworks Inc.",
2410 /* 2215 */ "TGR 1.618 Limited",
2411 /* 2216 */ "Shanghai Kfcube Inc",
2412 /* 2217 */ "Fraunhofer IIS",
2413 /* 2218 */ "SZ DJI TECHNOLOGY CO.,LTD",
2414 /* 2219 */ "Coburn Technology, LLC",
2415 /* 2220 */ "Topre Corporation",
2416 /* 2221 */ "Kayamatics Limited",
2417 /* 2222 */ "Moticon ReGo AG",
2418 /* 2223 */ "Polidea Sp. z o.o.",
2419 /* 2224 */ "Trivedi Advanced Technologies LLC",
2420 /* 2225 */ "CORE|vision BV",
2421 /* 2226 */ "PF SCHWEISSTECHNOLOGIE GMBH",
2422 /* 2227 */ "IONIQ Skincare GmbH & Co. KG",
2423 /* 2228 */ "Sengled Co., Ltd.",
2424 /* 2229 */ "TransferFi",
2425 /* 2230 */ "Boehringer Ingelheim Vetmedica GmbH"
2426 };
2427
2428 return (m >= SIZE(t)? "?" : t[m]);
2429 } /* hci_manufacturer2str */
2430
2431 char const *
hci_commands2str(uint8_t * commands,char * buffer,int size)2432 hci_commands2str(uint8_t *commands, char *buffer, int size)
2433 {
2434 static char const * const t[][8] = {
2435 { /* byte 0 */
2436 /* 0 */ "<HCI_Inquiry> ",
2437 /* 1 */ "<HCI_Inquiry_Cancel> ",
2438 /* 2 */ "<HCI_Periodic_Inquiry_Mode> ",
2439 /* 3 */ "<HCI_Exit_Periodic_Inquiry_Mode> ",
2440 /* 4 */ "<HCI_Create_Connection> ",
2441 /* 5 */ "<HCI_Disconnect> ",
2442 /* 6 */ "<HCI_Add_SCO_Connection (deprecated)> ",
2443 /* 7 */ "<HCI_Create_Connection_Cancel> "
2444 },
2445 { /* byte 1 */
2446 /* 0 */ "<HCI_Accept_Connection_Request> ",
2447 /* 1 */ "<HCI_Reject_Connection_Request> ",
2448 /* 2 */ "<HCI_Link_Key_Request_Reply> ",
2449 /* 3 */ "<HCI_Link_Key_Request_Negative_Reply> ",
2450 /* 4 */ "<HCI_PIN_Code_Request_Reply> ",
2451 /* 5 */ "<HCI_PIN_Code_Request_Negative_Reply> ",
2452 /* 6 */ "<HCI_Change_Connection_Packet_Type> ",
2453 /* 7 */ "<HCI_Authentication_Requested> "
2454 },
2455 { /* byte 2 */
2456 /* 0 */ "<HCI_Set_Connection_Encryption> ",
2457 /* 1 */ "<HCI_Change_Connection_Link_Key> ",
2458 /* 2 */ "<HCI_Master_Link_Key> ",
2459 /* 3 */ "<HCI_Remote_Name_Request> ",
2460 /* 4 */ "<HCI_Remote_Name_Request_Cancel> ",
2461 /* 5 */ "<HCI_Read_Remote_Supported_Features> ",
2462 /* 6 */ "<HCI_Read_Remote_Extended_Features> ",
2463 /* 7 */ "<HCI_Read_Remote_Version_Information> "
2464 },
2465 { /* byte 3 */
2466 /* 0 */ "<HCI_Read_Clock_Offset> ",
2467 /* 1 */ "<HCI_Read_LMP_Handle> ",
2468 /* 2 */ "<Unknown 3.2> ",
2469 /* 3 */ "<Unknown 3.3> ",
2470 /* 4 */ "<Unknown 3.4> ",
2471 /* 5 */ "<Unknown 3.5> ",
2472 /* 6 */ "<Unknown 3.6> ",
2473 /* 7 */ "<Unknown 3.7> "
2474 },
2475 { /* byte 4 */
2476 /* 0 */ "<Unknown 4.0> ",
2477 /* 1 */ "<HCI_Hold_Mode> ",
2478 /* 2 */ "<HCI_Sniff_Mode> ",
2479 /* 3 */ "<HCI_Exit_Sniff_Mode> ",
2480 /* 4 */ "<Previously used 4.4> ",
2481 /* 5 */ "<Previously used 4.5> ",
2482 /* 6 */ "<HCI_QoS_Setup> ",
2483 /* 7 */ "<HCI_Role_Discovery> "
2484 },
2485 { /* byte 5 */
2486 /* 0 */ "<HCI_Switch_Role> ",
2487 /* 1 */ "<HCI_Read_Link_Policy_Settings> ",
2488 /* 2 */ "<HCI_Write_Link_Policy_Settings> ",
2489 /* 3 */ "<HCI_Read_Default_Link_Policy_Settings> ",
2490 /* 4 */ "<HCI_Write_Default_Link_Policy_Settings> ",
2491 /* 5 */ "<HCI_Flow_Specification> ",
2492 /* 6 */ "<HCI_Set_Event_Mask> ",
2493 /* 7 */ "<HCI_Reset> "
2494 },
2495 { /* byte 6 */
2496 /* 0 */ "<HCI_Set_Event_Filter> ",
2497 /* 1 */ "<HCI_Flush> ",
2498 /* 2 */ "<HCI_Read_PIN_Type> ",
2499 /* 3 */ "<HCI_Write_PIN_Type> ",
2500 /* 4 */ "<Previously used 6.4> ",
2501 /* 5 */ "<HCI_Read_Stored_Link_Key> ",
2502 /* 6 */ "<HCI_Write_Stored_Link_Key> ",
2503 /* 7 */ "<HCI_Delete_Stored_Link_Key> "
2504 },
2505 { /* byte 7 */
2506 /* 0 */ "<HCI_Write_Local_Name> ",
2507 /* 1 */ "<HCI_Read_Local_Name> ",
2508 /* 2 */ "<HCI_Read_Connection_Accept_Timeout> ",
2509 /* 3 */ "<HCI_Write_Connection_Accept_Timeout> ",
2510 /* 4 */ "<HCI_Read_Page_Timeout> ",
2511 /* 5 */ "<HCI_Write_Page_Timeout> ",
2512 /* 6 */ "<HCI_Read_Scan_Enable> ",
2513 /* 7 */ "<HCI_Write_Scan_Enable> "
2514 },
2515 { /* byte 8 */
2516 /* 0 */ "<HCI_Read_Page_Scan_Activity> ",
2517 /* 1 */ "<HCI_Write_Page_Scan_Activity> ",
2518 /* 2 */ "<HCI_Read_Inquiry_Scan_Activity> ",
2519 /* 3 */ "<HCI_Write_Inquiry_Scan_Activity> ",
2520 /* 4 */ "<HCI_Read_Authentication_Enable> ",
2521 /* 5 */ "<HCI_Write_Authentication_Enable> ",
2522 /* 6 */ "<HCI_Read_Encryption_Mode (deprecated)> ",
2523 /* 7 */ "<HCI_Write_Encryption_Mode (deprecated)> "
2524 },
2525 { /* byte 9 */
2526 /* 0 */ "<HCI_Read_Class_Of_Device> ",
2527 /* 1 */ "<HCI_Write_Class_Of_Device> ",
2528 /* 2 */ "<HCI_Read_Voice_Setting> ",
2529 /* 3 */ "<HCI_Write_Voice_Setting> ",
2530 /* 4 */ "<HCI_Read_Automatic_Flush_Timeout> ",
2531 /* 5 */ "<HCI_Write_Automatic_Flush_Timeout> ",
2532 /* 6 */ "<HCI_Read_Num_Broadcast_Retransmissions> ",
2533 /* 7 */ "<HCI_Write_Num_Broadcast_Retransmissions> "
2534 },
2535 { /* byte 10 */
2536 /* 0 */ "<HCI_Read_Hold_Mode_Activity> ",
2537 /* 1 */ "<HCI_Write_Hold_Mode_Activity> ",
2538 /* 2 */ "<HCI_Read_Transmit_Power_Level> ",
2539 /* 3 */ "<HCI_Read_Synchronous_Flow_Control_Enable> ",
2540 /* 4 */ "<HCI_Write_Synchronous_Flow_Control_Enable> ",
2541 /* 5 */ "<HCI_Set_Controller_To_Host_Flow_Control> ",
2542 /* 6 */ "<HCI_Host_Buffer_Size> ",
2543 /* 7 */ "<HCI_Host_Number_Of_Completed_Packets> "
2544 },
2545 { /* byte 11 */
2546 /* 0 */ "<HCI_Read_Link_Supervision_Timeout> ",
2547 /* 1 */ "<HCI_Write_Link_Supervision_Timeout> ",
2548 /* 2 */ "<HCI_Read_Number_Of_Supported_IAC> ",
2549 /* 3 */ "<HCI_Read_Current_IAC_LAP> ",
2550 /* 4 */ "<HCI_Write_Current_IAC_LAP> ",
2551 /* 5 */ "<HCI_Read_Page_Scan_Mode_Period (deprecated)> ",
2552 /* 6 */ "<HCI_Write_Page_Scan_Mode_Period (deprecated)> ",
2553 /* 7 */ "<HCI_Read_Page_Scan_Mode (deprecated)> "
2554 },
2555 { /* byte 12 */
2556 /* 0 */ "<HCI_Write_Page_Scan_Mode (deprecated)> ",
2557 /* 1 */ "<HCI_Set_AFH_Host_Channel_Classification> ",
2558 /* 2 */ "<Unknown 12.2> ",
2559 /* 3 */ "<Unknown 12.3> ",
2560 /* 4 */ "<HCI_Read_Inquiry_Scan_Type> ",
2561 /* 5 */ "<HCI_Write_Inquiry_Scan_Type> ",
2562 /* 6 */ "<HCI_Read_Inquiry_Mode> ",
2563 /* 7 */ "<HCI_Write_Inquiry_Mode> "
2564 },
2565 { /* byte 13 */
2566 /* 0 */ "<HCI_Read_Page_Scan_Type> ",
2567 /* 1 */ "<HCI_Write_Page_Scan_Type> ",
2568 /* 2 */ "<HCI_Read_AFH_Channel_Assessment_Mode> ",
2569 /* 3 */ "<HCI_Write_AFH_Channel_Assessment_Mode> ",
2570 /* 4 */ "<Unknown 13.4> ",
2571 /* 5 */ "<Unknown 13.5> ",
2572 /* 6 */ "<Unknown 13.6> ",
2573 /* 7 */ "<Unknown 13.7> "
2574 },
2575 { /* byte 14 */
2576 /* 0 */ "<Unknown 14.0> ",
2577 /* 1 */ "<Unknown 14.1>",
2578 /* 2 */ "<Unknown 14.2> ",
2579 /* 3 */ "<HCI_Read_Local_Version_Information> ",
2580 /* 4 */ "<Unknown 14.4> ",
2581 /* 5 */ "<HCI_Read_Local_Supported_Features> ",
2582 /* 6 */ "<HCI_Read_Local_Extended_Features> ",
2583 /* 7 */ "<HCI_Read_Buffer_Size> "
2584 },
2585 { /* byte 15 */
2586 /* 0 */ "<HCI_Read_Country_Code (deprecated)> ",
2587 /* 1 */ "<HCI_Read_BD_ADDR> ",
2588 /* 2 */ "<HCI_Read_Failed_Contact_Counter> ",
2589 /* 3 */ "<HCI_Reset_Failed_Contact_Counter> ",
2590 /* 4 */ "<HCI_Read_Link_Quality> ",
2591 /* 5 */ "<HCI_Read_RSSI> ",
2592 /* 6 */ "<HCI_Read_AFH_Channel_Map> ",
2593 /* 7 */ "<HCI_Read_Clock> "
2594 },
2595 { /* byte 16 */
2596 /* 0 */ "<HCI_Read_Loopback_Mode> ",
2597 /* 1 */ "<HCI_Write_Loopback_Mode> ",
2598 /* 2 */ "<HCI_Enable_Device_Under_Test_Mode> ",
2599 /* 3 */ "<HCI_Setup_Synchronous_Connection_Request> ",
2600 /* 4 */ "<HCI_Accept_Synchronous_Connection_Request> ",
2601 /* 5 */ "<HCI_Reject_Synchronous_Connection_Request> ",
2602 /* 6 */ "<Unknown 16.6> ",
2603 /* 7 */ "<Unknown 16,7> "
2604 },
2605 { /* byte 17 */
2606 /* 0 */ "<HCI_Read_Extended_Inquiry_Response> ",
2607 /* 1 */ "<HCI_Write_Extended_Inquiry_Response> ",
2608 /* 2 */ "<HCI_Refresh_Encryption_Key> ",
2609 /* 3 */ "<Unknown 17.3> ",
2610 /* 4 */ "<HCI_Sniff_Subrating> ",
2611 /* 5 */ "<HCI_Read_Simple_Pairing_Mode> ",
2612 /* 6 */ "<HCI_Write_Simple_Pairing_Mode> ",
2613 /* 7 */ "<HCI_Read_Local_OOB_Data> "
2614 },
2615 { /* byte 18 */
2616 /* 0 */ "<HCI_Read_Inquiry_Response_Transmit_Power_Level> ",
2617 /* 1 */ "<HCI_Write_Inquiry_Transmit_Power_Level> ",
2618 /* 2 */ "<HCI_Read_Default_Erroneous_Data_Reporting> ",
2619 /* 3 */ "<HCI_Write_Default_Erroneous_Data_Reporting> ",
2620 /* 4 */ "<Unknown 18.4> ",
2621 /* 5 */ "<Unknown 18.5> ",
2622 /* 6 */ "<Unknown 18.6> ",
2623 /* 7 */ "<HCI_IO_Capability_Request_Reply> "
2624 },
2625 { /* byte 19 */
2626 /* 0 */ "<HCI_User_Confirmation_Request_Reply> ",
2627 /* 1 */ "<HCI_User_Confirmation_Request_Negative_Reply> ",
2628 /* 2 */ "<HCI_User_Passkey_Request_Reply> ",
2629 /* 3 */ "<HCI_User_Passkey_Request_Negative_Reply> ",
2630 /* 4 */ "<HCI_Remote_OOB_Data_Request_Reply> ",
2631 /* 5 */ "<HCI_Write_Simple_Pairing_Debug_Mode> ",
2632 /* 6 */ "<HCI_Enhanced_Flush> ",
2633 /* 7 */ "<HCI_Remote_OOB_Data_Request_Negative_Reply> "
2634 },
2635 { /* byte 20 */
2636 /* 0 */ "<Unknown 20.0> ",
2637 /* 1 */ "<Unknown 20.1> ",
2638 /* 2 */ "<HCI_Send_Keypress_Notification> ",
2639 /* 3 */ "<HCI_IO_Capability_Request_Negative_Reply> ",
2640 /* 4 */ "<HCI_Read_Encryption_Key_Size> ",
2641 /* 5 */ "<Unknown 20.5> ",
2642 /* 6 */ "<Unknown 20.6> ",
2643 /* 7 */ "<Unknown 20.7> "
2644 },
2645 { /* byte 21 */
2646 /* 0 */ "<HCI_Create_Physical_Link> ",
2647 /* 1 */ "<HCI_Accept_Physical_Link> ",
2648 /* 2 */ "<HCI_Disconnect_Physical_Link> ",
2649 /* 3 */ "<HCI_Create_Logical_Link> ",
2650 /* 4 */ "<HCI_Accept_Logical_Link> ",
2651 /* 5 */ "<HCI_Disconnect_Logical_Link> ",
2652 /* 6 */ "<HCI_Logical_Link_Cancel> ",
2653 /* 7 */ "<HCI_Flow_Spec_Modify> "
2654 },
2655 { /* byte 22 */
2656 /* 0 */ "<HCI_Read_Logical_Link_Accept_Timeout> ",
2657 /* 1 */ "<HCI_Write_Logical_Link_Accept_Timeout> ",
2658 /* 2 */ "<HCI_Set_Event_Mask_Page_2> ",
2659 /* 3 */ "<HCI_Read_Location_Data> ",
2660 /* 4 */ "<HCI_Write_Location_Data> ",
2661 /* 5 */ "<HCI_Read_Local_AMP_Info> ",
2662 /* 6 */ "<HCI_Read_Local_AMP_ASSOC> ",
2663 /* 7 */ "<HCI_Write_Remote_AMP_ASSOC> "
2664 },
2665 { /* byte 23 */
2666 /* 0 */ "<HCI_Read_Flow_Control_Mode> ",
2667 /* 1 */ "<HCI_Write_Flow_Control_Mode> ",
2668 /* 2 */ "<HCI_Read_Data_Block_Size> ",
2669 /* 3 */ "<Unknown 23.3> ",
2670 /* 4 */ "<Unknown 23.4> ",
2671 /* 5 */ "<HCI_Enable_AMP_Receiver_Reports> ",
2672 /* 6 */ "<HCI_AMP_Test_End> ",
2673 /* 7 */ "<HCI_AMP_Test> "
2674 },
2675 { /* byte 24 */
2676 /* 0 */ "<HCI_Read_Enhanced_Transmit_Power_Level> ",
2677 /* 1 */ "<Unknown 24.1> ",
2678 /* 2 */ "<HCI_Read_Best_Effort_Flush_Timeout> ",
2679 /* 3 */ "<HCI_Write_Best_Effort_Flush_Timeout> ",
2680 /* 4 */ "<HCI_Short_Range_Mode> ",
2681 /* 5 */ "<HCI_Read_LE_Host_Support> ",
2682 /* 6 */ "<HCI_Write_LE_Host_Support> ",
2683 /* 7 */ "<Unknown 24.7> "
2684 },
2685 { /* byte 25 */
2686 /* 0 */ "<HCI_LE_Set_Event_Mask> ",
2687 /* 1 */ "<HCI_LE_Read_Buffer_Size [v1]> ",
2688 /* 2 */ "<HCI_LE_Read_Local_Supported_Features> ",
2689 /* 3 */ "<Unknown 25.3> ",
2690 /* 4 */ "<HCI_LE_Set_Random_Address> ",
2691 /* 5 */ "<HCI_LE_Set_Advertising_Parameters> ",
2692 /* 6 */ "<HCI_LE_Read_Advertising_Physical_Channel_Tx_Power> ",
2693 /* 7 */ "<HCI_LE_Set_Advertising_Data> "
2694 },
2695 { /* byte 26 */
2696 /* 0 */ "<HCI_LE_Set_Scan_Response_Data> ",
2697 /* 1 */ "<HCI_LE_Set_Advertising_Enable> ",
2698 /* 2 */ "<HCI_LE_Set_Scan_Parameters> ",
2699 /* 3 */ "<HCI_LE_Set_Scan_Enable> ",
2700 /* 4 */ "<HCI_LE_Create_Connection> ",
2701 /* 5 */ "<HCI_LE_Create_Connection_Cancel> ",
2702 /* 6 */ "<HCI_LE_Read_White_List_Size> ",
2703 /* 7 */ "<HCI_LE_Clear_White_List> "
2704 },
2705 { /* byte 27 */
2706 /* 0 */ "<HCI_LE_Add_Device_To_White_List> ",
2707 /* 1 */ "<HCI_LE_Remove_Device_From_White_List> ",
2708 /* 2 */ "<HCI_LE_Connection_Update> ",
2709 /* 3 */ "<HCI_LE_Set_Host_Channel_Classification> ",
2710 /* 4 */ "<HCI_LE_Read_Channel_Map> ",
2711 /* 5 */ "<HCI_LE_Read_Remote_Features> ",
2712 /* 6 */ "<HCI_LE_Encrypt> ",
2713 /* 7 */ "<HCI_LE_Rand> "
2714 },
2715 { /* byte 28 */
2716 /* 0 */ "<HCI_LE_Enable_Encryption> ",
2717 /* 1 */ "<HCI_LE_Long_Term_Key_Request_Reply> ",
2718 /* 2 */ "<HCI_LE_Long_Term_Key_Request_Negative_Reply> ",
2719 /* 3 */ "<HCI_LE_Read_Supported_States> ",
2720 /* 4 */ "<HCI_LE_Receiver_Test [v1]> ",
2721 /* 5 */ "<HCI_LE_Transmitter_Test [v1]> ",
2722 /* 6 */ "<HCI_LE_Test_End> ",
2723 /* 7 */ "<Unknown 28.7> "
2724 },
2725 { /* byte 29 */
2726 /* 0 */ "<Unknown 29.0> ",
2727 /* 1 */ "<Unknown 29.1> ",
2728 /* 2 */ "<Unknown 29.2> ",
2729 /* 3 */ "<HCI_Enhanced_Setup_Synchronous_Connection> ",
2730 /* 4 */ "<HCI_Enhanced_Accept_Synchronous_Connection> ",
2731 /* 5 */ "<HCI_Read_Local_Supported_Codecs> ",
2732 /* 6 */ "<HCI_Set_MWS_Channel_Parameters> ",
2733 /* 7 */ "<HCI_Set_External_Frame_Configuration> "
2734 },
2735 { /* byte 30 */
2736 /* 0 */ "<HCI_Set_MWS_Signaling> ",
2737 /* 1 */ "<HCI_Set_MWS_Transport_Layer> ",
2738 /* 2 */ "<HCI_Set_MWS_Scan_Frequency_Table> ",
2739 /* 3 */ "<HCI_Get_MWS_Transport_Layer_Configuration> ",
2740 /* 4 */ "<HCI_Set_MWS_PATTERN_Configuration> ",
2741 /* 5 */ "<HCI_Set_Triggered_Clock_Capture> ",
2742 /* 6 */ "<HCI_Truncated_Page> ",
2743 /* 7 */ "<HCI_Truncated_Page_Cancel> "
2744 },
2745 { /* byte 31 */
2746 /* 0 */ "<HCI_Set_Connectionless_Slave_Broadcast> ",
2747 /* 1 */ "<HCI_Set_Connectionless_Slave_Broadcast_Receive> ",
2748 /* 2 */ "<HCI_Start_Synchronization_Train> ",
2749 /* 3 */ "<HCI_Receive_Synchronization_Train> ",
2750 /* 4 */ "<HCI_Set_Reserved_LT_ADDR> ",
2751 /* 5 */ "<HCI_Delete_Reserved_LT_ADDR> ",
2752 /* 6 */ "<HCI_Set_Connectionless_Slave_Broadcast_Data> ",
2753 /* 7 */ "<HCI_Read_Synchronization_Train_Parameters> "
2754 },
2755 { /* byte 32 */
2756 /* 0 */ "<HCI_Write_Synchronization_Train_Parameters> ",
2757 /* 1 */ "<HCI_Remote_OOB_Extended_Data_Request_Reply> ",
2758 /* 2 */ "<HCI_Read_Secure_Connections_Host_Support> ",
2759 /* 3 */ "<HCI_Write_Secure_Connections_Host_Support> ",
2760 /* 4 */ "<HCI_Read_Authenticated_Payload_Timeout> ",
2761 /* 5 */ "<HCI_Write_Authenticated_Payload_Timeout> ",
2762 /* 6 */ "<HCI_Read_Local_OOB_Extended_Data> ",
2763 /* 7 */ "<HCI_Write_Secure_Connections_Test_Mode> "
2764 },
2765 { /* byte 33 */
2766 /* 0 */ "<HCI_Read_Extended_Page_Timeout> ",
2767 /* 1 */ "<HCI_Write_Extended_Page_Timeout> ",
2768 /* 2 */ "<HCI_Read_Extended_Inquiry_Length> ",
2769 /* 3 */ "<HCI_Write_Extended_Inquiry_Length> ",
2770 /* 4 */ "<HCI_LE_Remote_Connection_Parameter_Request_Reply> ",
2771 /* 5 */ "<HCI_LE_Remote_Connection_Parameter_Request_Negative_Reply> ",
2772 /* 6 */ "<HCI_LE_Set_Data_Length> ",
2773 /* 7 */ "<HCI_LE_Read_Suggested_Default_Data_Length> "
2774 },
2775 { /* byte 34 */
2776 /* 0 */ "<HCI_LE_Write_Suggested_Default_Data_Length> ",
2777 /* 1 */ "<HCI_LE_Read_Local_P-256_Public_Key> ",
2778 /* 2 */ "<HCI_LE_Generate_DHKey [v1]> ",
2779 /* 3 */ "<HCI_LE_Add_Device_To_Resolving_List> ",
2780 /* 4 */ "<HCI_LE_Remove_Device_From_Resolving_List> ",
2781 /* 5 */ "<HCI_LE_Clear_Resolving_List> ",
2782 /* 6 */ "<HCI_LE_Read_Resolving_List_Size> ",
2783 /* 7 */ "<HCI_LE_Read_Peer_Resolvable_Address> "
2784 },
2785 { /* byte 35 */
2786 /* 0 */ "<HCI_LE_Read_Local_Resolvable_Address> ",
2787 /* 1 */ "<HCI_LE_Set_Address_Resolution_Enable> ",
2788 /* 2 */ "<HCI_LE_Set_Resolvable_Private_Address_Timeout> ",
2789 /* 3 */ "<HCI_LE_Read_Maximum_Data_Length> ",
2790 /* 4 */ "<HCI_LE_Read_PHY> ",
2791 /* 5 */ "<HCI_LE_Set_Default_PHY> ",
2792 /* 6 */ "<HCI_LE_Set_PHY> ",
2793 /* 7 */ "<HCI_LE_Receiver_Test [v2]> "
2794 },
2795 { /* byte 36 */
2796 /* 0 */ "<HCI_LE_Transmitter_Test [v2]> ",
2797 /* 1 */ "<HCI_LE_Set_Advertising_Set_Random_Address> ",
2798 /* 2 */ "<HCI_LE_Set_Extended_Advertising_Parameters> ",
2799 /* 3 */ "<HCI_LE_Set_Extended_Advertising_Data> ",
2800 /* 4 */ "<HCI_LE_Set_Extended_Scan_Response_Data> ",
2801 /* 5 */ "<HCI_LE_Set_Extended_Advertising_Enable> ",
2802 /* 6 */ "<HCI_LE_Read_Maximum_Advertising_Data_Length> ",
2803 /* 7 */ "<HCI_LE_Read_Number_of_Supported_Advertising_Sets> "
2804 },
2805 { /* byte 37 */
2806 /* 0 */ "<HCI_LE_Remove_Advertising_Set> ",
2807 /* 1 */ "<HCI_LE_Clear_Advertising_Sets> ",
2808 /* 2 */ "<HCI_LE_Set_Periodic_Advertising_Parameters> ",
2809 /* 3 */ "<HCI_LE_Set_Periodic_Advertising_Data> ",
2810 /* 4 */ "<HCI_LE_Set_Periodic_Advertising_Enable> ",
2811 /* 5 */ "<HCI_LE_Set_Extended_Scan_Parameters> ",
2812 /* 6 */ "<HCI_LE_Set_Extended_Scan_Enable> ",
2813 /* 7 */ "<HCI_LE_Extended_Create_Connection> "
2814 },
2815 { /* byte 38 */
2816 /* 0 */ "<HCI_LE_Periodic_Advertising_Create_Sync> ",
2817 /* 1 */ "<HCI_LE_Periodic_Advertising_Create_Sync_Cancel> ",
2818 /* 2 */ "<HCI_LE_Periodic_Advertising_Terminate_Sync> ",
2819 /* 3 */ "<HCI_LE_Add_Device_To_Periodic_Advertiser_List> ",
2820 /* 4 */ "<HCI_LE_Remove_Device_From_Periodic_Advertiser_List> ",
2821 /* 5 */ "<HCI_LE_Clear_Periodic_Advertiser_List> ",
2822 /* 6 */ "<HCI_LE_Read_Periodic_Advertiser_List_Size> ",
2823 /* 7 */ "<HCI_LE_Read_Transmit_Power> "
2824 },
2825 { /* byte 39 */
2826 /* 0 */ "<HCI_LE_Read_RF_Path_Compensation> ",
2827 /* 1 */ "<HCI_LE_Write_RF_Path_Compensation> ",
2828 /* 2 */ "<HCI_LE_Set_Privacy_Mode> ",
2829 /* 3 */ "<HCI_LE_Receiver_Test [v3]> ",
2830 /* 4 */ "<HCI_LE_Transmitter_Test [v3]> ",
2831 /* 5 */ "<HCI_LE_Set_Connectionless_CTE_Transmit_Parameters> ",
2832 /* 6 */ "<HCI_LE_Set_Connectionless_CTE_Transmit_Enable> ",
2833 /* 7 */ "<HCI_LE_Set_Connectionless_IQ_Sampling_Enable> "
2834 },
2835 { /* byte 40 */
2836 /* 0 */ "<HCI_LE_Set_Connection_CTE_Receive_Parameters> ",
2837 /* 1 */ "<HCI_LE_Set_Connection_CTE_Transmit_Parameters> ",
2838 /* 2 */ "<HCI_LE_Connection_CTE_Request_Enable> ",
2839 /* 3 */ "<HCI_LE_Connection_CTE_Response_Enable> ",
2840 /* 4 */ "<HCI_LE_Read_Antenna_Information> ",
2841 /* 5 */ "<HCI_LE_Set_Periodic_Advertising_Receive_Enable> ",
2842 /* 6 */ "<HCI_LE_Periodic_Advertising_Sync_Transfer> ",
2843 /* 7 */ "<HCI_LE_Periodic_Advertising_Set_Info_Transfer> "
2844 },
2845 { /* byte 41 */
2846 /* 0 */ "<HCI_LE_Set_Periodic_Advertising_Sync_Transfer_Parameters> ",
2847 /* 1 */ "<HCI_LE_Set_Default_Periodic_Advertising_Sync_Transfer_- Parameters> ",
2848 /* 2 */ "<HCI_LE_Generate_DHKey [v2]> ",
2849 /* 3 */ "<HCI_Read_Local_Simple_Pairing_Options> ",
2850 /* 4 */ "<HCI_LE_Modify_Sleep_Clock_Accuracy> ",
2851 /* 5 */ "<HCI_LE_Read_Buffer_Size [v2]> ",
2852 /* 6 */ "<HCI_LE_Read_ISO_TX_Sync> ",
2853 /* 7 */ "<HCI_LE_Set_CIG_Parameters> "
2854 },
2855 { /* byte 42 */
2856 /* 0 */ "<HCI_LE_Set_CIG_Parameters_Test> ",
2857 /* 1 */ "<HCI_LE_Create_CIS> ",
2858 /* 2 */ "<HCI_LE_Remove_CIG> ",
2859 /* 3 */ "<HCI_LE_Accept_CIS_Request> ",
2860 /* 4 */ "<HCI_LE_Reject_CIS_Request> ",
2861 /* 5 */ "<HCI_LE_Create_BIG> ",
2862 /* 6 */ "<HCI_LE_Create_BIG_Test> ",
2863 /* 7 */ "<HCI_LE_Terminate_BIG> "
2864 },
2865 { /* byte 43 */
2866 /* 0 */ "<HCI_LE_BIG_Create_Sync> ",
2867 /* 1 */ "<HCI_LE_BIG_Terminate_Sync> ",
2868 /* 2 */ "<HCI_LE_Request_Peer_SCA> ",
2869 /* 3 */ "<HCI_LE_Setup_ISO_Data_Path> ",
2870 /* 4 */ "<HCI_LE_Remove_ISO_Data_Path> ",
2871 /* 5 */ "<HCI_LE_ISO_Transmit_Test> ",
2872 /* 6 */ "<HCI_LE_ISO_Receive_Test> ",
2873 /* 7 */ "<HCI_LE_ISO_Read_Test_Counters> "
2874 },
2875 { /* byte 44 */
2876 /* 0 */ "<HCI_LE_ISO_Test_End> ",
2877 /* 1 */ "<HCI_LE_Set_Host_Feature> ",
2878 /* 2 */ "<HCI_LE_Read_ISO_Link_Quality> ",
2879 /* 3 */ "<HCI_LE_Enhanced_Read_Transmit_Power_Level> ",
2880 /* 4 */ "<HCI_LE_Read_Remote_Transmit_Power_Level> ",
2881 /* 5 */ "<HCI_LE_Set_Path_Loss_Reporting_Parameters> ",
2882 /* 6 */ "<HCI_LE_Set_Path_Loss_Reporting_Enable> ",
2883 /* 7 */ "<HCI_LE_Set_Transmit_Power_Reporting_Enable> "
2884 },
2885 { /* byte 45 */
2886 /* 0 */ "<HCI_LE_Transmitter_Test [v4]> ",
2887 /* 1 */ "<HCI_Set_Ecosystem_Base_Interval> ",
2888 /* 2 */ "<HCI_Read_Local_Supported_Codecs [v2]> ",
2889 /* 3 */ "<HCI_Read_Local_Supported_Codec_Capabilities> ",
2890 /* 4 */ "<HCI_Read_Local_Supported_Controller_Delay> ",
2891 /* 5 */ "<HCI_Configure_Data_Path> ",
2892 /* 6 */ "<Unknown 45.6> ",
2893 /* 7 */ "<Unknown 45.7> "
2894 }};
2895
2896 if (buffer != NULL && size > 0) {
2897 int n, i, len0, len1;
2898
2899 memset(buffer, 0, size);
2900 size--;
2901
2902
2903 for (n = 0; n < SIZE(t); n++) {
2904 for (i = 0; i < SIZE(t[n]); i++) {
2905 len0 = strlen(buffer);
2906 if (len0 >= size)
2907 goto done;
2908
2909 if (commands[n] & (1 << i)) {
2910 if (len1 + strlen(t[n][i]) > 60) {
2911 len1 = 0;
2912 buffer[len0 - 1] = '\n';
2913 }
2914
2915 len1 += strlen(t[n][i]);
2916 strncat(buffer, t[n][i], size - len0);
2917 }
2918
2919 }
2920 }
2921 }
2922 done:
2923 return (buffer);
2924 } /* hci_commands2str */
2925
2926 char const *
hci_features2str(uint8_t * features,char * buffer,int size)2927 hci_features2str(uint8_t *features, char *buffer, int size)
2928 {
2929 static char const * const t[][8] = {
2930 { /* byte 0 */
2931 /* 0 */ "<3-Slot> ",
2932 /* 1 */ "<5-Slot> ",
2933 /* 2 */ "<Encryption> ",
2934 /* 3 */ "<Slot offset> ",
2935 /* 4 */ "<Timing accuracy> ",
2936 /* 5 */ "<Switch> ",
2937 /* 6 */ "<Hold mode> ",
2938 /* 7 */ "<Sniff mode> "
2939 },
2940 { /* byte 1 */
2941 /* 0 */ "<Park mode> ",
2942 /* 1 */ "<RSSI> ",
2943 /* 2 */ "<Channel quality> ",
2944 /* 3 */ "<SCO link> ",
2945 /* 4 */ "<HV2 packets> ",
2946 /* 5 */ "<HV3 packets> ",
2947 /* 6 */ "<u-law log> ",
2948 /* 7 */ "<A-law log> "
2949 },
2950 { /* byte 2 */
2951 /* 0 */ "<CVSD> ",
2952 /* 1 */ "<Paging scheme> ",
2953 /* 2 */ "<Power control> ",
2954 /* 3 */ "<Transparent SCO data> ",
2955 /* 4 */ "<Flow control lag (bit0)> ",
2956 /* 5 */ "<Flow control lag (bit1)> ",
2957 /* 6 */ "<Flow control lag (bit2)> ",
2958 /* 7 */ "<Broadcast Encryption> "
2959 },
2960 { /* byte 3 */
2961 /* 0 */ "<Unknown 3.0> ",
2962 /* 1 */ "<EDR ACL 2 Mb/s> ",
2963 /* 2 */ "<EDR ACL 3 Mb/s> ",
2964 /* 3 */ "<Enhanced inquiry scan> ",
2965 /* 4 */ "<Interlaced inquiry scan> ",
2966 /* 5 */ "<Interlaced page scan> ",
2967 /* 6 */ "<RSSI with inquiry results> ",
2968 /* 7 */ "<Extended SCO link (EV3 packets)> "
2969 },
2970 { /* byte 4 */
2971 /* 0 */ "<EV4 packets> ",
2972 /* 1 */ "<EV5 packets> ",
2973 /* 2 */ "<Unknown 4.2> ",
2974 /* 3 */ "<AFH capable slave> ",
2975 /* 4 */ "<AFH classification slave> ",
2976 /* 5 */ "<BR/EDR Not Supported> ",
2977 /* 6 */ "<LE Supported (Controller)> ",
2978 /* 7 */ "<3-Slot EDR ACL packets> "
2979 },
2980 { /* byte 5 */
2981 /* 0 */ "<5-Slot EDR ACL packets> ",
2982 /* 1 */ "<Sniff subrating> ",
2983 /* 2 */ "<Pause encryption> ",
2984 /* 3 */ "<AFH capable master> ",
2985 /* 4 */ "<AFH classification master> ",
2986 /* 5 */ "<EDR eSCO 2 Mb/s mode> ",
2987 /* 6 */ "<EDR eSCO 3 Mb/s mode> ",
2988 /* 7 */ "<3-Slot EDR eSCO packets> "
2989 },
2990 { /* byte 6 */
2991 /* 0 */ "<Enhanced Inquiry Response> ",
2992 /* 1 */ "<Simultaneous LE and BR/EDR (Controller)> ",
2993 /* 2 */ "<Unknown 6.2> ",
2994 /* 3 */ "<Secure Simple Pairing (Controller Support)> ",
2995 /* 4 */ "<Encapsulated PDU> ",
2996 /* 5 */ "<Erroneous Data Reporting> ",
2997 /* 6 */ "<Non-flushable Packed Boundary Flag> ",
2998 /* 7 */ "<Unknown 6.7> "
2999 },
3000 { /* byte 7 */
3001 /* 0 */ "<HCI_Link_Supervision_Timeout_Changed event> ",
3002 /* 1 */ "<Variable Inquiry TX Power Level> ",
3003 /* 2 */ "<Enhanced Power Control> ",
3004 /* 3 */ "<Unknown 7.3> ",
3005 /* 4 */ "<Unknown 7.4> ",
3006 /* 5 */ "<Unknown 7.5> ",
3007 /* 6 */ "<Unknown 7.6> ",
3008 /* 7 */ "<Extended features> "
3009 }};
3010
3011 if (buffer != NULL && size > 0) {
3012 int n, i, len0, len1;
3013
3014 memset(buffer, 0, size);
3015 len1 = 0;
3016 size--;
3017
3018 for (n = 0; n < SIZE(t); n++) {
3019 for (i = 0; i < SIZE(t[n]); i++) {
3020 len0 = strlen(buffer);
3021 if (len0 >= size)
3022 goto done;
3023
3024 if (features[n] & (1 << i)) {
3025 if (len1 + strlen(t[n][i]) > 60) {
3026 len1 = 0;
3027 buffer[len0 - 1] = '\n';
3028 }
3029
3030 len1 += strlen(t[n][i]);
3031 strncat(buffer, t[n][i], size - len0);
3032 }
3033 }
3034 }
3035 }
3036 done:
3037 return (buffer);
3038 } /* hci_features2str */
3039
3040 char const *
hci_le_features2str(uint8_t * features,char * buffer,int size)3041 hci_le_features2str(uint8_t *features, char *buffer, int size)
3042 {
3043 static char const * const t[][8] = {
3044 { /* byte 0 */
3045 /* 0 */ "<LE Encryption> ",
3046 /* 1 */ "<Connection Parameters Request Procedure> ",
3047 /* 2 */ "<Extended Reject Indication> ",
3048 /* 3 */ "<Slave-initiated Features Exchange> ",
3049 /* 4 */ "<LE Ping> ",
3050 /* 5 */ "<LE Data Packet Length Extension> ",
3051 /* 6 */ "<LL Privacy> ",
3052 /* 7 */ "<Extended Scanner Filter Policies> "
3053 },
3054 { /* byte 1 */
3055 /* 0 */ "<LE 2M PHY> ",
3056 /* 1 */ "<Stable Modulation Index - Transmitter> ",
3057 /* 2 */ "<Stable Modulation Index - Receiver> ",
3058 /* 3 */ "<LE Coded PHY> ",
3059 /* 4 */ "<LE Extended Advertising> ",
3060 /* 5 */ "<LE Periodic Advertising> ",
3061 /* 6 */ "<Channel Selection Algorithm #2> ",
3062 /* 7 */ "<LE Power Class 1> "
3063 },
3064 { /* byte 2 */
3065 /* 0 */ "<Minimum Number of Used Channels Procedure> ",
3066 /* 1 */ "<Connection CTE Request> ",
3067 /* 2 */ "<Connection CTE Response> ",
3068 /* 3 */ "<Connectionless CTE Transmitter> ",
3069 /* 4 */ "<Connectionless CTE Receiver> ",
3070 /* 5 */ "<Antenna Switching During CTE Transmission (AoD)> ",
3071 /* 6 */ "<Antenna Switching During CTE Reception (AoA)> ",
3072 /* 7 */ "<Receiving Constant Tone Extensions> "
3073 },
3074 { /* byte 3 */
3075 /* 0 */ "<Periodic Advertising Sync Transfer - Sender> ",
3076 /* 1 */ "<Periodic Advertising Sync Transfer - Recipient> ",
3077 /* 2 */ "<Sleep Clock Accuracy Updates> ",
3078 /* 3 */ "<Remote Public Key Validation> ",
3079 /* 4 */ "<Connected Isochronous Stream - Master> ",
3080 /* 5 */ "<Connected Isochronous Stream - Slave> ",
3081 /* 6 */ "<Isochronous Broadcaster> ",
3082 /* 7 */ "<Synchronized Receiver> "
3083 },
3084 { /* byte 4 */
3085 /* 0 */ "<Isochronous Channels (Host Support)> ",
3086 /* 1 */ "<LE Power Control Request> ",
3087 /* 2 */ "<LE Power Change Indication> ",
3088 /* 3 */ "<LE Path Loss Monitoring> ",
3089 /* 4 */ "<Reserved for future use> ",
3090 /* 5 */ "<Unknown 4.5> ",
3091 /* 6 */ "<Unknown 4.6> ",
3092 /* 7 */ "<Unknown 4.7> "
3093 },
3094 { /* byte 5 */
3095 /* 0 */ "<Unknown 5.0> ",
3096 /* 1 */ "<Unknown 5.1> ",
3097 /* 2 */ "<Unknown 5.2> ",
3098 /* 3 */ "<Unknown 5.3> ",
3099 /* 4 */ "<Unknown 5.4> ",
3100 /* 5 */ "<Unknown 5.5> ",
3101 /* 6 */ "<Unknown 5.6> ",
3102 /* 7 */ "<Unknown 5.7> "
3103 },
3104 { /* byte 6 */
3105 /* 0 */ "<Unknown 6.0> ",
3106 /* 1 */ "<Unknown 6.1> ",
3107 /* 2 */ "<Unknown 6.2> ",
3108 /* 3 */ "<Unknown 6.3> ",
3109 /* 4 */ "<Unknown 6.4> ",
3110 /* 5 */ "<Unknown 6.5> ",
3111 /* 6 */ "<Unknown 6.6> ",
3112 /* 7 */ "<Unknown 6.7> "
3113 },
3114 { /* byte 7 */
3115 /* 0 */ "<Unknown 7.0> ",
3116 /* 1 */ "<Unknown 7.1> ",
3117 /* 2 */ "<Unknown 7.2> ",
3118 /* 3 */ "<Unknown 7.3> ",
3119 /* 4 */ "<Unknown 7.4> ",
3120 /* 5 */ "<Unknown 7.5> ",
3121 /* 6 */ "<Unknown 7.6> ",
3122 /* 7 */ "<Unknown 7.7> "
3123 }};
3124
3125 if (buffer != NULL && size > 0) {
3126 int n, i, len0, len1;
3127
3128 memset(buffer, 0, size);
3129 len1 = 0;
3130 size--;
3131
3132 for (n = 0; n < SIZE(t); n++) {
3133 for (i = 0; i < SIZE(t[n]); i++) {
3134 len0 = strlen(buffer);
3135 if (len0 >= size)
3136 goto done;
3137
3138 if (features[n] & (1 << i)) {
3139 if (len1 + strlen(t[n][i]) > 60) {
3140 len1 = 0;
3141 buffer[len0 - 1] = '\n';
3142 }
3143
3144 len1 += strlen(t[n][i]);
3145 strncat(buffer, t[n][i], size - len0);
3146 }
3147 }
3148 }
3149 }
3150 done:
3151 return (buffer);
3152 }
3153
3154 char const *
hci_cc2str(int cc)3155 hci_cc2str(int cc)
3156 {
3157 static char const * const t[] = {
3158 /* 0x00 */ "North America, Europe, Japan",
3159 /* 0x01 */ "France"
3160 };
3161
3162 return (cc >= SIZE(t)? "?" : t[cc]);
3163 } /* hci_cc2str */
3164
3165 char const *
hci_con_state2str(int state)3166 hci_con_state2str(int state)
3167 {
3168 static char const * const t[] = {
3169 /* NG_HCI_CON_CLOSED */ "CLOSED",
3170 /* NG_HCI_CON_W4_LP_CON_RSP */ "W4_LP_CON_RSP",
3171 /* NG_HCI_CON_W4_CONN_COMPLETE */ "W4_CONN_COMPLETE",
3172 /* NG_HCI_CON_OPEN */ "OPEN"
3173 };
3174
3175 return (state >= SIZE(t)? "UNKNOWN" : t[state]);
3176 } /* hci_con_state2str */
3177
3178 char const *
hci_status2str(int status)3179 hci_status2str(int status)
3180 {
3181 static char const * const t[] = {
3182 /* 0x00 */ "No error",
3183 /* 0x01 */ "Unknown HCI command",
3184 /* 0x02 */ "No connection",
3185 /* 0x03 */ "Hardware failure",
3186 /* 0x04 */ "Page timeout",
3187 /* 0x05 */ "Authentication failure",
3188 /* 0x06 */ "Key missing",
3189 /* 0x07 */ "Memory full",
3190 /* 0x08 */ "Connection timeout",
3191 /* 0x09 */ "Max number of connections",
3192 /* 0x0a */ "Max number of SCO connections to a unit",
3193 /* 0x0b */ "ACL connection already exists",
3194 /* 0x0c */ "Command disallowed",
3195 /* 0x0d */ "Host rejected due to limited resources",
3196 /* 0x0e */ "Host rejected due to security reasons",
3197 /* 0x0f */ "Host rejected due to remote unit is a personal unit",
3198 /* 0x10 */ "Host timeout",
3199 /* 0x11 */ "Unsupported feature or parameter value",
3200 /* 0x12 */ "Invalid HCI command parameter",
3201 /* 0x13 */ "Other end terminated connection: User ended connection",
3202 /* 0x14 */ "Other end terminated connection: Low resources",
3203 /* 0x15 */ "Other end terminated connection: About to power off",
3204 /* 0x16 */ "Connection terminated by local host",
3205 /* 0x17 */ "Repeated attempts",
3206 /* 0x18 */ "Pairing not allowed",
3207 /* 0x19 */ "Unknown LMP PDU",
3208 /* 0x1a */ "Unsupported remote feature",
3209 /* 0x1b */ "SCO offset rejected",
3210 /* 0x1c */ "SCO interval rejected",
3211 /* 0x1d */ "SCO air mode rejected",
3212 /* 0x1e */ "Invalid LMP parameters",
3213 /* 0x1f */ "Unspecified error",
3214 /* 0x20 */ "Unsupported LMP parameter value",
3215 /* 0x21 */ "Role change not allowed",
3216 /* 0x22 */ "LMP response timeout",
3217 /* 0x23 */ "LMP error transaction collision",
3218 /* 0x24 */ "LMP PSU not allowed",
3219 /* 0x25 */ "Encryption mode not acceptable",
3220 /* 0x26 */ "Unit key used",
3221 /* 0x27 */ "QoS is not supported",
3222 /* 0x28 */ "Instant passed",
3223 /* 0x29 */ "Pairing with unit key not supported",
3224 /* 0x2a */ "Different Transaction Collision",
3225 /* 0x2b */ "Unknown error (Reserved for future use)",
3226 /* 0x2c */ "QoS Unacceptable Parameter",
3227 /* 0x2d */ "QoS Rejected",
3228 /* 0x2e */ "Channel Classification Not Supported",
3229 /* 0x2f */ "Insufficient Security",
3230 /* 0x30 */ "Parameter Out Of Mandatory Range",
3231 /* 0x31 */ "Unknown error (Reserved for future use)",
3232 /* 0x32 */ "Role Switch Pending",
3233 /* 0x33 */ "Unknown error (Reserved for future use)",
3234 /* 0x34 */ "Reserved Slot Violation",
3235 /* 0x35 */ "Role Switch Failed",
3236 /* 0x36 */ "Extended Inquiry Response Too Large",
3237 /* 0x37 */ "Secure Simple Pairing Not Supported By Host",
3238 /* 0x38 */ "Host Busy - Pairing",
3239 /* 0x39 */ "Connection Rejected due to No Suitable Channel Found",
3240 /* 0x3a */ "Controller Busy",
3241 /* 0x3b */ "Unacceptable Connection Parameters",
3242 /* 0x3c */ "Advertising Timeout",
3243 /* 0x3d */ "Connection Terminated due to MIC Failure",
3244 /* 0x3e */ "Connection Failed to be Established / Synchronization Timeout",
3245 /* 0x3f */ "MAC Connection Failed",
3246 /* 0x40 */ "Coarse Clock Adjustment Rejected but Will Try to Adjust Using Clock Dragging",
3247 /* 0x41 */ "Type0 Submap Not Defined",
3248 /* 0x42 */ "Unknown Advertising Identifier",
3249 /* 0x43 */ "Limit Reached",
3250 /* 0x44 */ "Operation Cancelled by Host",
3251 /* 0x45 */ "Packet Too Long"
3252 };
3253
3254 return (status >= SIZE(t)? "Unknown error" : t[status]);
3255 } /* hci_status2str */
3256
3257 char const *
hci_bdaddr2str(bdaddr_t const * ba)3258 hci_bdaddr2str(bdaddr_t const *ba)
3259 {
3260 extern int numeric_bdaddr;
3261 static char buffer[MAXHOSTNAMELEN];
3262 struct hostent *he = NULL;
3263
3264 if (memcmp(ba, NG_HCI_BDADDR_ANY, sizeof(*ba)) == 0) {
3265 buffer[0] = '*';
3266 buffer[1] = 0;
3267
3268 return (buffer);
3269 }
3270
3271 if (!numeric_bdaddr &&
3272 (he = bt_gethostbyaddr((char *)ba, sizeof(*ba), AF_BLUETOOTH)) != NULL) {
3273 strlcpy(buffer, he->h_name, sizeof(buffer));
3274
3275 return (buffer);
3276 }
3277
3278 bt_ntoa(ba, buffer);
3279
3280 return (buffer);
3281 } /* hci_bdaddr2str */
3282
3283
3284 char const *
hci_addrtype2str(int type)3285 hci_addrtype2str(int type)
3286 {
3287 static char const * const t[] = {
3288 /* 0x00 */ "Public Device Address",
3289 /* 0x01 */ "Random Device Address",
3290 /* 0x02 */ "Public Identity Address",
3291 /* 0x03 */ "Random (static) Identity Address"
3292 };
3293
3294 return (type >= SIZE(t)? "?" : t[type]);
3295 } /* hci_addrtype2str */
3296
3297 char const *
hci_role2str(int role)3298 hci_role2str(int role)
3299 {
3300 static char const * const roles[] = {
3301 /* 0x00 */ "Master",
3302 /* 0x01 */ "Slave",
3303 };
3304
3305 return (role >= SIZE(roles)? "Unknown role" : roles[role]);
3306 } /* hci_role2str */
3307
3308 char const *
hci_mc_accuracy2str(int accuracy)3309 hci_mc_accuracy2str(int accuracy)
3310 {
3311 static char const * const acc[] = {
3312 /* 0x00 */ "500 ppm",
3313 /* 0x01 */ "250 ppm",
3314 /* 0x02 */ "150 ppm",
3315 /* 0x03 */ "100 ppm",
3316 /* 0x04 */ "75 ppm",
3317 /* 0x05 */ "50 ppm",
3318 /* 0x06 */ "30 ppm",
3319 /* 0x07 */ "20 ppm",
3320 };
3321
3322 return (accuracy >= SIZE(acc)? "Unknown accuracy" : acc[accuracy]);
3323 } /* hci_mc_accuracy2str */
3324
3325 char const *
hci_le_chanmap2str(uint8_t * map,char * buffer,int size)3326 hci_le_chanmap2str(uint8_t *map, char *buffer, int size)
3327 {
3328 char chantxt[4];
3329 if (buffer != NULL && size > 0) {
3330 int n, i, len0, len1;
3331
3332 memset(buffer, 0, size);
3333 len1 = 0;
3334 size--;
3335
3336 for (n = 0; n < 5; n++) {
3337 fprintf(stdout, "%02x ", map[n]);
3338 for (i = 0; i < 8; i++) {
3339 len0 = strlen(buffer);
3340 if (len0 >= size)
3341 goto done;
3342
3343 if (map[n] & (1 << i)) {
3344 if (len1 + 3 > 60) {
3345 len1 = 0;
3346 buffer[len0 - 1] = '\n';
3347 }
3348
3349 len1 += 3;
3350 snprintf(
3351 chantxt,
3352 sizeof(chantxt),
3353 "%02d ",
3354 (n * 8 + i));
3355 strncat(
3356 buffer,
3357 chantxt,
3358 size - len0);
3359 }
3360 }
3361 }
3362 fprintf(stdout, "\n");
3363 }
3364 done:
3365 return (buffer);
3366 }
3367