-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMM1_SRAM_64k_A.kicad_pcb
1471 lines (1452 loc) · 108 KB
/
MM1_SRAM_64k_A.kicad_pcb
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
(kicad_pcb (version 20171130) (host pcbnew "(5.1.8)-1")
(general
(thickness 1.6)
(drawings 21)
(tracks 433)
(zones 0)
(modules 9)
(nets 34)
)
(page A4)
(title_block
(title MM1_SRAM_64k_A)
(date 2020-11-20)
(rev R1)
(company "Copyright Guillaume Guillet 2020")
(comment 1 "Licensed under CERN-OHL-W v2 or later")
)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(32 B.Adhes user)
(33 F.Adhes user)
(34 B.Paste user)
(35 F.Paste user)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user)
(40 Dwgs.User user)
(41 Cmts.User user)
(42 Eco1.User user)
(43 Eco2.User user)
(44 Edge.Cuts user)
(45 Margin user)
(46 B.CrtYd user)
(47 F.CrtYd user)
(48 B.Fab user)
(49 F.Fab user)
)
(setup
(last_trace_width 0.2)
(trace_clearance 0.18)
(zone_clearance 0.508)
(zone_45_only no)
(trace_min 0.18)
(via_size 0.45)
(via_drill 0.2)
(via_min_size 0.45)
(via_min_drill 0.2)
(uvia_size 0.45)
(uvia_drill 0.2)
(uvias_allowed no)
(uvia_min_size 0.45)
(uvia_min_drill 0.2)
(edge_width 0.15)
(segment_width 0.2)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.15)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 1.524 1.524)
(pad_drill 0.762)
(pad_to_mask_clearance 0)
(aux_axis_origin 112.5 87)
(visible_elements 7FFFE7FF)
(pcbplotparams
(layerselection 0x010f0_ffffffff)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin true)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "documents/MM1_SRAM_64k_A_gerbert/"))
)
(net 0 "")
(net 1 +5V)
(net 2 GND)
(net 3 +3V3)
(net 4 /MEM_~OE)
(net 5 /MEM_~CE)
(net 6 /MEMDATA_7)
(net 7 /MEM_~WE)
(net 8 /MEMDATA_5)
(net 9 /MEMDATA_6)
(net 10 /MEMDATA_3)
(net 11 /MEMDATA_4)
(net 12 /MEMDATA_1)
(net 13 /MEMDATA_2)
(net 14 /MEMDATA_0)
(net 15 /MEMADDRESS_15)
(net 16 /MEMADDRESS_13)
(net 17 /MEMADDRESS_14)
(net 18 /MEMADDRESS_11)
(net 19 /MEMADDRESS_12)
(net 20 /MEMADDRESS_9)
(net 21 /MEMADDRESS_10)
(net 22 /MEMADDRESS_7)
(net 23 /MEMADDRESS_8)
(net 24 /MEMADDRESS_5)
(net 25 /MEMADDRESS_6)
(net 26 /MEMADDRESS_3)
(net 27 /MEMADDRESS_4)
(net 28 /MEMADDRESS_1)
(net 29 /MEMADDRESS_2)
(net 30 /MEMADDRESS_0)
(net 31 /MEM1_~CE)
(net 32 /MEM2_~CE)
(net 33 /~MEMADDRESS_15)
(net_class Default "Ceci est la Netclass par défaut"
(clearance 0.18)
(trace_width 0.2)
(via_dia 0.45)
(via_drill 0.2)
(uvia_dia 0.45)
(uvia_drill 0.2)
(add_net /MEM1_~CE)
(add_net /MEM2_~CE)
(add_net /MEMADDRESS_0)
(add_net /MEMADDRESS_1)
(add_net /MEMADDRESS_10)
(add_net /MEMADDRESS_11)
(add_net /MEMADDRESS_12)
(add_net /MEMADDRESS_13)
(add_net /MEMADDRESS_14)
(add_net /MEMADDRESS_15)
(add_net /MEMADDRESS_2)
(add_net /MEMADDRESS_3)
(add_net /MEMADDRESS_4)
(add_net /MEMADDRESS_5)
(add_net /MEMADDRESS_6)
(add_net /MEMADDRESS_7)
(add_net /MEMADDRESS_8)
(add_net /MEMADDRESS_9)
(add_net /MEMDATA_0)
(add_net /MEMDATA_1)
(add_net /MEMDATA_2)
(add_net /MEMDATA_3)
(add_net /MEMDATA_4)
(add_net /MEMDATA_5)
(add_net /MEMDATA_6)
(add_net /MEMDATA_7)
(add_net /MEM_~CE)
(add_net /MEM_~OE)
(add_net /MEM_~WE)
(add_net /~MEMADDRESS_15)
)
(net_class Power ""
(clearance 0.2)
(trace_width 0.25)
(via_dia 0.45)
(via_drill 0.2)
(uvia_dia 0.45)
(uvia_drill 0.2)
(add_net +3V3)
(add_net +5V)
(add_net GND)
)
(module SOJ28:SOJ-28_P1.27mm (layer B.Cu) (tedit 5FBBB281) (tstamp 5FBC0CAA)
(at 144 99 270)
(descr "SOJ, 28 Pin")
(tags "SOJ SO")
(path /5FB711A4)
(attr smd)
(fp_text reference U2 (at 0 9.9 90) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value IS61LV256AL-10JL (at 0 -9.9 90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 0 -9.06) (end 3.86 -9.06) (layer B.SilkS) (width 0.12))
(fp_line (start 3.86 -9.06) (end 3.86 -8.815) (layer B.SilkS) (width 0.12))
(fp_line (start 0 -9.06) (end -3.86 -9.06) (layer B.SilkS) (width 0.12))
(fp_line (start -3.86 -9.06) (end -3.86 -8.815) (layer B.SilkS) (width 0.12))
(fp_line (start 0 9.06) (end 3.86 9.06) (layer B.SilkS) (width 0.12))
(fp_line (start 3.86 9.06) (end 3.86 8.815) (layer B.SilkS) (width 0.12))
(fp_line (start 0 9.06) (end -3.86 9.06) (layer B.SilkS) (width 0.12))
(fp_line (start -3.86 9.06) (end -3.86 8.815) (layer B.SilkS) (width 0.12))
(fp_line (start -3.86 8.815) (end -5.675 8.815) (layer B.SilkS) (width 0.12))
(fp_line (start -2.75 8.95) (end 3.75 8.95) (layer B.Fab) (width 0.1))
(fp_line (start 3.75 8.95) (end 3.75 -8.95) (layer B.Fab) (width 0.1))
(fp_line (start 3.75 -8.95) (end -3.75 -8.95) (layer B.Fab) (width 0.1))
(fp_line (start -3.75 -8.95) (end -3.75 7.95) (layer B.Fab) (width 0.1))
(fp_line (start -3.75 7.95) (end -2.75 8.95) (layer B.Fab) (width 0.1))
(fp_line (start -5.93 9.2) (end -5.93 -9.2) (layer B.CrtYd) (width 0.05))
(fp_line (start -5.93 -9.2) (end 5.93 -9.2) (layer B.CrtYd) (width 0.05))
(fp_line (start 5.93 -9.2) (end 5.93 9.2) (layer B.CrtYd) (width 0.05))
(fp_line (start 5.93 9.2) (end -5.93 9.2) (layer B.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(pad 28 smd roundrect (at 4.25 8.255 270) (size 2.05 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 3 +3V3))
(pad 27 smd roundrect (at 4.25 6.985 270) (size 2.05 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 7 /MEM_~WE))
(pad 26 smd roundrect (at 4.25 5.715 270) (size 2.05 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 16 /MEMADDRESS_13))
(pad 25 smd roundrect (at 4.25 4.445 270) (size 2.05 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 23 /MEMADDRESS_8))
(pad 24 smd roundrect (at 4.25 3.175 270) (size 2.05 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 20 /MEMADDRESS_9))
(pad 23 smd roundrect (at 4.25 1.905 270) (size 2.05 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 18 /MEMADDRESS_11))
(pad 22 smd roundrect (at 4.25 0.635 270) (size 2.05 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 4 /MEM_~OE))
(pad 21 smd roundrect (at 4.25 -0.635 270) (size 2.05 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 21 /MEMADDRESS_10))
(pad 20 smd roundrect (at 4.25 -1.905 270) (size 2.05 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 32 /MEM2_~CE))
(pad 19 smd roundrect (at 4.25 -3.175 270) (size 2.05 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 6 /MEMDATA_7))
(pad 18 smd roundrect (at 4.25 -4.445 270) (size 2.05 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 9 /MEMDATA_6))
(pad 17 smd roundrect (at 4.25 -5.715 270) (size 2.05 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 8 /MEMDATA_5))
(pad 16 smd roundrect (at 4.25 -6.985 270) (size 2.05 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 11 /MEMDATA_4))
(pad 15 smd roundrect (at 4.25 -8.255 270) (size 2.05 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 10 /MEMDATA_3))
(pad 14 smd roundrect (at -4.25 -8.255 270) (size 2.05 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 2 GND))
(pad 13 smd roundrect (at -4.25 -6.985 270) (size 2.05 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 13 /MEMDATA_2))
(pad 12 smd roundrect (at -4.25 -5.715 270) (size 2.05 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 12 /MEMDATA_1))
(pad 11 smd roundrect (at -4.25 -4.445 270) (size 2.05 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 14 /MEMDATA_0))
(pad 10 smd roundrect (at -4.25 -3.175 270) (size 2.05 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 30 /MEMADDRESS_0))
(pad 9 smd roundrect (at -4.25 -1.905 270) (size 2.05 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 28 /MEMADDRESS_1))
(pad 8 smd roundrect (at -4.25 -0.635 270) (size 2.05 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 29 /MEMADDRESS_2))
(pad 7 smd roundrect (at -4.25 0.635 270) (size 2.05 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 26 /MEMADDRESS_3))
(pad 6 smd roundrect (at -4.25 1.905 270) (size 2.05 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 27 /MEMADDRESS_4))
(pad 5 smd roundrect (at -4.25 3.175 270) (size 2.05 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 24 /MEMADDRESS_5))
(pad 4 smd roundrect (at -4.25 4.445 270) (size 2.05 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 25 /MEMADDRESS_6))
(pad 3 smd roundrect (at -4.25 5.715 270) (size 2.05 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 22 /MEMADDRESS_7))
(pad 2 smd roundrect (at -4.25 6.985 270) (size 2.05 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 19 /MEMADDRESS_12))
(pad 1 smd roundrect (at -4.25 8.255 270) (size 2.05 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 17 /MEMADDRESS_14))
(model ${KIPRJMOD}/libraries/3D/SOJ28-4.step
(offset (xyz 0 0 2.1))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 90))
)
)
(module SOJ28:SOJ-28_P1.27mm (layer F.Cu) (tedit 5FBBB281) (tstamp 5FBC0C78)
(at 144 99 90)
(descr "SOJ, 28 Pin")
(tags "SOJ SO")
(path /5FB9044C)
(attr smd)
(fp_text reference U1 (at 0 -9.9 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value IS61LV256AL-10JL (at 0 9.9 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 0 9.06) (end 3.86 9.06) (layer F.SilkS) (width 0.12))
(fp_line (start 3.86 9.06) (end 3.86 8.815) (layer F.SilkS) (width 0.12))
(fp_line (start 0 9.06) (end -3.86 9.06) (layer F.SilkS) (width 0.12))
(fp_line (start -3.86 9.06) (end -3.86 8.815) (layer F.SilkS) (width 0.12))
(fp_line (start 0 -9.06) (end 3.86 -9.06) (layer F.SilkS) (width 0.12))
(fp_line (start 3.86 -9.06) (end 3.86 -8.815) (layer F.SilkS) (width 0.12))
(fp_line (start 0 -9.06) (end -3.86 -9.06) (layer F.SilkS) (width 0.12))
(fp_line (start -3.86 -9.06) (end -3.86 -8.815) (layer F.SilkS) (width 0.12))
(fp_line (start -3.86 -8.815) (end -5.675 -8.815) (layer F.SilkS) (width 0.12))
(fp_line (start -2.75 -8.95) (end 3.75 -8.95) (layer F.Fab) (width 0.1))
(fp_line (start 3.75 -8.95) (end 3.75 8.95) (layer F.Fab) (width 0.1))
(fp_line (start 3.75 8.95) (end -3.75 8.95) (layer F.Fab) (width 0.1))
(fp_line (start -3.75 8.95) (end -3.75 -7.95) (layer F.Fab) (width 0.1))
(fp_line (start -3.75 -7.95) (end -2.75 -8.95) (layer F.Fab) (width 0.1))
(fp_line (start -5.93 -9.2) (end -5.93 9.2) (layer F.CrtYd) (width 0.05))
(fp_line (start -5.93 9.2) (end 5.93 9.2) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.93 9.2) (end 5.93 -9.2) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.93 -9.2) (end -5.93 -9.2) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 28 smd roundrect (at 4.25 -8.255 90) (size 2.05 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 3 +3V3))
(pad 27 smd roundrect (at 4.25 -6.985 90) (size 2.05 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 7 /MEM_~WE))
(pad 26 smd roundrect (at 4.25 -5.715 90) (size 2.05 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 16 /MEMADDRESS_13))
(pad 25 smd roundrect (at 4.25 -4.445 90) (size 2.05 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 23 /MEMADDRESS_8))
(pad 24 smd roundrect (at 4.25 -3.175 90) (size 2.05 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 20 /MEMADDRESS_9))
(pad 23 smd roundrect (at 4.25 -1.905 90) (size 2.05 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 18 /MEMADDRESS_11))
(pad 22 smd roundrect (at 4.25 -0.635 90) (size 2.05 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 4 /MEM_~OE))
(pad 21 smd roundrect (at 4.25 0.635 90) (size 2.05 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 21 /MEMADDRESS_10))
(pad 20 smd roundrect (at 4.25 1.905 90) (size 2.05 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 31 /MEM1_~CE))
(pad 19 smd roundrect (at 4.25 3.175 90) (size 2.05 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 6 /MEMDATA_7))
(pad 18 smd roundrect (at 4.25 4.445 90) (size 2.05 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 9 /MEMDATA_6))
(pad 17 smd roundrect (at 4.25 5.715 90) (size 2.05 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 8 /MEMDATA_5))
(pad 16 smd roundrect (at 4.25 6.985 90) (size 2.05 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 11 /MEMDATA_4))
(pad 15 smd roundrect (at 4.25 8.255 90) (size 2.05 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 10 /MEMDATA_3))
(pad 14 smd roundrect (at -4.25 8.255 90) (size 2.05 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 2 GND))
(pad 13 smd roundrect (at -4.25 6.985 90) (size 2.05 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 13 /MEMDATA_2))
(pad 12 smd roundrect (at -4.25 5.715 90) (size 2.05 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 12 /MEMDATA_1))
(pad 11 smd roundrect (at -4.25 4.445 90) (size 2.05 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 14 /MEMDATA_0))
(pad 10 smd roundrect (at -4.25 3.175 90) (size 2.05 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 30 /MEMADDRESS_0))
(pad 9 smd roundrect (at -4.25 1.905 90) (size 2.05 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 28 /MEMADDRESS_1))
(pad 8 smd roundrect (at -4.25 0.635 90) (size 2.05 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 29 /MEMADDRESS_2))
(pad 7 smd roundrect (at -4.25 -0.635 90) (size 2.05 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 26 /MEMADDRESS_3))
(pad 6 smd roundrect (at -4.25 -1.905 90) (size 2.05 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 27 /MEMADDRESS_4))
(pad 5 smd roundrect (at -4.25 -3.175 90) (size 2.05 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 24 /MEMADDRESS_5))
(pad 4 smd roundrect (at -4.25 -4.445 90) (size 2.05 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 25 /MEMADDRESS_6))
(pad 3 smd roundrect (at -4.25 -5.715 90) (size 2.05 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 22 /MEMADDRESS_7))
(pad 2 smd roundrect (at -4.25 -6.985 90) (size 2.05 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 19 /MEMADDRESS_12))
(pad 1 smd roundrect (at -4.25 -8.255 90) (size 2.05 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 17 /MEMADDRESS_14))
(model ${KIPRJMOD}/libraries/3D/SOJ28-4.step
(offset (xyz 0 0 2.1))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 90))
)
)
(module 5530843-2_edge:5530843-2_edge (layer F.Cu) (tedit 5D7E56B9) (tstamp 5D81CDBB)
(at 147.97 106.73)
(path /5D7E9C02)
(fp_text reference J1 (at 8.03 3.27) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value MM1_edgeConnector_5530843-2 (at -2.97 4.77) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 29 smd rect (at -27.94 10.16) (size 1.7 7.5) (layers B.Cu B.Paste B.Mask)
(net 3 +3V3))
(pad 30 smd rect (at -27.94 10.16) (size 1.7 7.5) (layers F.Cu F.Paste F.Mask)
(net 1 +5V))
(pad 27 smd rect (at -25.4 10.16) (size 1.7 7.5) (layers B.Cu B.Paste B.Mask)
(net 4 /MEM_~OE))
(pad 28 smd rect (at -25.4 10.16) (size 1.7 7.5) (layers F.Cu F.Paste F.Mask)
(net 5 /MEM_~CE))
(pad 25 smd rect (at -22.86 10.16) (size 1.7 7.5) (layers B.Cu B.Paste B.Mask)
(net 6 /MEMDATA_7))
(pad 26 smd rect (at -22.86 10.16) (size 1.7 7.5) (layers F.Cu F.Paste F.Mask)
(net 7 /MEM_~WE))
(pad 23 smd rect (at -20.32 10.16) (size 1.7 7.5) (layers B.Cu B.Paste B.Mask)
(net 8 /MEMDATA_5))
(pad 24 smd rect (at -20.32 10.16) (size 1.7 7.5) (layers F.Cu F.Paste F.Mask)
(net 9 /MEMDATA_6))
(pad 21 smd rect (at -17.78 10.16) (size 1.7 7.5) (layers B.Cu B.Paste B.Mask)
(net 10 /MEMDATA_3))
(pad 22 smd rect (at -17.78 10.16) (size 1.7 7.5) (layers F.Cu F.Paste F.Mask)
(net 11 /MEMDATA_4))
(pad 19 smd rect (at -15.24 10.16) (size 1.7 7.5) (layers B.Cu B.Paste B.Mask)
(net 12 /MEMDATA_1))
(pad 20 smd rect (at -15.24 10.16) (size 1.7 7.5) (layers F.Cu F.Paste F.Mask)
(net 13 /MEMDATA_2))
(pad 17 smd rect (at -12.7 10.16) (size 1.7 7.5) (layers B.Cu B.Paste B.Mask)
(net 15 /MEMADDRESS_15))
(pad 18 smd rect (at -12.7 10.16) (size 1.7 7.5) (layers F.Cu F.Paste F.Mask)
(net 14 /MEMDATA_0))
(pad 15 smd rect (at -10.16 10.16) (size 1.7 7.5) (layers B.Cu B.Paste B.Mask)
(net 16 /MEMADDRESS_13))
(pad 16 smd rect (at -10.16 10.16) (size 1.7 7.5) (layers F.Cu F.Paste F.Mask)
(net 17 /MEMADDRESS_14))
(pad 13 smd rect (at -7.62 10.16) (size 1.7 7.5) (layers B.Cu B.Paste B.Mask)
(net 18 /MEMADDRESS_11))
(pad 14 smd rect (at -7.62 10.16) (size 1.7 7.5) (layers F.Cu F.Paste F.Mask)
(net 19 /MEMADDRESS_12))
(pad 11 smd rect (at -5.08 10.16) (size 1.7 7.5) (layers B.Cu B.Paste B.Mask)
(net 20 /MEMADDRESS_9))
(pad 12 smd rect (at -5.08 10.16) (size 1.7 7.5) (layers F.Cu F.Paste F.Mask)
(net 21 /MEMADDRESS_10))
(pad 9 smd rect (at -2.54 10.16) (size 1.7 7.5) (layers B.Cu B.Paste B.Mask)
(net 22 /MEMADDRESS_7))
(pad 10 smd rect (at -2.54 10.16) (size 1.7 7.5) (layers F.Cu F.Paste F.Mask)
(net 23 /MEMADDRESS_8))
(pad 7 smd rect (at 0 10.16) (size 1.7 7.5) (layers B.Cu B.Paste B.Mask)
(net 24 /MEMADDRESS_5))
(pad 8 smd rect (at 0 10.16) (size 1.7 7.5) (layers F.Cu F.Paste F.Mask)
(net 25 /MEMADDRESS_6))
(pad 5 smd rect (at 2.54 10.16) (size 1.7 7.5) (layers B.Cu B.Paste B.Mask)
(net 26 /MEMADDRESS_3))
(pad 6 smd rect (at 2.54 10.16) (size 1.7 7.5) (layers F.Cu F.Paste F.Mask)
(net 27 /MEMADDRESS_4))
(pad 3 smd rect (at 5.08 10.16) (size 1.7 7.5) (layers B.Cu B.Paste B.Mask)
(net 28 /MEMADDRESS_1))
(pad 4 smd rect (at 5.08 10.16) (size 1.7 7.5) (layers F.Cu F.Paste F.Mask)
(net 29 /MEMADDRESS_2))
(pad 1 smd rect (at 7.62 10.16) (size 1.7 7.5) (layers B.Cu B.Paste B.Mask)
(net 2 GND))
(pad 2 smd rect (at 7.62 10.16) (size 1.7 7.5) (layers F.Cu F.Paste F.Mask)
(net 30 /MEMADDRESS_0))
)
(module Capacitor_SMD:C_0805_2012Metric (layer B.Cu) (tedit 5F68FEEE) (tstamp 5FB6FDA9)
(at 120 110 270)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags capacitor)
(path /5FB8B5C9)
(attr smd)
(fp_text reference C1 (at 0 1.68 90) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 100nF (at 0 -1.68 90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 1.7 -0.98) (end -1.7 -0.98) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.7 0.98) (end 1.7 -0.98) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.7 0.98) (end 1.7 0.98) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.7 -0.98) (end -1.7 0.98) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer B.SilkS) (width 0.12))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer B.SilkS) (width 0.12))
(fp_line (start 1 -0.625) (end -1 -0.625) (layer B.Fab) (width 0.1))
(fp_line (start 1 0.625) (end 1 -0.625) (layer B.Fab) (width 0.1))
(fp_line (start -1 0.625) (end 1 0.625) (layer B.Fab) (width 0.1))
(fp_line (start -1 -0.625) (end -1 0.625) (layer B.Fab) (width 0.1))
(fp_text user %R (at 0 0 90) (layer B.Fab)
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
)
(pad 1 smd roundrect (at -0.95 0 270) (size 1 1.45) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 2 GND))
(pad 2 smd roundrect (at 0.95 0 270) (size 1 1.45) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 3 +3V3))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_SMD:C_0805_2012Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 5FB6FDBA)
(at 133 96 270)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags capacitor)
(path /5FB88D58)
(attr smd)
(fp_text reference C2 (at 0 2 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100nF (at 0 1.68 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer F.SilkS) (width 0.12))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer F.SilkS) (width 0.12))
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
(fp_text user %R (at 0 0 90) (layer F.Fab)
(effects (font (size 0.5 0.5) (thickness 0.08)))
)
(pad 1 smd roundrect (at -0.95 0 270) (size 1 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 3 +3V3))
(pad 2 smd roundrect (at 0.95 0 270) (size 1 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 2 GND))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_SMD:C_0805_2012Metric (layer B.Cu) (tedit 5F68FEEE) (tstamp 5FB6FDCB)
(at 133 102 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags capacitor)
(path /5FB8A3CC)
(attr smd)
(fp_text reference C3 (at 0 -2 90) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 100nF (at 0 -1.68 90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -1 -0.625) (end -1 0.625) (layer B.Fab) (width 0.1))
(fp_line (start -1 0.625) (end 1 0.625) (layer B.Fab) (width 0.1))
(fp_line (start 1 0.625) (end 1 -0.625) (layer B.Fab) (width 0.1))
(fp_line (start 1 -0.625) (end -1 -0.625) (layer B.Fab) (width 0.1))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer B.SilkS) (width 0.12))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer B.SilkS) (width 0.12))
(fp_line (start -1.7 -0.98) (end -1.7 0.98) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.7 0.98) (end 1.7 0.98) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.7 0.98) (end 1.7 -0.98) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.7 -0.98) (end -1.7 -0.98) (layer B.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 90) (layer B.Fab)
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
)
(pad 2 smd roundrect (at 0.95 0 90) (size 1 1.45) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 2 GND))
(pad 1 smd roundrect (at -0.95 0 90) (size 1 1.45) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 3 +3V3))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Package_TO_SOT_SMD:SOT-23-5 (layer F.Cu) (tedit 5F6F9B37) (tstamp 5FB6FE48)
(at 126 96)
(descr "SOT, 5 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(path /5FB71ECE)
(attr smd)
(fp_text reference U3 (at 0 -2.4) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 74AHC1G04 (at 0 2.4) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 2.05 -1.7) (end -2.05 -1.7) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.05 1.7) (end 2.05 -1.7) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.05 1.7) (end 2.05 1.7) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.05 -1.7) (end -2.05 1.7) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.8 -1.05) (end -0.4 -1.45) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 1.45) (end -0.8 -1.05) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 1.45) (end -0.8 1.45) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -1.45) (end 0.8 1.45) (layer F.Fab) (width 0.1))
(fp_line (start -0.4 -1.45) (end 0.8 -1.45) (layer F.Fab) (width 0.1))
(fp_line (start 0 -1.56) (end -1.8 -1.56) (layer F.SilkS) (width 0.12))
(fp_line (start 0 -1.56) (end 0.8 -1.56) (layer F.SilkS) (width 0.12))
(fp_line (start 0 1.56) (end -0.8 1.56) (layer F.SilkS) (width 0.12))
(fp_line (start 0 1.56) (end 0.8 1.56) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.4 0.4) (thickness 0.06)))
)
(pad 1 smd roundrect (at -1.1375 -0.95) (size 1.325 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25))
(pad 2 smd roundrect (at -1.1375 0) (size 1.325 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 15 /MEMADDRESS_15))
(pad 3 smd roundrect (at -1.1375 0.95) (size 1.325 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 2 GND))
(pad 4 smd roundrect (at 1.1375 0.95) (size 1.325 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 33 /~MEMADDRESS_15))
(pad 5 smd roundrect (at 1.1375 -0.95) (size 1.325 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 3 +3V3))
(model ${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Package_TO_SOT_SMD:SOT-23-5 (layer B.Cu) (tedit 5F6F9B37) (tstamp 5FB6FE5F)
(at 126 103 180)
(descr "SOT, 5 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(path /5FB775D1)
(attr smd)
(fp_text reference U4 (at 0 2.4) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 74AHC1G32 (at 0 -2.4) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 2.05 1.7) (end -2.05 1.7) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.05 -1.7) (end 2.05 1.7) (layer B.CrtYd) (width 0.05))
(fp_line (start -2.05 -1.7) (end 2.05 -1.7) (layer B.CrtYd) (width 0.05))
(fp_line (start -2.05 1.7) (end -2.05 -1.7) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.8 1.05) (end -0.4 1.45) (layer B.Fab) (width 0.1))
(fp_line (start -0.8 -1.45) (end -0.8 1.05) (layer B.Fab) (width 0.1))
(fp_line (start 0.8 -1.45) (end -0.8 -1.45) (layer B.Fab) (width 0.1))
(fp_line (start 0.8 1.45) (end 0.8 -1.45) (layer B.Fab) (width 0.1))
(fp_line (start -0.4 1.45) (end 0.8 1.45) (layer B.Fab) (width 0.1))
(fp_line (start 0 1.56) (end -1.8 1.56) (layer B.SilkS) (width 0.12))
(fp_line (start 0 1.56) (end 0.8 1.56) (layer B.SilkS) (width 0.12))
(fp_line (start 0 -1.56) (end -0.8 -1.56) (layer B.SilkS) (width 0.12))
(fp_line (start 0 -1.56) (end 0.8 -1.56) (layer B.SilkS) (width 0.12))
(fp_text user %R (at 0 0) (layer B.Fab)
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
)
(pad 1 smd roundrect (at -1.1375 0.95 180) (size 1.325 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 5 /MEM_~CE))
(pad 2 smd roundrect (at -1.1375 0 180) (size 1.325 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 15 /MEMADDRESS_15))
(pad 3 smd roundrect (at -1.1375 -0.95 180) (size 1.325 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 2 GND))
(pad 4 smd roundrect (at 1.1375 -0.95 180) (size 1.325 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 31 /MEM1_~CE))
(pad 5 smd roundrect (at 1.1375 0.95 180) (size 1.325 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 3 +3V3))
(model ${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Package_TO_SOT_SMD:SOT-23-5 (layer F.Cu) (tedit 5F6F9B37) (tstamp 5FB6FE76)
(at 126 103)
(descr "SOT, 5 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(path /5FB733B1)
(attr smd)
(fp_text reference U5 (at 0 -2.4) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 74AHC1G32 (at 0 2.4) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 0 1.56) (end 0.8 1.56) (layer F.SilkS) (width 0.12))
(fp_line (start 0 1.56) (end -0.8 1.56) (layer F.SilkS) (width 0.12))
(fp_line (start 0 -1.56) (end 0.8 -1.56) (layer F.SilkS) (width 0.12))
(fp_line (start 0 -1.56) (end -1.8 -1.56) (layer F.SilkS) (width 0.12))
(fp_line (start -0.4 -1.45) (end 0.8 -1.45) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -1.45) (end 0.8 1.45) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 1.45) (end -0.8 1.45) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 1.45) (end -0.8 -1.05) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 -1.05) (end -0.4 -1.45) (layer F.Fab) (width 0.1))
(fp_line (start -2.05 -1.7) (end -2.05 1.7) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.05 1.7) (end 2.05 1.7) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.05 1.7) (end 2.05 -1.7) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.05 -1.7) (end -2.05 -1.7) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.4 0.4) (thickness 0.06)))
)
(pad 5 smd roundrect (at 1.1375 -0.95) (size 1.325 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 3 +3V3))
(pad 4 smd roundrect (at 1.1375 0.95) (size 1.325 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 32 /MEM2_~CE))
(pad 3 smd roundrect (at -1.1375 0.95) (size 1.325 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 2 GND))
(pad 2 smd roundrect (at -1.1375 0) (size 1.325 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 33 /~MEMADDRESS_15))
(pad 1 smd roundrect (at -1.1375 -0.95) (size 1.325 0.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 5 /MEM_~CE))
(model ${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_text GG (at 114.5 110.5) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text BOT (at 162 88.5) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text TOP (at 162 88.5) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text MM1_SRAM_64k_A (at 123.5 89.5) (layer B.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)) (justify mirror))
)
(gr_text 1 (at 161 108.5) (layer B.SilkS)
(effects (font (size 3 3) (thickness 0.5)) (justify mirror))
)
(gr_line (start 162 112) (end 158 112) (layer Edge.Cuts) (width 0.15) (tstamp 5F3710D1))
(dimension 2.5 (width 0.15) (layer Eco2.User)
(gr_text "2,500 mm" (at 118.75 107.700001) (layer Eco2.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(feature1 (pts (xy 117.5 113) (xy 117.5 108.41358)))
(feature2 (pts (xy 120 113) (xy 120 108.41358)))
(crossbar (pts (xy 120 109.000001) (xy 117.5 109.000001)))
(arrow1a (pts (xy 117.5 109.000001) (xy 118.626504 108.41358)))
(arrow1b (pts (xy 117.5 109.000001) (xy 118.626504 109.586422)))
(arrow2a (pts (xy 120 109.000001) (xy 118.873496 108.41358)))
(arrow2b (pts (xy 120 109.000001) (xy 118.873496 109.586422)))
)
(dimension 9 (width 0.15) (layer Eco2.User)
(gr_text "9,000 mm" (at 114.7 116.5 90) (layer Eco2.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(feature1 (pts (xy 117.5 112) (xy 115.413579 112)))
(feature2 (pts (xy 117.5 121) (xy 115.413579 121)))
(crossbar (pts (xy 116 121) (xy 116 112)))
(arrow1a (pts (xy 116 112) (xy 116.586421 113.126504)))
(arrow1b (pts (xy 116 112) (xy 115.413579 113.126504)))
(arrow2a (pts (xy 116 121) (xy 116.586421 119.873496)))
(arrow2b (pts (xy 116 121) (xy 115.413579 119.873496)))
)
(dimension 40.5 (width 0.15) (layer Eco2.User)
(gr_text "40,500 mm" (at 137.75 125.299999) (layer Eco2.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(feature1 (pts (xy 158 121) (xy 158 124.58642)))
(feature2 (pts (xy 117.5 121) (xy 117.5 124.58642)))
(crossbar (pts (xy 117.5 123.999999) (xy 158 123.999999)))
(arrow1a (pts (xy 158 123.999999) (xy 156.873496 124.58642)))
(arrow1b (pts (xy 158 123.999999) (xy 156.873496 123.413578)))
(arrow2a (pts (xy 117.5 123.999999) (xy 118.626504 124.58642)))
(arrow2b (pts (xy 117.5 123.999999) (xy 118.626504 123.413578)))
)
(gr_line (start 164 87) (end 112.5 87) (layer Edge.Cuts) (width 0.15))
(gr_line (start 164 110) (end 164 87) (layer Edge.Cuts) (width 0.15))
(dimension 6 (width 0.15) (layer Eco2.User)
(gr_text "6,000 mm" (at 161 128.799999) (layer Eco2.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(feature1 (pts (xy 164 112) (xy 164 128.08642)))
(feature2 (pts (xy 158 112) (xy 158 128.08642)))
(crossbar (pts (xy 158 127.499999) (xy 164 127.499999)))
(arrow1a (pts (xy 164 127.499999) (xy 162.873496 128.08642)))
(arrow1b (pts (xy 164 127.499999) (xy 162.873496 126.913578)))
(arrow2a (pts (xy 158 127.499999) (xy 159.126504 128.08642)))
(arrow2b (pts (xy 158 127.499999) (xy 159.126504 126.913578)))
)
(gr_line (start 112.5 112) (end 112.5 87) (layer Edge.Cuts) (width 0.15))
(gr_line (start 117.5 112) (end 112.5 112) (layer Edge.Cuts) (width 0.15))
(dimension 5 (width 0.15) (layer Eco2.User)
(gr_text "5,000 mm" (at 115 128.8) (layer Eco2.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(feature1 (pts (xy 112.5 112) (xy 112.5 128.086421)))
(feature2 (pts (xy 117.5 112) (xy 117.5 128.086421)))
(crossbar (pts (xy 117.5 127.5) (xy 112.5 127.5)))
(arrow1a (pts (xy 112.5 127.5) (xy 113.626504 126.913579)))
(arrow1b (pts (xy 112.5 127.5) (xy 113.626504 128.086421)))
(arrow2a (pts (xy 117.5 127.5) (xy 116.373496 126.913579)))
(arrow2b (pts (xy 117.5 127.5) (xy 116.373496 128.086421)))
)
(dimension 25 (width 0.15) (layer Eco2.User) (tstamp 5F371008)
(gr_text "25,000 mm" (at 107.7 99.5 90) (layer Eco2.User) (tstamp 5F371008)
(effects (font (size 1 1) (thickness 0.15)))
)
(feature1 (pts (xy 112.5 87) (xy 108.413579 87)))
(feature2 (pts (xy 112.5 112) (xy 108.413579 112)))
(crossbar (pts (xy 109 112) (xy 109 87)))
(arrow1a (pts (xy 109 87) (xy 109.586421 88.126504)))
(arrow1b (pts (xy 109 87) (xy 108.413579 88.126504)))
(arrow2a (pts (xy 109 112) (xy 109.586421 110.873496)))
(arrow2b (pts (xy 109 112) (xy 108.413579 110.873496)))
)
(gr_line (start 162 112) (end 164 110) (layer Edge.Cuts) (width 0.15))
(gr_line (start 117.5 112) (end 117.5 121) (layer Edge.Cuts) (width 0.15) (tstamp 5D81D571))
(gr_line (start 158 112) (end 158 121) (layer Edge.Cuts) (width 0.15) (tstamp 5D81D56C))
(gr_line (start 158 121) (end 117.5 121) (layer Edge.Cuts) (width 0.15))
(gr_text MM1_SRAM_64k_A (at 123.5 89.5) (layer F.SilkS) (tstamp 5FB7002B)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(segment (start 152.255 94.75) (end 152.255 94.2636) (width 0.25) (layer B.Cu) (net 2) (status 30))
(segment (start 124.8625 103.95) (end 124.4191 103.95) (width 0.25) (layer F.Cu) (net 2) (status 30))
(segment (start 133 96.95) (end 132.6657 96.6157) (width 0.25) (layer F.Cu) (net 2) (status 30))
(via (at 153.9862 102.9312) (size 0.45) (layers F.Cu B.Cu) (net 2))
(via (at 130.96 97.32) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 2))
(segment (start 127.1375 103.95) (end 128.05 103.95) (width 0.25) (layer B.Cu) (net 2) (status 10))
(segment (start 128.05 103.95) (end 129.07 102.93) (width 0.25) (layer B.Cu) (net 2))
(segment (start 129.07 99.21) (end 130.96 97.32) (width 0.25) (layer B.Cu) (net 2))
(segment (start 129.07 102.93) (end 129.07 99.21) (width 0.25) (layer B.Cu) (net 2))
(segment (start 134.248 102.95) (end 134.248 95.0936) (width 0.25) (layer B.Cu) (net 3))
(segment (start 134.248 95.0936) (end 134.2916 95.05) (width 0.25) (layer B.Cu) (net 3))
(segment (start 135.745 103.25) (end 134.548 103.25) (width 0.25) (layer B.Cu) (net 3) (status 10))
(segment (start 134.548 103.25) (end 134.248 102.95) (width 0.25) (layer B.Cu) (net 3))
(segment (start 134.248 102.95) (end 133 102.95) (width 0.25) (layer B.Cu) (net 3) (status 20))
(segment (start 134.2916 95.05) (end 134.5916 94.75) (width 0.25) (layer F.Cu) (net 3))
(segment (start 134.5916 94.75) (end 135.745 94.75) (width 0.25) (layer F.Cu) (net 3) (status 20))
(segment (start 134.2916 95.05) (end 133 95.05) (width 0.25) (layer F.Cu) (net 3) (status 20))
(segment (start 120.03 110.95) (end 120.03 116.89) (width 0.25) (layer B.Cu) (net 3) (status 30))
(segment (start 120.03 110.95) (end 120 110.95) (width 0.25) (layer B.Cu) (net 3) (status 30))
(segment (start 124.8625 102.05) (end 124.8625 100.9218) (width 0.25) (layer B.Cu) (net 3) (status 10))
(segment (start 124.8625 100.9218) (end 125.0497 100.7346) (width 0.25) (layer B.Cu) (net 3))
(segment (start 128.36 95.05) (end 127.1375 95.05) (width 0.25) (layer F.Cu) (net 3) (status 20))
(segment (start 128.57 99.0901) (end 126.9255 100.7346) (width 0.25) (layer F.Cu) (net 3))
(segment (start 126.9255 100.7346) (end 125.0497 100.7346) (width 0.25) (layer F.Cu) (net 3))
(segment (start 127.1375 102.05) (end 127.1375 100.9466) (width 0.25) (layer F.Cu) (net 3) (status 10))
(segment (start 127.1375 100.9466) (end 126.9255 100.7346) (width 0.25) (layer F.Cu) (net 3))
(via (at 134.2916 95.05) (size 0.45) (layers F.Cu B.Cu) (net 3))
(via (at 125.0497 100.7346) (size 0.45) (layers F.Cu B.Cu) (net 3))
(segment (start 123.28 102.05) (end 124.8625 102.05) (width 0.25) (layer B.Cu) (net 3) (status 20))
(segment (start 128.36 95.05) (end 128.57 95.26) (width 0.25) (layer F.Cu) (net 3))
(segment (start 128.57 95.26) (end 128.57 99.0901) (width 0.25) (layer F.Cu) (net 3))
(segment (start 128.57 95.05) (end 128.57 95.26) (width 0.25) (layer F.Cu) (net 3))
(segment (start 128.57 95.05) (end 128.36 95.05) (width 0.25) (layer F.Cu) (net 3))
(segment (start 128.57 95.26) (end 128.57 95.25) (width 0.25) (layer F.Cu) (net 3))
(segment (start 128.77 95.05) (end 128.57 95.05) (width 0.25) (layer F.Cu) (net 3))
(segment (start 128.57 95.25) (end 128.77 95.05) (width 0.25) (layer F.Cu) (net 3))
(segment (start 133 95.05) (end 128.77 95.05) (width 0.25) (layer F.Cu) (net 3) (status 10))
(segment (start 120 110.95) (end 120.78 110.95) (width 0.25) (layer B.Cu) (net 3) (status 10))
(segment (start 120.78 110.95) (end 121.2 110.53) (width 0.25) (layer B.Cu) (net 3))
(segment (start 121.2 104.13) (end 123.28 102.05) (width 0.25) (layer B.Cu) (net 3))
(segment (start 121.2 110.53) (end 121.2 104.13) (width 0.25) (layer B.Cu) (net 3))
(segment (start 143.365 94.75) (end 143.365 96.746) (width 0.2) (layer F.Cu) (net 4) (status 10))
(segment (start 143.365 96.746) (end 143.1915 96.9195) (width 0.2) (layer F.Cu) (net 4))
(segment (start 127.4359 105.4507) (end 122.57 110.3166) (width 0.2) (layer B.Cu) (net 4))
(segment (start 122.57 110.3166) (end 122.57 116.89) (width 0.2) (layer B.Cu) (net 4) (status 20))
(via (at 127.4359 105.4507) (size 0.45) (layers F.Cu B.Cu) (net 4))
(via (at 143.1915 96.9195) (size 0.45) (layers F.Cu B.Cu) (net 4))
(segment (start 143.1915 96.9195) (end 139.800879 96.9195) (width 0.2) (layer F.Cu) (net 4))
(segment (start 134.437914 97.058586) (end 129.7561 101.7404) (width 0.2) (layer F.Cu) (net 4))
(segment (start 139.661793 97.058586) (end 134.437914 97.058586) (width 0.2) (layer F.Cu) (net 4))
(segment (start 127.4359 104.9227) (end 127.4359 105.4507) (width 0.2) (layer F.Cu) (net 4))
(segment (start 139.800879 96.9195) (end 139.661793 97.058586) (width 0.2) (layer F.Cu) (net 4))
(segment (start 129.7561 101.7404) (end 129.7561 102.6025) (width 0.2) (layer F.Cu) (net 4))
(segment (start 129.7561 102.6025) (end 127.4359 104.9227) (width 0.2) (layer F.Cu) (net 4))
(segment (start 143.365 101.845) (end 143.1915 101.6715) (width 0.2) (layer B.Cu) (net 4))
(segment (start 143.365 103.25) (end 143.365 101.845) (width 0.2) (layer B.Cu) (net 4) (status 10))
(segment (start 143.1915 101.6715) (end 143.1915 96.9195) (width 0.2) (layer B.Cu) (net 4))
(segment (start 125.9825 106.107) (end 122.57 109.5195) (width 0.2) (layer F.Cu) (net 5))
(segment (start 122.57 109.5195) (end 122.57 116.89) (width 0.2) (layer F.Cu) (net 5) (status 20))
(segment (start 124.8625 102.05) (end 125.2446 102.05) (width 0.2) (layer F.Cu) (net 5) (status 30))
(via (at 126.5231 101.3219) (size 0.45) (layers F.Cu B.Cu) (net 5))
(segment (start 125.975 102.05) (end 125.9825 102.0575) (width 0.2) (layer F.Cu) (net 5))
(segment (start 124.8625 102.05) (end 125.975 102.05) (width 0.2) (layer F.Cu) (net 5) (status 10))
(segment (start 125.9825 102.0575) (end 125.9825 106.107) (width 0.2) (layer F.Cu) (net 5))
(segment (start 126.2681 101.3219) (end 126.5231 101.3219) (width 0.2) (layer F.Cu) (net 5))
(segment (start 125.9825 101.6075) (end 126.2681 101.3219) (width 0.2) (layer F.Cu) (net 5))
(segment (start 125.9825 102.0575) (end 125.9825 101.6075) (width 0.2) (layer F.Cu) (net 5))
(segment (start 127.1375 102.05) (end 127.1375 101.5375) (width 0.2) (layer B.Cu) (net 5) (status 10))
(segment (start 126.9219 101.3219) (end 126.5231 101.3219) (width 0.2) (layer B.Cu) (net 5))
(segment (start 127.1375 101.5375) (end 126.9219 101.3219) (width 0.2) (layer B.Cu) (net 5))
(segment (start 128.077 105.4714) (end 128.077 109.8927) (width 0.2) (layer B.Cu) (net 6))
(segment (start 128.077 109.8927) (end 125.11 112.8597) (width 0.2) (layer B.Cu) (net 6))
(segment (start 125.11 116.89) (end 125.11 112.8597) (width 0.2) (layer B.Cu) (net 6) (status 10))
(segment (start 147.175 94.75) (end 147.175 96.5572) (width 0.2) (layer F.Cu) (net 6) (status 10))
(segment (start 147.175 96.5572) (end 146.9055 96.8267) (width 0.2) (layer F.Cu) (net 6))
(segment (start 147.175 103.25) (end 147.064 103.139) (width 0.2) (layer B.Cu) (net 6) (status 30))
(segment (start 147.064 103.139) (end 147.064 96.9852) (width 0.2) (layer B.Cu) (net 6) (status 10))
(segment (start 147.064 96.9852) (end 146.9055 96.8267) (width 0.2) (layer B.Cu) (net 6))
(via (at 128.077 105.4714) (size 0.45) (layers F.Cu B.Cu) (net 6))
(via (at 146.9055 96.8267) (size 0.45) (layers F.Cu B.Cu) (net 6))
(segment (start 146.587302 96.8267) (end 146.9055 96.8267) (width 0.2) (layer F.Cu) (net 6))
(segment (start 139.027859 98.005581) (end 139.100155 97.933285) (width 0.2) (layer F.Cu) (net 6))
(segment (start 128.077 104.9462) (end 135.017619 98.005581) (width 0.2) (layer F.Cu) (net 6))
(segment (start 128.077 105.4714) (end 128.077 104.9462) (width 0.2) (layer F.Cu) (net 6))
(segment (start 139.100155 97.933285) (end 145.480717 97.933285) (width 0.2) (layer F.Cu) (net 6))
(segment (start 135.017619 98.005581) (end 139.027859 98.005581) (width 0.2) (layer F.Cu) (net 6))
(segment (start 145.480717 97.933285) (end 146.587302 96.8267) (width 0.2) (layer F.Cu) (net 6))
(segment (start 125.11 116.89) (end 125.11 109.9663) (width 0.2) (layer F.Cu) (net 7) (status 10))
(segment (start 125.11 109.9663) (end 129.8111 105.2652) (width 0.2) (layer F.Cu) (net 7))
(segment (start 137.015 103.25) (end 137.015 103.7167) (width 0.2) (layer B.Cu) (net 7) (status 30))
(segment (start 137.015 103.7167) (end 135.4665 105.2652) (width 0.2) (layer B.Cu) (net 7) (status 10))
(segment (start 135.4665 105.2652) (end 129.8111 105.2652) (width 0.2) (layer B.Cu) (net 7))
(via (at 129.8111 105.2652) (size 0.45) (layers F.Cu B.Cu) (net 7))
(segment (start 137.015 96.542193) (end 136.911885 96.439078) (width 0.2) (layer B.Cu) (net 7))
(segment (start 137.015 103.25) (end 137.015 96.542193) (width 0.2) (layer B.Cu) (net 7) (status 10))
(segment (start 137.015 96.335963) (end 136.911885 96.439078) (width 0.2) (layer F.Cu) (net 7))
(segment (start 137.015 94.75) (end 137.015 96.335963) (width 0.2) (layer F.Cu) (net 7) (status 10))
(via (at 136.911885 96.439078) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 7))
(segment (start 149.715 94.75) (end 149.715 96.2453) (width 0.2) (layer F.Cu) (net 8) (status 10))
(segment (start 149.715 96.2453) (end 149.3255 96.6348) (width 0.2) (layer F.Cu) (net 8))
(segment (start 127.65 112.8597) (end 130.7176 109.7921) (width 0.2) (layer B.Cu) (net 8))
(segment (start 130.7176 109.7921) (end 130.7176 107.6327) (width 0.2) (layer B.Cu) (net 8))
(segment (start 127.65 116.89) (end 127.65 112.8597) (width 0.2) (layer B.Cu) (net 8) (status 10))
(segment (start 149.3255 96.6348) (end 149.1832 96.7771) (width 0.2) (layer B.Cu) (net 8))
(via (at 130.7176 107.6327) (size 0.45) (layers F.Cu B.Cu) (net 8))
(via (at 149.3255 96.6348) (size 0.45) (layers F.Cu B.Cu) (net 8))
(segment (start 132.339 102.2977) (end 135.491089 99.145611) (width 0.2) (layer F.Cu) (net 8))
(segment (start 139.555718 99.14561) (end 139.628014 99.073314) (width 0.2) (layer F.Cu) (net 8))
(segment (start 135.491089 99.145611) (end 139.555718 99.14561) (width 0.2) (layer F.Cu) (net 8))
(segment (start 143.178703 99.3741) (end 146.904398 99.3741) (width 0.2) (layer F.Cu) (net 8))
(segment (start 146.904398 99.3741) (end 149.3255 96.952998) (width 0.2) (layer F.Cu) (net 8))
(segment (start 132.339 106.0113) (end 132.339 102.2977) (width 0.2) (layer F.Cu) (net 8))
(segment (start 130.7176 107.6327) (end 132.339 106.0113) (width 0.2) (layer F.Cu) (net 8))
(segment (start 142.877917 99.073314) (end 143.178703 99.3741) (width 0.2) (layer F.Cu) (net 8))
(segment (start 139.628014 99.073314) (end 142.877917 99.073314) (width 0.2) (layer F.Cu) (net 8))
(segment (start 149.3255 96.952998) (end 149.3255 96.6348) (width 0.2) (layer F.Cu) (net 8))
(segment (start 149.715 103.25) (end 149.715 102.065) (width 0.2) (layer B.Cu) (net 8) (status 10))
(segment (start 149.1832 96.7771) (end 149.1832 101.5332) (width 0.2) (layer B.Cu) (net 8))
(segment (start 149.715 102.065) (end 149.1832 101.5332) (width 0.2) (layer B.Cu) (net 8))
(segment (start 148.445 103.25) (end 148.5536 103.1414) (width 0.2) (layer B.Cu) (net 9) (status 30))
(segment (start 148.5536 103.1414) (end 148.5536 96.8018) (width 0.2) (layer B.Cu) (net 9) (status 10))
(segment (start 148.445 94.75) (end 148.445 96.6932) (width 0.2) (layer F.Cu) (net 9) (status 10))
(segment (start 148.445 96.6932) (end 148.5536 96.8018) (width 0.2) (layer F.Cu) (net 9))
(via (at 148.5536 96.8018) (size 0.45) (layers F.Cu B.Cu) (net 9))
(segment (start 131.7891 104.0475) (end 131.7891 102.3097) (width 0.2) (layer F.Cu) (net 9))
(segment (start 127.65 116.89) (end 127.65 108.1866) (width 0.2) (layer F.Cu) (net 9) (status 10))
(segment (start 143.035323 98.693304) (end 143.315506 98.973487) (width 0.2) (layer F.Cu) (net 9))
(segment (start 146.381913 98.973487) (end 148.5536 96.8018) (width 0.2) (layer F.Cu) (net 9))
(segment (start 131.7891 102.3097) (end 135.333199 98.765601) (width 0.2) (layer F.Cu) (net 9))
(segment (start 139.398311 98.765601) (end 139.470608 98.693304) (width 0.2) (layer F.Cu) (net 9))
(segment (start 135.333199 98.765601) (end 139.398311 98.765601) (width 0.2) (layer F.Cu) (net 9))
(segment (start 143.315506 98.973487) (end 146.381913 98.973487) (width 0.2) (layer F.Cu) (net 9))
(segment (start 139.470608 98.693304) (end 143.035323 98.693304) (width 0.2) (layer F.Cu) (net 9))
(segment (start 127.65 108.1866) (end 131.7891 104.0475) (width 0.2) (layer F.Cu) (net 9))
(segment (start 130.19 112.8597) (end 132.9746 110.0751) (width 0.2) (layer B.Cu) (net 10))
(segment (start 132.9746 110.0751) (end 132.9746 109.8803) (width 0.2) (layer B.Cu) (net 10))
(segment (start 152.255 103.25) (end 152.1086 103.1036) (width 0.2) (layer B.Cu) (net 10) (status 30))
(segment (start 152.1086 103.1036) (end 152.1086 100.4705) (width 0.2) (layer B.Cu) (net 10) (status 10))
(segment (start 130.19 116.89) (end 130.19 112.8597) (width 0.2) (layer B.Cu) (net 10) (status 10))
(via (at 132.9746 109.8803) (size 0.45) (layers F.Cu B.Cu) (net 10))
(via (at 152.1086 100.4705) (size 0.45) (layers F.Cu B.Cu) (net 10))
(segment (start 152.1086 99.9614) (end 152.255 99.815) (width 0.2) (layer F.Cu) (net 10))
(segment (start 152.1086 100.4705) (end 152.1086 99.9614) (width 0.2) (layer F.Cu) (net 10))
(segment (start 152.255 94.75) (end 152.255 99.815) (width 0.2) (layer F.Cu) (net 10) (status 10))
(segment (start 132.9746 109.8803) (end 133.0997 109.7552) (width 0.2) (layer F.Cu) (net 10))
(segment (start 139.870529 99.90563) (end 139.942829 99.833332) (width 0.2) (layer F.Cu) (net 10))
(segment (start 142.880171 100.1504) (end 151.7885 100.1504) (width 0.2) (layer F.Cu) (net 10))
(segment (start 151.7885 100.1504) (end 152.1086 100.4705) (width 0.2) (layer F.Cu) (net 10))
(segment (start 133.0997 102.6463) (end 135.840369 99.905631) (width 0.2) (layer F.Cu) (net 10))
(segment (start 142.563103 99.833332) (end 142.880171 100.1504) (width 0.2) (layer F.Cu) (net 10))
(segment (start 139.942829 99.833332) (end 142.563103 99.833332) (width 0.2) (layer F.Cu) (net 10))
(segment (start 133.0997 109.7552) (end 133.0997 102.6463) (width 0.2) (layer F.Cu) (net 10))
(segment (start 135.840369 99.905631) (end 139.870529 99.90563) (width 0.2) (layer F.Cu) (net 10))
(segment (start 150.985 96.317264) (end 151.235964 96.568228) (width 0.2) (layer F.Cu) (net 11))
(segment (start 150.985 94.75) (end 150.985 96.317264) (width 0.2) (layer F.Cu) (net 11) (status 10))
(via (at 151.235964 96.568228) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 11))
(segment (start 151.460963 96.793227) (end 151.235964 96.568228) (width 0.2) (layer B.Cu) (net 11))
(segment (start 132.7194 102.4888) (end 135.682579 99.525621) (width 0.2) (layer F.Cu) (net 11))
(segment (start 148.04366 99.760532) (end 151.235964 96.568228) (width 0.2) (layer F.Cu) (net 11))
(segment (start 132.7194 109.421) (end 132.7194 102.4888) (width 0.2) (layer F.Cu) (net 11))
(segment (start 130.19 116.89) (end 130.19 111.9504) (width 0.2) (layer F.Cu) (net 11) (status 10))
(segment (start 143.027719 99.760532) (end 148.04366 99.760532) (width 0.2) (layer F.Cu) (net 11))
(segment (start 142.720512 99.453325) (end 143.027719 99.760532) (width 0.2) (layer F.Cu) (net 11))
(segment (start 130.19 111.9504) (end 132.7194 109.421) (width 0.2) (layer F.Cu) (net 11))
(segment (start 135.682579 99.525621) (end 139.713123 99.525621) (width 0.2) (layer F.Cu) (net 11))
(segment (start 139.713123 99.525621) (end 139.785419 99.453325) (width 0.2) (layer F.Cu) (net 11))
(segment (start 139.785419 99.453325) (end 142.720512 99.453325) (width 0.2) (layer F.Cu) (net 11))
(segment (start 150.985 103.25) (end 150.985 101.865) (width 0.2) (layer B.Cu) (net 11) (status 10))
(segment (start 151.460963 101.389037) (end 151.460963 96.793227) (width 0.2) (layer B.Cu) (net 11))
(segment (start 150.985 101.865) (end 151.460963 101.389037) (width 0.2) (layer B.Cu) (net 11))
(segment (start 132.73 112.8597) (end 134.0239 111.5658) (width 0.2) (layer B.Cu) (net 12))
(segment (start 134.0239 111.5658) (end 134.0239 110.9474) (width 0.2) (layer B.Cu) (net 12))
(segment (start 132.73 116.89) (end 132.73 112.8597) (width 0.2) (layer B.Cu) (net 12) (status 10))
(via (at 134.0239 110.9474) (size 0.45) (layers F.Cu B.Cu) (net 12))
(segment (start 149.715 103.25) (end 149.715 101.52929) (width 0.2) (layer F.Cu) (net 12) (status 10))
(segment (start 149.715 101.52929) (end 149.804241 101.440049) (width 0.2) (layer F.Cu) (net 12))
(segment (start 134.0239 110.9474) (end 134.0239 102.7977) (width 0.2) (layer F.Cu) (net 12))
(segment (start 136.155949 100.665651) (end 140.185338 100.66565) (width 0.2) (layer F.Cu) (net 12))
(segment (start 140.257634 100.593354) (end 142.248293 100.593354) (width 0.2) (layer F.Cu) (net 12))
(segment (start 140.185338 100.66565) (end 140.257634 100.593354) (width 0.2) (layer F.Cu) (net 12))
(segment (start 150.015 101.22929) (end 149.804241 101.440049) (width 0.2) (layer B.Cu) (net 12))
(via (at 149.804241 101.440049) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 12))
(segment (start 134.0239 102.7977) (end 136.155949 100.665651) (width 0.2) (layer F.Cu) (net 12))
(segment (start 149.275192 100.911) (end 149.804241 101.440049) (width 0.2) (layer F.Cu) (net 12))
(segment (start 142.565939 100.911) (end 149.275192 100.911) (width 0.2) (layer F.Cu) (net 12))
(segment (start 142.248293 100.593354) (end 142.565939 100.911) (width 0.2) (layer F.Cu) (net 12))
(segment (start 149.715 96.115) (end 150.015 96.415) (width 0.2) (layer B.Cu) (net 12))
(segment (start 149.715 94.75) (end 149.715 96.115) (width 0.2) (layer B.Cu) (net 12) (status 10))
(segment (start 150.015 96.415) (end 150.015 101.22929) (width 0.2) (layer B.Cu) (net 12))
(segment (start 132.73 112.8597) (end 133.48 112.1097) (width 0.2) (layer F.Cu) (net 13))
(segment (start 149.670587 100.5307) (end 150.637847 101.49796) (width 0.2) (layer F.Cu) (net 13))
(segment (start 142.405699 100.213344) (end 142.723055 100.5307) (width 0.2) (layer F.Cu) (net 13))
(segment (start 140.100229 100.213343) (end 142.405699 100.213344) (width 0.2) (layer F.Cu) (net 13))
(segment (start 140.027931 100.285641) (end 140.100229 100.213343) (width 0.2) (layer F.Cu) (net 13))
(segment (start 135.998159 100.285641) (end 140.027931 100.285641) (width 0.2) (layer F.Cu) (net 13))
(segment (start 133.48 102.8038) (end 135.998159 100.285641) (width 0.2) (layer F.Cu) (net 13))
(via (at 150.637847 101.49796) (size 0.45) (drill 0.2) (layers F.Cu B.Cu) (net 13))
(segment (start 142.723055 100.5307) (end 149.670587 100.5307) (width 0.2) (layer F.Cu) (net 13))
(segment (start 133.48 112.1097) (end 133.48 102.8038) (width 0.2) (layer F.Cu) (net 13))
(segment (start 132.73 116.89) (end 132.73 112.8597) (width 0.2) (layer F.Cu) (net 13) (status 10))
(segment (start 150.985 103.25) (end 150.985 101.845113) (width 0.2) (layer F.Cu) (net 13) (status 10))
(segment (start 150.985 101.845113) (end 150.637847 101.49796) (width 0.2) (layer F.Cu) (net 13))
(segment (start 150.985 95.970694) (end 150.637847 96.317847) (width 0.2) (layer B.Cu) (net 13))
(segment (start 150.985 94.75) (end 150.985 95.970694) (width 0.2) (layer B.Cu) (net 13) (status 10))
(segment (start 150.637847 96.317847) (end 150.637847 101.49796) (width 0.2) (layer B.Cu) (net 13))
(segment (start 148.0396 101.4999) (end 148.445 101.9053) (width 0.2) (layer F.Cu) (net 14))
(segment (start 148.445 101.9053) (end 148.445 103.25) (width 0.2) (layer F.Cu) (net 14) (status 20))
(via (at 148.0396 101.4999) (size 0.45) (layers F.Cu B.Cu) (net 14))
(segment (start 148.445 96.1242) (end 148.0396 96.5296) (width 0.2) (layer B.Cu) (net 14))
(segment (start 148.445 94.75) (end 148.445 96.1242) (width 0.2) (layer B.Cu) (net 14) (status 10))