-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathotc.html
1475 lines (1471 loc) · 62.2 KB
/
otc.html
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
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body >
<p align=center>1258 其祥-KY<p/>
<img src='pic/1258.png' height='80%' width='100%' />
<p align=center>1259 安心<p/>
<img src='pic/1259.png' height='80%' width='100%' />
<p align=center>1264 德麥<p/>
<img src='pic/1264.png' height='80%' width='100%' />
<p align=center>1333 恩得利<p/>
<img src='pic/1333.png' height='80%' width='100%' />
<p align=center>1336 台翰<p/>
<img src='pic/1336.png' height='80%' width='100%' />
<p align=center>1565 精華<p/>
<img src='pic/1565.png' height='80%' width='100%' />
<p align=center>1566 捷邦<p/>
<img src='pic/1566.png' height='80%' width='100%' />
<p align=center>1569 濱川<p/>
<img src='pic/1569.png' height='80%' width='100%' />
<p align=center>1570 力肯<p/>
<img src='pic/1570.png' height='80%' width='100%' />
<p align=center>1580 新麥<p/>
<img src='pic/1580.png' height='80%' width='100%' />
<p align=center>1584 精剛<p/>
<img src='pic/1584.png' height='80%' width='100%' />
<p align=center>1586 和勤<p/>
<img src='pic/1586.png' height='80%' width='100%' />
<p align=center>1591 駿吉-KY<p/>
<img src='pic/1591.png' height='80%' width='100%' />
<p align=center>1593 祺驊<p/>
<img src='pic/1593.png' height='80%' width='100%' />
<p align=center>1595 川寶<p/>
<img src='pic/1595.png' height='80%' width='100%' />
<p align=center>1597 直得<p/>
<img src='pic/1597.png' height='80%' width='100%' />
<p align=center>1599 宏佳騰<p/>
<img src='pic/1599.png' height='80%' width='100%' />
<p align=center>1742 台蠟<p/>
<img src='pic/1742.png' height='80%' width='100%' />
<p align=center>1752 南光<p/>
<img src='pic/1752.png' height='80%' width='100%' />
<p align=center>1777 生泰<p/>
<img src='pic/1777.png' height='80%' width='100%' />
<p align=center>1781 合世<p/>
<img src='pic/1781.png' height='80%' width='100%' />
<p align=center>1784 訊聯<p/>
<img src='pic/1784.png' height='80%' width='100%' />
<p align=center>1785 光洋科<p/>
<img src='pic/1785.png' height='80%' width='100%' />
<p align=center>1787 福盈科<p/>
<img src='pic/1787.png' height='80%' width='100%' />
<p align=center>1788 杏昌<p/>
<img src='pic/1788.png' height='80%' width='100%' />
<p align=center>1795 美時<p/>
<img src='pic/1795.png' height='80%' width='100%' />
<p align=center>1799 易威<p/>
<img src='pic/1799.png' height='80%' width='100%' />
<p align=center>1813 寶利徠<p/>
<img src='pic/1813.png' height='80%' width='100%' />
<p align=center>1815 富喬<p/>
<img src='pic/1815.png' height='80%' width='100%' />
<p align=center>2035 唐榮<p/>
<img src='pic/2035.png' height='80%' width='100%' />
<p align=center>2061 風青<p/>
<img src='pic/2061.png' height='80%' width='100%' />
<p align=center>2063 世鎧<p/>
<img src='pic/2063.png' height='80%' width='100%' />
<p align=center>2064 晉椿<p/>
<img src='pic/2064.png' height='80%' width='100%' />
<p align=center>2066 世德<p/>
<img src='pic/2066.png' height='80%' width='100%' />
<p align=center>2067 嘉鋼<p/>
<img src='pic/2067.png' height='80%' width='100%' />
<p align=center>2221 大甲<p/>
<img src='pic/2221.png' height='80%' width='100%' />
<p align=center>2230 泰茂<p/>
<img src='pic/2230.png' height='80%' width='100%' />
<p align=center>2233 宇隆<p/>
<img src='pic/2233.png' height='80%' width='100%' />
<p align=center>2235 謚源<p/>
<img src='pic/2235.png' height='80%' width='100%' />
<p align=center>2596 綠意<p/>
<img src='pic/2596.png' height='80%' width='100%' />
<p align=center>2640 大車隊<p/>
<img src='pic/2640.png' height='80%' width='100%' />
<p align=center>2641 正德<p/>
<img src='pic/2641.png' height='80%' width='100%' />
<p align=center>2643 捷迅<p/>
<img src='pic/2643.png' height='80%' width='100%' />
<p align=center>2718 晶悅<p/>
<img src='pic/2718.png' height='80%' width='100%' />
<p align=center>2719 燦星旅<p/>
<img src='pic/2719.png' height='80%' width='100%' />
<p align=center>2724 富驛-KY<p/>
<img src='pic/2724.png' height='80%' width='100%' />
<p align=center>2726 雅茗-KY<p/>
<img src='pic/2726.png' height='80%' width='100%' />
<p align=center>2729 瓦城<p/>
<img src='pic/2729.png' height='80%' width='100%' />
<p align=center>2732 六角<p/>
<img src='pic/2732.png' height='80%' width='100%' />
<p align=center>2734 易飛網<p/>
<img src='pic/2734.png' height='80%' width='100%' />
<p align=center>2736 高野<p/>
<img src='pic/2736.png' height='80%' width='100%' />
<p align=center>2740 天蔥<p/>
<img src='pic/2740.png' height='80%' width='100%' />
<p align=center>2916 滿心<p/>
<img src='pic/2916.png' height='80%' width='100%' />
<p align=center>2924 東凌-KY<p/>
<img src='pic/2924.png' height='80%' width='100%' />
<p align=center>2926 誠品生<p/>
<img src='pic/2926.png' height='80%' width='100%' />
<p align=center>2928 紅馬-KY<p/>
<img src='pic/2928.png' height='80%' width='100%' />
<p align=center>3064 泰偉<p/>
<img src='pic/3064.png' height='80%' width='100%' />
<p align=center>3066 李洲<p/>
<img src='pic/3066.png' height='80%' width='100%' />
<p align=center>3067 全域<p/>
<img src='pic/3067.png' height='80%' width='100%' />
<p align=center>3068 美磊<p/>
<img src='pic/3068.png' height='80%' width='100%' />
<p align=center>3071 協禧<p/>
<img src='pic/3071.png' height='80%' width='100%' />
<p align=center>3073 普格<p/>
<img src='pic/3073.png' height='80%' width='100%' />
<p align=center>3078 僑威<p/>
<img src='pic/3078.png' height='80%' width='100%' />
<p align=center>3081 聯亞<p/>
<img src='pic/3081.png' height='80%' width='100%' />
<p align=center>3083 網龍<p/>
<img src='pic/3083.png' height='80%' width='100%' />
<p align=center>3085 久大<p/>
<img src='pic/3085.png' height='80%' width='100%' />
<p align=center>3086 華義<p/>
<img src='pic/3086.png' height='80%' width='100%' />
<p align=center>3088 艾訊<p/>
<img src='pic/3088.png' height='80%' width='100%' />
<p align=center>3089 遠昇<p/>
<img src='pic/3089.png' height='80%' width='100%' />
<p align=center>3092 鴻碩<p/>
<img src='pic/3092.png' height='80%' width='100%' />
<p align=center>3093 港建<p/>
<img src='pic/3093.png' height='80%' width='100%' />
<p align=center>3095 及成<p/>
<img src='pic/3095.png' height='80%' width='100%' />
<p align=center>3105 穩懋<p/>
<img src='pic/3105.png' height='80%' width='100%' />
<p align=center>3114 好德<p/>
<img src='pic/3114.png' height='80%' width='100%' />
<p align=center>3115 寶島極<p/>
<img src='pic/3115.png' height='80%' width='100%' />
<p align=center>3118 進階<p/>
<img src='pic/3118.png' height='80%' width='100%' />
<p align=center>3122 笙泉<p/>
<img src='pic/3122.png' height='80%' width='100%' />
<p align=center>3128 昇銳<p/>
<img src='pic/3128.png' height='80%' width='100%' />
<p align=center>3131 弘塑<p/>
<img src='pic/3131.png' height='80%' width='100%' />
<p align=center>3141 晶宏<p/>
<img src='pic/3141.png' height='80%' width='100%' />
<p align=center>3144 新揚科<p/>
<img src='pic/3144.png' height='80%' width='100%' />
<p align=center>3152 璟德<p/>
<img src='pic/3152.png' height='80%' width='100%' />
<p align=center>3162 精確<p/>
<img src='pic/3162.png' height='80%' width='100%' />
<p align=center>3163 波若威<p/>
<img src='pic/3163.png' height='80%' width='100%' />
<p align=center>3169 亞信<p/>
<img src='pic/3169.png' height='80%' width='100%' />
<p align=center>3171 新洲<p/>
<img src='pic/3171.png' height='80%' width='100%' />
<p align=center>3176 基亞<p/>
<img src='pic/3176.png' height='80%' width='100%' />
<p align=center>3188 鑫龍騰<p/>
<img src='pic/3188.png' height='80%' width='100%' />
<p align=center>3191 和進<p/>
<img src='pic/3191.png' height='80%' width='100%' />
<p align=center>3202 樺晟<p/>
<img src='pic/3202.png' height='80%' width='100%' />
<p align=center>3205 佰研<p/>
<img src='pic/3205.png' height='80%' width='100%' />
<p align=center>3206 志豐<p/>
<img src='pic/3206.png' height='80%' width='100%' />
<p align=center>3207 耀勝<p/>
<img src='pic/3207.png' height='80%' width='100%' />
<p align=center>3211 順達<p/>
<img src='pic/3211.png' height='80%' width='100%' />
<p align=center>3213 茂訊<p/>
<img src='pic/3213.png' height='80%' width='100%' />
<p align=center>3217 優群<p/>
<img src='pic/3217.png' height='80%' width='100%' />
<p align=center>3218 大學光<p/>
<img src='pic/3218.png' height='80%' width='100%' />
<p align=center>3219 倚強<p/>
<img src='pic/3219.png' height='80%' width='100%' />
<p align=center>3221 台嘉碩<p/>
<img src='pic/3221.png' height='80%' width='100%' />
<p align=center>3224 三顧<p/>
<img src='pic/3224.png' height='80%' width='100%' />
<p align=center>3226 至寶電<p/>
<img src='pic/3226.png' height='80%' width='100%' />
<p align=center>3227 原相<p/>
<img src='pic/3227.png' height='80%' width='100%' />
<p align=center>3228 金麗科<p/>
<img src='pic/3228.png' height='80%' width='100%' />
<p align=center>3230 錦明<p/>
<img src='pic/3230.png' height='80%' width='100%' />
<p align=center>3232 昱捷<p/>
<img src='pic/3232.png' height='80%' width='100%' />
<p align=center>3234 光環<p/>
<img src='pic/3234.png' height='80%' width='100%' />
<p align=center>3236 千如<p/>
<img src='pic/3236.png' height='80%' width='100%' />
<p align=center>3252 海灣科<p/>
<img src='pic/3252.png' height='80%' width='100%' />
<p align=center>3259 鑫創<p/>
<img src='pic/3259.png' height='80%' width='100%' />
<p align=center>3260 威剛<p/>
<img src='pic/3260.png' height='80%' width='100%' />
<p align=center>3264 欣銓<p/>
<img src='pic/3264.png' height='80%' width='100%' />
<p align=center>3265 台星科<p/>
<img src='pic/3265.png' height='80%' width='100%' />
<p align=center>3268 海德威<p/>
<img src='pic/3268.png' height='80%' width='100%' />
<p align=center>3272 東碩<p/>
<img src='pic/3272.png' height='80%' width='100%' />
<p align=center>3276 宇環<p/>
<img src='pic/3276.png' height='80%' width='100%' />
<p align=center>3284 太普高<p/>
<img src='pic/3284.png' height='80%' width='100%' />
<p align=center>3285 微端<p/>
<img src='pic/3285.png' height='80%' width='100%' />
<p align=center>3287 廣寰科<p/>
<img src='pic/3287.png' height='80%' width='100%' />
<p align=center>3288 點晶<p/>
<img src='pic/3288.png' height='80%' width='100%' />
<p align=center>3289 宜特<p/>
<img src='pic/3289.png' height='80%' width='100%' />
<p align=center>3290 東浦<p/>
<img src='pic/3290.png' height='80%' width='100%' />
<p align=center>3293 鈊象<p/>
<img src='pic/3293.png' height='80%' width='100%' />
<p align=center>3294 英濟<p/>
<img src='pic/3294.png' height='80%' width='100%' />
<p align=center>3297 杭特<p/>
<img src='pic/3297.png' height='80%' width='100%' />
<p align=center>3299 帛漢<p/>
<img src='pic/3299.png' height='80%' width='100%' />
<p align=center>3303 岱稜<p/>
<img src='pic/3303.png' height='80%' width='100%' />
<p align=center>3306 鼎天<p/>
<img src='pic/3306.png' height='80%' width='100%' />
<p align=center>3310 佳穎<p/>
<img src='pic/3310.png' height='80%' width='100%' />
<p align=center>3313 斐成<p/>
<img src='pic/3313.png' height='80%' width='100%' />
<p align=center>3317 尼克森<p/>
<img src='pic/3317.png' height='80%' width='100%' />
<p align=center>3322 建舜電<p/>
<img src='pic/3322.png' height='80%' width='100%' />
<p align=center>3323 加百裕<p/>
<img src='pic/3323.png' height='80%' width='100%' />
<p align=center>3324 雙鴻<p/>
<img src='pic/3324.png' height='80%' width='100%' />
<p align=center>3325 旭品<p/>
<img src='pic/3325.png' height='80%' width='100%' />
<p align=center>3332 幸康<p/>
<img src='pic/3332.png' height='80%' width='100%' />
<p align=center>3339 泰谷<p/>
<img src='pic/3339.png' height='80%' width='100%' />
<p align=center>3354 律勝<p/>
<img src='pic/3354.png' height='80%' width='100%' />
<p align=center>3360 尚立<p/>
<img src='pic/3360.png' height='80%' width='100%' />
<p align=center>3362 先進光<p/>
<img src='pic/3362.png' height='80%' width='100%' />
<p align=center>3363 上詮<p/>
<img src='pic/3363.png' height='80%' width='100%' />
<p align=center>3372 典範<p/>
<img src='pic/3372.png' height='80%' width='100%' />
<p align=center>3373 熱映<p/>
<img src='pic/3373.png' height='80%' width='100%' />
<p align=center>3374 精材<p/>
<img src='pic/3374.png' height='80%' width='100%' />
<p align=center>3379 彬台<p/>
<img src='pic/3379.png' height='80%' width='100%' />
<p align=center>3388 崇越電<p/>
<img src='pic/3388.png' height='80%' width='100%' />
<p align=center>3390 旭軟<p/>
<img src='pic/3390.png' height='80%' width='100%' />
<p align=center>3402 漢科<p/>
<img src='pic/3402.png' height='80%' width='100%' />
<p align=center>3426 台興<p/>
<img src='pic/3426.png' height='80%' width='100%' />
<p align=center>3428 光燿科<p/>
<img src='pic/3428.png' height='80%' width='100%' />
<p align=center>3431 長天<p/>
<img src='pic/3431.png' height='80%' width='100%' />
<p align=center>3434 哲固<p/>
<img src='pic/3434.png' height='80%' width='100%' />
<p align=center>3438 類比科<p/>
<img src='pic/3438.png' height='80%' width='100%' />
<p align=center>3441 聯一光<p/>
<img src='pic/3441.png' height='80%' width='100%' />
<p align=center>3444 利機<p/>
<img src='pic/3444.png' height='80%' width='100%' />
<p align=center>3452 益通<p/>
<img src='pic/3452.png' height='80%' width='100%' />
<p align=center>3455 由田<p/>
<img src='pic/3455.png' height='80%' width='100%' />
<p align=center>3465 祥業<p/>
<img src='pic/3465.png' height='80%' width='100%' />
<p align=center>3466 致振<p/>
<img src='pic/3466.png' height='80%' width='100%' />
<p align=center>3479 安勤<p/>
<img src='pic/3479.png' height='80%' width='100%' />
<p align=center>3483 力致<p/>
<img src='pic/3483.png' height='80%' width='100%' />
<p align=center>3484 崧騰<p/>
<img src='pic/3484.png' height='80%' width='100%' />
<p align=center>3489 森寶<p/>
<img src='pic/3489.png' height='80%' width='100%' />
<p align=center>3490 單井<p/>
<img src='pic/3490.png' height='80%' width='100%' />
<p align=center>3491 昇達科<p/>
<img src='pic/3491.png' height='80%' width='100%' />
<p align=center>3492 長盛<p/>
<img src='pic/3492.png' height='80%' width='100%' />
<p align=center>3498 陽程<p/>
<img src='pic/3498.png' height='80%' width='100%' />
<p align=center>3499 環天科<p/>
<img src='pic/3499.png' height='80%' width='100%' />
<p align=center>3508 位速<p/>
<img src='pic/3508.png' height='80%' width='100%' />
<p align=center>3511 矽瑪<p/>
<img src='pic/3511.png' height='80%' width='100%' />
<p align=center>3512 能緹<p/>
<img src='pic/3512.png' height='80%' width='100%' />
<p align=center>3516 亞帝歐<p/>
<img src='pic/3516.png' height='80%' width='100%' />
<p align=center>3520 振維<p/>
<img src='pic/3520.png' height='80%' width='100%' />
<p align=center>3521 鴻翊<p/>
<img src='pic/3521.png' height='80%' width='100%' />
<p align=center>3522 宏森<p/>
<img src='pic/3522.png' height='80%' width='100%' />
<p align=center>3523 迎輝<p/>
<img src='pic/3523.png' height='80%' width='100%' />
<p align=center>3526 凡甲<p/>
<img src='pic/3526.png' height='80%' width='100%' />
<p align=center>3527 聚積<p/>
<img src='pic/3527.png' height='80%' width='100%' />
<p align=center>3529 力旺<p/>
<img src='pic/3529.png' height='80%' width='100%' />
<p align=center>3531 先益<p/>
<img src='pic/3531.png' height='80%' width='100%' />
<p align=center>3537 堡達<p/>
<img src='pic/3537.png' height='80%' width='100%' />
<p align=center>3540 曜越<p/>
<img src='pic/3540.png' height='80%' width='100%' />
<p align=center>3541 西柏<p/>
<img src='pic/3541.png' height='80%' width='100%' />
<p align=center>3546 宇峻<p/>
<img src='pic/3546.png' height='80%' width='100%' />
<p align=center>3548 兆利<p/>
<img src='pic/3548.png' height='80%' width='100%' />
<p align=center>3551 世禾<p/>
<img src='pic/3551.png' height='80%' width='100%' />
<p align=center>3552 同致<p/>
<img src='pic/3552.png' height='80%' width='100%' />
<p align=center>3553 力積<p/>
<img src='pic/3553.png' height='80%' width='100%' />
<p align=center>3555 重鳥鵬<p/>
<img src='pic/3555.png' height='80%' width='100%' />
<p align=center>3556 禾瑞亞<p/>
<img src='pic/3556.png' height='80%' width='100%' />
<p align=center>3558 神準<p/>
<img src='pic/3558.png' height='80%' width='100%' />
<p align=center>3562 頂晶科<p/>
<img src='pic/3562.png' height='80%' width='100%' />
<p align=center>3563 牧德<p/>
<img src='pic/3563.png' height='80%' width='100%' />
<p align=center>3564 其陽<p/>
<img src='pic/3564.png' height='80%' width='100%' />
<p align=center>3567 逸昌<p/>
<img src='pic/3567.png' height='80%' width='100%' />
<p align=center>3570 大塚<p/>
<img src='pic/3570.png' height='80%' width='100%' />
<p align=center>3577 泓格<p/>
<img src='pic/3577.png' height='80%' width='100%' />
<p align=center>3580 友威科<p/>
<img src='pic/3580.png' height='80%' width='100%' />
<p align=center>3581 博磊<p/>
<img src='pic/3581.png' height='80%' width='100%' />
<p align=center>3587 閎康<p/>
<img src='pic/3587.png' height='80%' width='100%' />
<p align=center>3594 磐儀<p/>
<img src='pic/3594.png' height='80%' width='100%' />
<p align=center>3609 東林<p/>
<img src='pic/3609.png' height='80%' width='100%' />
<p align=center>3611 鼎翰<p/>
<img src='pic/3611.png' height='80%' width='100%' />
<p align=center>3615 安可<p/>
<img src='pic/3615.png' height='80%' width='100%' />
<p align=center>3623 富晶通<p/>
<img src='pic/3623.png' height='80%' width='100%' />
<p align=center>3624 光頡<p/>
<img src='pic/3624.png' height='80%' width='100%' />
<p align=center>3625 西勝<p/>
<img src='pic/3625.png' height='80%' width='100%' />
<p align=center>3628 盈正<p/>
<img src='pic/3628.png' height='80%' width='100%' />
<p align=center>3629 群富通<p/>
<img src='pic/3629.png' height='80%' width='100%' />
<p align=center>3630 新鉅科<p/>
<img src='pic/3630.png' height='80%' width='100%' />
<p align=center>3631 晟楠<p/>
<img src='pic/3631.png' height='80%' width='100%' />
<p align=center>3632 研勤<p/>
<img src='pic/3632.png' height='80%' width='100%' />
<p align=center>3642 駿熠電<p/>
<img src='pic/3642.png' height='80%' width='100%' />
<p align=center>3646 艾恩特<p/>
<img src='pic/3646.png' height='80%' width='100%' />
<p align=center>3652 精聯<p/>
<img src='pic/3652.png' height='80%' width='100%' />
<p align=center>3662 樂陞<p/>
<img src='pic/3662.png' height='80%' width='100%' />
<p align=center>3663 鑫科<p/>
<img src='pic/3663.png' height='80%' width='100%' />
<p align=center>3664 安瑞-KY<p/>
<img src='pic/3664.png' height='80%' width='100%' />
<p align=center>3666 光耀<p/>
<img src='pic/3666.png' height='80%' width='100%' />
<p align=center>3672 康聯訊<p/>
<img src='pic/3672.png' height='80%' width='100%' />
<p align=center>3675 德微<p/>
<img src='pic/3675.png' height='80%' width='100%' />
<p align=center>3680 家登<p/>
<img src='pic/3680.png' height='80%' width='100%' />
<p align=center>3684 榮昌<p/>
<img src='pic/3684.png' height='80%' width='100%' />
<p align=center>3685 元創<p/>
<img src='pic/3685.png' height='80%' width='100%' />
<p align=center>3687 歐買尬<p/>
<img src='pic/3687.png' height='80%' width='100%' />
<p align=center>3689 湧德<p/>
<img src='pic/3689.png' height='80%' width='100%' />
<p align=center>3691 碩禾<p/>
<img src='pic/3691.png' height='80%' width='100%' />
<p align=center>3693 營邦<p/>
<img src='pic/3693.png' height='80%' width='100%' />
<p align=center>3707 漢磊<p/>
<img src='pic/3707.png' height='80%' width='100%' />
<p align=center>4102 永日<p/>
<img src='pic/4102.png' height='80%' width='100%' />
<p align=center>4103 百略<p/>
<img src='pic/4103.png' height='80%' width='100%' />
<p align=center>4105 東洋<p/>
<img src='pic/4105.png' height='80%' width='100%' />
<p align=center>4107 邦特<p/>
<img src='pic/4107.png' height='80%' width='100%' />
<p align=center>4109 穆拉德<p/>
<img src='pic/4109.png' height='80%' width='100%' />
<p align=center>4111 濟生<p/>
<img src='pic/4111.png' height='80%' width='100%' />
<p align=center>4113 聯上<p/>
<img src='pic/4113.png' height='80%' width='100%' />
<p align=center>4114 健喬<p/>
<img src='pic/4114.png' height='80%' width='100%' />
<p align=center>4116 明基醫<p/>
<img src='pic/4116.png' height='80%' width='100%' />
<p align=center>4120 友華<p/>
<img src='pic/4120.png' height='80%' width='100%' />
<p align=center>4121 優盛<p/>
<img src='pic/4121.png' height='80%' width='100%' />
<p align=center>4123 晟德<p/>
<img src='pic/4123.png' height='80%' width='100%' />
<p align=center>4126 太醫<p/>
<img src='pic/4126.png' height='80%' width='100%' />
<p align=center>4127 天良<p/>
<img src='pic/4127.png' height='80%' width='100%' />
<p align=center>4128 中天<p/>
<img src='pic/4128.png' height='80%' width='100%' />
<p align=center>4129 聯合<p/>
<img src='pic/4129.png' height='80%' width='100%' />
<p align=center>4130 健亞<p/>
<img src='pic/4130.png' height='80%' width='100%' />
<p align=center>4131 晶宇<p/>
<img src='pic/4131.png' height='80%' width='100%' />
<p align=center>4138 曜亞<p/>
<img src='pic/4138.png' height='80%' width='100%' />
<p align=center>4139 馬光-KY<p/>
<img src='pic/4139.png' height='80%' width='100%' />
<p align=center>4147 中裕<p/>
<img src='pic/4147.png' height='80%' width='100%' />
<p align=center>4152 台微體<p/>
<img src='pic/4152.png' height='80%' width='100%' />
<p align=center>4153 鈺緯<p/>
<img src='pic/4153.png' height='80%' width='100%' />
<p align=center>4154 康樂-KY<p/>
<img src='pic/4154.png' height='80%' width='100%' />
<p align=center>4157 太景*-KY<p/>
<img src='pic/4157.png' height='80%' width='100%' />
<p align=center>4160 創源<p/>
<img src='pic/4160.png' height='80%' width='100%' />
<p align=center>4161 聿新科<p/>
<img src='pic/4161.png' height='80%' width='100%' />
<p align=center>4162 智擎<p/>
<img src='pic/4162.png' height='80%' width='100%' />
<p align=center>4163 鐿鈦<p/>
<img src='pic/4163.png' height='80%' width='100%' />
<p align=center>4167 展旺<p/>
<img src='pic/4167.png' height='80%' width='100%' />
<p align=center>4168 醣聯<p/>
<img src='pic/4168.png' height='80%' width='100%' />
<p align=center>4171 瑞基<p/>
<img src='pic/4171.png' height='80%' width='100%' />
<p align=center>4173 久裕<p/>
<img src='pic/4173.png' height='80%' width='100%' />
<p align=center>4174 浩鼎<p/>
<img src='pic/4174.png' height='80%' width='100%' />
<p align=center>4175 杏一<p/>
<img src='pic/4175.png' height='80%' width='100%' />
<p align=center>4180 安成藥<p/>
<img src='pic/4180.png' height='80%' width='100%' />
<p align=center>4188 安克<p/>
<img src='pic/4188.png' height='80%' width='100%' />
<p align=center>4192 杏國<p/>
<img src='pic/4192.png' height='80%' width='100%' />
<p align=center>4198 環瑞醫<p/>
<img src='pic/4198.png' height='80%' width='100%' />
<p align=center>4205 中華食<p/>
<img src='pic/4205.png' height='80%' width='100%' />
<p align=center>4207 環泰<p/>
<img src='pic/4207.png' height='80%' width='100%' />
<p align=center>4303 信立<p/>
<img src='pic/4303.png' height='80%' width='100%' />
<p align=center>4304 勝昱<p/>
<img src='pic/4304.png' height='80%' width='100%' />
<p align=center>4305 世坤<p/>
<img src='pic/4305.png' height='80%' width='100%' />
<p align=center>4401 東隆興<p/>
<img src='pic/4401.png' height='80%' width='100%' />
<p align=center>4402 福大<p/>
<img src='pic/4402.png' height='80%' width='100%' />
<p align=center>4406 新昕纖<p/>
<img src='pic/4406.png' height='80%' width='100%' />
<p align=center>4413 飛寶<p/>
<img src='pic/4413.png' height='80%' width='100%' />
<p align=center>4415 台原藥<p/>
<img src='pic/4415.png' height='80%' width='100%' />
<p align=center>4416 三圓<p/>
<img src='pic/4416.png' height='80%' width='100%' />
<p align=center>4417 金洲<p/>
<img src='pic/4417.png' height='80%' width='100%' />
<p align=center>4419 松懋<p/>
<img src='pic/4419.png' height='80%' width='100%' />
<p align=center>4420 光明<p/>
<img src='pic/4420.png' height='80%' width='100%' />
<p align=center>4429 聚紡<p/>
<img src='pic/4429.png' height='80%' width='100%' />
<p align=center>4430 耀億<p/>
<img src='pic/4430.png' height='80%' width='100%' />
<p align=center>4432 銘旺實<p/>
<img src='pic/4432.png' height='80%' width='100%' />
<p align=center>4433 興采<p/>
<img src='pic/4433.png' height='80%' width='100%' />
<p align=center>4502 健信<p/>
<img src='pic/4502.png' height='80%' width='100%' />
<p align=center>4503 金雨<p/>
<img src='pic/4503.png' height='80%' width='100%' />
<p align=center>4506 崇友<p/>
<img src='pic/4506.png' height='80%' width='100%' />
<p align=center>4510 高鋒<p/>
<img src='pic/4510.png' height='80%' width='100%' />
<p align=center>4513 福裕<p/>
<img src='pic/4513.png' height='80%' width='100%' />
<p align=center>4523 永彰<p/>
<img src='pic/4523.png' height='80%' width='100%' />
<p align=center>4527 方土霖<p/>
<img src='pic/4527.png' height='80%' width='100%' />
<p align=center>4528 江興鍛<p/>
<img src='pic/4528.png' height='80%' width='100%' />
<p align=center>4529 昶洧<p/>
<img src='pic/4529.png' height='80%' width='100%' />
<p align=center>4530 宏易<p/>
<img src='pic/4530.png' height='80%' width='100%' />
<p align=center>4533 協易機<p/>
<img src='pic/4533.png' height='80%' width='100%' />
<p align=center>4534 慶騰<p/>
<img src='pic/4534.png' height='80%' width='100%' />
<p align=center>4535 至興<p/>
<img src='pic/4535.png' height='80%' width='100%' />
<p align=center>4541 晟田<p/>
<img src='pic/4541.png' height='80%' width='100%' />
<p align=center>4542 科嶠<p/>
<img src='pic/4542.png' height='80%' width='100%' />
<p align=center>4543 萬在<p/>
<img src='pic/4543.png' height='80%' width='100%' />
<p align=center>4549 桓達<p/>
<img src='pic/4549.png' height='80%' width='100%' />
<p align=center>4550 長佳<p/>
<img src='pic/4550.png' height='80%' width='100%' />
<p align=center>4554 橙的<p/>
<img src='pic/4554.png' height='80%' width='100%' />
<p align=center>4556 旭然<p/>
<img src='pic/4556.png' height='80%' width='100%' />
<p align=center>4609 唐鋒<p/>
<img src='pic/4609.png' height='80%' width='100%' />
<p align=center>4702 中美聯<p/>
<img src='pic/4702.png' height='80%' width='100%' />
<p align=center>4706 大恭<p/>
<img src='pic/4706.png' height='80%' width='100%' />
<p align=center>4707 磐亞<p/>
<img src='pic/4707.png' height='80%' width='100%' />
<p align=center>4711 永純<p/>
<img src='pic/4711.png' height='80%' width='100%' />
<p align=center>4712 南璋<p/>
<img src='pic/4712.png' height='80%' width='100%' />
<p align=center>4714 永捷<p/>
<img src='pic/4714.png' height='80%' width='100%' />
<p align=center>4716 大立<p/>
<img src='pic/4716.png' height='80%' width='100%' />
<p align=center>4721 美琪瑪<p/>
<img src='pic/4721.png' height='80%' width='100%' />
<p align=center>4726 永昕<p/>
<img src='pic/4726.png' height='80%' width='100%' />
<p align=center>4728 雙美<p/>
<img src='pic/4728.png' height='80%' width='100%' />
<p align=center>4729 熒茂<p/>
<img src='pic/4729.png' height='80%' width='100%' />
<p align=center>4735 豪展<p/>
<img src='pic/4735.png' height='80%' width='100%' />
<p align=center>4736 泰博<p/>
<img src='pic/4736.png' height='80%' width='100%' />
<p align=center>4739 康普<p/>
<img src='pic/4739.png' height='80%' width='100%' />
<p align=center>4743 合一<p/>
<img src='pic/4743.png' height='80%' width='100%' />
<p align=center>4745 合富-KY<p/>
<img src='pic/4745.png' height='80%' width='100%' />
<p align=center>4747 強生<p/>
<img src='pic/4747.png' height='80%' width='100%' />
<p align=center>4754 國碳科<p/>
<img src='pic/4754.png' height='80%' width='100%' />
<p align=center>4762 三汰-KY<p/>
<img src='pic/4762.png' height='80%' width='100%' />
<p align=center>4803 VHQ-KY<p/>
<img src='pic/4803.png' height='80%' width='100%' />
<p align=center>4804 大略-KY<p/>
<img src='pic/4804.png' height='80%' width='100%' />
<p align=center>4806 昇華<p/>
<img src='pic/4806.png' height='80%' width='100%' />
<p align=center>4903 聯光通<p/>
<img src='pic/4903.png' height='80%' width='100%' />
<p align=center>4905 台聯電<p/>
<img src='pic/4905.png' height='80%' width='100%' />
<p align=center>4907 富宇<p/>
<img src='pic/4907.png' height='80%' width='100%' />
<p align=center>4908 前鼎<p/>
<img src='pic/4908.png' height='80%' width='100%' />
<p align=center>4909 新復興<p/>
<img src='pic/4909.png' height='80%' width='100%' />
<p align=center>4911 德英<p/>
<img src='pic/4911.png' height='80%' width='100%' />
<p align=center>4924 欣厚-KY<p/>
<img src='pic/4924.png' height='80%' width='100%' />
<p align=center>4933 友輝<p/>
<img src='pic/4933.png' height='80%' width='100%' />
<p align=center>4939 亞電<p/>
<img src='pic/4939.png' height='80%' width='100%' />
<p align=center>4944 兆遠<p/>
<img src='pic/4944.png' height='80%' width='100%' />
<p align=center>4946 辣椒<p/>
<img src='pic/4946.png' height='80%' width='100%' />
<p align=center>4947 昂寶-KY<p/>
<img src='pic/4947.png' height='80%' width='100%' />
<p align=center>4950 牧東<p/>
<img src='pic/4950.png' height='80%' width='100%' />
<p align=center>4953 緯軟<p/>
<img src='pic/4953.png' height='80%' width='100%' />
<p align=center>4965 商店街<p/>
<img src='pic/4965.png' height='80%' width='100%' />
<p align=center>4966 譜瑞-KY<p/>
<img src='pic/4966.png' height='80%' width='100%' />
<p align=center>4971 IET-KY<p/>
<img src='pic/4971.png' height='80%' width='100%' />
<p align=center>4972 湯石<p/>
<img src='pic/4972.png' height='80%' width='100%' />
<p align=center>4973 廣穎<p/>
<img src='pic/4973.png' height='80%' width='100%' />
<p align=center>4974 亞泰<p/>
<img src='pic/4974.png' height='80%' width='100%' />
<p align=center>4979 華星光<p/>
<img src='pic/4979.png' height='80%' width='100%' />
<p align=center>4987 科誠<p/>
<img src='pic/4987.png' height='80%' width='100%' />
<p align=center>4991 環宇-KY<p/>
<img src='pic/4991.png' height='80%' width='100%' />
<p align=center>4995 晶達<p/>
<img src='pic/4995.png' height='80%' width='100%' />
<p align=center>5009 榮剛<p/>
<img src='pic/5009.png' height='80%' width='100%' />
<p align=center>5011 久陽<p/>
<img src='pic/5011.png' height='80%' width='100%' />
<p align=center>5013 強新<p/>
<img src='pic/5013.png' height='80%' width='100%' />
<p align=center>5014 建錩<p/>
<img src='pic/5014.png' height='80%' width='100%' />
<p align=center>5015 華祺<p/>
<img src='pic/5015.png' height='80%' width='100%' />
<p align=center>5016 松和<p/>
<img src='pic/5016.png' height='80%' width='100%' />
<p align=center>5102 富強<p/>
<img src='pic/5102.png' height='80%' width='100%' />
<p align=center>5201 凱衛<p/>
<img src='pic/5201.png' height='80%' width='100%' />
<p align=center>5202 力新<p/>
<img src='pic/5202.png' height='80%' width='100%' />
<p align=center>5205 漢康<p/>
<img src='pic/5205.png' height='80%' width='100%' />
<p align=center>5206 坤悅<p/>
<img src='pic/5206.png' height='80%' width='100%' />
<p align=center>5209 新鼎<p/>
<img src='pic/5209.png' height='80%' width='100%' />
<p align=center>5210 寶碩<p/>
<img src='pic/5210.png' height='80%' width='100%' />
<p align=center>5211 蒙恬<p/>
<img src='pic/5211.png' height='80%' width='100%' />
<p align=center>5212 凌網<p/>
<img src='pic/5212.png' height='80%' width='100%' />
<p align=center>5213 亞昕<p/>
<img src='pic/5213.png' height='80%' width='100%' />
<p align=center>5227 立凱-KY<p/>
<img src='pic/5227.png' height='80%' width='100%' />
<p align=center>5230 雷笛克光學<p/>
<img src='pic/5230.png' height='80%' width='100%' />
<p align=center>5245 智晶<p/>
<img src='pic/5245.png' height='80%' width='100%' />
<p align=center>5251 天鉞電<p/>
<img src='pic/5251.png' height='80%' width='100%' />
<p align=center>5255 美桀<p/>
<img src='pic/5255.png' height='80%' width='100%' />
<p align=center>5263 智崴<p/>
<img src='pic/5263.png' height='80%' width='100%' />
<p align=center>5272 笙科<p/>
<img src='pic/5272.png' height='80%' width='100%' />
<p align=center>5274 信驊<p/>
<img src='pic/5274.png' height='80%' width='100%' />
<p align=center>5276 達輝-KY<p/>
<img src='pic/5276.png' height='80%' width='100%' />
<p align=center>5278 尚凡<p/>
<img src='pic/5278.png' height='80%' width='100%' />
<p align=center>5281 大峽谷-KY<p/>
<img src='pic/5281.png' height='80%' width='100%' />
<p align=center>5284 jpp-KY<p/>
<img src='pic/5284.png' height='80%' width='100%' />
<p align=center>5287 數字<p/>
<img src='pic/5287.png' height='80%' width='100%' />
<p align=center>5289 宜鼎<p/>
<img src='pic/5289.png' height='80%' width='100%' />
<p align=center>5291 邑昇<p/>
<img src='pic/5291.png' height='80%' width='100%' />
<p align=center>5301 寶得利<p/>
<img src='pic/5301.png' height='80%' width='100%' />
<p align=center>5302 太欣<p/>
<img src='pic/5302.png' height='80%' width='100%' />
<p align=center>5304 鼎創達<p/>
<img src='pic/5304.png' height='80%' width='100%' />
<p align=center>5306 桂盟<p/>
<img src='pic/5306.png' height='80%' width='100%' />
<p align=center>5309 系統<p/>
<img src='pic/5309.png' height='80%' width='100%' />
<p align=center>5310 天剛<p/>
<img src='pic/5310.png' height='80%' width='100%' />
<p align=center>5312 寶島科<p/>
<img src='pic/5312.png' height='80%' width='100%' />
<p align=center>5314 世紀<p/>
<img src='pic/5314.png' height='80%' width='100%' />
<p align=center>5315 光聯<p/>
<img src='pic/5315.png' height='80%' width='100%' />
<p align=center>5317 凱美<p/>
<img src='pic/5317.png' height='80%' width='100%' />
<p align=center>5321 友銓<p/>
<img src='pic/5321.png' height='80%' width='100%' />
<p align=center>5324 士開<p/>
<img src='pic/5324.png' height='80%' width='100%' />
<p align=center>5328 華容<p/>
<img src='pic/5328.png' height='80%' width='100%' />
<p align=center>5340 建榮<p/>
<img src='pic/5340.png' height='80%' width='100%' />
<p align=center>5344 立衛<p/>
<img src='pic/5344.png' height='80%' width='100%' />
<p align=center>5345 天揚<p/>
<img src='pic/5345.png' height='80%' width='100%' />
<p align=center>5347 世界<p/>
<img src='pic/5347.png' height='80%' width='100%' />
<p align=center>5348 系通<p/>
<img src='pic/5348.png' height='80%' width='100%' />
<p align=center>5349 先豐<p/>
<img src='pic/5349.png' height='80%' width='100%' />
<p align=center>5351 鈺創<p/>
<img src='pic/5351.png' height='80%' width='100%' />
<p align=center>5353 台林<p/>
<img src='pic/5353.png' height='80%' width='100%' />
<p align=center>5355 佳總<p/>
<img src='pic/5355.png' height='80%' width='100%' />
<p align=center>5356 協益<p/>
<img src='pic/5356.png' height='80%' width='100%' />
<p align=center>5364 力麗店<p/>
<img src='pic/5364.png' height='80%' width='100%' />
<p align=center>5371 中光電<p/>
<img src='pic/5371.png' height='80%' width='100%' />
<p align=center>5381 合正<p/>
<img src='pic/5381.png' height='80%' width='100%' />
<p align=center>5383 金利<p/>
<img src='pic/5383.png' height='80%' width='100%' />
<p align=center>5384 捷元<p/>
<img src='pic/5384.png' height='80%' width='100%' />
<p align=center>5386 青雲<p/>
<img src='pic/5386.png' height='80%' width='100%' />
<p align=center>5392 應華<p/>
<img src='pic/5392.png' height='80%' width='100%' />
<p align=center>5395 圓方<p/>
<img src='pic/5395.png' height='80%' width='100%' />
<p align=center>5398 力瑋<p/>
<img src='pic/5398.png' height='80%' width='100%' />
<p align=center>5403 中菲<p/>
<img src='pic/5403.png' height='80%' width='100%' />
<p align=center>5410 國眾<p/>
<img src='pic/5410.png' height='80%' width='100%' />
<p align=center>5425 台半<p/>
<img src='pic/5425.png' height='80%' width='100%' />
<p align=center>5426 振發<p/>
<img src='pic/5426.png' height='80%' width='100%' />
<p align=center>5432 達威<p/>
<img src='pic/5432.png' height='80%' width='100%' />
<p align=center>5438 東友<p/>
<img src='pic/5438.png' height='80%' width='100%' />
<p align=center>5439 高技<p/>
<img src='pic/5439.png' height='80%' width='100%' />
<p align=center>5443 均豪<p/>
<img src='pic/5443.png' height='80%' width='100%' />
<p align=center>5450 寶聯<p/>
<img src='pic/5450.png' height='80%' width='100%' />
<p align=center>5452 佶優<p/>
<img src='pic/5452.png' height='80%' width='100%' />
<p align=center>5455 訊利電<p/>
<img src='pic/5455.png' height='80%' width='100%' />
<p align=center>5457 宣德<p/>
<img src='pic/5457.png' height='80%' width='100%' />
<p align=center>5460 同協<p/>
<img src='pic/5460.png' height='80%' width='100%' />
<p align=center>5464 霖宏<p/>
<img src='pic/5464.png' height='80%' width='100%' />
<p align=center>5465 富驊<p/>
<img src='pic/5465.png' height='80%' width='100%' />
<p align=center>5468 凱鈺<p/>
<img src='pic/5468.png' height='80%' width='100%' />
<p align=center>5474 聰泰<p/>
<img src='pic/5474.png' height='80%' width='100%' />
<p align=center>5475 德宏<p/>
<img src='pic/5475.png' height='80%' width='100%' />
<p align=center>5478 智冠<p/>
<img src='pic/5478.png' height='80%' width='100%' />
<p align=center>5480 統盟<p/>
<img src='pic/5480.png' height='80%' width='100%' />
<p align=center>5481 華韡<p/>
<img src='pic/5481.png' height='80%' width='100%' />
<p align=center>5483 中美晶<p/>
<img src='pic/5483.png' height='80%' width='100%' />
<p align=center>5487 通泰<p/>
<img src='pic/5487.png' height='80%' width='100%' />
<p align=center>5488 松普<p/>
<img src='pic/5488.png' height='80%' width='100%' />
<p align=center>5489 彩富<p/>
<img src='pic/5489.png' height='80%' width='100%' />
<p align=center>5490 同亨<p/>
<img src='pic/5490.png' height='80%' width='100%' />
<p align=center>5491 連展<p/>
<img src='pic/5491.png' height='80%' width='100%' />
<p align=center>5493 三聯<p/>
<img src='pic/5493.png' height='80%' width='100%' />
<p align=center>5498 凱崴<p/>
<img src='pic/5498.png' height='80%' width='100%' />
<p align=center>5508 永信建<p/>
<img src='pic/5508.png' height='80%' width='100%' />
<p align=center>5511 德昌<p/>
<img src='pic/5511.png' height='80%' width='100%' />
<p align=center>5512 力麒<p/>
<img src='pic/5512.png' height='80%' width='100%' />
<p align=center>5514 三豐<p/>
<img src='pic/5514.png' height='80%' width='100%' />
<p align=center>5516 雙喜<p/>
<img src='pic/5516.png' height='80%' width='100%' />
<p align=center>5520 力泰<p/>
<img src='pic/5520.png' height='80%' width='100%' />
<p align=center>5523 豐謙<p/>
<img src='pic/5523.png' height='80%' width='100%' />
<p align=center>5529 志嘉<p/>
<img src='pic/5529.png' height='80%' width='100%' />
<p align=center>5530 龍巖<p/>
<img src='pic/5530.png' height='80%' width='100%' />
<p align=center>5536 聖暉<p/>
<img src='pic/5536.png' height='80%' width='100%' />
<p align=center>5543 崇佑-KY<p/>
<img src='pic/5543.png' height='80%' width='100%' />
<p align=center>5601 台聯櫃<p/>
<img src='pic/5601.png' height='80%' width='100%' />
<p align=center>5603 陸海<p/>
<img src='pic/5603.png' height='80%' width='100%' />
<p align=center>5604 中連貨<p/>
<img src='pic/5604.png' height='80%' width='100%' />
<p align=center>5609 中菲行<p/>
<img src='pic/5609.png' height='80%' width='100%' />
<p align=center>5701 劍湖山<p/>
<img src='pic/5701.png' height='80%' width='100%' />
<p align=center>5703 亞都<p/>
<img src='pic/5703.png' height='80%' width='100%' />
<p align=center>5704 老爺知<p/>
<img src='pic/5704.png' height='80%' width='100%' />
<p align=center>5820 日盛金<p/>
<img src='pic/5820.png' height='80%' width='100%' />
<p align=center>5878 台名<p/>
<img src='pic/5878.png' height='80%' width='100%' />
<p align=center>5902 德記<p/>
<img src='pic/5902.png' height='80%' width='100%' />
<p align=center>5903 全家<p/>
<img src='pic/5903.png' height='80%' width='100%' />
<p align=center>5904 寶雅<p/>
<img src='pic/5904.png' height='80%' width='100%' />
<p align=center>5905 南仁湖<p/>
<img src='pic/5905.png' height='80%' width='100%' />
<p align=center>6015 宏遠證<p/>
<img src='pic/6015.png' height='80%' width='100%' />
<p align=center>6016 康和證<p/>
<img src='pic/6016.png' height='80%' width='100%' />
<p align=center>6020 大展證<p/>
<img src='pic/6020.png' height='80%' width='100%' />
<p align=center>6021 大慶證<p/>
<img src='pic/6021.png' height='80%' width='100%' />
<p align=center>6022 大眾證<p/>
<img src='pic/6022.png' height='80%' width='100%' />
<p align=center>6023 元大期<p/>
<img src='pic/6023.png' height='80%' width='100%' />
<p align=center>6024 群益期<p/>
<img src='pic/6024.png' height='80%' width='100%' />
<p align=center>6026 福邦證<p/>
<img src='pic/6026.png' height='80%' width='100%' />
<p align=center>6101 弘捷<p/>
<img src='pic/6101.png' height='80%' width='100%' />
<p align=center>6103 合邦<p/>
<img src='pic/6103.png' height='80%' width='100%' />
<p align=center>6104 創惟<p/>
<img src='pic/6104.png' height='80%' width='100%' />
<p align=center>6105 瑞傳<p/>
<img src='pic/6105.png' height='80%' width='100%' />
<p align=center>6107 華美<p/>
<img src='pic/6107.png' height='80%' width='100%' />
<p align=center>6109 亞元<p/>
<img src='pic/6109.png' height='80%' width='100%' />
<p align=center>6111 大宇資<p/>
<img src='pic/6111.png' height='80%' width='100%' />
<p align=center>6113 亞矽<p/>
<img src='pic/6113.png' height='80%' width='100%' />
<p align=center>6114 久威<p/>
<img src='pic/6114.png' height='80%' width='100%' />
<p align=center>6118 建達<p/>
<img src='pic/6118.png' height='80%' width='100%' />
<p align=center>6121 新普<p/>
<img src='pic/6121.png' height='80%' width='100%' />
<p align=center>6122 擎邦<p/>
<img src='pic/6122.png' height='80%' width='100%' />
<p align=center>6123 上奇<p/>
<img src='pic/6123.png' height='80%' width='100%' />
<p align=center>6124 業強<p/>
<img src='pic/6124.png' height='80%' width='100%' />
<p align=center>6125 廣運<p/>
<img src='pic/6125.png' height='80%' width='100%' />
<p align=center>6126 信音<p/>
<img src='pic/6126.png' height='80%' width='100%' />
<p align=center>6127 九豪<p/>
<img src='pic/6127.png' height='80%' width='100%' />
<p align=center>6129 普誠<p/>
<img src='pic/6129.png' height='80%' width='100%' />
<p align=center>6130 基因<p/>
<img src='pic/6130.png' height='80%' width='100%' />
<p align=center>6134 萬旭<p/>
<img src='pic/6134.png' height='80%' width='100%' />
<p align=center>6138 茂達<p/>