summaryrefslogtreecommitdiffstats
path: root/src/gui/util/qedidvendortable_p.h
blob: d5b86833f4e3df5e147d1b3f2be2c76ceebdb47a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
/****************************************************************************
**
** Copyright (C) 2017 Pier Luigi Fiorini <pierluigi.fiorini@gmail.com>
** Contact: https://www.qt.io/licensing/
**
** This file is part of the QtGui module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 3 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL3 included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 3 requirements
** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 2.0 or (at your option) the GNU General
** Public license version 3 or any later version approved by the KDE Free
** Qt Foundation. The licenses are as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-2.0.html and
** https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/

/*
 * This lookup table was generated from https://github.com/vcrhonek/hwdata/raw/master/pnp.ids
 *
 * Do not change this file directly, instead edit the
 * qtbase/util/edid/qedidvendortable.py script and regenerate this file.
 */

#ifndef QEDIDVENDORTABLE_P_H
#define QEDIDVENDORTABLE_P_H

//
//  W A R N I N G
//  -------------
//
// This file is not part of the Qt API. It exists purely as an
// implementation detail. This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
//

QT_BEGIN_NAMESPACE

typedef struct VendorTable {
    const char id[4];
    const char name[78];
} VendorTable;

static const struct VendorTable q_edidVendorTable[] = {
    { "AAA", "Avolites Ltd" },
    { "AAE", "Anatek Electronics Inc." },
    { "AAT", "Ann Arbor Technologies" },
    { "ABA", "ABBAHOME INC." },
    { "ABC", "AboCom System Inc" },
    { "ABD", "Allen Bradley Company" },
    { "ABE", "Alcatel Bell" },
    { "ABO", "D-Link Systems Inc" },
    { "ABT", "Anchor Bay Technologies, Inc." },
    { "ABV", "Advanced Research Technology" },
    { "ACA", "Ariel Corporation" },
    { "ACB", "Aculab Ltd" },
    { "ACC", "Accton Technology Corporation" },
    { "ACD", "AWETA BV" },
    { "ACE", "Actek Engineering Pty Ltd" },
    { "ACG", "A&R Cambridge Ltd" },
    { "ACH", "Archtek Telecom Corporation" },
    { "ACI", "Ancor Communications Inc" },
    { "ACK", "Acksys" },
    { "ACL", "Apricot Computers" },
    { "ACM", "Acroloop Motion Control Systems Inc" },
    { "ACO", "Allion Computer Inc." },
    { "ACP", "Aspen Tech Inc" },
    { "ACR", "Acer Technologies" },
    { "ACS", "Altos Computer Systems" },
    { "ACT", "Applied Creative Technology" },
    { "ACU", "Acculogic" },
    { "ACV", "ActivCard S.A" },
    { "ADA", "Addi-Data GmbH" },
    { "ADB", "Aldebbaron" },
    { "ADC", "Acnhor Datacomm" },
    { "ADD", "Advanced Peripheral Devices Inc" },
    { "ADE", "Arithmos, Inc." },
    { "ADH", "Aerodata Holdings Ltd" },
    { "ADI", "ADI Systems Inc" },
    { "ADK", "Adtek System Science Company Ltd" },
    { "ADL", "ASTRA Security Products Ltd" },
    { "ADM", "Ad Lib MultiMedia Inc" },
    { "ADN", "Analog & Digital Devices Tel. Inc" },
    { "ADP", "Adaptec Inc" },
    { "ADR", "Nasa Ames Research Center" },
    { "ADS", "Analog Devices Inc" },
    { "ADT", "Aved Display Technologies" },
    { "ADV", "Advanced Micro Devices Inc" },
    { "ADX", "Adax Inc" },
    { "AEC", "Antex Electronics Corporation" },
    { "AED", "Advanced Electronic Designs, Inc." },
    { "AEI", "Actiontec Electric Inc" },
    { "AEJ", "Alpha Electronics Company" },
    { "AEM", "ASEM S.p.A." },
    { "AEN", "Avencall" },
    { "AEP", "Aetas Peripheral International" },
    { "AET", "Aethra Telecomunicazioni S.r.l." },
    { "AFA", "Alfa Inc" },
    { "AGC", "Beijing Aerospace Golden Card Electronic Engineering Co.,Ltd." },
    { "AGI", "Artish Graphics Inc" },
    { "AGL", "Argolis" },
    { "AGM", "Advan Int'l Corporation" },
    { "AGT", "Agilent Technologies" },
    { "AHC", "Advantech Co., Ltd." },
    { "AIC", "Arnos Insturments & Computer Systems" },
    { "AIE", "Altmann Industrieelektronik" },
    { "AII", "Amptron International Inc." },
    { "AIL", "Altos India Ltd" },
    { "AIM", "AIMS Lab Inc" },
    { "AIR", "Advanced Integ. Research Inc" },
    { "AIS", "Alien Internet Services" },
    { "AIW", "Aiwa Company Ltd" },
    { "AIX", "ALTINEX, INC." },
    { "AJA", "AJA Video Systems, Inc." },
    { "AKB", "Akebia Ltd" },
    { "AKE", "AKAMI Electric Co.,Ltd" },
    { "AKI", "AKIA Corporation" },
    { "AKL", "AMiT Ltd" },
    { "AKM", "Asahi Kasei Microsystems Company Ltd" },
    { "AKP", "Atom Komplex Prylad" },
    { "AKY", "Askey Computer Corporation" },
    { "ALA", "Alacron Inc" },
    { "ALC", "Altec Corporation" },
    { "ALD", "In4S Inc" },
    { "ALG", "Realtek Semiconductor Corp." },
    { "ALH", "AL Systems" },
    { "ALI", "Acer Labs" },
    { "ALJ", "Altec Lansing" },
    { "ALK", "Acrolink Inc" },
    { "ALL", "Alliance Semiconductor Corporation" },
    { "ALM", "Acutec Ltd." },
    { "ALN", "Alana Technologies" },
    { "ALO", "Algolith Inc." },
    { "ALP", "Alps Electric Company Ltd" },
    { "ALR", "Advanced Logic" },
    { "ALS", "Texas Advanced optoelectronics Solutions, Inc" },
    { "ALT", "Altra" },
    { "ALV", "AlphaView LCD" },
    { "ALX", "ALEXON Co.,Ltd." },
    { "AMA", "Asia Microelectronic Development Inc" },
    { "AMB", "Ambient Technologies, Inc." },
    { "AMC", "Attachmate Corporation" },
    { "AMD", "Amdek Corporation" },
    { "AMI", "American Megatrends Inc" },
    { "AML", "Anderson Multimedia Communications (HK) Limited" },
    { "AMN", "Amimon LTD." },
    { "AMO", "Amino Technologies PLC and Amino Communications Limited" },
    { "AMP", "AMP Inc" },
    { "AMS", "ARMSTEL, Inc." },
    { "AMT", "AMT International Industry" },
    { "AMX", "AMX LLC" },
    { "ANA", "Anakron" },
    { "ANC", "Ancot" },
    { "AND", "Adtran Inc" },
    { "ANI", "Anigma Inc" },
    { "ANK", "Anko Electronic Company Ltd" },
    { "ANL", "Analogix Semiconductor, Inc" },
    { "ANO", "Anorad Corporation" },
    { "ANP", "Andrew Network Production" },
    { "ANR", "ANR Ltd" },
    { "ANS", "Ansel Communication Company" },
    { "ANT", "Ace CAD Enterprise Company Ltd" },
    { "ANX", "Acer Netxus Inc" },
    { "AOA", "AOpen Inc." },
    { "AOE", "Advanced Optics Electronics, Inc." },
    { "AOL", "America OnLine" },
    { "AOT", "Alcatel" },
    { "APC", "American Power Conversion" },
    { "APD", "AppliAdata" },
    { "APE", "Alpine Electronics, Inc." },
    { "APG", "Horner Electric Inc" },
    { "API", "A Plus Info Corporation" },
    { "APL", "Aplicom Oy" },
    { "APM", "Applied Memory Tech" },
    { "APN", "Appian Tech Inc" },
    { "APP", "Apple Computer Inc" },
    { "APR", "Aprilia s.p.a." },
    { "APS", "Autologic Inc" },
    { "APT", "Audio Processing Technology Ltd" },
    { "APV", "A+V Link" },
    { "APX", "AP Designs Ltd" },
    { "ARC", "Alta Research Corporation" },
    { "ARE", "ICET S.p.A." },
    { "ARG", "Argus Electronics Co., LTD" },
    { "ARI", "Argosy Research Inc" },
    { "ARK", "Ark Logic Inc" },
    { "ARL", "Arlotto Comnet Inc" },
    { "ARM", "Arima" },
    { "ARO", "Poso International B.V." },
    { "ARS", "Arescom Inc" },
    { "ART", "Corion Industrial Corporation" },
    { "ASC", "Ascom Strategic Technology Unit" },
    { "ASD", "USC Information Sciences Institute" },
    { "ASE", "AseV Display Labs" },
    { "ASI", "Ahead Systems" },
    { "ASK", "Ask A/S" },
    { "ASL", "AccuScene Corporation Ltd" },
    { "ASM", "ASEM S.p.A." },
    { "ASN", "Asante Tech Inc" },
    { "ASP", "ASP Microelectronics Ltd" },
    { "AST", "AST Research Inc" },
    { "ASU", "Asuscom Network Inc" },
    { "ASX", "AudioScience" },
    { "ASY", "Rockwell Collins / Airshow Systems" },
    { "ATA", "Allied Telesyn International (Asia) Pte Ltd" },
    { "ATC", "Ably-Tech Corporation" },
    { "ATD", "Alpha Telecom Inc" },
    { "ATE", "Innovate Ltd" },
    { "ATH", "Athena Informatica S.R.L." },
    { "ATI", "Allied Telesis KK" },
    { "ATK", "Allied Telesyn Int'l" },
    { "ATL", "Arcus Technology Ltd" },
    { "ATM", "ATM Ltd" },
    { "ATN", "Athena Smartcard Solutions Ltd." },
    { "ATO", "ASTRO DESIGN, INC." },
    { "ATP", "Alpha-Top Corporation" },
    { "ATT", "AT&T" },
    { "ATV", "Office Depot, Inc." },
    { "ATX", "Athenix Corporation" },
    { "AUI", "Alps Electric Inc" },
    { "AUO", "AU Optronics" },
    { "AUR", "Aureal Semiconductor" },
    { "AUT", "Autotime Corporation" },
    { "AVA", "Avaya Communication" },
    { "AVC", "Auravision Corporation" },
    { "AVD", "Avid Electronics Corporation" },
    { "AVE", "Add Value Enterpises (Asia) Pte Ltd" },
    { "AVI", "Nippon Avionics Co.,Ltd" },
    { "AVL", "Avalue Technology Inc." },
    { "AVM", "AVM GmbH" },
    { "AVN", "Advance Computer Corporation" },
    { "AVO", "Avocent Corporation" },
    { "AVR", "AVer Information Inc." },
    { "AVT", "Avtek (Electronics) Pty Ltd" },
    { "AVV", "SBS Technologies (Canada), Inc. (was Avvida Systems, Inc.)" },
    { "AVX", "AVerMedia Technologies, Inc." },
    { "AWC", "Access Works Comm Inc" },
    { "AWL", "Aironet Wireless Communications, Inc" },
    { "AWS", "Wave Systems" },
    { "AXB", "Adrienne Electronics Corporation" },
    { "AXC", "AXIOMTEK CO., LTD." },
    { "AXE", "D-Link Systems Inc" },
    { "AXI", "American Magnetics" },
    { "AXL", "Axel" },
    { "AXO", "Axonic Labs LLC" },
    { "AXP", "American Express" },
    { "AXT", "Axtend Technologies Inc" },
    { "AXX", "Axxon Computer Corporation" },
    { "AXY", "AXYZ Automation Services, Inc" },
    { "AYD", "Aydin Displays" },
    { "AYR", "Airlib, Inc" },
    { "AZM", "AZ Middelheim - Radiotherapy" },
    { "AZT", "Aztech Systems Ltd" },
    { "BAC", "Biometric Access Corporation" },
    { "BAN", "Banyan" },
    { "BBB", "an-najah university" },
    { "BBH", "B&Bh" },
    { "BBL", "Brain Boxes Limited" },
    { "BCC", "Beaver Computer Corporaton" },
    { "BCD", "Barco GmbH" },
    { "BCM", "Broadcom" },
    { "BCQ", "Deutsche Telekom Berkom GmbH" },
    { "BCS", "Booria CAD/CAM systems" },
    { "BDO", "Brahler ICS" },
    { "BDR", "Blonder Tongue Labs, Inc." },
    { "BDS", "Barco Display Systems" },
    { "BEC", "Elektro Beckhoff GmbH" },
    { "BEI", "Beckworth Enterprises Inc" },
    { "BEK", "Beko Elektronik A.S." },
    { "BEL", "Beltronic Industrieelektronik GmbH" },
    { "BEO", "Baug & Olufsen" },
    { "BFE", "B.F. Engineering Corporation" },
    { "BGB", "Barco Graphics N.V" },
    { "BGT", "Budzetron Inc" },
    { "BHZ", "BitHeadz, Inc." },
    { "BIC", "Big Island Communications" },
    { "BII", "Boeckeler Instruments Inc" },
    { "BIL", "Billion Electric Company Ltd" },
    { "BIO", "BioLink Technologies International, Inc." },
    { "BIT", "Bit 3 Computer" },
    { "BLI", "Busicom" },
    { "BLN", "BioLink Technologies" },
    { "BLP", "Bloomberg L.P." },
    { "BMD", "Blackmagic Design" },
    { "BMI", "Benson Medical Instruments Company" },
    { "BML", "BIOMED Lab" },
    { "BMS", "BIOMEDISYS" },
    { "BNE", "Bull AB" },
    { "BNK", "Banksia Tech Pty Ltd" },
    { "BNO", "Bang & Olufsen" },
    { "BNS", "Boulder Nonlinear Systems" },
    { "BOB", "Rainy Orchard" },
    { "BOE", "BOE" },
    { "BOI", "NINGBO BOIGLE DIGITAL TECHNOLOGY CO.,LTD" },
    { "BOS", "BOS" },
    { "BPD", "Micro Solutions, Inc." },
    { "BPU", "Best Power" },
    { "BRA", "Braemac Pty Ltd" },
    { "BRC", "BARC" },
    { "BRG", "Bridge Information Co., Ltd" },
    { "BRI", "Boca Research Inc" },
    { "BRM", "Braemar Inc" },
    { "BRO", "BROTHER INDUSTRIES,LTD." },
    { "BSE", "Bose Corporation" },
    { "BSL", "Biomedical Systems Laboratory" },
    { "BSN", "BRIGHTSIGN, LLC" },
    { "BST", "BodySound Technologies, Inc." },
    { "BTC", "Bit 3 Computer" },
    { "BTE", "Brilliant Technology" },
    { "BTF", "Bitfield Oy" },
    { "BTI", "BusTech Inc" },
    { "BTO", "BioTao Ltd" },
    { "BUF", "Yasuhiko Shirai Melco Inc" },
    { "BUG", "B.U.G., Inc." },
    { "BUJ", "ATI Tech Inc" },
    { "BUL", "Bull" },
    { "BUR", "Bernecker & Rainer Ind-Eletronik GmbH" },
    { "BUS", "BusTek" },
    { "BUT", "21ST CENTURY ENTERTAINMENT" },
    { "BWK", "Bitworks Inc." },
    { "BXE", "Buxco Electronics" },
    { "BYD", "byd:sign corporation" },
    { "CAA", "Castles Automation Co., Ltd" },
    { "CAC", "CA & F Elettronica" },
    { "CAG", "CalComp" },
    { "CAI", "Canon Inc." },
    { "CAL", "Acon" },
    { "CAM", "Cambridge Audio" },
    { "CAN", "CORNEA" },
    { "CAR", "Cardinal Company Ltd" },
    { "CAS", "CASIO COMPUTER CO.,LTD" },
    { "CAT", "Consultancy in Advanced Technology" },
    { "CAV", "Cavium Networks, Inc" },
    { "CBI", "ComputerBoards Inc" },
    { "CBR", "Cebra Tech A/S" },
    { "CBT", "Cabletime Ltd" },
    { "CBX", "Cybex Computer Products Corporation" },
    { "CCC", "C-Cube Microsystems" },
    { "CCI", "Cache" },
    { "CCJ", "CONTEC CO.,LTD." },
    { "CCL", "CCL/ITRI" },
    { "CCP", "Capetronic USA Inc" },
    { "CDC", "Core Dynamics Corporation" },
    { "CDD", "Convergent Data Devices" },
    { "CDE", "Colin.de" },
    { "CDG", "Christie Digital Systems Inc" },
    { "CDI", "Concept Development Inc" },
    { "CDK", "Cray Communications" },
    { "CDN", "Codenoll Technical Corporation" },
    { "CDP", "CalComp" },
    { "CDS", "Computer Diagnostic Systems" },
    { "CDT", "IBM Corporation" },
    { "CDV", "Convergent Design Inc." },
    { "CEA", "Consumer Electronics Association" },
    { "CEC", "Chicony Electronics Company Ltd" },
    { "CED", "Cambridge Electronic Design Ltd" },
    { "CEF", "Cefar Digital Vision" },
    { "CEI", "Crestron Electronics, Inc." },
    { "CEM", "MEC Electronics GmbH" },
    { "CEN", "Centurion Technologies P/L" },
    { "CEP", "C-DAC" },
    { "CER", "Ceronix" },
    { "CET", "TEC CORPORATION" },
    { "CFG", "Atlantis" },
    { "CGA", "Chunghwa Picture Tubes, LTD" },
    { "CGS", "Chyron Corp" },
    { "CGT", "congatec AG" },
    { "CHA", "Chase Research PLC" },
    { "CHC", "Chic Technology Corp." },
    { "CHD", "ChangHong Electric Co.,Ltd" },
    { "CHE", "Acer Inc" },
    { "CHG", "Sichuan Changhong Electric CO, LTD." },
    { "CHI", "Chrontel Inc" },
    { "CHL", "Chloride-R&D" },
    { "CHM", "CHIC TECHNOLOGY CORP." },
    { "CHO", "Sichuang Changhong Corporation" },
    { "CHP", "CH Products" },
    { "CHS", "Agentur Chairos" },
    { "CHT", "Chunghwa Picture Tubes,LTD." },
    { "CHY", "Cherry GmbH" },
    { "CIC", "Comm. Intelligence Corporation" },
    { "CII", "Cromack Industries Inc" },
    { "CIL", "Citicom Infotech Private Limited" },
    { "CIN", "Citron GmbH" },
    { "CIP", "Ciprico Inc" },
    { "CIR", "Cirrus Logic Inc" },
    { "CIS", "Cisco Systems Inc" },
    { "CIT", "Citifax Limited" },
    { "CKC", "The Concept Keyboard Company Ltd" },
    { "CKJ", "Carina System Co., Ltd." },
    { "CLA", "Clarion Company Ltd" },
    { "CLD", "COMMAT L.t.d." },
    { "CLE", "Classe Audio" },
    { "CLG", "CoreLogic" },
    { "CLI", "Cirrus Logic Inc" },
    { "CLM", "CrystaLake Multimedia" },
    { "CLO", "Clone Computers" },
    { "CLT", "automated computer control systems" },
    { "CLV", "Clevo Company" },
    { "CLX", "CardLogix" },
    { "CMC", "CMC Ltd" },
    { "CMD", "Colorado MicroDisplay, Inc." },
    { "CMG", "Chenming Mold Ind. Corp." },
    { "CMI", "C-Media Electronics" },
    { "CMM", "Comtime GmbH" },
    { "CMN", "Chimei Innolux Corporation" },
    { "CMO", "Chi Mei Optoelectronics corp." },
    { "CMR", "Cambridge Research Systems Ltd" },
    { "CMS", "CompuMaster Srl" },
    { "CMX", "Comex Electronics AB" },
    { "CNB", "American Power Conversion" },
    { "CNC", "Alvedon Computers Ltd" },
    { "CNE", "Cine-tal" },
    { "CNI", "Connect Int'l A/S" },
    { "CNN", "Canon Inc" },
    { "CNT", "COINT Multimedia Systems" },
    { "COB", "COBY Electronics Co., Ltd" },
    { "COD", "CODAN Pty. Ltd." },
    { "COI", "Codec Inc." },
    { "COL", "Rockwell Collins, Inc." },
    { "COM", "Comtrol Corporation" },
    { "CON", "Contec Company Ltd" },
    { "COO", "coolux GmbH" },
    { "COR", "Corollary Inc" },
    { "COS", "CoStar Corporation" },
    { "COT", "Core Technology Inc" },
    { "COW", "Polycow Productions" },
    { "COX", "Comrex" },
    { "CPC", "Ciprico Inc" },
    { "CPD", "CompuAdd" },
    { "CPI", "Computer Peripherals Inc" },
    { "CPL", "Compal Electronics Inc" },
    { "CPM", "Capella Microsystems Inc." },
    { "CPQ", "Compaq Computer Company" },
    { "CPT", "cPATH" },
    { "CPX", "Powermatic Data Systems" },
    { "CRC", "CONRAC GmbH" },
    { "CRD", "Cardinal Technical Inc" },
    { "CRE", "Creative Labs Inc" },
    { "CRI", "Crio Inc." },
    { "CRL", "Creative Logic" },
    { "CRN", "Cornerstone Imaging" },
    { "CRO", "Extraordinary Technologies PTY Limited" },
    { "CRQ", "Cirque Corporation" },
    { "CRS", "Crescendo Communication Inc" },
    { "CRV", "Cerevo Inc." },
    { "CRX", "Cyrix Corporation" },
    { "CSB", "Transtex SA" },
    { "CSC", "Crystal Semiconductor" },
    { "CSD", "Cresta Systems Inc" },
    { "CSE", "Concept Solutions & Engineering" },
    { "CSI", "Cabletron System Inc" },
    { "CSM", "Cosmic Engineering Inc." },
    { "CSO", "California Institute of Technology" },
    { "CSS", "CSS Laboratories" },
    { "CST", "CSTI Inc" },
    { "CTA", "CoSystems Inc" },
    { "CTC", "CTC Communication Development Company Ltd" },
    { "CTE", "Chunghwa Telecom Co., Ltd." },
    { "CTL", "Creative Technology Ltd" },
    { "CTM", "Computerm Corporation" },
    { "CTN", "Computone Products" },
    { "CTP", "Computer Technology Corporation" },
    { "CTS", "Comtec Systems Co., Ltd." },
    { "CTX", "Creatix Polymedia GmbH" },
    { "CUB", "Cubix Corporation" },
    { "CUK", "Calibre UK Ltd" },
    { "CVA", "Covia Inc." },
    { "CVI", "Colorado Video, Inc." },
    { "CVS", "Clarity Visual Systems" },
    { "CWR", "Connectware Inc" },
    { "CXT", "Conexant Systems" },
    { "CYB", "CyberVision" },
    { "CYC", "Cylink Corporation" },
    { "CYD", "Cyclades Corporation" },
    { "CYL", "Cyberlabs" },
    { "CYT", "Cytechinfo Inc" },
    { "CYV", "Cyviz AS" },
    { "CYW", "Cyberware" },
    { "CYX", "Cyrix Corporation" },
    { "CZE", "Carl Zeiss AG" },
    { "DAC", "Digital Acoustics Corporation" },
    { "DAE", "Digatron Industrie Elektronik GmbH" },
    { "DAI", "DAIS SET Ltd." },
    { "DAK", "Daktronics" },
    { "DAL", "Digital Audio Labs Inc" },
    { "DAN", "Danelec Marine A/S" },
    { "DAS", "DAVIS AS" },
    { "DAT", "Datel Inc" },
    { "DAU", "Daou Tech Inc" },
    { "DAV", "Davicom Semiconductor Inc" },
    { "DAW", "DA2 Technologies Inc" },
    { "DAX", "Data Apex Ltd" },
    { "DBD", "Diebold Inc." },
    { "DBI", "DigiBoard Inc" },
    { "DBK", "Databook Inc" },
    { "DBL", "Doble Engineering Company" },
    { "DBN", "DB Networks Inc" },
    { "DCA", "Digital Communications Association" },
    { "DCC", "Dale Computer Corporation" },
    { "DCD", "Datacast LLC" },
    { "DCE", "dSPACE GmbH" },
    { "DCI", "Concepts Inc" },
    { "DCL", "Dynamic Controls Ltd" },
    { "DCM", "DCM Data Products" },
    { "DCO", "Dialogue Technology Corporation" },
    { "DCR", "Decros Ltd" },
    { "DCS", "Diamond Computer Systems Inc" },
    { "DCT", "Dancall Telecom A/S" },
    { "DCV", "Datatronics Technology Inc" },
    { "DDA", "DA2 Technologies Corporation" },
    { "DDD", "Danka Data Devices" },
    { "DDE", "Datasat Digital Entertainment" },
    { "DDI", "Data Display AG" },
    { "DDS", "Barco, n.v." },
    { "DDT", "Datadesk Technologies Inc" },
    { "DDV", "Delta Information Systems, Inc" },
    { "DEC", "Digital Equipment Corporation" },
    { "DEI", "Deico Electronics" },
    { "DEL", "Dell Inc." },
    { "DEN", "Densitron Computers Ltd" },
    { "DEX", "idex displays" },
    { "DFI", "DFI" },
    { "DFK", "SharkTec A/S" },
    { "DFT", "DEI Holdings dba Definitive Technology" },
    { "DGA", "Digiital Arts Inc" },
    { "DGC", "Data General Corporation" },
    { "DGI", "DIGI International" },
    { "DGK", "DugoTech Co., LTD" },
    { "DGP", "Digicorp European sales S.A." },
    { "DGS", "Diagsoft Inc" },
    { "DGT", "The Dearborn Group" },
    { "DHP", "DH Print" },
    { "DHQ", "Quadram" },
    { "DHT", "Projectavision Inc" },
    { "DIA", "Diadem" },
    { "DIG", "Digicom S.p.A." },
    { "DII", "Dataq Instruments Inc" },
    { "DIM", "dPict Imaging, Inc." },
    { "DIN", "Daintelecom Co., Ltd" },
    { "DIS", "Diseda S.A." },
    { "DIT", "Dragon Information Technology" },
    { "DJE", "Capstone Visual Product Development" },
    { "DJP", "Maygay Machines, Ltd" },
    { "DKY", "Datakey Inc" },
    { "DLB", "Dolby Laboratories Inc." },
    { "DLC", "Diamond Lane Comm. Corporation" },
    { "DLG", "Digital-Logic GmbH" },
    { "DLK", "D-Link Systems Inc" },
    { "DLL", "Dell Inc" },
    { "DLT", "Digitelec Informatique Park Cadera" },
    { "DMB", "Digicom Systems Inc" },
    { "DMC", "Dune Microsystems Corporation" },
    { "DMM", "Dimond Multimedia Systems Inc" },
    { "DMP", "D&M Holdings Inc, Professional Business Company" },
    { "DMS", "DOME imaging systems" },
    { "DMT", "Distributed Management Task Force, Inc. (DMTF)" },
    { "DMV", "NDS Ltd" },
    { "DNA", "DNA Enterprises, Inc." },
    { "DNG", "Apache Micro Peripherals Inc" },
    { "DNI", "Deterministic Networks Inc." },
    { "DNT", "Dr. Neuhous Telekommunikation GmbH" },
    { "DNV", "DiCon" },
    { "DOL", "Dolman Technologies Group Inc" },
    { "DOM", "Dome Imaging Systems" },
    { "DON", "DENON, Ltd." },
    { "DOT", "Dotronic Mikroelektronik GmbH" },
    { "DPA", "DigiTalk Pro AV" },
    { "DPC", "Delta Electronics Inc" },
    { "DPI", "DocuPoint" },
    { "DPL", "Digital Projection Limited" },
    { "DPM", "ADPM Synthesis sas" },
    { "DPS", "Digital Processing Systems" },
    { "DPT", "DPT" },
    { "DPX", "DpiX, Inc." },
    { "DQB", "Datacube Inc" },
    { "DRB", "Dr. Bott KG" },
    { "DRC", "Data Ray Corp." },
    { "DRD", "DIGITAL REFLECTION INC." },
    { "DRI", "Data Race Inc" },
    { "DRS", "DRS Defense Solutions, LLC" },
    { "DSD", "DS Multimedia Pte Ltd" },
    { "DSI", "Digitan Systems Inc" },
    { "DSM", "DSM Digital Services GmbH" },
    { "DSP", "Domain Technology Inc" },
    { "DTA", "DELTATEC" },
    { "DTC", "DTC Tech Corporation" },
    { "DTE", "Dimension Technologies, Inc." },
    { "DTI", "Diversified Technology, Inc." },
    { "DTK", "Dynax Electronics (HK) Ltd" },
    { "DTL", "e-Net Inc" },
    { "DTN", "Datang Telephone Co" },
    { "DTO", "Deutsche Thomson OHG" },
    { "DTT", "Design & Test Technology, Inc." },
    { "DTX", "Data Translation" },
    { "DUA", "Dosch & Amand GmbH & Company KG" },
    { "DUN", "NCR Corporation" },
    { "DVD", "Dictaphone Corporation" },
    { "DVL", "Devolo AG" },
    { "DVS", "Digital Video System" },
    { "DVT", "Data Video" },
    { "DWE", "Daewoo Electronics Company Ltd" },
    { "DXC", "Digipronix Control Systems" },
    { "DXD", "DECIMATOR DESIGN PTY LTD" },
    { "DXL", "Dextera Labs Inc" },
    { "DXP", "Data Expert Corporation" },
    { "DXS", "Signet" },
    { "DYC", "Dycam Inc" },
    { "DYM", "Dymo-CoStar Corporation" },
    { "DYN", "Askey Computer Corporation" },
    { "DYX", "Dynax Electronics (HK) Ltd" },
    { "EAS", "Evans and Sutherland Computer" },
    { "EBH", "Data Price Informatica" },
    { "EBT", "HUALONG TECHNOLOGY CO., LTD" },
    { "ECA", "Electro Cam Corp." },
    { "ECC", "ESSential Comm. Corporation" },
    { "ECI", "Enciris Technologies" },
    { "ECK", "Eugene Chukhlomin Sole Proprietorship, d.b.a." },
    { "ECL", "Excel Company Ltd" },
    { "ECM", "E-Cmos Tech Corporation" },
    { "ECO", "Echo Speech Corporation" },
    { "ECP", "Elecom Company Ltd" },
    { "ECS", "Elitegroup Computer Systems Company Ltd" },
    { "ECT", "Enciris Technologies" },
    { "EDC", "e.Digital Corporation" },
    { "EDG", "Electronic-Design GmbH" },
    { "EDI", "Edimax Tech. Company Ltd" },
    { "EDM", "EDMI" },
    { "EDT", "Emerging Display Technologies Corp" },
    { "EEE", "ET&T Technology Company Ltd" },
    { "EEH", "EEH Datalink GmbH" },
    { "EEP", "E.E.P.D. GmbH" },
    { "EES", "EE Solutions, Inc." },
    { "EGA", "Elgato Systems LLC" },
    { "EGD", "EIZO GmbH Display Technologies" },
    { "EGL", "Eagle Technology" },
    { "EGN", "Egenera, Inc." },
    { "EGO", "Ergo Electronics" },
    { "EHJ", "Epson Research" },
    { "EHN", "Enhansoft" },
    { "EIC", "Eicon Technology Corporation" },
    { "EKA", "MagTek Inc." },
    { "EKC", "Eastman Kodak Company" },
    { "EKS", "EKSEN YAZILIM" },
    { "ELA", "ELAD srl" },
    { "ELC", "Electro Scientific Ind" },
    { "ELE", "Elecom Company Ltd" },
    { "ELG", "Elmeg GmbH Kommunikationstechnik" },
    { "ELI", "Edsun Laboratories" },
    { "ELL", "Electrosonic Ltd" },
    { "ELM", "Elmic Systems Inc" },
    { "ELO", "Tyco Electronics" },
    { "ELS", "ELSA GmbH" },
    { "ELT", "Element Labs, Inc." },
    { "ELX", "Elonex PLC" },
    { "EMB", "Embedded computing inc ltd" },
    { "EMC", "eMicro Corporation" },
    { "EME", "EMiNE TECHNOLOGY COMPANY, LTD." },
    { "EMG", "EMG Consultants Inc" },
    { "EMI", "Ex Machina Inc" },
    { "EMK", "Emcore Corporation" },
    { "EMO", "ELMO COMPANY, LIMITED" },
    { "EMU", "Emulex Corporation" },
    { "ENC", "Eizo Nanao Corporation" },
    { "END", "ENIDAN Technologies Ltd" },
    { "ENE", "ENE Technology Inc." },
    { "ENI", "Efficient Networks" },
    { "ENS", "Ensoniq Corporation" },
    { "ENT", "Enterprise Comm. & Computing Inc" },
    { "EPC", "Empac" },
    { "EPH", "Epiphan Systems Inc." },
    { "EPI", "Envision Peripherals, Inc" },
    { "EPN", "EPiCON Inc." },
    { "EPS", "KEPS" },
    { "EQP", "Equipe Electronics Ltd." },
    { "EQX", "Equinox Systems Inc" },
    { "ERG", "Ergo System" },
    { "ERI", "Ericsson Mobile Communications AB" },
    { "ERN", "Ericsson, Inc." },
    { "ERP", "Euraplan GmbH" },
    { "ERT", "Escort Insturments Corporation" },
    { "ESA", "Elbit Systems of America" },
    { "ESC", "Eden Sistemas de Computacao S/A" },
    { "ESD", "Ensemble Designs, Inc" },
    { "ESG", "ELCON Systemtechnik GmbH" },
    { "ESI", "Extended Systems, Inc." },
    { "ESK", "ES&S" },
    { "ESL", "Esterline Technologies" },
    { "ESN", "eSATURNUS" },
    { "ESS", "ESS Technology Inc" },
    { "EST", "Embedded Solution Technology" },
    { "ESY", "E-Systems Inc" },
    { "ETC", "Everton Technology Company Ltd" },
    { "ETD", "ELAN MICROELECTRONICS CORPORATION" },
    { "ETH", "Etherboot Project" },
    { "ETI", "Eclipse Tech Inc" },
    { "ETK", "eTEK Labs Inc." },
    { "ETL", "Evertz Microsystems Ltd." },
    { "ETS", "Electronic Trade Solutions Ltd" },
    { "ETT", "E-Tech Inc" },
    { "EUT", "Ericsson Mobile Networks B.V." },
    { "EVE", "Advanced Micro Peripherals Ltd" },
    { "EVI", "eviateg GmbH" },
    { "EVX", "Everex" },
    { "EXA", "Exabyte" },
    { "EXC", "Excession Audio" },
    { "EXI", "Exide Electronics" },
    { "EXN", "RGB Systems, Inc. dba Extron Electronics" },
    { "EXP", "Data Export Corporation" },
    { "EXT", "Exatech Computadores & Servicos Ltda" },
    { "EXX", "Exxact GmbH" },
    { "EXY", "Exterity Ltd" },
    { "EYE", "eyevis GmbH" },
    { "EZE", "EzE Technologies" },
    { "EZP", "Storm Technology" },
    { "FAR", "Farallon Computing" },
    { "FBI", "Interface Corporation" },
    { "FCB", "Furukawa Electric Company Ltd" },
    { "FCG", "First International Computer Ltd" },
    { "FCS", "Focus Enhancements, Inc." },
    { "FDC", "Future Domain" },
    { "FDT", "Fujitsu Display Technologies Corp." },
    { "FEC", "FURUNO ELECTRIC CO., LTD." },
    { "FEL", "Fellowes & Questec" },
    { "FEN", "Fen Systems Ltd." },
    { "FER", "Ferranti Int'L" },
    { "FFC", "FUJIFILM Corporation" },
    { "FFI", "Fairfield Industries" },
    { "FGD", "Lisa Draexlmaier GmbH" },
    { "FGL", "Fujitsu General Limited." },
    { "FHL", "FHLP" },
    { "FIC", "Formosa Industrial Computing Inc" },
    { "FIL", "Forefront Int'l Ltd" },
    { "FIN", "Finecom Co., Ltd." },
    { "FIR", "Chaplet Systems Inc" },
    { "FIS", "FLY-IT Simulators" },
    { "FIT", "Feature Integration Technology Inc." },
    { "FJC", "Fujitsu Takamisawa Component Limited" },
    { "FJS", "Fujitsu Spain" },
    { "FJT", "F.J. Tieman BV" },
    { "FLE", "ADTI Media, Inc" },
    { "FLI", "Faroudja Laboratories" },
    { "FLY", "Butterfly Communications" },
    { "FMA", "Fast Multimedia AG" },
    { "FMC", "Ford Microelectronics Inc" },
    { "FMI", "Fujitsu Microelect Inc" },
    { "FML", "Fujitsu Microelect Ltd" },
    { "FMZ", "Formoza-Altair" },
    { "FNC", "Fanuc LTD" },
    { "FNI", "Funai Electric Co., Ltd." },
    { "FOA", "FOR-A Company Limited" },
    { "FOS", "Foss Tecator" },
    { "FOX", "HON HAI PRECISON IND.CO.,LTD." },
    { "FPE", "Fujitsu Peripherals Ltd" },
    { "FPS", "Deltec Corporation" },
    { "FPX", "Cirel Systemes" },
    { "FRC", "Force Computers" },
    { "FRD", "Freedom Scientific BLV" },
    { "FRE", "Forvus Research Inc" },
    { "FRI", "Fibernet Research Inc" },
    { "FRO", "FARO Technologies" },
    { "FRS", "South Mountain Technologies, LTD" },
    { "FSC", "Future Systems Consulting KK" },
    { "FSI", "Fore Systems Inc" },
    { "FST", "Modesto PC Inc" },
    { "FTC", "Futuretouch Corporation" },
    { "FTE", "Frontline Test Equipment Inc." },
    { "FTG", "FTG Data Systems" },
    { "FTI", "FastPoint Technologies, Inc." },
    { "FTL", "FUJITSU TEN LIMITED" },
    { "FTN", "Fountain Technologies Inc" },
    { "FTR", "Mediasonic" },
    { "FTW", "MindTribe Product Engineering, Inc." },
    { "FUJ", "Fujitsu Ltd" },
    { "FUN", "sisel muhendislik" },
    { "FUS", "Fujitsu Siemens Computers GmbH" },
    { "FVC", "First Virtual Corporation" },
    { "FVX", "C-C-C Group Plc" },
    { "FWA", "Attero Tech, LLC" },
    { "FWR", "Flat Connections Inc" },
    { "FXX", "Fuji Xerox" },
    { "FZC", "Founder Group Shenzhen Co." },
    { "FZI", "FZI Forschungszentrum Informatik" },
    { "GAG", "Gage Applied Sciences Inc" },
    { "GAL", "Galil Motion Control" },
    { "GAU", "Gaudi Co., Ltd." },
    { "GCC", "GCC Technologies Inc" },
    { "GCI", "Gateway Comm. Inc" },
    { "GCS", "Grey Cell Systems Ltd" },
    { "GDC", "General Datacom" },
    { "GDI", "G. Diehl ISDN GmbH" },
    { "GDS", "GDS" },
    { "GDT", "Vortex Computersysteme GmbH" },
    { "GED", "General Dynamics C4 Systems" },
    { "GEF", "GE Fanuc Embedded Systems" },
    { "GEH", "GE Intelligent Platforms - Huntsville" },
    { "GEM", "Gem Plus" },
    { "GEN", "Genesys ATE Inc" },
    { "GEO", "GEO Sense" },
    { "GER", "GERMANEERS GmbH" },
    { "GES", "GES Singapore Pte Ltd" },
    { "GET", "Getac Technology Corporation" },
    { "GFM", "GFMesstechnik GmbH" },
    { "GFN", "Gefen Inc." },
    { "GGL", "Google Inc." },
    { "GIC", "General Inst. Corporation" },
    { "GIM", "Guillemont International" },
    { "GIP", "GI Provision Ltd" },
    { "GIS", "AT&T Global Info Solutions" },
    { "GJN", "Grand Junction Networks" },
    { "GLD", "Goldmund - Digital Audio SA" },
    { "GLE", "AD electronics" },
    { "GLM", "Genesys Logic" },
    { "GLS", "Gadget Labs LLC" },
    { "GMK", "GMK Electronic Design GmbH" },
    { "GML", "General Information Systems" },
    { "GMM", "GMM Research Inc" },
    { "GMN", "GEMINI 2000 Ltd" },
    { "GMX", "GMX Inc" },
    { "GND", "Gennum Corporation" },
    { "GNN", "GN Nettest Inc" },
    { "GNZ", "Gunze Ltd" },
    { "GRA", "Graphica Computer" },
    { "GRE", "GOLD RAIN ENTERPRISES CORP." },
    { "GRH", "Granch Ltd" },
    { "GRM", "Garmin International" },
    { "GRV", "Advanced Gravis" },
    { "GRY", "Robert Gray Company" },
    { "GSB", "NIPPONDENCHI CO,.LTD" },
    { "GSC", "General Standards Corporation" },
    { "GSM", "LG Electronics" },
    { "GST", "Graphic SystemTechnology" },
    { "GSY", "Grossenbacher Systeme AG" },
    { "GTC", "Graphtec Corporation" },
    { "GTI", "Goldtouch" },
    { "GTK", "G-Tech Corporation" },
    { "GTM", "Garnet System Company Ltd" },
    { "GTS", "Geotest Marvin Test Systems Inc" },
    { "GTT", "General Touch Technology Co., Ltd." },
    { "GUD", "Guntermann & Drunck GmbH" },
    { "GUZ", "Guzik Technical Enterprises" },
    { "GVC", "GVC Corporation" },
    { "GVL", "Global Village Communication" },
    { "GWI", "GW Instruments" },
    { "GWY", "Gateway 2000" },
    { "GZE", "GUNZE Limited" },
    { "HAE", "Haider electronics" },
    { "HAI", "Haivision Systems Inc." },
    { "HAL", "Halberthal" },
    { "HAN", "Hanchang System Corporation" },
    { "HAR", "Harris Corporation" },
    { "HAY", "Hayes Microcomputer Products Inc" },
    { "HCA", "DAT" },
    { "HCE", "Hitachi Consumer Electronics Co., Ltd" },
    { "HCL", "HCL America Inc" },
    { "HCM", "HCL Peripherals" },
    { "HCP", "Hitachi Computer Products Inc" },
    { "HCW", "Hauppauge Computer Works Inc" },
    { "HDC", "HardCom Elektronik & Datateknik" },
    { "HDI", "HD-INFO d.o.o." },
    { "HDV", "Holografika kft." },
    { "HEC", "Hitachi Engineering Company Ltd" },
    { "HEL", "Hitachi Micro Systems Europe Ltd" },
    { "HER", "Ascom Business Systems" },
    { "HET", "HETEC Datensysteme GmbH" },
    { "HHC", "HIRAKAWA HEWTECH CORP." },
    { "HHI", "Fraunhofer Heinrich-Hertz-Institute" },
    { "HIB", "Hibino Corporation" },
    { "HIC", "Hitachi Information Technology Co., Ltd." },
    { "HIK", "Hikom Co., Ltd." },
    { "HIL", "Hilevel Technology" },
    { "HIQ", "Kaohsiung Opto Electronics Americas, Inc." },
    { "HIT", "Hitachi America Ltd" },
    { "HJI", "Harris & Jeffries Inc" },
    { "HKA", "HONKO MFG. CO., LTD." },
    { "HKG", "Josef Heim KG" },
    { "HMC", "Hualon Microelectric Corporation" },
    { "HMK", "hmk Daten-System-Technik BmbH" },
    { "HMX", "HUMAX Co., Ltd." },
    { "HNS", "Hughes Network Systems" },
    { "HOB", "HOB Electronic GmbH" },
    { "HOE", "Hosiden Corporation" },
    { "HOL", "Holoeye Photonics AG" },
    { "HON", "Sonitronix" },
    { "HPA", "Zytor Communications" },
    { "HPC", "Hewlett Packard Co." },
    { "HPD", "Hewlett Packard" },
    { "HPI", "Headplay, Inc." },
    { "HPK", "HAMAMATSU PHOTONICS K.K." },
    { "HPQ", "HP" },
    { "HPR", "H.P.R. Electronics GmbH" },
    { "HRC", "Hercules" },
    { "HRE", "Qingdao Haier Electronics Co., Ltd." },
    { "HRI", "Hall Research" },
    { "HRL", "Herolab GmbH" },
    { "HRS", "Harris Semiconductor" },
    { "HRT", "HERCULES" },
    { "HSC", "Hagiwara Sys-Com Company Ltd" },
    { "HSD", "HannStar Display Corp" },
    { "HSM", "AT&T Microelectronics" },
    { "HSP", "HannStar Display Corp" },
    { "HTC", "Hitachi Ltd" },
    { "HTI", "Hampshire Company, Inc." },
    { "HTK", "Holtek Microelectronics Inc" },
    { "HTX", "Hitex Systementwicklung GmbH" },
    { "HUB", "GAI-Tronics, A Hubbell Company" },
    { "HUM", "IMP Electronics Ltd." },
    { "HWA", "Harris Canada Inc" },
    { "HWC", "DBA Hans Wedemeyer" },
    { "HWD", "Highwater Designs Ltd" },
    { "HWP", "Hewlett Packard" },
    { "HXM", "Hexium Ltd." },
    { "HYC", "Hypercope Gmbh Aachen" },
    { "HYD", "Hydis Technologies.Co.,LTD" },
    { "HYO", "HYC CO., LTD." },
    { "HYP", "Hyphen Ltd" },
    { "HYR", "Hypertec Pty Ltd" },
    { "HYT", "Heng Yu Technology (HK) Limited" },
    { "HYV", "Hynix Semiconductor" },
    { "IAF", "Institut f r angewandte Funksystemtechnik GmbH" },
    { "IAI", "Integration Associates, Inc." },
    { "IAT", "IAT Germany GmbH" },
    { "IBC", "Integrated Business Systems" },
    { "IBI", "INBINE.CO.LTD" },
    { "IBM", "IBM France" },
    { "IBP", "IBP Instruments GmbH" },
    { "IBR", "IBR GmbH" },
    { "ICA", "ICA Inc" },
    { "ICC", "BICC Data Networks Ltd" },
    { "ICD", "ICD Inc" },
    { "ICE", "IC Ensemble" },
    { "ICI", "Infotek Communication Inc" },
    { "ICM", "Intracom SA" },
    { "ICN", "Sanyo Icon" },
    { "ICO", "Intel Corp" },
    { "ICP", "ICP Electronics, Inc./iEi Technology Corp." },
    { "ICS", "Integrated Circuit Systems" },
    { "ICV", "Inside Contactless" },
    { "ICX", "ICCC A/S" },
    { "IDC", "International Datacasting Corporation" },
    { "IDE", "IDE Associates" },
    { "IDK", "IDK Corporation" },
    { "IDN", "Idneo Technologies" },
    { "IDO", "IDEO Product Development" },
    { "IDP", "Integrated Device Technology, Inc." },
    { "IDS", "Interdigital Sistemas de Informacao" },
    { "IDT", "International Display Technology" },
    { "IDX", "IDEXX Labs" },
    { "IEC", "Interlace Engineering Corporation" },
    { "IEE", "IEE" },
    { "IEI", "Interlink Electronics" },
    { "IFS", "In Focus Systems Inc" },
    { "IFT", "Informtech" },
    { "IFX", "Infineon Technologies AG" },
    { "IFZ", "Infinite Z" },
    { "IGC", "Intergate Pty Ltd" },
    { "IGM", "IGM Communi" },
    { "IHE", "InHand Electronics" },
    { "IIC", "ISIC Innoscan Industrial Computers A/S" },
    { "III", "Intelligent Instrumentation" },
    { "IIN", "IINFRA Co., Ltd" },
    { "IKS", "Ikos Systems Inc" },
    { "ILC", "Image Logic Corporation" },
    { "ILS", "Innotech Corporation" },
    { "IMA", "Imagraph" },
    { "IMB", "ART s.r.l." },
    { "IMC", "IMC Networks" },
    { "IMD", "ImasDe Canarias S.A." },
    { "IME", "Imagraph" },
    { "IMG", "IMAGENICS Co., Ltd." },
    { "IMI", "International Microsystems Inc" },
    { "IMM", "Immersion Corporation" },
    { "IMN", "Impossible Production" },
    { "IMP", "Impression Products Incorporated" },
    { "IMT", "Inmax Technology Corporation" },
    { "INC", "Home Row Inc" },
    { "IND", "ILC" },
    { "INE", "Inventec Electronics (M) Sdn. Bhd." },
    { "INF", "Inframetrics Inc" },
    { "ING", "Integraph Corporation" },
    { "INI", "Initio Corporation" },
    { "INK", "Indtek Co., Ltd." },
    { "INL", "InnoLux Display Corporation" },
    { "INM", "InnoMedia Inc" },
    { "INN", "Innovent Systems, Inc." },
    { "INO", "Innolab Pte Ltd" },
    { "INP", "Interphase Corporation" },
    { "INS", "Ines GmbH" },
    { "INT", "Interphase Corporation" },
    { "INU", "Inovatec S.p.A." },
    { "INV", "Inviso, Inc." },
    { "INX", "Communications Supply Corporation (A division of WESCO)" },
    { "INZ", "Best Buy" },
    { "IOA", "CRE Technology Corporation" },
    { "IOD", "I-O Data Device Inc" },
    { "IOM", "Iomega" },
    { "ION", "Inside Out Networks" },
    { "IOS", "i-O Display System" },
    { "IOT", "I/OTech Inc" },
    { "IPC", "IPC Corporation" },
    { "IPD", "Industrial Products Design, Inc." },
    { "IPI", "Intelligent Platform Management Interface (IPMI) forum (Intel, HP, NEC, Dell)" },
    { "IPM", "IPM Industria Politecnica Meridionale SpA" },
    { "IPN", "Performance Technologies" },
    { "IPP", "IP Power Technologies GmbH" },
    { "IPR", "Ithaca Peripherals" },
    { "IPS", "IPS, Inc. (Intellectual Property Solutions, Inc.)" },
    { "IPT", "International Power Technologies" },
    { "IPW", "IPWireless, Inc" },
    { "IQI", "IneoQuest Technologies, Inc" },
    { "IQT", "IMAGEQUEST Co., Ltd" },
    { "IRD", "IRdata" },
    { "ISA", "Symbol Technologies" },
    { "ISC", "Id3 Semiconductors" },
    { "ISG", "Insignia Solutions Inc" },
    { "ISI", "Interface Solutions" },
    { "ISL", "Isolation Systems" },
    { "ISM", "Image Stream Medical" },
    { "ISP", "IntreSource Systems Pte Ltd" },
    { "ISR", "INSIS Co., LTD." },
    { "ISS", "ISS Inc" },
    { "IST", "Intersolve Technologies" },
    { "ISY", "International Integrated Systems,Inc.(IISI)" },
    { "ITA", "Itausa Export North America" },
    { "ITC", "Intercom Inc" },
    { "ITD", "Internet Technology Corporation" },
    { "ITE", "Integrated Tech Express Inc" },
    { "ITK", "ITK Telekommunikation AG" },
    { "ITL", "Inter-Tel" },
    { "ITM", "ITM inc." },
    { "ITN", "The NTI Group" },
    { "ITP", "IT-PRO Consulting und Systemhaus GmbH" },
    { "ITR", "Infotronic America, Inc." },
    { "ITS", "IDTECH" },
    { "ITT", "I&T Telecom." },
    { "ITX", "integrated Technology Express Inc" },
    { "IUC", "ICSL" },
    { "IVI", "Intervoice Inc" },
    { "IVM", "Iiyama North America" },
    { "IVS", "Intevac Photonics Inc." },
    { "IWR", "Icuiti Corporation" },
    { "IWX", "Intelliworxx, Inc." },
    { "IXD", "Intertex Data AB" },
    { "JAC", "Astec Inc" },
    { "JAE", "Japan Aviation Electronics Industry, Limited" },
    { "JAS", "Janz Automationssysteme AG" },
    { "JAT", "Jaton Corporation" },
    { "JAZ", "Carrera Computer Inc" },
    { "JCE", "Jace Tech Inc" },
    { "JDL", "Japan Digital Laboratory Co.,Ltd." },
    { "JEN", "N-Vision" },
    { "JET", "JET POWER TECHNOLOGY CO., LTD." },
    { "JFX", "Jones Futurex Inc" },
    { "JGD", "University College" },
    { "JIC", "Jaeik Information & Communication Co., Ltd." },
    { "JKC", "JVC KENWOOD Corporation" },
    { "JMT", "Micro Technical Company Ltd" },
    { "JPC", "JPC Technology Limited" },
    { "JPW", "Wallis Hamilton Industries" },
    { "JQE", "CNet Technical Inc" },
    { "JSD", "JS DigiTech, Inc" },
    { "JSI", "Jupiter Systems, Inc." },
    { "JSK", "SANKEN ELECTRIC CO., LTD" },
    { "JTS", "JS Motorsports" },
    { "JTY", "jetway security micro,inc" },
    { "JUK", "Janich & Klass Computertechnik GmbH" },
    { "JUP", "Jupiter Systems" },
    { "JVC", "JVC" },
    { "JWD", "Video International Inc." },
    { "JWL", "Jewell Instruments, LLC" },
    { "JWS", "JWSpencer & Co." },
    { "JWY", "Jetway Information Co., Ltd" },
    { "KAR", "Karna" },
    { "KBI", "Kidboard Inc" },
    { "KBL", "Kobil Systems GmbH" },
    { "KCD", "Chunichi Denshi Co.,LTD." },
    { "KCL", "Keycorp Ltd" },
    { "KDE", "KDE" },
    { "KDK", "Kodiak Tech" },
    { "KDM", "Korea Data Systems Co., Ltd." },
    { "KDS", "KDS USA" },
    { "KDT", "KDDI Technology Corporation" },
    { "KEC", "Kyushu Electronics Systems Inc" },
    { "KEM", "Kontron Embedded Modules GmbH" },
    { "KES", "Kesa Corporation" },
    { "KEY", "Key Tech Inc" },
    { "KFC", "SCD Tech" },
    { "KFE", "Komatsu Forest" },
    { "KFX", "Kofax Image Products" },
    { "KGL", "KEISOKU GIKEN Co.,Ltd." },
    { "KIS", "KiSS Technology A/S" },
    { "KMC", "Mitsumi Company Ltd" },
    { "KME", "KIMIN Electronics Co., Ltd." },
    { "KML", "Kensington Microware Ltd" },
    { "KNC", "Konica corporation" },
    { "KNX", "Nutech Marketing PTL" },
    { "KOB", "Kobil Systems GmbH" },
    { "KOD", "Eastman Kodak Company" },
    { "KOE", "KOLTER ELECTRONIC" },
    { "KOL", "Kollmorgen Motion Technologies Group" },
    { "KOU", "KOUZIRO Co.,Ltd." },
    { "KOW", "KOWA Company,LTD." },
    { "KPC", "King Phoenix Company" },
    { "KRL", "Krell Industries Inc." },
    { "KRM", "Kroma Telecom" },
    { "KRY", "Kroy LLC" },
    { "KSC", "Kinetic Systems Corporation" },
    { "KSL", "Karn Solutions Ltd." },
    { "KSX", "King Tester Corporation" },
    { "KTC", "Kingston Tech Corporation" },
    { "KTD", "Takahata Electronics Co.,Ltd." },
    { "KTE", "K-Tech" },
    { "KTG", "Kayser-Threde GmbH" },
    { "KTI", "Konica Technical Inc" },
    { "KTK", "Key Tronic Corporation" },
    { "KTN", "Katron Tech Inc" },
    { "KUR", "Kurta Corporation" },
    { "KVA", "Kvaser AB" },
    { "KVX", "KeyView" },
    { "KWD", "Kenwood Corporation" },
    { "KYC", "Kyocera Corporation" },
    { "KYE", "KYE Syst Corporation" },
    { "KYK", "Samsung Electronics America Inc" },
    { "KZI", "K-Zone International co. Ltd." },
    { "KZN", "K-Zone International" },
    { "LAB", "ACT Labs Ltd" },
    { "LAC", "LaCie" },
    { "LAF", "Microline" },
    { "LAG", "Laguna Systems" },
    { "LAN", "Sodeman Lancom Inc" },
    { "LAS", "LASAT Comm. A/S" },
    { "LAV", "Lava Computer MFG Inc" },
    { "LBO", "Lubosoft" },
    { "LCC", "LCI" },
    { "LCD", "Toshiba Matsushita Display Technology Co., Ltd" },
    { "LCE", "La Commande Electronique" },
    { "LCI", "Lite-On Communication Inc" },
    { "LCM", "Latitude Comm." },
    { "LCN", "LEXICON" },
    { "LCS", "Longshine Electronics Company" },
    { "LCT", "Labcal Technologies" },
    { "LDT", "LogiDataTech Electronic GmbH" },
    { "LEC", "Lectron Company Ltd" },
    { "LED", "Long Engineering Design Inc" },
    { "LEG", "Legerity, Inc" },
    { "LEN", "Lenovo Group Limited" },
    { "LEO", "First International Computer Inc" },
    { "LEX", "Lexical Ltd" },
    { "LGC", "Logic Ltd" },
    { "LGI", "Logitech Inc" },
    { "LGS", "LG Semicom Company Ltd" },
    { "LGX", "Lasergraphics, Inc." },
    { "LHA", "Lars Haagh ApS" },
    { "LHE", "Lung Hwa Electronics Company Ltd" },
    { "LHT", "Lighthouse Technologies Limited" },
    { "LIN", "Lenovo Beijing Co. Ltd." },
    { "LIP", "Linked IP GmbH" },
    { "LIT", "Lithics Silicon Technology" },
    { "LJX", "Datalogic Corporation" },
    { "LKM", "Likom Technology Sdn. Bhd." },
    { "LLL", "L-3 Communications" },
    { "LMG", "Lucent Technologies" },
    { "LMI", "Lexmark Int'l Inc" },
    { "LMP", "Leda Media Products" },
    { "LMT", "Laser Master" },
    { "LND", "Land Computer Company Ltd" },
    { "LNK", "Link Tech Inc" },
    { "LNR", "Linear Systems Ltd." },
    { "LNT", "LANETCO International" },
    { "LNV", "Lenovo" },
    { "LOC", "Locamation B.V." },
    { "LOE", "Loewe Opta GmbH" },
    { "LOG", "Logicode Technology Inc" },
    { "LOL", "Litelogic Operations Ltd" },
    { "LPE", "El-PUSK Co., Ltd." },
    { "LPI", "Design Technology" },
    { "LPL", "LG Philips" },
    { "LSC", "LifeSize Communications" },
    { "LSD", "Intersil Corporation" },
    { "LSI", "Loughborough Sound Images" },
    { "LSJ", "LSI Japan Company Ltd" },
    { "LSL", "Logical Solutions" },
    { "LSY", "LSI Systems Inc" },
    { "LTC", "Labtec Inc" },
    { "LTI", "Jongshine Tech Inc" },
    { "LTK", "Lucidity Technology Company Ltd" },
    { "LTN", "Litronic Inc" },
    { "LTS", "LTS Scale LLC" },
    { "LTV", "Leitch Technology International Inc." },
    { "LTW", "Lightware, Inc" },
    { "LUC", "Lucent Technologies" },
    { "LUM", "Lumagen, Inc." },
    { "LUX", "Luxxell Research Inc" },
    { "LVI", "LVI Low Vision International AB" },
    { "LWC", "Labway Corporation" },
    { "LWR", "Lightware Visual Engineering" },
    { "LWW", "Lanier Worldwide" },
    { "LXC", "LXCO Technologies AG" },
    { "LXN", "Luxeon" },
    { "LXS", "ELEA CardWare" },
    { "LZX", "Lightwell Company Ltd" },
    { "MAC", "MAC System Company Ltd" },
    { "MAD", "Xedia Corporation" },
    { "MAE", "Maestro Pty Ltd" },
    { "MAG", "MAG InnoVision" },
    { "MAI", "Mutoh America Inc" },
    { "MAL", "Meridian Audio Ltd" },
    { "MAN", "LGIC" },
    { "MAS", "Mass Inc." },
    { "MAT", "Matsushita Electric Ind. Company Ltd" },
    { "MAX", "Rogen Tech Distribution Inc" },
    { "MAY", "Maynard Electronics" },
    { "MAZ", "MAZeT GmbH" },
    { "MBC", "MBC" },
    { "MBD", "Microbus PLC" },
    { "MBM", "Marshall Electronics" },
    { "MBV", "Moreton Bay" },
    { "MCA", "American Nuclear Systems Inc" },
    { "MCC", "Micro Industries" },
    { "MCD", "McDATA Corporation" },
    { "MCE", "Metz-Werke GmbH & Co KG" },
    { "MCG", "Motorola Computer Group" },
    { "MCI", "Micronics Computers" },
    { "MCL", "Motorola Communications Israel" },
    { "MCM", "Metricom Inc" },
    { "MCN", "Micron Electronics Inc" },
    { "MCO", "Motion Computing Inc." },
    { "MCP", "Magni Systems Inc" },
    { "MCQ", "Mat's Computers" },
    { "MCR", "Marina Communicaitons" },
    { "MCS", "Micro Computer Systems" },
    { "MCT", "Microtec" },
    { "MDA", "Media4 Inc" },
    { "MDC", "Midori Electronics" },
    { "MDD", "MODIS" },
    { "MDG", "Madge Networks" },
    { "MDI", "Micro Design Inc" },
    { "MDK", "Mediatek Corporation" },
    { "MDO", "Panasonic" },
    { "MDR", "Medar Inc" },
    { "MDS", "Micro Display Systems Inc" },
    { "MDT", "Magus Data Tech" },
    { "MDV", "MET Development Inc" },
    { "MDX", "MicroDatec GmbH" },
    { "MDY", "Microdyne Inc" },
    { "MEC", "Mega System Technologies Inc" },
    { "MED", "Messeltronik Dresden GmbH" },
    { "MEE", "Mitsubishi Electric Engineering Co., Ltd." },
    { "MEG", "Abeam Tech Ltd" },
    { "MEI", "Panasonic Industry Company" },
    { "MEJ", "Mac-Eight Co., LTD." },
    { "MEL", "Mitsubishi Electric Corporation" },
    { "MEN", "MEN Mikroelectronik Nueruberg GmbH" },
    { "MEP", "Meld Technology" },
    { "MEQ", "Matelect Ltd." },
    { "MET", "Metheus Corporation" },
    { "MEX", "MSC Vertriebs GmbH" },
    { "MFG", "MicroField Graphics Inc" },
    { "MFI", "Micro Firmware" },
    { "MFR", "MediaFire Corp." },
    { "MGA", "Mega System Technologies, Inc." },
    { "MGC", "Mentor Graphics Corporation" },
    { "MGE", "Schneider Electric S.A." },
    { "MGL", "M-G Technology Ltd" },
    { "MGT", "Megatech R & D Company" },
    { "MIC", "Micom Communications Inc" },
    { "MID", "miro Displays" },
    { "MII", "Mitec Inc" },
    { "MIL", "Marconi Instruments Ltd" },
    { "MIM", "Mimio – A Newell Rubbermaid Company" },
    { "MIN", "Minicom Digital Signage" },
    { "MIP", "micronpc.com" },
    { "MIR", "Miro Computer Prod." },
    { "MIS", "Modular Industrial Solutions Inc" },
    { "MIT", "MCM Industrial Technology GmbH" },
    { "MJI", "MARANTZ JAPAN, INC." },
    { "MJS", "MJS Designs" },
    { "MKC", "Media Tek Inc." },
    { "MKT", "MICROTEK Inc." },
    { "MKV", "Trtheim Technology" },
    { "MLD", "Deep Video Imaging Ltd" },
    { "MLG", "Micrologica AG" },
    { "MLI", "McIntosh Laboratory Inc." },
    { "MLM", "Millennium Engineering Inc" },
    { "MLN", "Mark Levinson" },
    { "MLS", "Milestone EPE" },
    { "MLX", "Mylex Corporation" },
    { "MMA", "Micromedia AG" },
    { "MMD", "Micromed Biotecnologia Ltd" },
    { "MMF", "Minnesota Mining and Manufacturing" },
    { "MMI", "Multimax" },
    { "MMM", "Electronic Measurements" },
    { "MMN", "MiniMan Inc" },
    { "MMS", "MMS Electronics" },
    { "MNC", "Mini Micro Methods Ltd" },
    { "MNL", "Monorail Inc" },
    { "MNP", "Microcom" },
    { "MOD", "Modular Technology" },
    { "MOM", "Momentum Data Systems" },
    { "MOS", "Moses Corporation" },
    { "MOT", "Motorola UDS" },
    { "MPC", "M-Pact Inc" },
    { "MPI", "Mediatrix Peripherals Inc" },
    { "MPJ", "Microlab" },
    { "MPL", "Maple Research Inst. Company Ltd" },
    { "MPN", "Mainpine Limited" },
    { "MPS", "mps Software GmbH" },
    { "MPX", "Micropix Technologies, Ltd." },
    { "MQP", "MultiQ Products AB" },
    { "MRA", "Miranda Technologies Inc" },
    { "MRC", "Marconi Simulation & Ty-Coch Way Training" },
    { "MRD", "MicroDisplay Corporation" },
    { "MRK", "Maruko & Company Ltd" },
    { "MRL", "Miratel" },
    { "MRO", "Medikro Oy" },
    { "MRT", "Merging Technologies" },
    { "MSA", "Micro Systemation AB" },
    { "MSC", "Mouse Systems Corporation" },
    { "MSD", "Datenerfassungs- und Informationssysteme" },
    { "MSF", "M-Systems Flash Disk Pioneers" },
    { "MSG", "MSI GmbH" },
    { "MSH", "Microsoft" },
    { "MSI", "Microstep" },
    { "MSK", "Megasoft Inc" },
    { "MSL", "MicroSlate Inc." },
    { "MSM", "Advanced Digital Systems" },
    { "MSP", "Mistral Solutions [P] Ltd." },
    { "MSR", "MASPRO DENKOH Corp." },
    { "MST", "MS Telematica" },
    { "MSU", "motorola" },
    { "MSV", "Mosgi Corporation" },
    { "MSX", "Micomsoft Co., Ltd." },
    { "MSY", "MicroTouch Systems Inc" },
    { "MTB", "Media Technologies Ltd." },
    { "MTC", "Mars-Tech Corporation" },
    { "MTD", "MindTech Display Co. Ltd" },
    { "MTE", "MediaTec GmbH" },
    { "MTH", "Micro-Tech Hearing Instruments" },
    { "MTI", "Motorola Inc." },
    { "MTK", "Microtek International Inc." },
    { "MTL", "Mitel Corporation" },
    { "MTM", "Motium" },
    { "MTN", "Mtron Storage Technology Co., Ltd." },
    { "MTR", "Mitron computer Inc" },
    { "MTS", "Multi-Tech Systems" },
    { "MTU", "Mark of the Unicorn Inc" },
    { "MTX", "Matrox" },
    { "MUD", "Multi-Dimension Institute" },
    { "MUK", "mainpine limited" },
    { "MVD", "Microvitec PLC" },
    { "MVI", "Media Vision Inc" },
    { "MVM", "SOBO VISION" },
    { "MVS", "Microvision" },
    { "MVX", "COM 1" },
    { "MWI", "Multiwave Innovation Pte Ltd" },
    { "MWR", "mware" },
    { "MWY", "Microway Inc" },
    { "MXD", "MaxData Computer GmbH & Co.KG" },
    { "MXI", "Macronix Inc" },
    { "MXL", "Hitachi Maxell, Ltd." },
    { "MXP", "Maxpeed Corporation" },
    { "MXT", "Maxtech Corporation" },
    { "MXV", "MaxVision Corporation" },
    { "MYA", "Monydata" },
    { "MYR", "Myriad Solutions Ltd" },
    { "MYX", "Micronyx Inc" },
    { "NAC", "Ncast Corporation" },
    { "NAD", "NAD Electronics" },
    { "NAK", "Nakano Engineering Co.,Ltd." },
    { "NAL", "Network Alchemy" },
    { "NAT", "NaturalPoint Inc." },
    { "NAV", "Navigation Corporation" },
    { "NAX", "Naxos Tecnologia" },
    { "NBL", "N*Able Technologies Inc" },
    { "NBS", "National Key Lab. on ISN" },
    { "NBT", "NingBo Bestwinning Technology CO., Ltd" },
    { "NCA", "Nixdorf Company" },
    { "NCC", "NCR Corporation" },
    { "NCE", "Norcent Technology, Inc." },
    { "NCI", "NewCom Inc" },
    { "NCL", "NetComm Ltd" },
    { "NCR", "NCR Electronics" },
    { "NCS", "Northgate Computer Systems" },
    { "NCT", "NEC CustomTechnica, Ltd." },
    { "NDC", "National DataComm Corporaiton" },
    { "NDI", "National Display Systems" },
    { "NDK", "Naitoh Densei CO., LTD." },
    { "NDL", "Network Designers" },
    { "NDS", "Nokia Data" },
    { "NEC", "NEC Corporation" },
    { "NEO", "NEO TELECOM CO.,LTD." },
    { "NET", "Mettler Toledo" },
    { "NEU", "NEUROTEC - EMPRESA DE PESQUISA E DESENVOLVIMENTO EM BIOMEDICINA" },
    { "NEX", "Nexgen Mediatech Inc.," },
    { "NFC", "BTC Korea Co., Ltd" },
    { "NFS", "Number Five Software" },
    { "NGC", "Network General" },
    { "NGS", "A D S Exports" },
    { "NHT", "Vinci Labs" },
    { "NIC", "National Instruments Corporation" },
    { "NIS", "Nissei Electric Company" },
    { "NIT", "Network Info Technology" },
    { "NIX", "Seanix Technology Inc" },
    { "NLC", "Next Level Communications" },
    { "NME", "Navico, Inc." },
    { "NMP", "Nokia Mobile Phones" },
    { "NMS", "Natural Micro System" },
    { "NMV", "NEC-Mitsubishi Electric Visual Systems Corporation" },
    { "NMX", "Neomagic" },
    { "NNC", "NNC" },
    { "NOE", "NordicEye AB" },
    { "NOI", "North Invent A/S" },
    { "NOK", "Nokia Display Products" },
    { "NOR", "Norand Corporation" },
    { "NOT", "Not Limited Inc" },
    { "NPI", "Network Peripherals Inc" },
    { "NRL", "U.S. Naval Research Lab" },
    { "NRT", "Beijing Northern Radiantelecom Co." },
    { "NRV", "Taugagreining hf" },
    { "NSC", "National Semiconductor Corporation" },
    { "NSI", "NISSEI ELECTRIC CO.,LTD" },
    { "NSP", "Nspire System Inc." },
    { "NSS", "Newport Systems Solutions" },
    { "NST", "Network Security Technology Co" },
    { "NTC", "NeoTech S.R.L" },
    { "NTI", "New Tech Int'l Company" },
    { "NTL", "National Transcomm. Ltd" },
    { "NTN", "Nuvoton Technology Corporation" },
    { "NTR", "N-trig Innovative Technologies, Inc." },
    { "NTS", "Nits Technology Inc." },
    { "NTT", "NTT Advanced Technology Corporation" },
    { "NTW", "Networth Inc" },
    { "NTX", "Netaccess Inc" },
    { "NUG", "NU Technology, Inc." },
    { "NUI", "NU Inc." },
    { "NVC", "NetVision Corporation" },
    { "NVD", "Nvidia" },
    { "NVI", "NuVision US, Inc." },
    { "NVL", "Novell Inc" },
    { "NVT", "Navatek Engineering Corporation" },
    { "NWC", "NW Computer Engineering" },
    { "NWP", "NovaWeb Technologies Inc" },
    { "NWS", "Newisys, Inc." },
    { "NXC", "NextCom K.K." },
    { "NXG", "Nexgen" },
    { "NXP", "NXP Semiconductors bv." },
    { "NXQ", "Nexiq Technologies, Inc." },
    { "NXS", "Technology Nexus Secure Open Systems AB" },
    { "NYC", "nakayo telecommunications,inc." },
    { "OAK", "Oak Tech Inc" },
    { "OAS", "Oasys Technology Company" },
    { "OBS", "Optibase Technologies" },
    { "OCD", "Macraigor Systems Inc" },
    { "OCN", "Olfan" },
    { "OCS", "Open Connect Solutions" },
    { "ODM", "ODME Inc." },
    { "ODR", "Odrac" },
    { "OEC", "ORION ELECTRIC CO.,LTD" },
    { "OEI", "Optum Engineering Inc." },
    { "OIC", "Option Industrial Computers" },
    { "OIM", "Option International" },
    { "OIN", "Option International" },
    { "OKI", "OKI Electric Industrial Company Ltd" },
    { "OLC", "Olicom A/S" },
    { "OLD", "Olidata S.p.A." },
    { "OLI", "Olivetti" },
    { "OLT", "Olitec S.A." },
    { "OLV", "Olitec S.A." },
    { "OLY", "OLYMPUS CORPORATION" },
    { "OMC", "OBJIX Multimedia Corporation" },
    { "OMN", "Omnitel" },
    { "OMR", "Omron Corporation" },
    { "ONE", "Oneac Corporation" },
    { "ONK", "ONKYO Corporation" },
    { "ONL", "OnLive, Inc" },
    { "ONS", "On Systems Inc" },
    { "ONW", "OPEN Networks Ltd" },
    { "ONX", "SOMELEC Z.I. Du Vert Galanta" },
    { "OOS", "OSRAM" },
    { "OPC", "Opcode Inc" },
    { "OPI", "D.N.S. Corporation" },
    { "OPP", "OPPO Digital, Inc." },
    { "OPT", "OPTi Inc" },
    { "OPV", "Optivision Inc" },
    { "OQI", "Oksori Company Ltd" },
    { "ORG", "ORGA Kartensysteme GmbH" },
    { "ORI", "OSR Open Systems Resources, Inc." },
    { "ORN", "ORION ELECTRIC CO., LTD." },
    { "OSA", "OSAKA Micro Computer, Inc." },
    { "OSP", "OPTI-UPS Corporation" },
    { "OSR", "Oksori Company Ltd" },
    { "OTB", "outsidetheboxstuff.com" },
    { "OTI", "Orchid Technology" },
    { "OTM", "Optoma Corporation" },
    { "OTT", "OPTO22, Inc." },
    { "OUK", "OUK Company Ltd" },
    { "OVR", "Oculus VR, Inc." },
    { "OWL", "Mediacom Technologies Pte Ltd" },
    { "OXU", "Oxus Research S.A." },
    { "OYO", "Shadow Systems" },
    { "OZC", "OZ Corporation" },
    { "OZO", "Tribe Computer Works Inc" },
    { "PAC", "Pacific Avionics Corporation" },
    { "PAD", "Promotion and Display Technology Ltd." },
    { "PAK", "Many CNC System Co., Ltd." },
    { "PAM", "Peter Antesberger Messtechnik" },
    { "PAN", "The Panda Project" },
    { "PAR", "Parallan Comp Inc" },
    { "PBI", "Pitney Bowes" },
    { "PBL", "Packard Bell Electronics" },
    { "PBN", "Packard Bell NEC" },
    { "PBV", "Pitney Bowes" },
    { "PCA", "Philips BU Add On Card" },
    { "PCB", "OCTAL S.A." },
    { "PCC", "PowerCom Technology Company Ltd" },
    { "PCG", "First Industrial Computer Inc" },
    { "PCI", "Pioneer Computer Inc" },
    { "PCK", "PCBANK21" },
    { "PCL", "pentel.co.,ltd" },
    { "PCM", "PCM Systems Corporation" },
    { "PCO", "Performance Concepts Inc.," },
    { "PCP", "Procomp USA Inc" },
    { "PCS", "TOSHIBA PERSONAL COMPUTER SYSTEM CORPRATION" },
    { "PCT", "PC-Tel Inc" },
    { "PCW", "Pacific CommWare Inc" },
    { "PCX", "PC Xperten" },
    { "PDM", "Psion Dacom Plc." },
    { "PDN", "AT&T Paradyne" },
    { "PDR", "Pure Data Inc" },
    { "PDS", "PD Systems International Ltd" },
    { "PDT", "PDTS - Prozessdatentechnik und Systeme" },
    { "PDV", "Prodrive B.V." },
    { "PEC", "POTRANS Electrical Corp." },
    { "PEI", "PEI Electronics Inc" },
    { "PEL", "Primax Electric Ltd" },
    { "PEN", "Interactive Computer Products Inc" },
    { "PEP", "Peppercon AG" },
    { "PER", "Perceptive Signal Technologies" },
    { "PET", "Practical Electronic Tools" },
    { "PFT", "Telia ProSoft AB" },
    { "PGI", "PACSGEAR, Inc." },
    { "PGM", "Paradigm Advanced Research Centre" },
    { "PGP", "propagamma kommunikation" },
    { "PGS", "Princeton Graphic Systems" },
    { "PHC", "Pijnenburg Beheer N.V." },
    { "PHE", "Philips Medical Systems Boeblingen GmbH" },
    { "PHI", "DO NOT USE - PHI" },
    { "PHL", "Philips Consumer Electronics Company" },
    { "PHO", "Photonics Systems Inc." },
    { "PHS", "Philips Communication Systems" },
    { "PHY", "Phylon Communications" },
    { "PIE", "Pacific Image Electronics Company Ltd" },
    { "PIM", "Prism, LLC" },
    { "PIO", "Pioneer Electronic Corporation" },
    { "PIX", "Pixie Tech Inc" },
    { "PJA", "Projecta" },
    { "PJD", "Projectiondesign AS" },
    { "PJT", "Pan Jit International Inc." },
    { "PKA", "Acco UK ltd." },
    { "PLC", "Pro-Log Corporation" },
    { "PLF", "Panasonic Avionics Corporation" },
    { "PLM", "PROLINK Microsystems Corp." },
    { "PLT", "PT Hartono Istana Teknologi" },
    { "PLV", "PLUS Vision Corp." },
    { "PLX", "Parallax Graphics" },
    { "PLY", "Polycom Inc." },
    { "PMC", "PMC Consumer Electronics Ltd" },
    { "PMD", "TDK USA Corporation" },
    { "PMM", "Point Multimedia System" },
    { "PMT", "Promate Electronic Co., Ltd." },
    { "PMX", "Photomatrix" },
    { "PNG", "P.I. Engineering Inc" },
    { "PNL", "Panelview, Inc." },
    { "PNP", "Microsoft" },
    { "PNR", "Planar Systems, Inc." },
    { "PNS", "PanaScope" },
    { "PNX", "Phoenix Technologies, Ltd." },
    { "POL", "PolyComp (PTY) Ltd." },
    { "PON", "Perpetual Technologies, LLC" },
    { "POR", "Portalis LC" },
    { "PPC", "Phoenixtec Power Company Ltd" },
    { "PPD", "MEPhI" },
    { "PPI", "Practical Peripherals" },
    { "PPM", "Clinton Electronics Corp." },
    { "PPP", "Purup Prepress AS" },
    { "PPR", "PicPro" },
    { "PPX", "Perceptive Pixel Inc." },
    { "PQI", "Pixel Qi" },
    { "PRA", "PRO/AUTOMATION" },
    { "PRC", "PerComm" },
    { "PRD", "Praim S.R.L." },
    { "PRF", "Digital Electronics Corporation" },
    { "PRG", "The Phoenix Research Group Inc" },
    { "PRI", "Priva Hortimation BV" },
    { "PRM", "Prometheus" },
    { "PRO", "Proteon" },
    { "PRS", "Leutron Vision" },
    { "PRT", "Parade Technologies, Ltd." },
    { "PRX", "Proxima Corporation" },
    { "PSA", "Advanced Signal Processing Technologies" },
    { "PSC", "Philips Semiconductors" },
    { "PSD", "Peus-Systems GmbH" },
    { "PSE", "Practical Solutions Pte., Ltd." },
    { "PSI", "PSI-Perceptive Solutions Inc" },
    { "PSL", "Perle Systems Limited" },
    { "PSM", "Prosum" },
    { "PST", "Global Data SA" },
    { "PSY", "Prodea Systems Inc." },
    { "PTA", "PAR Tech Inc." },
    { "PTC", "PS Technology Corporation" },
    { "PTG", "Cipher Systems Inc" },
    { "PTH", "Pathlight Technology Inc" },
    { "PTI", "Promise Technology Inc" },
    { "PTL", "Pantel Inc" },
    { "PTS", "Plain Tree Systems Inc" },
    { "PTW", "DO NOT USE - PTW" },
    { "PUL", "Pulse-Eight Ltd" },
    { "PVC", "DO NOT USE - PVC" },
    { "PVG", "Proview Global Co., Ltd" },
    { "PVI", "Prime view international Co., Ltd" },
    { "PVM", "Penta Studiotechnik GmbH" },
    { "PVN", "Pixel Vision" },
    { "PVP", "Klos Technologies, Inc." },
    { "PXC", "Phoenix Contact" },
    { "PXE", "PIXELA CORPORATION" },
    { "PXL", "The Moving Pixel Company" },
    { "PXM", "Proxim Inc" },
    { "QCC", "QuakeCom Company Ltd" },
    { "QCH", "Metronics Inc" },
    { "QCI", "Quanta Computer Inc" },
    { "QCK", "Quick Corporation" },
    { "QCL", "Quadrant Components Inc" },
    { "QCP", "Qualcomm Inc" },
    { "QDI", "Quantum Data Incorporated" },
    { "QDM", "Quadram" },
    { "QDS", "Quanta Display Inc." },
    { "QFF", "Padix Co., Inc." },
    { "QFI", "Quickflex, Inc" },
    { "QLC", "Q-Logic" },
    { "QQQ", "Chuomusen Co., Ltd." },
    { "QSI", "Quantum Solutions, Inc." },
    { "QTD", "Quantum 3D Inc" },
    { "QTH", "Questech Ltd" },
    { "QTI", "Quicknet Technologies Inc" },
    { "QTM", "Quantum" },
    { "QTR", "Qtronix Corporation" },
    { "QUA", "Quatographic AG" },
    { "QUE", "Questra Consulting" },
    { "QVU", "Quartics" },
    { "RAC", "Racore Computer Products Inc" },
    { "RAD", "Radisys Corporation" },
    { "RAI", "Rockwell Automation/Intecolor" },
    { "RAN", "Rancho Tech Inc" },
    { "RAR", "Raritan, Inc." },
    { "RAS", "RAScom Inc" },
    { "RAT", "Rent-A-Tech" },
    { "RAY", "Raylar Design, Inc." },
    { "RCE", "Parc d'Activite des Bellevues" },
    { "RCH", "Reach Technology Inc" },
    { "RCI", "RC International" },
    { "RCN", "Radio Consult SRL" },
    { "RCO", "Rockwell Collins" },
    { "RDI", "Rainbow Displays, Inc." },
    { "RDM", "Tremon Enterprises Company Ltd" },
    { "RDN", "RADIODATA GmbH" },
    { "RDS", "Radius Inc" },
    { "REA", "Real D" },
    { "REC", "ReCom" },
    { "RED", "Research Electronics Development Inc" },
    { "REF", "Reflectivity, Inc." },
    { "REH", "Rehan Electronics Ltd." },
    { "REL", "Reliance Electric Ind Corporation" },
    { "REM", "SCI Systems Inc." },
    { "REN", "Renesas Technology Corp." },
    { "RES", "ResMed Pty Ltd" },
    { "RET", "Resonance Technology, Inc." },
    { "REX", "RATOC Systems, Inc." },
    { "RGB", "RGB Spectrum" },
    { "RGL", "Robertson Geologging Ltd" },
    { "RHD", "RightHand Technologies" },
    { "RHM", "Rohm Company Ltd" },
    { "RHT", "Red Hat, Inc." },
    { "RIC", "RICOH COMPANY, LTD." },
    { "RII", "Racal Interlan Inc" },
    { "RIO", "Rios Systems Company Ltd" },
    { "RIT", "Ritech Inc" },
    { "RIV", "Rivulet Communications" },
    { "RJA", "Roland Corporation" },
    { "RJS", "Advanced Engineering" },
    { "RKC", "Reakin Technolohy Corporation" },
    { "RLD", "MEPCO" },
    { "RLN", "RadioLAN Inc" },
    { "RMC", "Raritan Computer, Inc" },
    { "RMP", "Research Machines" },
    { "RMT", "Roper Mobile" },
    { "RNB", "Rainbow Technologies" },
    { "ROB", "Robust Electronics GmbH" },
    { "ROH", "Rohm Co., Ltd." },
    { "ROK", "Rockwell International" },
    { "ROP", "Roper International Ltd" },
    { "ROS", "Rohde & Schwarz" },
    { "RPI", "RoomPro Technologies" },
    { "RPT", "R.P.T.Intergroups" },
    { "RRI", "Radicom Research Inc" },
    { "RSC", "PhotoTelesis" },
    { "RSH", "ADC-Centre" },
    { "RSI", "Rampage Systems Inc" },
    { "RSN", "Radiospire Networks, Inc." },
    { "RSQ", "R Squared" },
    { "RSS", "Rockwell Semiconductor Systems" },
    { "RSV", "Ross Video Ltd" },
    { "RSX", "Rapid Tech Corporation" },
    { "RTC", "Relia Technologies" },
    { "RTI", "Rancho Tech Inc" },
    { "RTK", "DO NOT USE - RTK" },
    { "RTL", "Realtek Semiconductor Company Ltd" },
    { "RTS", "Raintree Systems" },
    { "RUN", "RUNCO International" },
    { "RUP", "Ups Manufactoring s.r.l." },
    { "RVC", "RSI Systems Inc" },
    { "RVI", "Realvision Inc" },
    { "RVL", "Reveal Computer Prod" },
    { "RWC", "Red Wing Corporation" },
    { "RXT", "Tectona SoftSolutions (P) Ltd.," },
    { "SAA", "Sanritz Automation Co.,Ltd." },
    { "SAE", "Saab Aerotech" },
    { "SAG", "Sedlbauer" },
    { "SAI", "Sage Inc" },
    { "SAK", "Saitek Ltd" },
    { "SAM", "Samsung Electric Company" },
    { "SAN", "Sanyo Electric Co.,Ltd." },
    { "SAS", "Stores Automated Systems Inc" },
    { "SAT", "Shuttle Tech" },
    { "SBC", "Shanghai Bell Telephone Equip Mfg Co" },
    { "SBD", "Softbed - Consulting & Development Ltd" },
    { "SBI", "SMART Technologies Inc." },
    { "SBS", "SBS-or Industrial Computers GmbH" },
    { "SBT", "Senseboard Technologies AB" },
    { "SCB", "SeeCubic B.V." },
    { "SCC", "SORD Computer Corporation" },
    { "SCD", "Sanyo Electric Company Ltd" },
    { "SCE", "Sun Corporation" },
    { "SCH", "Schlumberger Cards" },
    { "SCI", "System Craft" },
    { "SCL", "Sigmacom Co., Ltd." },
    { "SCM", "SCM Microsystems Inc" },
    { "SCN", "Scanport, Inc." },
    { "SCO", "SORCUS Computer GmbH" },
    { "SCP", "Scriptel Corporation" },
    { "SCR", "Systran Corporation" },
    { "SCS", "Nanomach Anstalt" },
    { "SCT", "Smart Card Technology" },
    { "SDA", "SAT (Societe Anonyme)" },
    { "SDD", "Intrada-SDD Ltd" },
    { "SDE", "Sherwood Digital Electronics Corporation" },
    { "SDF", "SODIFF E&T CO., Ltd." },
    { "SDH", "Communications Specialies, Inc." },
    { "SDI", "Samtron Displays Inc" },
    { "SDK", "SAIT-Devlonics" },
    { "SDR", "SDR Systems" },
    { "SDS", "SunRiver Data System" },
    { "SDT", "Siemens AG" },
    { "SDX", "SDX Business Systems Ltd" },
    { "SEA", "Seanix Technology Inc." },
    { "SEB", "system elektronik GmbH" },
    { "SEC", "Seiko Epson Corporation" },
    { "SEE", "SeeColor Corporation" },
    { "SEG", "DO NOT USE - SEG" },
    { "SEI", "Seitz & Associates Inc" },
    { "SEL", "Way2Call Communications" },
    { "SEM", "Samsung Electronics Company Ltd" },
    { "SEN", "Sencore" },
    { "SEO", "SEOS Ltd" },
    { "SEP", "SEP Eletronica Ltda." },
    { "SER", "Sony Ericsson Mobile Communications Inc." },
    { "SES", "Session Control LLC" },
    { "SET", "SendTek Corporation" },
    { "SFM", "TORNADO Company" },
    { "SFT", "Mikroforum Ring 3" },
    { "SGC", "Spectragraphics Corporation" },
    { "SGD", "Sigma Designs, Inc." },
    { "SGE", "Kansai Electric Company Ltd" },
    { "SGI", "Scan Group Ltd" },
    { "SGL", "Super Gate Technology Company Ltd" },
    { "SGM", "SAGEM" },
    { "SGO", "Logos Design A/S" },
    { "SGT", "Stargate Technology" },
    { "SGW", "Shanghai Guowei Science and Technology Co., Ltd." },
    { "SGX", "Silicon Graphics Inc" },
    { "SGZ", "Systec Computer GmbH" },
    { "SHC", "ShibaSoku Co., Ltd." },
    { "SHG", "Soft & Hardware development Goldammer GmbH" },
    { "SHI", "Jiangsu Shinco Electronic Group Co., Ltd" },
    { "SHP", "Sharp Corporation" },
    { "SHR", "Digital Discovery" },
    { "SHT", "Shin Ho Tech" },
    { "SIA", "SIEMENS AG" },
    { "SIB", "Sanyo Electric Company Ltd" },
    { "SIC", "Sysmate Corporation" },
    { "SID", "Seiko Instruments Information Devices Inc" },
    { "SIE", "Siemens" },
    { "SIG", "Sigma Designs Inc" },
    { "SII", "Silicon Image, Inc." },
    { "SIL", "Silicon Laboratories, Inc" },
    { "SIM", "S3 Inc" },
    { "SIN", "Singular Technology Co., Ltd." },
    { "SIR", "Sirius Technologies Pty Ltd" },
    { "SIS", "Silicon Integrated Systems Corporation" },
    { "SIT", "Sitintel" },
    { "SIU", "Seiko Instruments USA Inc" },
    { "SIX", "Zuniq Data Corporation" },
    { "SJE", "Sejin Electron Inc" },
    { "SKD", "Schneider & Koch" },
    { "SKT", "Samsung Electro-Mechanics Company Ltd" },
    { "SKY", "SKYDATA S.P.A." },
    { "SLA", "Systeme Lauer GmbH&Co KG" },
    { "SLB", "Shlumberger Ltd" },
    { "SLC", "Syslogic Datentechnik AG" },
    { "SLF", "StarLeaf" },
    { "SLH", "Silicon Library Inc." },
    { "SLI", "Symbios Logic Inc" },
    { "SLK", "Silitek Corporation" },
    { "SLM", "Solomon Technology Corporation" },
    { "SLR", "Schlumberger Technology Corporate" },
    { "SLS", "Schnick-Schnack-Systems GmbH" },
    { "SLT", "Salt Internatioinal Corp." },
    { "SLX", "Specialix" },
    { "SMA", "SMART Modular Technologies" },
    { "SMB", "Schlumberger" },
    { "SMC", "Standard Microsystems Corporation" },
    { "SME", "Sysmate Company" },
    { "SMI", "SpaceLabs Medical Inc" },
    { "SMK", "SMK CORPORATION" },
    { "SML", "Sumitomo Metal Industries, Ltd." },
    { "SMM", "Shark Multimedia Inc" },
    { "SMO", "STMicroelectronics" },
    { "SMP", "Simple Computing" },
    { "SMR", "B.& V. s.r.l." },
    { "SMS", "Silicom Multimedia Systems Inc" },
    { "SMT", "Silcom Manufacturing Tech Inc" },
    { "SNC", "Sentronic International Corp." },
    { "SNI", "Siemens Microdesign GmbH" },
    { "SNK", "S&K Electronics" },
    { "SNO", "SINOSUN TECHNOLOGY CO., LTD" },
    { "SNP", "Siemens Nixdorf Info Systems" },
    { "SNS", "Cirtech (UK) Ltd" },
    { "SNT", "SuperNet Inc" },
    { "SNW", "Snell & Wilcox" },
    { "SNX", "Sonix Comm. Ltd" },
    { "SNY", "Sony" },
    { "SOI", "Silicon Optix Corporation" },
    { "SOL", "Solitron Technologies Inc" },
    { "SON", "Sony" },
    { "SOR", "Sorcus Computer GmbH" },
    { "SOT", "Sotec Company Ltd" },
    { "SOY", "SOYO Group, Inc" },
    { "SPC", "SpinCore Technologies, Inc" },
    { "SPE", "SPEA Software AG" },
    { "SPH", "G&W Instruments GmbH" },
    { "SPI", "SPACE-I Co., Ltd." },
    { "SPK", "SpeakerCraft" },
    { "SPL", "Smart Silicon Systems Pty Ltd" },
    { "SPN", "Sapience Corporation" },
    { "SPR", "pmns GmbH" },
    { "SPS", "Synopsys Inc" },
    { "SPT", "Sceptre Tech Inc" },
    { "SPU", "SIM2 Multimedia S.P.A." },
    { "SPX", "Simplex Time Recorder Co." },
    { "SQT", "Sequent Computer Systems Inc" },
    { "SRC", "Integrated Tech Express Inc" },
    { "SRD", "Setred" },
    { "SRF", "Surf Communication Solutions Ltd" },
    { "SRG", "Intuitive Surgical, Inc." },
    { "SRS", "SR-Systems e.K." },
    { "SRT", "SeeReal Technologies GmbH" },
    { "SSC", "Sierra Semiconductor Inc" },
    { "SSD", "FlightSafety International" },
    { "SSE", "Samsung Electronic Co." },
    { "SSI", "S-S Technology Inc" },
    { "SSJ", "Sankyo Seiki Mfg.co., Ltd" },
    { "SSP", "Spectrum Signal Proecessing Inc" },
    { "SSS", "S3 Inc" },
    { "SST", "SystemSoft Corporation" },
    { "STA", "ST Electronics Systems Assembly Pte Ltd" },
    { "STB", "STB Systems Inc" },
    { "STC", "STAC Electronics" },
    { "STD", "STD Computer Inc" },
    { "STE", "SII Ido-Tsushin Inc" },
    { "STF", "Starflight Electronics" },
    { "STG", "StereoGraphics Corp." },
    { "STH", "Semtech Corporation" },
    { "STI", "Smart Tech Inc" },
    { "STK", "SANTAK CORP." },
    { "STL", "SigmaTel Inc" },
    { "STM", "SGS Thomson Microelectronics" },
    { "STN", "Samsung Electronics America" },
    { "STO", "Stollmann E+V GmbH" },
    { "STP", "StreamPlay Ltd" },
    { "STR", "Starlight Networks Inc" },
    { "STS", "SITECSYSTEM CO., LTD." },
    { "STT", "Star Paging Telecom Tech (Shenzhen) Co. Ltd." },
    { "STU", "Sentelic Corporation" },
    { "STW", "Starwin Inc." },
    { "STX", "ST-Ericsson" },
    { "STY", "SDS Technologies" },
    { "SUB", "Subspace Comm. Inc" },
    { "SUM", "Summagraphics Corporation" },
    { "SUN", "Sun Electronics Corporation" },
    { "SUP", "Supra Corporation" },
    { "SUR", "Surenam Computer Corporation" },
    { "SVA", "SGEG" },
    { "SVC", "Intellix Corp." },
    { "SVD", "SVD Computer" },
    { "SVI", "Sun Microsystems" },
    { "SVS", "SVSI" },
    { "SVT", "SEVIT Co., Ltd." },
    { "SWC", "Software Café" },
    { "SWI", "Sierra Wireless Inc." },
    { "SWL", "Sharedware Ltd" },
    { "SWS", "Static" },
    { "SWT", "Software Technologies Group,Inc." },
    { "SXB", "Syntax-Brillian" },
    { "SXD", "Silex technology, Inc." },
    { "SXG", "SELEX GALILEO" },
    { "SXL", "SolutionInside" },
    { "SXT", "SHARP TAKAYA ELECTRONIC INDUSTRY CO.,LTD." },
    { "SYC", "Sysmic" },
    { "SYE", "SY Electronics Ltd" },
    { "SYK", "Stryker Communications" },
    { "SYL", "Sylvania Computer Products" },
    { "SYM", "Symicron Computer Communications Ltd." },
    { "SYN", "Synaptics Inc" },
    { "SYP", "SYPRO Co Ltd" },
    { "SYS", "Sysgration Ltd" },
    { "SYT", "Seyeon Tech Company Ltd" },
    { "SYV", "SYVAX Inc" },
    { "SYX", "Prime Systems, Inc." },
    { "TAA", "Tandberg" },
    { "TAB", "Todos Data System AB" },
    { "TAG", "Teles AG" },
    { "TAI", "Toshiba America Info Systems Inc" },
    { "TAM", "Tamura Seisakusyo Ltd" },
    { "TAS", "Taskit Rechnertechnik GmbH" },
    { "TAT", "Teleliaison Inc" },
    { "TAX", "Taxan (Europe) Ltd" },
    { "TBB", "Triple S Engineering Inc" },
    { "TBC", "Turbo Communication, Inc" },
    { "TBS", "Turtle Beach System" },
    { "TCC", "Tandon Corporation" },
    { "TCD", "Taicom Data Systems Co., Ltd." },
    { "TCE", "Century Corporation" },
    { "TCH", "Interaction Systems, Inc" },
    { "TCI", "Tulip Computers Int'l B.V." },
    { "TCJ", "TEAC America Inc" },
    { "TCL", "Technical Concepts Ltd" },
    { "TCM", "3Com Corporation" },
    { "TCN", "Tecnetics (PTY) Ltd" },
    { "TCO", "Thomas-Conrad Corporation" },
    { "TCR", "Thomson Consumer Electronics" },
    { "TCS", "Tatung Company of America Inc" },
    { "TCT", "Telecom Technology Centre Co. Ltd." },
    { "TCX", "FREEMARS Heavy Industries" },
    { "TDC", "Teradici" },
    { "TDD", "Tandberg Data Display AS" },
    { "TDK", "TDK USA Corporation" },
    { "TDM", "Tandem Computer Europe Inc" },
    { "TDP", "3D Perception" },
    { "TDS", "Tri-Data Systems Inc" },
    { "TDT", "TDT" },
    { "TDV", "TDVision Systems, Inc." },
    { "TDY", "Tandy Electronics" },
    { "TEA", "TEAC System Corporation" },
    { "TEC", "Tecmar Inc" },
    { "TEK", "Tektronix Inc" },
    { "TEL", "Promotion and Display Technology Ltd." },
    { "TER", "TerraTec Electronic GmbH" },
    { "TGC", "Toshiba Global Commerce Solutions, Inc." },
    { "TGI", "TriGem Computer Inc" },
    { "TGM", "TriGem Computer,Inc." },
    { "TGS", "Torus Systems Ltd" },
    { "TGV", "Grass Valley Germany GmbH" },
    { "THN", "Thundercom Holdings Sdn. Bhd." },
    { "TIC", "Trigem KinfoComm" },
    { "TIP", "TIPTEL AG" },
    { "TIV", "OOO Technoinvest" },
    { "TIX", "Tixi.Com GmbH" },
    { "TKC", "Taiko Electric Works.LTD" },
    { "TKN", "Teknor Microsystem Inc" },
    { "TKO", "TouchKo, Inc." },
    { "TKS", "TimeKeeping Systems, Inc." },
    { "TLA", "Ferrari Electronic GmbH" },
    { "TLD", "Telindus" },
    { "TLF", "Teleforce.,co,ltd" },
    { "TLI", "TOSHIBA TELI CORPORATION" },
    { "TLK", "Telelink AG" },
    { "TLS", "Teleste Educational OY" },
    { "TLT", "Dai Telecom S.p.A." },
    { "TLV", "S3 Inc" },
    { "TLX", "Telxon Corporation" },
    { "TMC", "Techmedia Computer Systems Corporation" },
    { "TME", "AT&T Microelectronics" },
    { "TMI", "Texas Microsystem" },
    { "TMM", "Time Management, Inc." },
    { "TMR", "Taicom International Inc" },
    { "TMS", "Trident Microsystems Ltd" },
    { "TMT", "T-Metrics Inc." },
    { "TMX", "Thermotrex Corporation" },
    { "TNC", "TNC Industrial Company Ltd" },
    { "TNJ", "DO NOT USE - TNJ" },
    { "TNM", "TECNIMAGEN SA" },
    { "TNY", "Tennyson Tech Pty Ltd" },
    { "TOE", "TOEI Electronics Co., Ltd." },
    { "TOG", "The OPEN Group" },
    { "TON", "TONNA" },
    { "TOP", "Orion Communications Co., Ltd." },
    { "TOS", "Toshiba Corporation" },
    { "TOU", "Touchstone Technology" },
    { "TPC", "Touch Panel Systems Corporation" },
    { "TPE", "Technology Power Enterprises Inc" },
    { "TPJ", "Junnila" },
    { "TPK", "TOPRE CORPORATION" },
    { "TPR", "Topro Technology Inc" },
    { "TPS", "Teleprocessing Systeme GmbH" },
    { "TPT", "Thruput Ltd" },
    { "TPV", "Top Victory Electronics ( Fujian ) Company Ltd" },
    { "TPZ", "Ypoaz Systems Inc" },
    { "TRA", "TriTech Microelectronics International" },
    { "TRC", "Trioc AB" },
    { "TRD", "Trident Microsystem Inc" },
    { "TRE", "Tremetrics" },
    { "TRI", "Tricord Systems" },
    { "TRL", "Royal Information" },
    { "TRM", "Tekram Technology Company Ltd" },
    { "TRN", "Datacommunicatie Tron B.V." },
    { "TRS", "Torus Systems Ltd" },
    { "TRT", "Tritec Electronic AG" },
    { "TRU", "Aashima Technology B.V." },
    { "TRV", "Trivisio Prototyping GmbH" },
    { "TRX", "Trex Enterprises" },
    { "TSB", "Toshiba America Info Systems Inc" },
    { "TSC", "Sanyo Electric Company Ltd" },
    { "TSD", "TechniSat Digital GmbH" },
    { "TSE", "Tottori Sanyo Electric" },
    { "TSF", "Racal-Airtech Software Forge Ltd" },
    { "TSG", "The Software Group Ltd" },
    { "TSI", "TeleVideo Systems" },
    { "TSL", "Tottori SANYO Electric Co., Ltd." },
    { "TSP", "U.S. Navy" },
    { "TST", "Transtream Inc" },
    { "TSV", "TRANSVIDEO" },
    { "TSY", "TouchSystems" },
    { "TTA", "Topson Technology Co., Ltd." },
    { "TTB", "National Semiconductor Japan Ltd" },
    { "TTC", "Telecommunications Techniques Corporation" },
    { "TTE", "TTE, Inc." },
    { "TTI", "Trenton Terminals Inc" },
    { "TTK", "Totoku Electric Company Ltd" },
    { "TTL", "2-Tel B.V." },
    { "TTS", "TechnoTrend Systemtechnik GmbH" },
    { "TTY", "TRIDELITY Display Solutions GmbH" },
    { "TUA", "T+A elektroakustik GmbH" },
    { "TUT", "Tut Systems" },
    { "TVD", "Tecnovision" },
    { "TVI", "Truevision" },
    { "TVM", "Taiwan Video & Monitor Corporation" },
    { "TVO", "TV One Ltd" },
    { "TVR", "TV Interactive Corporation" },
    { "TVS", "TVS Electronics Limited" },
    { "TVV", "TV1 GmbH" },
    { "TWA", "Tidewater Association" },
    { "TWE", "Kontron Electronik" },
    { "TWH", "Twinhead International Corporation" },
    { "TWI", "Easytel oy" },
    { "TWK", "TOWITOKO electronics GmbH" },
    { "TWX", "TEKWorx Limited" },
    { "TXL", "Trixel Ltd" },
    { "TXN", "Texas Insturments" },
    { "TXT", "Textron Defense System" },
    { "TYN", "Tyan Computer Corporation" },
    { "UAS", "Ultima Associates Pte Ltd" },
    { "UBI", "Ungermann-Bass Inc" },
    { "UBL", "Ubinetics Ltd." },
    { "UDN", "Uniden Corporation" },
    { "UEC", "Ultima Electronics Corporation" },
    { "UEG", "Elitegroup Computer Systems Company Ltd" },
    { "UEI", "Universal Electronics Inc" },
    { "UET", "Universal Empowering Technologies" },
    { "UFG", "UNIGRAF-USA" },
    { "UFO", "UFO Systems Inc" },
    { "UHB", "XOCECO" },
    { "UIC", "Uniform Industrial Corporation" },
    { "UJR", "Ueda Japan Radio Co., Ltd." },
    { "ULT", "Ultra Network Tech" },
    { "UMC", "United Microelectr Corporation" },
    { "UMG", "Umezawa Giken Co.,Ltd" },
    { "UMM", "Universal Multimedia" },
    { "UNA", "Unisys DSD" },
    { "UNB", "Unisys Corporation" },
    { "UNC", "Unisys Corporation" },
    { "UND", "Unisys Corporation" },
    { "UNE", "Unisys Corporation" },
    { "UNF", "Unisys Corporation" },
    { "UNI", "Unisys Corporation" },
    { "UNM", "Unisys Corporation" },
    { "UNO", "Unisys Corporation" },
    { "UNP", "Unitop" },
    { "UNS", "Unisys Corporation" },
    { "UNT", "Unisys Corporation" },
    { "UNY", "Unicate" },
    { "UPP", "UPPI" },
    { "UPS", "Systems Enhancement" },
    { "URD", "Video Computer S.p.A." },
    { "USA", "Utimaco Safeware AG" },
    { "USD", "U.S. Digital Corporation" },
    { "USI", "Universal Scientific Industrial Co., Ltd." },
    { "USR", "U.S. Robotics Inc" },
    { "UTD", "Up to Date Tech" },
    { "UWC", "Uniwill Computer Corp." },
    { "VAD", "Vaddio, LLC" },
    { "VAL", "Valence Computing Corporation" },
    { "VAR", "Varian Australia Pty Ltd" },
    { "VBR", "VBrick Systems Inc." },
    { "VBT", "Valley Board Ltda" },
    { "VCC", "Virtual Computer Corporation" },
    { "VCI", "VistaCom Inc" },
    { "VCJ", "Victor Company of Japan, Limited" },
    { "VCM", "Vector Magnetics, LLC" },
    { "VCX", "VCONEX" },
    { "VDA", "Victor Data Systems" },
    { "VDC", "VDC Display Systems" },
    { "VDM", "Vadem" },
    { "VDO", "Video & Display Oriented Corporation" },
    { "VDS", "Vidisys GmbH & Company" },
    { "VDT", "Viditec, Inc." },
    { "VEC", "Vector Informatik GmbH" },
    { "VEK", "Vektrex" },
    { "VES", "Vestel Elektronik Sanayi ve Ticaret A. S." },
    { "VFI", "VeriFone Inc" },
    { "VHI", "Macrocad Development Inc." },
    { "VIA", "VIA Tech Inc" },
    { "VIB", "Tatung UK Ltd" },
    { "VIC", "Victron B.V." },
    { "VID", "Ingram Macrotron Germany" },
    { "VIK", "Viking Connectors" },
    { "VIM", "Via Mons Ltd." },
    { "VIN", "Vine Micros Ltd" },
    { "VIR", "Visual Interface, Inc" },
    { "VIS", "Visioneer" },
    { "VIT", "Visitech AS" },
    { "VIZ", "VIZIO, Inc" },
    { "VLB", "ValleyBoard Ltda." },
    { "VLK", "Vislink International Ltd" },
    { "VLT", "VideoLan Technologies" },
    { "VMI", "Vermont Microsystems" },
    { "VML", "Vine Micros Limited" },
    { "VMW", "VMware Inc.," },
    { "VNC", "Vinca Corporation" },
    { "VOB", "MaxData Computer AG" },
    { "VPI", "Video Products Inc" },
    { "VPR", "Best Buy" },
    { "VQ@", "Vision Quest" },
    { "VRC", "Virtual Resources Corporation" },
    { "VSC", "ViewSonic Corporation" },
    { "VSD", "3M" },
    { "VSI", "VideoServer" },
    { "VSN", "Ingram Macrotron" },
    { "VSP", "Vision Systems GmbH" },
    { "VSR", "V-Star Electronics Inc." },
    { "VTC", "VTel Corporation" },
    { "VTG", "Voice Technologies Group Inc" },
    { "VTI", "VLSI Tech Inc" },
    { "VTK", "Viewteck Co., Ltd." },
    { "VTL", "Vivid Technology Pte Ltd" },
    { "VTM", "Miltope Corporation" },
    { "VTN", "VIDEOTRON CORP." },
    { "VTS", "VTech Computers Ltd" },
    { "VTV", "VATIV Technologies" },
    { "VTX", "Vestax Corporation" },
    { "VUT", "Vutrix (UK) Ltd" },
    { "VWB", "Vweb Corp." },
    { "WAC", "Wacom Tech" },
    { "WAL", "Wave Access" },
    { "WAN", "DO NOT USE - WAN" },
    { "WAV", "Wavephore" },
    { "WBN", "MicroSoftWare" },
    { "WBS", "WB Systemtechnik GmbH" },
    { "WCI", "Wisecom Inc" },
    { "WCS", "Woodwind Communications Systems Inc" },
    { "WDC", "Western Digital" },
    { "WDE", "Westinghouse Digital Electronics" },
    { "WEB", "WebGear Inc" },
    { "WEC", "Winbond Electronics Corporation" },
    { "WEL", "W-DEV" },
    { "WEY", "WEY Design AG" },
    { "WHI", "Whistle Communications" },
    { "WII", "Innoware Inc" },
    { "WIL", "WIPRO Information Technology Ltd" },
    { "WIN", "Wintop Technology Inc" },
    { "WIP", "Wipro Infotech" },
    { "WKH", "Uni-Take Int'l Inc." },
    { "WLD", "Wildfire Communications Inc" },
    { "WML", "Wolfson Microelectronics Ltd" },
    { "WMO", "Westermo Teleindustri AB" },
    { "WMT", "Winmate Communication Inc" },
    { "WNI", "WillNet Inc." },
    { "WNV", "Winnov L.P." },
    { "WNX", "Wincor Nixdorf International GmbH" },
    { "WPA", "Matsushita Communication Industrial Co., Ltd." },
    { "WPI", "Wearnes Peripherals International (Pte) Ltd" },
    { "WRC", "WiNRADiO Communications" },
    { "WSC", "CIS Technology Inc" },
    { "WSP", "Wireless And Smart Products Inc." },
    { "WST", "Wistron Corporation" },
    { "WTC", "ACC Microelectronics" },
    { "WTI", "WorkStation Tech" },
    { "WTK", "Wearnes Thakral Pte" },
    { "WTS", "Restek Electric Company Ltd" },
    { "WVM", "Wave Systems Corporation" },
    { "WVV", "WolfVision GmbH" },
    { "WWV", "World Wide Video, Inc." },
    { "WXT", "Woxter Technology Co. Ltd" },
    { "WYS", "Wyse Technology" },
    { "WYT", "Wooyoung Image & Information Co.,Ltd." },
    { "XAC", "XAC Automation Corp" },
    { "XAD", "Alpha Data" },
    { "XDM", "XDM Ltd." },
    { "XER", "DO NOT USE - XER" },
    { "XFG", "Jan Strapko - FOTO" },
    { "XFO", "EXFO Electro Optical Engineering" },
    { "XIN", "Xinex Networks Inc" },
    { "XIO", "Xiotech Corporation" },
    { "XIR", "Xirocm Inc" },
    { "XIT", "Xitel Pty ltd" },
    { "XLX", "Xilinx, Inc." },
    { "XMM", "C3PO S.L." },
    { "XNT", "XN Technologies, Inc." },
    { "XOC", "DO NOT USE - XOC" },
    { "XQU", "SHANGHAI SVA-DAV ELECTRONICS CO., LTD" },
    { "XRC", "Xircom Inc" },
    { "XRO", "XORO ELECTRONICS (CHENGDU) LIMITED" },
    { "XSN", "Xscreen AS" },
    { "XST", "XS Technologies Inc" },
    { "XSY", "XSYS" },
    { "XTD", "Icuiti Corporation" },
    { "XTE", "X2E GmbH" },
    { "XTL", "Crystal Computer" },
    { "XTN", "X-10 (USA) Inc" },
    { "XYC", "Xycotec Computer GmbH" },
    { "YED", "Y-E Data Inc" },
    { "YHQ", "Yokogawa Electric Corporation" },
    { "YHW", "Exacom SA" },
    { "YMH", "Yamaha Corporation" },
    { "YOW", "American Biometric Company" },
    { "ZAN", "Zandar Technologies plc" },
    { "ZAX", "Zefiro Acoustics" },
    { "ZAZ", "Zazzle Technologies" },
    { "ZBR", "Zebra Technologies International, LLC" },
    { "ZCT", "ZeitControl cardsystems GmbH" },
    { "ZDS", "Zenith Data Systems" },
    { "ZGT", "Zenith Data Systems" },
    { "ZIC", "Nationz Technologies Inc." },
    { "ZMT", "Zalman Tech Co., Ltd." },
    { "ZMZ", "Z Microsystems" },
    { "ZNI", "Zetinet Inc" },
    { "ZNX", "Znyx Adv. Systems" },
    { "ZOW", "Zowie Intertainment, Inc" },
    { "ZRN", "Zoran Corporation" },
    { "ZSE", "Zenith Data Systems" },
    { "ZTC", "ZyDAS Technology Corporation" },
    { "ZTE", "ZTE Corporation" },
    { "ZTI", "Zoom Telephonics Inc" },
    { "ZTM", "ZT Group Int'l Inc." },
    { "ZTT", "Z3 Technology" },
    { "ZYD", "Zydacron Inc" },
    { "ZYP", "Zypcom Inc" },
    { "ZYT", "Zytex Computers" },
    { "ZYX", "Zyxel" },
    { "ZZZ", "Boca Research Inc" },
};

QT_END_NAMESPACE

#endif // QEDIDVENDORTABLE_P_H