-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprogrammer_jig_v130.brd
6703 lines (6702 loc) · 350 KB
/
programmer_jig_v130.brd
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
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE eagle SYSTEM "eagle.dtd">
<eagle version="9.7.0">
<drawing>
<settings>
<setting alwaysvectorfont="no"/>
<setting verticaltext="up"/>
</settings>
<grid distance="5" unitdist="mil" unit="mil" style="dots" multiple="1" display="no" altdistance="5" altunitdist="mil" altunit="mil"/>
<layers>
<layer number="1" name="Top" blackcolor="0xccc90d0c" whitecolor="0xccc90d0c" coloredcolor="0xccc90d0c" blackhighlight="0xccc90000" whitehighlight="0xccc90000" coloredhighlight="0xccc90000" fill="1" visible="yes" active="yes" locked="no"/>
<layer number="2" name="Route2" blackcolor="0xc866cccc" whitecolor="0xccffe74c" coloredcolor="0xccffe74c" blackhighlight="0xc800cccc" whitehighlight="0xccffd900" coloredhighlight="0xccffd900" fill="1" visible="no" active="no" locked="no"/>
<layer number="3" name="Route3" blackcolor="0xcc91d178" whitecolor="0xcc91d178" coloredcolor="0xcc91d178" blackhighlight="0xcc3bd100" whitehighlight="0xcc3bd100" coloredhighlight="0xcc3bd100" fill="1" visible="no" active="no" locked="no"/>
<layer number="4" name="Route4" blackcolor="0xccffdda1" whitecolor="0xccffdda1" coloredcolor="0xccffdda1" blackhighlight="0xccffa200" whitehighlight="0xccffa200" coloredhighlight="0xccffa200" fill="1" visible="no" active="no" locked="no"/>
<layer number="5" name="Route5" blackcolor="0xcc5fad56" whitecolor="0xcc5fad56" coloredcolor="0xcc5fad56" blackhighlight="0xcc14ad00" whitehighlight="0xcc14ad00" coloredhighlight="0xcc14ad00" fill="1" visible="no" active="no" locked="no"/>
<layer number="6" name="Route6" blackcolor="0xcc5e897c" whitecolor="0xcc5e897c" coloredcolor="0xcc5e897c" blackhighlight="0xcc00895e" whitehighlight="0xcc00895e" coloredhighlight="0xcc00895e" fill="1" visible="no" active="no" locked="no"/>
<layer number="7" name="Route7" blackcolor="0xcc6f45b4" whitecolor="0xcc6f45b4" coloredcolor="0xcc6f45b4" blackhighlight="0xcc4200b4" whitehighlight="0xcc4200b4" coloredhighlight="0xcc4200b4" fill="1" visible="no" active="no" locked="no"/>
<layer number="8" name="Route8" blackcolor="0xcc516363" whitecolor="0xcc516363" coloredcolor="0xcc516363" blackhighlight="0xcc006363" whitehighlight="0xcc006363" coloredhighlight="0xcc006363" fill="1" visible="no" active="no" locked="no"/>
<layer number="9" name="Route9" blackcolor="0xccd6a2ad" whitecolor="0xccd6a2ad" coloredcolor="0xccd6a2ad" blackhighlight="0xccd6002e" whitehighlight="0xccd6002e" coloredhighlight="0xccd6002e" fill="1" visible="no" active="no" locked="no"/>
<layer number="10" name="Route10" blackcolor="0xccef476f" whitecolor="0xccef476f" coloredcolor="0xccef476f" blackhighlight="0xccef003c" whitehighlight="0xccef003c" coloredhighlight="0xccef003c" fill="1" visible="no" active="no" locked="no"/>
<layer number="11" name="Route11" blackcolor="0xccd4dcff" whitecolor="0xccd4dcff" coloredcolor="0xccd4dcff" blackhighlight="0xcc0033ff" whitehighlight="0xcc0033ff" coloredhighlight="0xcc0033ff" fill="1" visible="no" active="no" locked="no"/>
<layer number="12" name="Route12" blackcolor="0xcc00bfb2" whitecolor="0xcc00bfb2" coloredcolor="0xcc00bfb2" blackhighlight="0xcc00bfaf" whitehighlight="0xcc00bfaf" coloredhighlight="0xcc00bfaf" fill="1" visible="no" active="no" locked="no"/>
<layer number="13" name="Route13" blackcolor="0xcc65def1" whitecolor="0xcc65def1" coloredcolor="0xcc65def1" blackhighlight="0xcc00d1f1" whitehighlight="0xcc00d1f1" coloredhighlight="0xcc00d1f1" fill="1" visible="no" active="no" locked="no"/>
<layer number="14" name="Route14" blackcolor="0xccc55ea3" whitecolor="0xccc55ea3" coloredcolor="0xccc55ea3" blackhighlight="0xccc50087" whitehighlight="0xccc50087" coloredhighlight="0xccc50087" fill="1" visible="no" active="no" locked="no"/>
<layer number="15" name="Route15" blackcolor="0xccd4ddff" whitecolor="0xccf56416" coloredcolor="0xccf56416" blackhighlight="0xcc0037ff" whitehighlight="0xccf55200" coloredhighlight="0xccf55200" fill="1" visible="no" active="no" locked="no"/>
<layer number="16" name="Bottom" blackcolor="0xcc0696d7" whitecolor="0xcc0696d7" coloredcolor="0xcc0696d7" blackhighlight="0xcc0097d7" whitehighlight="0xcc0097d7" coloredhighlight="0xcc0097d7" fill="1" visible="yes" active="yes" locked="no"/>
<layer number="17" name="Pads" blackcolor="0xcc3ddc97" whitecolor="0xcc0dab76" coloredcolor="0xcc0dab76" blackhighlight="0xcc00dc79" whitehighlight="0xcc00ab6f" coloredhighlight="0xcc00ab6f" fill="1" visible="yes" active="yes" locked="no"/>
<layer number="18" name="Vias" blackcolor="0xcc3ddc97" whitecolor="0xcc0dab76" coloredcolor="0xcc0dab76" blackhighlight="0xcc00dc79" whitehighlight="0xcc00ab6f" coloredhighlight="0xcc00ab6f" fill="1" visible="yes" active="yes" locked="no"/>
<layer number="19" name="Unrouted" blackcolor="0xccc8c832" whitecolor="0xbbc8c832" coloredcolor="0xbbc8c832" blackhighlight="0xccc8c800" whitehighlight="0xbbc8c800" coloredhighlight="0xbbc8c800" fill="1" visible="yes" active="yes" locked="no"/>
<layer number="20" name="BoardOutline" blackcolor="0xcceec643" whitecolor="0xcceec643" coloredcolor="0xcceec643" blackhighlight="0xcceeb300" whitehighlight="0xcceeb300" coloredhighlight="0xcceeb300" fill="1" visible="yes" active="yes" locked="no"/>
<layer number="21" name="SilkscreenTop" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="yes" active="yes" locked="no"/>
<layer number="22" name="SilkscreenBottom" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="yes" active="yes" locked="no"/>
<layer number="23" name="OriginsTop" blackcolor="0xccafd134" whitecolor="0xccafd134" coloredcolor="0xccafd134" blackhighlight="0xcca7d100" whitehighlight="0xcca7d100" coloredhighlight="0xcca7d100" fill="1" visible="yes" active="yes" locked="no"/>
<layer number="24" name="OriginsBottom" blackcolor="0xccafd134" whitecolor="0xccafd134" coloredcolor="0xccafd134" blackhighlight="0xcca7d100" whitehighlight="0xcca7d100" coloredhighlight="0xcca7d100" fill="1" visible="yes" active="yes" locked="no"/>
<layer number="25" name="NamesTop" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="yes" active="yes" locked="no"/>
<layer number="26" name="NamesBottom" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="yes" active="yes" locked="no"/>
<layer number="27" name="ValuesTop" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="yes" active="yes" locked="no"/>
<layer number="28" name="ValuesBottom" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="yes" active="yes" locked="no"/>
<layer number="29" name="SolderMaskTop" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="3" visible="no" active="yes" locked="no"/>
<layer number="30" name="SolderMaskBottom" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="6" visible="no" active="yes" locked="no"/>
<layer number="31" name="StencilTop" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="4" visible="no" active="yes" locked="no"/>
<layer number="32" name="StencilBottom" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="5" visible="no" active="yes" locked="no"/>
<layer number="33" name="FinishTop" blackcolor="0xccc8c832" whitecolor="0xbbc8c832" coloredcolor="0xbbc8c832" blackhighlight="0xccc8c800" whitehighlight="0xbbc8c800" coloredhighlight="0xbbc8c800" fill="3" visible="no" active="yes" locked="no"/>
<layer number="34" name="FinishBottom" blackcolor="0xccc8c832" whitecolor="0xbbc8c832" coloredcolor="0xbbc8c832" blackhighlight="0xccc8c800" whitehighlight="0xbbc8c800" coloredhighlight="0xbbc8c800" fill="6" visible="no" active="yes" locked="no"/>
<layer number="35" name="GlueTop" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="4" visible="no" active="yes" locked="no"/>
<layer number="36" name="GlueBottom" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="5" visible="no" active="yes" locked="no"/>
<layer number="37" name="TestTop" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="yes" locked="no"/>
<layer number="38" name="TestBottom" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="yes" locked="no"/>
<layer number="39" name="ComponentExcludeTop" blackcolor="0xccc90d0c" whitecolor="0xccc90d0c" coloredcolor="0xccc90d0c" blackhighlight="0xccc90000" whitehighlight="0xccc90000" coloredhighlight="0xccc90000" fill="11" visible="yes" active="yes" locked="no"/>
<layer number="40" name="ComponentExcludeBottom" blackcolor="0xcc0696d7" whitecolor="0xcc0696d7" coloredcolor="0xcc0696d7" blackhighlight="0xcc0097d7" whitehighlight="0xcc0097d7" coloredhighlight="0xcc0097d7" fill="11" visible="yes" active="yes" locked="no"/>
<layer number="41" name="RestrictTop" blackcolor="0xccc90d0c" whitecolor="0xccc90d0c" coloredcolor="0xccc90d0c" blackhighlight="0xccc90000" whitehighlight="0xccc90000" coloredhighlight="0xccc90000" fill="10" visible="yes" active="yes" locked="no"/>
<layer number="42" name="RestrictBottom" blackcolor="0xcc0696d7" whitecolor="0xcc0696d7" coloredcolor="0xcc0696d7" blackhighlight="0xcc0097d7" whitehighlight="0xcc0097d7" coloredhighlight="0xcc0097d7" fill="10" visible="yes" active="yes" locked="no"/>
<layer number="43" name="RestrictVias" blackcolor="0xcc3ddc97" whitecolor="0xcc0dab76" coloredcolor="0xcc0dab76" blackhighlight="0xcc00dc79" whitehighlight="0xcc00ab6f" coloredhighlight="0xcc00ab6f" fill="10" visible="yes" active="yes" locked="no"/>
<layer number="44" name="Drills" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="yes" locked="no"/>
<layer number="45" name="Holes" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="yes" locked="no"/>
<layer number="46" name="Milling" blackcolor="0xcc32c8c8" whitecolor="0xb432c8c8" coloredcolor="0xb432c8c8" blackhighlight="0xcc00c8c8" whitehighlight="0xb400c8c8" coloredhighlight="0xb400c8c8" fill="1" visible="no" active="yes" locked="no"/>
<layer number="47" name="Measures" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="yes" locked="no"/>
<layer number="48" name="Document" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="yes" active="yes" locked="no"/>
<layer number="49" name="Reference" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="yes" active="yes" locked="no"/>
<layer number="50" name="dxf" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="51" name="DocumentTop" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="yes" active="yes" locked="no"/>
<layer number="52" name="DocumentBottom" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="yes" active="yes" locked="no"/>
<layer number="53" name="tGND_GNDA" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="9" visible="no" active="no" locked="no"/>
<layer number="54" name="bGND_GNDA" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="9" visible="no" active="no" locked="no"/>
<layer number="56" name="wert" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="57" name="tCAD" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="58" name="bCAD" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="59" name="tCarbon" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="60" name="bCarbon" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="88" name="SimResults" blackcolor="0xb40000ff" whitecolor="0xcc8252c2" coloredcolor="0xcc8252c2" blackhighlight="0xb40000ff" whitehighlight="0xcc5100c2" coloredhighlight="0xcc5100c2" fill="1" visible="no" active="no" locked="no"/>
<layer number="89" name="SimProbes" blackcolor="0xb40000ff" whitecolor="0xcc8252c2" coloredcolor="0xcc8252c2" blackhighlight="0xb40000ff" whitehighlight="0xcc5100c2" coloredhighlight="0xcc5100c2" fill="1" visible="no" active="no" locked="no"/>
<layer number="90" name="Modules" blackcolor="0xccffba08" whitecolor="0xccffba08" coloredcolor="0xccffba08" blackhighlight="0xccffb700" whitehighlight="0xccffb700" coloredhighlight="0xccffb700" fill="1" visible="no" active="no" locked="no"/>
<layer number="91" name="Nets" blackcolor="0xcc3ddc97" whitecolor="0xcc0dab76" coloredcolor="0xcc0dab76" blackhighlight="0xcc00dc79" whitehighlight="0xcc00ab6f" coloredhighlight="0xcc00ab6f" fill="1" visible="no" active="no" locked="no"/>
<layer number="92" name="Busses" blackcolor="0xcc0696d7" whitecolor="0xcc0696d7" coloredcolor="0xcc0696d7" blackhighlight="0xcc0097d7" whitehighlight="0xcc0097d7" coloredhighlight="0xcc0097d7" fill="1" visible="no" active="no" locked="no"/>
<layer number="93" name="Pins" blackcolor="0xcc3ddc97" whitecolor="0xcc0dab76" coloredcolor="0xcc0dab76" blackhighlight="0xcc00dc79" whitehighlight="0xcc00ab6f" coloredhighlight="0xcc00ab6f" fill="1" visible="no" active="no" locked="no"/>
<layer number="94" name="Symbols" blackcolor="0xccc90d0c" whitecolor="0xccc90d0c" coloredcolor="0xccc90d0c" blackhighlight="0xccc90000" whitehighlight="0xccc90000" coloredhighlight="0xccc90000" fill="1" visible="no" active="no" locked="no"/>
<layer number="95" name="Names" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="96" name="Values" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="97" name="Info" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="98" name="Guide" blackcolor="0xccc8c832" whitecolor="0xbbc8c832" coloredcolor="0xbbc8c832" blackhighlight="0xccc8c800" whitehighlight="0xbbc8c800" coloredhighlight="0xbbc8c800" fill="1" visible="no" active="no" locked="no"/>
<layer number="99" name="SpiceOrder" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="100" name="Muster" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="101" name="Patch_Top" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="4" visible="no" active="no" locked="no"/>
<layer number="102" name="Vscore" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="103" name="tMap" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="104" name="Name" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="105" name="tPlate" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="106" name="bPlate" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="107" name="Crop" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="108" name="tplace-old" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="109" name="ref-old" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="110" name="fp0" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="111" name="LPC17xx" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="112" name="tSilk" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="113" name="IDFDebug" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="114" name="Badge_Outline" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="115" name="ReferenceISLANDS" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="116" name="Patch_BOT" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="4" visible="no" active="no" locked="no"/>
<layer number="117" name="PM_Ref" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="118" name="Rect_Pads" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="119" name="PF_Ref" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="120" name="WFL_Ref" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="121" name="_tsilk" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="122" name="_bsilk" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="123" name="tTestmark" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="124" name="bTestmark" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="125" name="_tNames" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="126" name="_bNames" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="127" name="_tValues" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="128" name="_bValues" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="129" name="Mask" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="130" name="SMDSTROOK" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="131" name="tAdjust" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="132" name="bAdjust" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="133" name="bottom_silk" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="134" name="silk_top" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="135" name="silk_bottom" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="136" name="silktop" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="137" name="silkbottom" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="138" name="EEE" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="139" name="_tKeepout" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="140" name="mbKeepout" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="141" name="ASSEMBLY_TOP" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="142" name="mbRestrict" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="143" name="PLACE_BOUND_TOP" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="144" name="Drill_legend" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="145" name="DrillLegend_01-16" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="146" name="DrillLegend_01-20" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="147" name="PIN_NUMBER" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="148" name="DrillLegend_01-20" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="149" name="DrillLegend_02-15" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="150" name="Notes" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="151" name="HeatSink" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="152" name="_bDocu" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="153" name="FabDoc1" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="154" name="FabDoc2" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="155" name="FabDoc3" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="156" name="gesam-Maß" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="157" name="FaceMchng" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="158" name="FaceMMeas" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="159" name="Geh-Bear2" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="160" name="Topologie" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="161" name="tomplace2" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="166" name="AntennaArea" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="168" name="4mmHeightArea" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="191" name="mNets" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="192" name="mBusses" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="193" name="mPins" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="194" name="mSymbols" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="195" name="mNames" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="196" name="mValues" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="199" name="Contour" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="200" name="200bmp" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="10" visible="no" active="no" locked="no"/>
<layer number="201" name="201bmp" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="10" visible="no" active="no" locked="no"/>
<layer number="202" name="202bmp" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="10" visible="no" active="no" locked="no"/>
<layer number="203" name="203bmp" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="10" visible="no" active="no" locked="no"/>
<layer number="204" name="204bmp" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="10" visible="no" active="no" locked="no"/>
<layer number="205" name="205bmp" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="10" visible="no" active="no" locked="no"/>
<layer number="206" name="206bmp" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="10" visible="no" active="no" locked="no"/>
<layer number="207" name="207bmp" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="10" visible="no" active="no" locked="no"/>
<layer number="208" name="208bmp" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="10" visible="no" active="no" locked="no"/>
<layer number="209" name="209bmp" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="210" name="210bmp" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="211" name="211bmp" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="212" name="212bmp" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="213" name="213bmp" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="214" name="214bmp" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="215" name="215bmp" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="216" name="216bmp" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="217" name="217bmp" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="218" name="218bmp" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="219" name="219bmp" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="220" name="220bmp" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="221" name="221bmp" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="222" name="222bmp" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="223" name="223bmp" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="224" name="224bmp" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="225" name="225bmp" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="226" name="226bmp" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="227" name="227bmp" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="228" name="228bmp" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="229" name="229bmp" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="230" name="230bmp" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="231" name="231bmp" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="232" name="Eagle3D_PG2" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="233" name="Eagle3D_PG3" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="248" name="Housing" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="249" name="Edge" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="250" name="Descript" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="251" name="SMDround" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="252" name="BR-BS" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="253" name="Extra" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="254" name="cooling" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
<layer number="255" name="routoute" blackcolor="0xccc8c8c8" whitecolor="0xbb808080" coloredcolor="0xbb808080" blackhighlight="0xccc8c8c8" whitehighlight="0xbb808080" coloredhighlight="0xbb808080" fill="1" visible="no" active="no" locked="no"/>
</layers>
<board>
<plain>
<text x="-9.017" y="10.541" size="0.6096" layer="21">vcc</text>
<text x="-12.065" y="8.128" size="0.4572" layer="21">RXD</text>
<text x="-13.335" y="6.096" size="0.4572" layer="21">TXD</text>
<text x="-6.731" y="6.477" size="0.4572" layer="21">GND</text>
<text x="-8.255" y="4.191" size="0.4572" layer="21">BOOT</text>
<text x="-9.906" y="1.905" size="0.4572" layer="21">RST</text>
<text x="-5.588" y="12.954" size="0.6096" layer="21" rot="SR180">TX</text>
<text x="8.89" y="11.684" size="0.6096" layer="21" rot="SR180">RX</text>
<text x="7.239" y="12.827" size="0.6096" layer="21" rot="SR180">PWR</text>
<polygonshape layer="48">
<polygonoutlineobjects>
<vertex x="-1.329134375" y="-10.28885625"/>
<vertex x="-1.616759375" y="-9.904334375"/>
<vertex x="-1.877028125" y="-9.904334375"/>
<vertex x="-1.8772375" y="-10.72498125"/>
<vertex x="-1.871534375" y="-10.7292875"/>
<vertex x="-1.651303125" y="-10.7292875"/>
<vertex x="-1.648559375" y="-10.722021875"/>
<vertex x="-1.648559375" y="-10.24151875"/>
<vertex x="-1.642315625" y="-10.243640625"/>
<vertex x="-1.6202125" y="-10.288490625"/>
<vertex x="-1.587715625" y="-10.33896875"/>
<vertex x="-1.286278125" y="-10.725928125"/>
<vertex x="-1.277909375" y="-10.7292875"/>
<vertex x="-1.267896875" y="-10.7292875"/>
<vertex x="-1.2649" y="-10.722275"/>
<vertex x="-1.26559375" y="-10.402078125"/>
<vertex x="-1.291559375" y="-10.34794375"/>
</polygonoutlineobjects>
<polygonoutlinesegments>
<vertex x="-1.329134375" y="-10.28885625"/>
<vertex x="-1.616759375" y="-9.904334375"/>
<vertex x="-1.877028125" y="-9.904334375"/>
<vertex x="-1.8772375" y="-10.72498125"/>
<vertex x="-1.871534375" y="-10.7292875"/>
<vertex x="-1.651303125" y="-10.7292875"/>
<vertex x="-1.648559375" y="-10.722021875"/>
<vertex x="-1.648559375" y="-10.24151875"/>
<vertex x="-1.642315625" y="-10.243640625"/>
<vertex x="-1.6202125" y="-10.288490625"/>
<vertex x="-1.587715625" y="-10.33896875"/>
<vertex x="-1.286278125" y="-10.725928125"/>
<vertex x="-1.277909375" y="-10.7292875"/>
<vertex x="-1.267896875" y="-10.7292875"/>
<vertex x="-1.2649" y="-10.722275"/>
<vertex x="-1.26559375" y="-10.402078125"/>
<vertex x="-1.291559375" y="-10.34794375"/>
<vertex x="-1.329134375" y="-10.28885625"/>
</polygonoutlinesegments>
</polygonshape>
<polygonshape layer="48">
<polygonoutlineobjects>
<vertex x="2.120196875" y="-9.904371875"/>
<vertex x="2.120196875" y="-10.724275"/>
<vertex x="2.12534375" y="-10.729128125"/>
<vertex x="2.365315625" y="-10.729128125"/>
<vertex x="2.372378125" y="-10.7261875"/>
<vertex x="2.372378125" y="-10.46621875"/>
<vertex x="2.372915625" y="-10.465053125"/>
<vertex x="2.372846875" y="-10.275515625"/>
<vertex x="2.372375" y="-10.273484375"/>
<vertex x="2.372378125" y="-10.09350625"/>
<vertex x="2.378425" y="-10.09350625"/>
<vertex x="2.558403125" y="-10.093653125"/>
<vertex x="2.588121875" y="-10.097375"/>
<vertex x="2.61605625" y="-10.10799375"/>
<vertex x="2.63194375" y="-10.12004375"/>
<vertex x="2.63851875" y="-10.1275625"/>
<vertex x="2.644" y="-10.135915625"/>
<vertex x="2.651584375" y="-10.154365625"/>
<vertex x="2.655078125" y="-10.174028125"/>
<vertex x="2.655309375" y="-10.19400625"/>
<vertex x="2.652509375" y="-10.21378125"/>
<vertex x="2.646028125" y="-10.232659375"/>
<vertex x="2.6353375" y="-10.24949375"/>
<vertex x="2.6206625" y="-10.26299375"/>
<vertex x="2.60311875" y="-10.2725"/>
<vertex x="2.58400625" y="-10.278284375"/>
<vertex x="2.55423125" y="-10.28155"/>
<vertex x="2.380503125" y="-10.28160625"/>
<vertex x="2.381784375" y="-10.459375"/>
<vertex x="2.515515625" y="-10.459375"/>
<vertex x="2.522471875" y="-10.464515625"/>
<vertex x="2.66660625" y="-10.727584375"/>
<vertex x="2.675690625" y="-10.729128125"/>
<vertex x="2.945378125" y="-10.7289625"/>
<vertex x="2.779978125" y="-10.43195"/>
<vertex x="2.7775625" y="-10.42399375"/>
<vertex x="2.803828125" y="-10.40955"/>
<vertex x="2.82818125" y="-10.39206875"/>
<vertex x="2.85014375" y="-10.37166875"/>
<vertex x="2.86933125" y="-10.3486375"/>
<vertex x="2.885509375" y="-10.323403125"/>
<vertex x="2.898584375" y="-10.296425"/>
<vertex x="2.908615625" y="-10.268171875"/>
<vertex x="2.917440625" y="-10.229190625"/>
<vertex x="2.92085" y="-10.1994"/>
<vertex x="2.92136875" y="-10.159428125"/>
<vertex x="2.91736875" y="-10.11965625"/>
<vertex x="2.911096875" y="-10.0903375"/>
<vertex x="2.90171875" y="-10.0618625"/>
<vertex x="2.88900625" y="-10.034715625"/>
<vertex x="2.872909375" y="-10.00943125"/>
<vertex x="2.853528125" y="-9.986565625"/>
<vertex x="2.823221875" y="-9.960553125"/>
<vertex x="2.806490625" y="-9.94960625"/>
<vertex x="2.77990625" y="-9.93575625"/>
<vertex x="2.73284375" y="-9.91904375"/>
<vertex x="2.673946875" y="-9.907915625"/>
<vertex x="2.614090625" y="-9.9043875"/>
<vertex x="2.124146875" y="-9.904371875"/>
</polygonoutlineobjects>
<polygonoutlinesegments>
<vertex x="2.120196875" y="-9.904371875"/>
<vertex x="2.120196875" y="-10.724275"/>
<vertex x="2.12534375" y="-10.729128125"/>
<vertex x="2.365315625" y="-10.729128125"/>
<vertex x="2.372378125" y="-10.7261875"/>
<vertex x="2.372378125" y="-10.46621875"/>
<vertex x="2.372915625" y="-10.465053125"/>
<vertex x="2.372846875" y="-10.275515625"/>
<vertex x="2.372375" y="-10.273484375"/>
<vertex x="2.372378125" y="-10.09350625"/>
<vertex x="2.378425" y="-10.09350625"/>
<vertex x="2.558403125" y="-10.093653125"/>
<vertex x="2.588121875" y="-10.097375"/>
<vertex x="2.61605625" y="-10.10799375"/>
<vertex x="2.63194375" y="-10.12004375"/>
<vertex x="2.63851875" y="-10.1275625"/>
<vertex x="2.644" y="-10.135915625"/>
<vertex x="2.651584375" y="-10.154365625"/>
<vertex x="2.655078125" y="-10.174028125"/>
<vertex x="2.655309375" y="-10.19400625"/>
<vertex x="2.652509375" y="-10.21378125"/>
<vertex x="2.646028125" y="-10.232659375"/>
<vertex x="2.6353375" y="-10.24949375"/>
<vertex x="2.6206625" y="-10.26299375"/>
<vertex x="2.60311875" y="-10.2725"/>
<vertex x="2.58400625" y="-10.278284375"/>
<vertex x="2.55423125" y="-10.28155"/>
<vertex x="2.380503125" y="-10.28160625"/>
<vertex x="2.381784375" y="-10.459375"/>
<vertex x="2.515515625" y="-10.459375"/>
<vertex x="2.522471875" y="-10.464515625"/>
<vertex x="2.66660625" y="-10.727584375"/>
<vertex x="2.675690625" y="-10.729128125"/>
<vertex x="2.945378125" y="-10.7289625"/>
<vertex x="2.779978125" y="-10.43195"/>
<vertex x="2.7775625" y="-10.42399375"/>
<vertex x="2.803828125" y="-10.40955"/>
<vertex x="2.82818125" y="-10.39206875"/>
<vertex x="2.85014375" y="-10.37166875"/>
<vertex x="2.86933125" y="-10.3486375"/>
<vertex x="2.885509375" y="-10.323403125"/>
<vertex x="2.898584375" y="-10.296425"/>
<vertex x="2.908615625" y="-10.268171875"/>
<vertex x="2.917440625" y="-10.229190625"/>
<vertex x="2.92085" y="-10.1994"/>
<vertex x="2.92136875" y="-10.159428125"/>
<vertex x="2.91736875" y="-10.11965625"/>
<vertex x="2.911096875" y="-10.0903375"/>
<vertex x="2.90171875" y="-10.0618625"/>
<vertex x="2.88900625" y="-10.034715625"/>
<vertex x="2.872909375" y="-10.00943125"/>
<vertex x="2.853528125" y="-9.986565625"/>
<vertex x="2.823221875" y="-9.960553125"/>
<vertex x="2.806490625" y="-9.94960625"/>
<vertex x="2.77990625" y="-9.93575625"/>
<vertex x="2.73284375" y="-9.91904375"/>
<vertex x="2.673946875" y="-9.907915625"/>
<vertex x="2.614090625" y="-9.9043875"/>
<vertex x="2.124146875" y="-9.904371875"/>
<vertex x="2.120196875" y="-9.904371875"/>
</polygonoutlinesegments>
</polygonshape>
<polygonshape layer="48">
<polygonoutlineobjects>
<vertex x="1.5039" y="-10.404975"/>
<vertex x="1.963859375" y="-10.404975"/>
<vertex x="1.96621875" y="-10.397334375"/>
<vertex x="1.96621875" y="-10.22735"/>
<vertex x="1.9621625" y="-10.221403125"/>
<vertex x="1.512203125" y="-10.221403125"/>
<vertex x="1.5039" y="-10.219709375"/>
<vertex x="1.5039" y="-10.10971875"/>
<vertex x="1.50820625" y="-10.10403125"/>
<vertex x="1.97816875" y="-10.10403125"/>
<vertex x="1.982975" y="-10.0988375"/>
<vertex x="1.982975" y="-9.908853125"/>
<vertex x="1.977640625" y="-9.9041875"/>
<vertex x="1.257703125" y="-9.9041875"/>
<vertex x="1.2515" y="-9.907984375"/>
<vertex x="1.2515" y="-10.7279125"/>
<vertex x="1.260271875" y="-10.729140625"/>
<vertex x="1.9899375" y="-10.72886875"/>
<vertex x="1.989521875" y="-10.5293"/>
<vertex x="1.509565625" y="-10.5293"/>
<vertex x="1.5039" y="-10.5249625"/>
</polygonoutlineobjects>
<polygonoutlinesegments>
<vertex x="1.5039" y="-10.404975"/>
<vertex x="1.963859375" y="-10.404975"/>
<vertex x="1.96621875" y="-10.397334375"/>
<vertex x="1.96621875" y="-10.22735"/>
<vertex x="1.9621625" y="-10.221403125"/>
<vertex x="1.512203125" y="-10.221403125"/>
<vertex x="1.5039" y="-10.219709375"/>
<vertex x="1.5039" y="-10.10971875"/>
<vertex x="1.50820625" y="-10.10403125"/>
<vertex x="1.97816875" y="-10.10403125"/>
<vertex x="1.982975" y="-10.0988375"/>
<vertex x="1.982975" y="-9.908853125"/>
<vertex x="1.977640625" y="-9.9041875"/>
<vertex x="1.257703125" y="-9.9041875"/>
<vertex x="1.2515" y="-9.907984375"/>
<vertex x="1.2515" y="-10.7279125"/>
<vertex x="1.260271875" y="-10.729140625"/>
<vertex x="1.9899375" y="-10.72886875"/>
<vertex x="1.989521875" y="-10.5293"/>
<vertex x="1.509565625" y="-10.5293"/>
<vertex x="1.5039" y="-10.5249625"/>
<vertex x="1.5039" y="-10.404975"/>
</polygonoutlinesegments>
</polygonshape>
<polygonshape layer="48">
<polygonoutlineobjects>
<vertex x="0.413590625" y="-10.72914375"/>
<vertex x="0.66345" y="-10.72914375"/>
<vertex x="0.665871875" y="-10.72156875"/>
<vertex x="0.665871875" y="-10.441728125"/>
<vertex x="0.667065625" y="-10.432928125"/>
<vertex x="1.126809375" y="-10.432928125"/>
<vertex x="1.128309375" y="-10.424434375"/>
<vertex x="1.128309375" y="-10.234540625"/>
<vertex x="1.11976875" y="-10.233084375"/>
<vertex x="0.670021875" y="-10.233084375"/>
<vertex x="0.665871875" y="-10.227240625"/>
<vertex x="0.665871875" y="-10.117303125"/>
<vertex x="0.6684375" y="-10.109871875"/>
<vertex x="1.138171875" y="-10.109871875"/>
<vertex x="1.145065625" y="-10.10676875"/>
<vertex x="1.145065625" y="-9.90688125"/>
<vertex x="1.137765625" y="-9.9041875"/>
<vertex x="0.41816875" y="-9.9041875"/>
<vertex x="0.413590625" y="-9.909603125"/>
</polygonoutlineobjects>
<polygonoutlinesegments>
<vertex x="0.413590625" y="-10.72914375"/>
<vertex x="0.66345" y="-10.72914375"/>
<vertex x="0.665871875" y="-10.72156875"/>
<vertex x="0.665871875" y="-10.441728125"/>
<vertex x="0.667065625" y="-10.432928125"/>
<vertex x="1.126809375" y="-10.432928125"/>
<vertex x="1.128309375" y="-10.424434375"/>
<vertex x="1.128309375" y="-10.234540625"/>
<vertex x="1.11976875" y="-10.233084375"/>
<vertex x="0.670021875" y="-10.233084375"/>
<vertex x="0.665871875" y="-10.227240625"/>
<vertex x="0.665871875" y="-10.117303125"/>
<vertex x="0.6684375" y="-10.109871875"/>
<vertex x="1.138171875" y="-10.109871875"/>
<vertex x="1.145065625" y="-10.10676875"/>
<vertex x="1.145065625" y="-9.90688125"/>
<vertex x="1.137765625" y="-9.9041875"/>
<vertex x="0.41816875" y="-9.9041875"/>
<vertex x="0.413590625" y="-9.909603125"/>
<vertex x="0.413590625" y="-10.72914375"/>
</polygonoutlinesegments>
</polygonshape>
<polygonshape layer="48">
<polygonoutlineobjects>
<vertex x="-0.07504375" y="-10.205134375"/>
<vertex x="-0.099309375" y="-10.24886875"/>
<vertex x="-0.104140625" y="-10.25375625"/>
<vertex x="-0.289575" y="-9.910459375"/>
<vertex x="-0.29585" y="-9.9041875"/>
<vertex x="-0.566009375" y="-9.9041875"/>
<vertex x="-0.57141875" y="-9.90675625"/>
<vertex x="-0.236003125" y="-10.452259375"/>
<vertex x="-0.232925" y="-10.46139375"/>
<vertex x="-0.232925" y="-10.72154375"/>
<vertex x="-0.2305125" y="-10.729140625"/>
<vertex x="0.019475" y="-10.728984375"/>
<vertex x="0.019475" y="-10.458828125"/>
<vertex x="0.359309375" y="-9.904571875"/>
<vertex x="0.099846875" y="-9.9041875"/>
<vertex x="0.093096875" y="-9.90979375"/>
</polygonoutlineobjects>
<polygonoutlinesegments>
<vertex x="-0.07504375" y="-10.205134375"/>
<vertex x="-0.099309375" y="-10.24886875"/>
<vertex x="-0.104140625" y="-10.25375625"/>
<vertex x="-0.289575" y="-9.910459375"/>
<vertex x="-0.29585" y="-9.9041875"/>
<vertex x="-0.566009375" y="-9.9041875"/>
<vertex x="-0.57141875" y="-9.90675625"/>
<vertex x="-0.236003125" y="-10.452259375"/>
<vertex x="-0.232925" y="-10.46139375"/>
<vertex x="-0.232925" y="-10.72154375"/>
<vertex x="-0.2305125" y="-10.729140625"/>
<vertex x="0.019475" y="-10.728984375"/>
<vertex x="0.019475" y="-10.458828125"/>
<vertex x="0.359309375" y="-9.904571875"/>
<vertex x="0.099846875" y="-9.9041875"/>
<vertex x="0.093096875" y="-9.90979375"/>
<vertex x="-0.07504375" y="-10.205134375"/>
</polygonoutlinesegments>
</polygonshape>
<polygonshape layer="48">
<polygonoutlineobjects>
<vertex x="-2.493428125" y="-10.404975"/>
<vertex x="-2.03346875" y="-10.404975"/>
<vertex x="-2.031109375" y="-10.397334375"/>
<vertex x="-2.031109375" y="-10.227346875"/>
<vertex x="-2.0351625" y="-10.221403125"/>
<vertex x="-2.485125" y="-10.221403125"/>
<vertex x="-2.493428125" y="-10.219709375"/>
<vertex x="-2.493428125" y="-10.109715625"/>
<vertex x="-2.48911875" y="-10.10403125"/>
<vertex x="-2.01915625" y="-10.10403125"/>
<vertex x="-2.014353125" y="-10.098834375"/>
<vertex x="-2.014353125" y="-9.908853125"/>
<vertex x="-2.0196875" y="-9.9041875"/>
<vertex x="-2.739625" y="-9.9041875"/>
<vertex x="-2.745828125" y="-9.907984375"/>
<vertex x="-2.745828125" y="-10.727915625"/>
<vertex x="-2.73705625" y="-10.729140625"/>
<vertex x="-2.007390625" y="-10.728865625"/>
<vertex x="-2.00780625" y="-10.5293"/>
<vertex x="-2.487765625" y="-10.5293"/>
<vertex x="-2.493428125" y="-10.5249625"/>
</polygonoutlineobjects>
<polygonoutlinesegments>
<vertex x="-2.493428125" y="-10.404975"/>
<vertex x="-2.03346875" y="-10.404975"/>
<vertex x="-2.031109375" y="-10.397334375"/>
<vertex x="-2.031109375" y="-10.227346875"/>
<vertex x="-2.0351625" y="-10.221403125"/>
<vertex x="-2.485125" y="-10.221403125"/>
<vertex x="-2.493428125" y="-10.219709375"/>
<vertex x="-2.493428125" y="-10.109715625"/>
<vertex x="-2.48911875" y="-10.10403125"/>
<vertex x="-2.01915625" y="-10.10403125"/>
<vertex x="-2.014353125" y="-10.098834375"/>
<vertex x="-2.014353125" y="-9.908853125"/>
<vertex x="-2.0196875" y="-9.9041875"/>
<vertex x="-2.739625" y="-9.9041875"/>
<vertex x="-2.745828125" y="-9.907984375"/>
<vertex x="-2.745828125" y="-10.727915625"/>
<vertex x="-2.73705625" y="-10.729140625"/>
<vertex x="-2.007390625" y="-10.728865625"/>
<vertex x="-2.00780625" y="-10.5293"/>
<vertex x="-2.487765625" y="-10.5293"/>
<vertex x="-2.493428125" y="-10.5249625"/>
<vertex x="-2.493428125" y="-10.404975"/>
</polygonoutlinesegments>
</polygonshape>
<polygonshape layer="48">
<polygonoutlineobjects>
<vertex x="-3.123425" y="-10.379384375"/>
<vertex x="-3.126365625" y="-10.4192375"/>
<vertex x="-3.133703125" y="-10.4482875"/>
<vertex x="-3.14735625" y="-10.474903125"/>
<vertex x="-3.168278125" y="-10.496221875"/>
<vertex x="-3.194803125" y="-10.5100125"/>
<vertex x="-3.22395625" y="-10.51688125"/>
<vertex x="-3.263875" y="-10.518759375"/>
<vertex x="-3.32260625" y="-10.514034375"/>
<vertex x="-3.32260625" y="-10.724065625"/>
<vertex x="-3.3212375" y="-10.73300625"/>
<vertex x="-3.262103125" y="-10.742884375"/>
<vertex x="-3.1822125" y="-10.746546875"/>
<vertex x="-3.122353125" y="-10.74284375"/>
<vertex x="-3.092734375" y="-10.738103125"/>
<vertex x="-3.063571875" y="-10.731075"/>
<vertex x="-3.016825" y="-10.713484375"/>
<vertex x="-2.990571875" y="-10.69899375"/>
<vertex x="-2.974128125" y="-10.687615625"/>
<vertex x="-2.951453125" y="-10.668"/>
<vertex x="-2.93785625" y="-10.6533375"/>
<vertex x="-2.925596875" y="-10.637540625"/>
<vertex x="-2.90981875" y="-10.612040625"/>
<vertex x="-2.8936" y="-10.5755125"/>
<vertex x="-2.8824375" y="-10.537121875"/>
<vertex x="-2.87564375" y="-10.497715625"/>
<vertex x="-2.872496875" y="-10.45784375"/>
<vertex x="-2.872084375" y="-9.907765625"/>
<vertex x="-2.878509375" y="-9.9041875"/>
<vertex x="-3.11854375" y="-9.9041875"/>
<vertex x="-3.123421875" y="-9.9093125"/>
</polygonoutlineobjects>
<polygonoutlinesegments>
<vertex x="-3.123425" y="-10.379384375"/>
<vertex x="-3.126365625" y="-10.4192375"/>
<vertex x="-3.133703125" y="-10.4482875"/>
<vertex x="-3.14735625" y="-10.474903125"/>
<vertex x="-3.168278125" y="-10.496221875"/>
<vertex x="-3.194803125" y="-10.5100125"/>
<vertex x="-3.22395625" y="-10.51688125"/>
<vertex x="-3.263875" y="-10.518759375"/>
<vertex x="-3.32260625" y="-10.514034375"/>
<vertex x="-3.32260625" y="-10.724065625"/>
<vertex x="-3.3212375" y="-10.73300625"/>
<vertex x="-3.262103125" y="-10.742884375"/>
<vertex x="-3.1822125" y="-10.746546875"/>
<vertex x="-3.122353125" y="-10.74284375"/>
<vertex x="-3.092734375" y="-10.738103125"/>
<vertex x="-3.063571875" y="-10.731075"/>
<vertex x="-3.016825" y="-10.713484375"/>
<vertex x="-2.990571875" y="-10.69899375"/>
<vertex x="-2.974128125" y="-10.687615625"/>
<vertex x="-2.951453125" y="-10.668"/>
<vertex x="-2.93785625" y="-10.6533375"/>
<vertex x="-2.925596875" y="-10.637540625"/>
<vertex x="-2.90981875" y="-10.612040625"/>
<vertex x="-2.8936" y="-10.5755125"/>
<vertex x="-2.8824375" y="-10.537121875"/>
<vertex x="-2.87564375" y="-10.497715625"/>
<vertex x="-2.872496875" y="-10.45784375"/>
<vertex x="-2.872084375" y="-9.907765625"/>
<vertex x="-2.878509375" y="-9.9041875"/>
<vertex x="-3.11854375" y="-9.9041875"/>
<vertex x="-3.123421875" y="-9.9093125"/>
<vertex x="-3.123425" y="-10.379384375"/>
</polygonoutlinesegments>
</polygonshape>
<polygonshape layer="48">
<polygonoutlineobjects>
<vertex x="-1.18045625" y="-10.344621875"/>
<vertex x="-0.8928375" y="-10.729146875"/>
<vertex x="-0.632571875" y="-10.729146875"/>
<vertex x="-0.63235" y="-9.908521875"/>
<vertex x="-0.638028125" y="-9.9041875"/>
<vertex x="-0.85825625" y="-9.9041875"/>
<vertex x="-0.86103125" y="-9.91141875"/>
<vertex x="-0.86103125" y="-10.3919125"/>
<vertex x="-0.8672625" y="-10.38986875"/>
<vertex x="-0.889359375" y="-10.34501875"/>
<vertex x="-0.92185" y="-10.2945375"/>
<vertex x="-1.22325625" y="-9.9075625"/>
<vertex x="-1.231615625" y="-9.9041875"/>
<vertex x="-1.241628125" y="-9.9041875"/>
<vertex x="-1.244646875" y="-9.911178125"/>
<vertex x="-1.2439625" y="-10.231371875"/>
<vertex x="-1.217996875" y="-10.28550625"/>
</polygonoutlineobjects>
<polygonoutlinesegments>
<vertex x="-1.18045625" y="-10.344621875"/>
<vertex x="-0.8928375" y="-10.729146875"/>
<vertex x="-0.632571875" y="-10.729146875"/>
<vertex x="-0.63235" y="-9.908521875"/>
<vertex x="-0.638028125" y="-9.9041875"/>
<vertex x="-0.85825625" y="-9.9041875"/>
<vertex x="-0.86103125" y="-9.91141875"/>
<vertex x="-0.86103125" y="-10.3919125"/>
<vertex x="-0.8672625" y="-10.38986875"/>
<vertex x="-0.889359375" y="-10.34501875"/>
<vertex x="-0.92185" y="-10.2945375"/>
<vertex x="-1.22325625" y="-9.9075625"/>
<vertex x="-1.231615625" y="-9.9041875"/>
<vertex x="-1.241628125" y="-9.9041875"/>
<vertex x="-1.244646875" y="-9.911178125"/>
<vertex x="-1.2439625" y="-10.231371875"/>
<vertex x="-1.217996875" y="-10.28550625"/>
<vertex x="-1.18045625" y="-10.344621875"/>
</polygonoutlinesegments>
</polygonshape>
<polygonshape layer="48">
<polygonoutlineobjects>
<vertex x="-1.329134375" y="-10.28885"/>
<vertex x="-1.616759375" y="-9.904325"/>
<vertex x="-1.877028125" y="-9.904325"/>
<vertex x="-1.8772375" y="-10.724975"/>
<vertex x="-1.87153125" y="-10.72928125"/>
<vertex x="-1.651303125" y="-10.72928125"/>
<vertex x="-1.648559375" y="-10.722015625"/>
<vertex x="-1.648559375" y="-10.2415125"/>
<vertex x="-1.642315625" y="-10.243634375"/>
<vertex x="-1.6202125" y="-10.288484375"/>
<vertex x="-1.587715625" y="-10.3389625"/>
<vertex x="-1.286278125" y="-10.725921875"/>
<vertex x="-1.277909375" y="-10.72928125"/>
<vertex x="-1.267896875" y="-10.72928125"/>
<vertex x="-1.2649" y="-10.72226875"/>
<vertex x="-1.26559375" y="-10.402071875"/>
<vertex x="-1.291559375" y="-10.3479375"/>
</polygonoutlineobjects>
<polygonoutlinesegments>
<vertex x="-1.329134375" y="-10.28885"/>
<vertex x="-1.616759375" y="-9.904325"/>
<vertex x="-1.877028125" y="-9.904325"/>
<vertex x="-1.8772375" y="-10.724975"/>
<vertex x="-1.87153125" y="-10.72928125"/>
<vertex x="-1.651303125" y="-10.72928125"/>
<vertex x="-1.648559375" y="-10.722015625"/>
<vertex x="-1.648559375" y="-10.2415125"/>
<vertex x="-1.642315625" y="-10.243634375"/>
<vertex x="-1.6202125" y="-10.288484375"/>
<vertex x="-1.587715625" y="-10.3389625"/>
<vertex x="-1.286278125" y="-10.725921875"/>
<vertex x="-1.277909375" y="-10.72928125"/>
<vertex x="-1.267896875" y="-10.72928125"/>
<vertex x="-1.2649" y="-10.72226875"/>
<vertex x="-1.26559375" y="-10.402071875"/>
<vertex x="-1.291559375" y="-10.3479375"/>
<vertex x="-1.329134375" y="-10.28885"/>
</polygonoutlinesegments>
</polygonshape>
<text x="-0.000003125" y="-9.144" size="0.6096" layer="48" align="center">"HELP" by</text>
<text x="-0.127" y="-12.319" size="0.5588" layer="21" align="center">ESP32-H2
Serial Programmer</text>
<wire x1="13.9" y1="2" x2="14.86606875" y2="2" width="0" layer="20" locked="yes"/>
<wire x1="14.86606875" y1="2" x2="-14.86606875" y2="2.00001875" width="0" layer="20" curve="164.6754" locked="yes"/>
<wire x1="-13.90005" y1="2" x2="-14.86606875" y2="2.00001875" width="0" layer="20" locked="yes"/>
<wire x1="-13.9" y1="-2" x2="-13.90005" y2="2" width="0" layer="20" curve="180.00139" locked="yes"/>
<wire x1="-13.9" y1="-2" x2="-14.86606875" y2="-2" width="0" layer="20" locked="yes"/>
<wire x1="-14.86606875" y1="-2" x2="-1.25" y2="-14.94783125" width="0" layer="20" curve="77.55755" locked="yes"/>
<wire x1="-1.25" y1="-14.75" x2="-1.25" y2="-14.94783125" width="0" layer="20" locked="yes"/>
<wire x1="-0.25" y1="-13.75" x2="-1.25" y2="-14.75" width="0" layer="20" curve="90" locked="yes"/>
<wire x1="-0.25" y1="-13.75" x2="0.25" y2="-13.75" width="0" layer="20" locked="yes"/>
<wire x1="1.25" y1="-14.75" x2="0.25" y2="-13.75" width="0" layer="20" curve="90" locked="yes"/>
<wire x1="1.25" y1="-14.75" x2="1.25" y2="-14.94783125" width="0" layer="20" locked="yes"/>
<wire x1="1.25" y1="-14.94783125" x2="14.86606875" y2="-2" width="0" layer="20" curve="77.55755" locked="yes"/>
<wire x1="13.9" y1="-2" x2="14.86606875" y2="-2" width="0" layer="20" locked="yes"/>
<wire x1="13.9" y1="2" x2="13.9" y2="-2" width="0" layer="20" curve="180" locked="yes"/>
</plain>
<libraries>
<library name="Help-by-jennyfer-button-design-lib" urn="urn:adsk.wipprod:fs.file:vf.7OdsYZ26Si-yOvsge0cYWg">
<packages>
<package name="SOT23-5" urn="urn:adsk.eagle:footprint:39006/2" library_version="31" use_placeholder="yes">
<description><b>Small Outline Transistor</b></description>
<circle x="-1.6002" y="-1.016" radius="0.127" width="0" layer="21"/>
<wire x1="1.27" y1="0.4294" x2="1.27" y2="-0.4294" width="0.2032" layer="21"/>
<wire x1="1.4" y1="-0.8" x2="-1.4" y2="-0.8" width="0.1524" layer="51"/>
<wire x1="-1.27" y1="-0.4294" x2="-1.27" y2="0.4294" width="0.2032" layer="21"/>
<wire x1="-1.4" y1="0.8" x2="1.4" y2="0.8" width="0.1524" layer="51"/>
<wire x1="-0.2684" y1="0.7088" x2="0.2684" y2="0.7088" width="0.2032" layer="21"/>
<wire x1="1.4" y1="0.8" x2="1.4" y2="-0.8" width="0.1524" layer="51"/>
<wire x1="-1.4" y1="0.8" x2="-1.4" y2="-0.8" width="0.1524" layer="51"/>
<rectangle x1="-1.2" y1="-1.5" x2="-0.7" y2="-0.85" layer="51"/>
<rectangle x1="-0.25" y1="-1.5" x2="0.25" y2="-0.85" layer="51"/>
<rectangle x1="0.7" y1="-1.5" x2="1.2" y2="-0.85" layer="51"/>
<rectangle x1="0.7" y1="0.85" x2="1.2" y2="1.5" layer="51"/>
<rectangle x1="-1.2" y1="0.85" x2="-0.7" y2="1.5" layer="51"/>
<smd name="1" x="-0.95" y="-1.3001" dx="0.55" dy="1.2" layer="1"/>
<smd name="2" x="0" y="-1.3001" dx="0.55" dy="1.2" layer="1"/>
<smd name="3" x="0.95" y="-1.3001" dx="0.55" dy="1.2" layer="1"/>
<smd name="4" x="0.95" y="1.3001" dx="0.55" dy="1.2" layer="1"/>
<smd name="5" x="-0.95" y="1.3001" dx="0.55" dy="1.2" layer="1"/>
<text x="-1.778" y="2.159" size="0.6096" layer="25" ratio="20">>NAME</text>
<text x="-1.778" y="-2.794" size="0.6096" layer="27" ratio="20">>VALUE</text>
</package>
<package name="CAPC1005X60" urn="urn:adsk.eagle:footprint:16290849/5" locally_modified="yes" library_version="17" use_placeholder="yes">
<description>Chip, 1.00 X 0.50 X 0.60 mm body
<p>Chip package with body size 1.00 X 0.50 X 0.60 mm</p></description>
<smd name="1" x="-0.4846" y="0" dx="0.56" dy="0.6291" layer="1"/>
<smd name="2" x="0.4846" y="0" dx="0.56" dy="0.6291" layer="1"/>
<text x="0" y="1.2636" size="1.27" layer="25" align="bottom-center">>NAME</text>
<text x="0" y="-1.2636" size="1.27" layer="27" align="top-center">>VALUE</text>
</package>
<package name="SOD3715X145N" library_version="25" use_placeholder="yes">
<wire x1="-2.535" y1="1.1" x2="2.535" y2="1.1" width="0.05" layer="39"/>
<wire x1="2.535" y1="1.1" x2="2.535" y2="-1.1" width="0.05" layer="39"/>
<wire x1="2.535" y1="-1.1" x2="-2.535" y2="-1.1" width="0.05" layer="39"/>
<wire x1="-2.535" y1="-1.1" x2="-2.535" y2="1.1" width="0.05" layer="39"/>
<text x="-2.50416875" y="1.252090625" size="0.610615625" layer="25">>NAME</text>
<text x="-2.501309375" y="-1.75091875" size="0.60991875" layer="27">>VALUE</text>
<circle x="-0.46" y="0" radius="0.1" width="0.2" layer="51"/>
<smd name="1" x="-1.68" y="0" dx="1.21" dy="0.73" layer="1"/>
<smd name="2" x="1.68" y="0" dx="1.21" dy="0.73" layer="1"/>
</package>
<package name="D5V0L1B2LP4-7B" library_version="115" use_placeholder="yes">
<wire x1="-1.15" y1="0.65" x2="-1.15" y2="-0.65" width="0.05" layer="39"/>
<wire x1="-1.15" y1="-0.65" x2="1.15" y2="-0.65" width="0.05" layer="39"/>
<wire x1="1.15" y1="-0.65" x2="1.15" y2="0.65" width="0.05" layer="39"/>
<wire x1="1.15" y1="0.65" x2="-1.15" y2="0.65" width="0.05" layer="39"/>
<circle x="-1.5" y="0" radius="0.1" width="0.2" layer="21"/>
<circle x="-1.5" y="0" radius="0.1" width="0.2" layer="51"/>
<text x="-1.15" y="0.75" size="0.4064" layer="25">>NAME</text>
<text x="-1.15" y="-0.85" size="0.4064" layer="27" align="top-left">>VALUE</text>
<smd name="1" x="-0.66" y="0" dx="0.48" dy="0.4" layer="1"/>
<smd name="2" x="0.66" y="0" dx="0.48" dy="0.4" layer="1"/>
</package>
<package name="QFN50P500X500X80-29N" library_version="20" use_placeholder="yes">
<description><b>QFN28</b><br>
</description>
<smd name="1" x="-2.35" y="1.5" dx="1" dy="0.3" layer="1"/>
<smd name="2" x="-2.35" y="1" dx="1" dy="0.3" layer="1"/>
<smd name="3" x="-2.35" y="0.5" dx="1" dy="0.3" layer="1"/>
<smd name="4" x="-2.35" y="0" dx="1" dy="0.3" layer="1"/>
<smd name="5" x="-2.35" y="-0.5" dx="1" dy="0.3" layer="1"/>
<smd name="6" x="-2.35" y="-1" dx="1" dy="0.3" layer="1"/>
<smd name="7" x="-2.35" y="-1.5" dx="1" dy="0.3" layer="1"/>
<smd name="8" x="-1.5" y="-2.35" dx="1" dy="0.3" layer="1" rot="R90"/>
<smd name="9" x="-1" y="-2.35" dx="1" dy="0.3" layer="1" rot="R90"/>
<smd name="10" x="-0.5" y="-2.35" dx="1" dy="0.3" layer="1" rot="R90"/>
<smd name="11" x="0" y="-2.35" dx="1" dy="0.3" layer="1" rot="R90"/>
<smd name="12" x="0.5" y="-2.35" dx="1" dy="0.3" layer="1" rot="R90"/>
<smd name="13" x="1" y="-2.35" dx="1" dy="0.3" layer="1" rot="R90"/>
<smd name="14" x="1.5" y="-2.35" dx="1" dy="0.3" layer="1" rot="R90"/>
<smd name="15" x="2.35" y="-1.5" dx="1" dy="0.3" layer="1"/>
<smd name="16" x="2.35" y="-1" dx="1" dy="0.3" layer="1"/>
<smd name="17" x="2.35" y="-0.5" dx="1" dy="0.3" layer="1"/>
<smd name="18" x="2.35" y="0" dx="1" dy="0.3" layer="1"/>
<smd name="19" x="2.35" y="0.5" dx="1" dy="0.3" layer="1"/>
<smd name="20" x="2.35" y="1" dx="1" dy="0.3" layer="1"/>
<smd name="21" x="2.35" y="1.5" dx="1" dy="0.3" layer="1"/>
<smd name="22" x="1.5" y="2.35" dx="1" dy="0.3" layer="1" rot="R90"/>
<smd name="23" x="1" y="2.35" dx="1" dy="0.3" layer="1" rot="R90"/>
<smd name="24" x="0.5" y="2.35" dx="1" dy="0.3" layer="1" rot="R90"/>
<smd name="25" x="0" y="2.35" dx="1" dy="0.3" layer="1" rot="R90"/>
<smd name="26" x="-0.5" y="2.35" dx="1" dy="0.3" layer="1" rot="R90"/>
<smd name="27" x="-1" y="2.35" dx="1" dy="0.3" layer="1" rot="R90"/>
<smd name="28" x="-1.5" y="2.35" dx="1" dy="0.3" layer="1" rot="R90"/>
<smd name="29" x="0" y="0" dx="3.35" dy="3.35" layer="1" rot="R90"/>
<text x="0" y="5.08" size="1.27" layer="25" align="center">>NAME</text>
<text x="0" y="-5.08" size="1.27" layer="27" align="center">>VALUE</text>
<wire x1="-3.1" y1="3.1" x2="3.1" y2="3.1" width="0.05" layer="48"/>
<wire x1="3.1" y1="3.1" x2="3.1" y2="-3.1" width="0.05" layer="48"/>
<wire x1="3.1" y1="-3.1" x2="-3.1" y2="-3.1" width="0.05" layer="48"/>
<wire x1="-3.1" y1="-3.1" x2="-3.1" y2="3.1" width="0.05" layer="48"/>
<wire x1="-2.5" y1="2.5" x2="2.5" y2="2.5" width="0.1" layer="48"/>
<wire x1="2.5" y1="2.5" x2="2.5" y2="-2.5" width="0.1" layer="48"/>
<wire x1="2.5" y1="-2.5" x2="-2.5" y2="-2.5" width="0.1" layer="48"/>
<wire x1="-2.5" y1="-2.5" x2="-2.5" y2="2.5" width="0.1" layer="48"/>
<circle x="-2.85" y="2.25" radius="0.125" width="0.25" layer="25"/>
</package>
<package name="SOT65P210X110-6N" library_version="41" use_placeholder="yes">
<description><b>sot-363</b><br>
</description>
<smd name="1" x="-0.95" y="0.65" dx="1.05" dy="0.4" layer="1"/>
<smd name="2" x="-0.95" y="0" dx="1.05" dy="0.4" layer="1"/>
<smd name="3" x="-0.95" y="-0.65" dx="1.05" dy="0.4" layer="1"/>
<smd name="4" x="0.95" y="-0.65" dx="1.05" dy="0.4" layer="1"/>
<smd name="5" x="0.95" y="0" dx="1.05" dy="0.4" layer="1"/>
<smd name="6" x="0.95" y="0.65" dx="1.05" dy="0.4" layer="1"/>
<text x="-1.27" y="-2.54" size="1.27" layer="25" align="center">>NAME</text>
<text x="0" y="2.54" size="1.27" layer="27" align="center">>VALUE</text>
<wire x1="-1.725" y1="1.35" x2="1.725" y2="1.35" width="0.05" layer="51"/>
<wire x1="1.725" y1="1.35" x2="1.725" y2="-1.35" width="0.05" layer="51"/>
<wire x1="1.725" y1="-1.35" x2="-1.725" y2="-1.35" width="0.05" layer="51"/>
<wire x1="-1.725" y1="-1.35" x2="-1.725" y2="1.35" width="0.05" layer="51"/>
<wire x1="-0.625" y1="1" x2="0.625" y2="1" width="0.1" layer="51"/>
<wire x1="0.625" y1="1" x2="0.625" y2="-1" width="0.1" layer="51"/>
<wire x1="0.625" y1="-1" x2="-0.625" y2="-1" width="0.1" layer="51"/>
<wire x1="-0.625" y1="-1" x2="-0.625" y2="1" width="0.1" layer="51"/>
<wire x1="-0.625" y1="0.35" x2="0.025" y2="1" width="0.1" layer="51"/>
<circle x="-1.27" y="1.27" radius="0.070559375" width="0.127" layer="21"/>
</package>
<package name="USB-C-16P-2LAYER-PADS" urn="urn:adsk.eagle:footprint:41390336/1" locally_modified="yes" library_version="47" use_placeholder="yes">
<smd name="B6" x="0.75" y="-0.34" dx="0.3" dy="1" layer="1"/>
<smd name="A7" x="0.25" y="-0.34" dx="0.3" dy="1" layer="1"/>
<smd name="GND2" x="3.225" y="-0.34" dx="0.6" dy="1" layer="1"/>
<smd name="VBUS2" x="2.45" y="-0.34" dx="0.6" dy="1" layer="1"/>
<smd name="B5" x="1.75" y="-0.34" dx="0.3" dy="1" layer="1"/>
<smd name="A8" x="1.25" y="-0.34" dx="0.3" dy="1" layer="1"/>
<smd name="B7" x="-0.75" y="-0.34" dx="0.3" dy="1" layer="1" rot="R180"/>
<smd name="A6" x="-0.25" y="-0.34" dx="0.3" dy="1" layer="1" rot="R180"/>
<smd name="GND" x="-3.225" y="-0.34" dx="0.6" dy="1" layer="1" rot="R180"/>
<smd name="VBUS1" x="-2.45" y="-0.34" dx="0.6" dy="1" layer="1" rot="R180"/>
<smd name="B8" x="-1.75" y="-0.34" dx="0.3" dy="1" layer="1" rot="R180"/>
<smd name="A5" x="-1.25" y="-0.34" dx="0.3" dy="1" layer="1" rot="R180"/>
<hole x="-2.89" y="-1.445" drill="0.65"/>
<hole x="2.89" y="-1.445" drill="0.65"/>
<wire x1="-4.32" y1="-4.295" x2="-4.32" y2="-5.895" width="0.01" layer="51"/>
<wire x1="4.32" y1="-4.295" x2="4.32" y2="-5.895" width="0.01" layer="51"/>
<wire x1="-4.32" y1="-0.345" x2="-4.32" y2="-1.965" width="0.01" layer="51"/>
<wire x1="4.32" y1="-0.345" x2="4.32" y2="-1.965" width="0.01" layer="51"/>
<wire x1="-4.32" y1="-7.695" x2="4.32" y2="-7.695" width="0.1524" layer="51"/>
<wire x1="-4.32" y1="-7.695" x2="-4.32" y2="-0.345" width="0.1524" layer="51"/>
<wire x1="-4.32" y1="-0.345" x2="4.32" y2="-0.345" width="0.1524" layer="51"/>
<wire x1="4.32" y1="-0.345" x2="4.32" y2="-7.695" width="0.1524" layer="51"/>
<wire x1="-4.32" y1="-7.7" x2="4.32" y2="-7.7" width="0.1524" layer="51" curve="-21.282614"/>
<wire x1="-4.318" y1="-0.365" x2="-4.318" y2="-1.465" width="0.6" layer="46"/>
<wire x1="4.318" y1="-0.365" x2="4.318" y2="-1.465" width="0.6" layer="46"/>
<wire x1="-4.318" y1="-4.78" x2="-4.318" y2="-5.4" width="0.6" layer="46"/>
<wire x1="4.318" y1="-4.78" x2="4.318" y2="-5.4" width="0.6" layer="46"/>
<polygonshape width="0.01" layer="31">
<polygonoutlineobjects>
<vertex x="-4.24133125" y="-1.954084375"/>
<vertex x="-4.13508125" y="-1.92889375"/>
<vertex x="-4.037103125" y="-1.880690625"/>
<vertex x="-3.952309375" y="-1.81189375"/>
<vertex x="-3.884946875" y="-1.725953125"/>
<vertex x="-3.838396875" y="-1.627178125"/>
<vertex x="-3.815" y="-1.520540625"/>
<vertex x="-3.815" y="-0.31956875"/>
<vertex x="-3.834384375" y="-0.208078125"/>
<vertex x="-3.8781375" y="-0.103578125"/>
<vertex x="-3.94405" y="-0.011434375"/>
<vertex x="-4.0288125" y="0.0637375"/>
<vertex x="-4.12818125" y="0.11815625"/>
<vertex x="-4.2371625" y="0.149103125"/>
<vertex x="-4.35015" y="0.155015625"/>
<vertex x="-4.455703125" y="0.143121875"/>
<vertex x="-4.556109375" y="0.107990625"/>
<vertex x="-4.646178125" y="0.05139375"/>
<vertex x="-4.72139375" y="-0.023821875"/>
<vertex x="-4.777990625" y="-0.113890625"/>
<vertex x="-4.813121875" y="-0.214296875"/>
<vertex x="-4.825" y="-0.31971875"/>
<vertex x="-4.825" y="-1.52039375"/>
<vertex x="-4.809115625" y="-1.620971875"/>
<vertex x="-4.771190625" y="-1.715646875"/>
<vertex x="-4.71314375" y="-1.799515625"/>
<vertex x="-4.63789375" y="-1.8683625"/>
<vertex x="-4.549209375" y="-1.9187375"/>
<vertex x="-4.451534375" y="-1.94811875"/>
<vertex x="-4.35015" y="-1.955"/>
</polygonoutlineobjects>
<polygonoutlinesegments>
<vertex x="-4.24133125" y="-1.954084375"/>
<vertex x="-4.13508125" y="-1.92889375"/>
<vertex x="-4.037103125" y="-1.880690625"/>
<vertex x="-3.952309375" y="-1.81189375"/>
<vertex x="-3.884946875" y="-1.725953125"/>
<vertex x="-3.838396875" y="-1.627178125"/>
<vertex x="-3.815" y="-1.520540625"/>
<vertex x="-3.815" y="-0.31956875"/>
<vertex x="-3.834384375" y="-0.208078125"/>
<vertex x="-3.8781375" y="-0.103578125"/>
<vertex x="-3.94405" y="-0.011434375"/>
<vertex x="-4.0288125" y="0.0637375"/>
<vertex x="-4.12818125" y="0.11815625"/>
<vertex x="-4.2371625" y="0.149103125"/>
<vertex x="-4.35015" y="0.155015625"/>
<vertex x="-4.455703125" y="0.143121875"/>
<vertex x="-4.556109375" y="0.107990625"/>
<vertex x="-4.646178125" y="0.05139375"/>
<vertex x="-4.72139375" y="-0.023821875"/>
<vertex x="-4.777990625" y="-0.113890625"/>
<vertex x="-4.813121875" y="-0.214296875"/>
<vertex x="-4.825" y="-0.31971875"/>
<vertex x="-4.825" y="-1.52039375"/>
<vertex x="-4.809115625" y="-1.620971875"/>
<vertex x="-4.771190625" y="-1.715646875"/>
<vertex x="-4.71314375" y="-1.799515625"/>
<vertex x="-4.63789375" y="-1.8683625"/>
<vertex x="-4.549209375" y="-1.9187375"/>
<vertex x="-4.451534375" y="-1.94811875"/>
<vertex x="-4.35015" y="-1.955"/>
<vertex x="-4.24133125" y="-1.954084375"/>
</polygonoutlinesegments>
</polygonshape>
<polygonshape width="0.01" layer="31">
<polygonoutlineobjects>
<vertex x="4.300053125" y="-1.955"/>
<vertex x="4.407478125" y="-1.95309375"/>
<vertex x="4.512296875" y="-1.927203125"/>
<vertex x="4.608728125" y="-1.878640625"/>
<vertex x="4.691934375" y="-1.809834375"/>
<vertex x="4.757740625" y="-1.7242375"/>
<vertex x="4.80285625" y="-1.626146875"/>
<vertex x="4.825" y="-1.52051875"/>
<vertex x="4.825" y="-0.31959375"/>
<vertex x="4.80686875" y="-0.2091125"/>
<vertex x="4.76455" y="-0.10529375"/>
<vertex x="4.700190625" y="-0.013496875"/>
<vertex x="4.617015625" y="0.06168125"/>
<vertex x="4.5192" y="0.116465625"/>
<vertex x="4.411646875" y="0.148109375"/>
<vertex x="4.299771875" y="0.155025"/>
<vertex x="4.187925" y="0.13786875"/>
<vertex x="4.082675" y="0.09625"/>
<vertex x="3.989328125" y="0.032253125"/>
<vertex x="3.912559375" y="-0.0509125"/>
<vertex x="3.856221875" y="-0.149078125"/>
<vertex x="3.8231375" y="-0.257315625"/>
<vertex x="3.815" y="-0.36981875"/>
<vertex x="3.815" y="-1.570571875"/>
<vertex x="3.8371625" y="-1.666109375"/>
<vertex x="3.880028125" y="-1.754309375"/>
<vertex x="3.94144375" y="-1.830765625"/>
<vertex x="4.018328125" y="-1.89163125"/>
<vertex x="4.106834375" y="-1.933865625"/>
<vertex x="4.202515625" y="-1.955346875"/>
</polygonoutlineobjects>
<polygonoutlinesegments>
<vertex x="4.300053125" y="-1.955"/>
<vertex x="4.407478125" y="-1.95309375"/>
<vertex x="4.512296875" y="-1.927203125"/>
<vertex x="4.608728125" y="-1.878640625"/>
<vertex x="4.691934375" y="-1.809834375"/>
<vertex x="4.757740625" y="-1.7242375"/>
<vertex x="4.80285625" y="-1.626146875"/>
<vertex x="4.825" y="-1.52051875"/>
<vertex x="4.825" y="-0.31959375"/>
<vertex x="4.80686875" y="-0.2091125"/>
<vertex x="4.76455" y="-0.10529375"/>
<vertex x="4.700190625" y="-0.013496875"/>
<vertex x="4.617015625" y="0.06168125"/>
<vertex x="4.5192" y="0.116465625"/>
<vertex x="4.411646875" y="0.148109375"/>
<vertex x="4.299771875" y="0.155025"/>
<vertex x="4.187925" y="0.13786875"/>
<vertex x="4.082675" y="0.09625"/>
<vertex x="3.989328125" y="0.032253125"/>
<vertex x="3.912559375" y="-0.0509125"/>
<vertex x="3.856221875" y="-0.149078125"/>
<vertex x="3.8231375" y="-0.257315625"/>
<vertex x="3.815" y="-0.36981875"/>
<vertex x="3.815" y="-1.570571875"/>
<vertex x="3.8371625" y="-1.666109375"/>