forked from rusefi/rusefi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
134pin_7-967288-1.net
1085 lines (1085 loc) · 45.2 KB
/
134pin_7-967288-1.net
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
(export (version D)
(design
(source C:\Users\Owner\Desktop\daecu_repo\Hardware\trunk\rusefi.com\Breakout_134pin_7-967288-1_KC5\134pin_7-967288-1.sch)
(date "11/18/2019 5:47:31 AM")
(tool "Eeschema (5.1.4)-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "134pin 7-967288-1 Breakout board")
(company rusEFI.com)
(rev R0.1)
(date 2019-11-16)
(source 134pin_7-967288-1.sch)
(comment (number 1) (value DAECU))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref LOGO2)
(value DNP)
(footprint Symbol:OSHW-Logo2_7.3x6mm_SilkScreen)
(datasheet ~)
(fields
(field (name Manufacturer) DNP)
(field (name "Part #") DNP)
(field (name VEND) DNP)
(field (name VEND#) DNP))
(libsource (lib Graphic) (part Logo_Open_Hardware_Small) (description "Open Hardware logo, small"))
(sheetpath (names /) (tstamps /))
(tstamp 5D21BC70))
(comp (ref LOGO1)
(value DNP)
(footprint rusEFI:LOGO)
(datasheet ~)
(fields
(field (name Manufacturer) DNP)
(field (name "Part #") DNP)
(field (name VEND) DNP)
(field (name VEND#) DNP))
(libsource (lib RusEFI_Logo) (part LOGO) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D54AA23))
(comp (ref P1)
(value 134pin_7-967288-1_KC5)
(footprint 134pin_7-967288-1_KC5_FOOTPRINT:7-967288-1_134-pin-connector)
(libsource (lib 134pin_7-967288-1_KC5_SYMBOL) (part 134pin_7-967288-1_KC5) (description 134pin_7-967288-1_KC5))
(sheetpath (names /) (tstamps /))
(tstamp 5DCA353B))
(comp (ref J23)
(value Conn_01x10)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x10_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x10) (description "Generic connector, single row, 01x10, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD70BCF))
(comp (ref J15)
(value Conn_01x13)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x13_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x13) (description "Generic connector, single row, 01x13, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD8381C))
(comp (ref J4)
(value Conn_01x06)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x06) (description "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD8FA73))
(comp (ref J1)
(value Conn_01x03)
(footprint Connector_Phoenix_MSTB:PhoenixContact_MSTBA_2,5_3-G-5,08_1x03_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD5786D))
(comp (ref J12)
(value Conn_01x03)
(footprint Connector_Phoenix_MSTB:PhoenixContact_MSTBA_2,5_3-G-5,08_1x03_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E2D27F8))
(comp (ref J13)
(value Conn_01x03)
(footprint Connector_Phoenix_MSTB:PhoenixContact_MSTBA_2,5_3-G-5,08_1x03_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E2E5982))
(comp (ref J14)
(value Conn_01x03)
(footprint Connector_Phoenix_MSTB:PhoenixContact_MSTBA_2,5_3-G-5,08_1x03_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E2E61EC))
(comp (ref J2)
(value Conn_01x03)
(footprint Connector_Phoenix_MSTB:PhoenixContact_MSTBA_2,5_3-G-5,08_1x03_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E2E695E))
(comp (ref J3)
(value Conn_01x03)
(footprint Connector_Phoenix_MSTB:PhoenixContact_MSTBA_2,5_3-G-5,08_1x03_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E2E7030))
(comp (ref J27)
(value Conn_01x03)
(footprint Connector_Phoenix_MSTB:PhoenixContact_MSTBA_2,5_3-G-5,08_1x03_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E2E9AB5))
(comp (ref J34)
(value Conn_01x03)
(footprint Connector_Phoenix_MSTB:PhoenixContact_MSTBA_2,5_3-G-5,08_1x03_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E2F576B))
(comp (ref J35)
(value Conn_01x03)
(footprint Connector_Phoenix_MSTB:PhoenixContact_MSTBA_2,5_3-G-5,08_1x03_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E2F6757))
(comp (ref J36)
(value Conn_01x03)
(footprint Connector_Phoenix_MSTB:PhoenixContact_MSTBA_2,5_3-G-5,08_1x03_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E2F7590))
(comp (ref J28)
(value Conn_01x03)
(footprint Connector_Phoenix_MSTB:PhoenixContact_MSTBA_2,5_3-G-5,08_1x03_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E3039A6))
(comp (ref J29)
(value Conn_01x03)
(footprint Connector_Phoenix_MSTB:PhoenixContact_MSTBA_2,5_3-G-5,08_1x03_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E3046AC))
(comp (ref J8)
(value Conn_01x06)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x06) (description "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E3193C1))
(comp (ref J9)
(value Conn_01x06)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x06) (description "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E319F64))
(comp (ref J10)
(value Conn_01x06)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x06) (description "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E31AA9C))
(comp (ref J5)
(value Conn_01x06)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x06) (description "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E31BB17))
(comp (ref J6)
(value Conn_01x06)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x06) (description "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E31C79D))
(comp (ref J11)
(value Conn_01x06)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x06) (description "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E31E225))
(comp (ref J7)
(value Conn_01x06)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x06) (description "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E31EC6B))
(comp (ref J19)
(value Conn_01x13)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x13_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x13) (description "Generic connector, single row, 01x13, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E34287B))
(comp (ref J20)
(value Conn_01x13)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x13_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x13) (description "Generic connector, single row, 01x13, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E34703E))
(comp (ref J21)
(value Conn_01x13)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x13_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x13) (description "Generic connector, single row, 01x13, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E3489D2))
(comp (ref J16)
(value Conn_01x13)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x13_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x13) (description "Generic connector, single row, 01x13, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E349F91))
(comp (ref J17)
(value Conn_01x13)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x13_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x13) (description "Generic connector, single row, 01x13, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E34B1C3))
(comp (ref J22)
(value Conn_01x13)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x13_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x13) (description "Generic connector, single row, 01x13, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E3511AF))
(comp (ref J18)
(value Conn_01x13)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x13_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x13) (description "Generic connector, single row, 01x13, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E352408))
(comp (ref J30)
(value Conn_01x10)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x10_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x10) (description "Generic connector, single row, 01x10, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E370115))
(comp (ref J31)
(value Conn_01x10)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x10_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x10) (description "Generic connector, single row, 01x10, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E374575))
(comp (ref J32)
(value Conn_01x10)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x10_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x10) (description "Generic connector, single row, 01x10, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E3757F6))
(comp (ref J24)
(value Conn_01x10)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x10_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x10) (description "Generic connector, single row, 01x10, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E376794))
(comp (ref J25)
(value Conn_01x10)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x10_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x10) (description "Generic connector, single row, 01x10, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E3771EB))
(comp (ref J33)
(value Conn_01x10)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x10_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x10) (description "Generic connector, single row, 01x10, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E37933C))
(comp (ref J26)
(value Conn_01x10)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x10_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x10) (description "Generic connector, single row, 01x10, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E37A504))
(comp (ref J37)
(value Conn_01x01)
(footprint TestPoint:TestPoint_Keystone_5000-5004_Miniature)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x01) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD1444D)))
(libparts
(libpart (lib 134pin_7-967288-1_KC5_SYMBOL) (part 134pin_7-967288-1_KC5)
(description 134pin_7-967288-1_KC5)
(docs ~)
(fields
(field (name Reference) P)
(field (name Value) 134pin_7-967288-1_KC5)
(field (name Footprint) 134pin_7-967288-1_KC5_FOOTPRINT:7-967288-1_134-pin-connector))
(pins
(pin (num 101) (name Pin_101) (type passive))
(pin (num 102) (name Pin_102) (type passive))
(pin (num 103) (name Pin_103) (type passive))
(pin (num 104) (name Pin_104) (type passive))
(pin (num 105) (name Pin_105) (type passive))
(pin (num 106) (name Pin_106) (type passive))
(pin (num 107) (name Pin_107) (type passive))
(pin (num 108) (name Pin_108) (type passive))
(pin (num 109) (name Pin_109) (type passive))
(pin (num 201) (name Pin_201) (type passive))
(pin (num 202) (name Pin_202) (type passive))
(pin (num 203) (name Pin_203) (type passive))
(pin (num 204) (name Pin_204) (type passive))
(pin (num 205) (name Pin_205) (type passive))
(pin (num 206) (name Pin_206) (type passive))
(pin (num 207) (name Pin_207) (type passive))
(pin (num 208) (name Pin_208) (type passive))
(pin (num 209) (name Pin_209) (type passive))
(pin (num 210) (name Pin_210) (type passive))
(pin (num 211) (name Pin_211) (type passive))
(pin (num 212) (name Pin_212) (type passive))
(pin (num 213) (name Pin_213) (type passive))
(pin (num 214) (name Pin_214) (type passive))
(pin (num 215) (name Pin_215) (type passive))
(pin (num 216) (name Pin_216) (type passive))
(pin (num 217) (name Pin_217) (type passive))
(pin (num 218) (name Pin_218) (type passive))
(pin (num 219) (name Pin_219) (type passive))
(pin (num 220) (name Pin_220) (type passive))
(pin (num 221) (name Pin_221) (type passive))
(pin (num 222) (name Pin_222) (type passive))
(pin (num 223) (name Pin_223) (type passive))
(pin (num 224) (name Pin_224) (type passive))
(pin (num 301) (name Pin_301) (type passive))
(pin (num 302) (name Pin_302) (type passive))
(pin (num 303) (name Pin_303) (type passive))
(pin (num 304) (name Pin_304) (type passive))
(pin (num 305) (name Pin_305) (type passive))
(pin (num 306) (name Pin_306) (type passive))
(pin (num 307) (name Pin_307) (type passive))
(pin (num 308) (name Pin_308) (type passive))
(pin (num 309) (name Pin_309) (type passive))
(pin (num 310) (name Pin_310) (type passive))
(pin (num 311) (name Pin_311) (type passive))
(pin (num 312) (name Pin_312) (type passive))
(pin (num 313) (name Pin_313) (type passive))
(pin (num 314) (name Pin_314) (type passive))
(pin (num 315) (name Pin_315) (type passive))
(pin (num 316) (name Pin_316) (type passive))
(pin (num 317) (name Pin_317) (type passive))
(pin (num 318) (name Pin_318) (type passive))
(pin (num 319) (name Pin_319) (type passive))
(pin (num 320) (name Pin_320) (type passive))
(pin (num 321) (name Pin_321) (type passive))
(pin (num 322) (name Pin_322) (type passive))
(pin (num 323) (name Pin_323) (type passive))
(pin (num 324) (name Pin_324) (type passive))
(pin (num 325) (name Pin_325) (type passive))
(pin (num 326) (name Pin_326) (type passive))
(pin (num 327) (name Pin_327) (type passive))
(pin (num 328) (name Pin_328) (type passive))
(pin (num 329) (name Pin_329) (type passive))
(pin (num 330) (name Pin_330) (type passive))
(pin (num 331) (name Pin_331) (type passive))
(pin (num 332) (name Pin_332) (type passive))
(pin (num 333) (name Pin_333) (type passive))
(pin (num 334) (name Pin_334) (type passive))
(pin (num 335) (name Pin_335) (type passive))
(pin (num 336) (name Pin_336) (type passive))
(pin (num 337) (name Pin_337) (type passive))
(pin (num 338) (name Pin_338) (type passive))
(pin (num 339) (name Pin_339) (type passive))
(pin (num 340) (name Pin_340) (type passive))
(pin (num 341) (name Pin_341) (type passive))
(pin (num 342) (name Pin_342) (type passive))
(pin (num 343) (name Pin_343) (type passive))
(pin (num 344) (name Pin_344) (type passive))
(pin (num 345) (name Pin_345) (type passive))
(pin (num 346) (name Pin_346) (type passive))
(pin (num 347) (name Pin_347) (type passive))
(pin (num 348) (name Pin_348) (type passive))
(pin (num 349) (name Pin_349) (type passive))
(pin (num 350) (name Pin_350) (type passive))
(pin (num 351) (name Pin_351) (type passive))
(pin (num 352) (name Pin_352) (type passive))
(pin (num 401) (name Pin_401) (type passive))
(pin (num 402) (name Pin_402) (type passive))
(pin (num 403) (name Pin_403) (type passive))
(pin (num 404) (name Pin_404) (type passive))
(pin (num 405) (name Pin_405) (type passive))
(pin (num 406) (name Pin_406) (type passive))
(pin (num 407) (name Pin_407) (type passive))
(pin (num 408) (name Pin_408) (type passive))
(pin (num 409) (name Pin_409) (type passive))
(pin (num 410) (name Pin_410) (type passive))
(pin (num 411) (name Pin_411) (type passive))
(pin (num 412) (name Pin_412) (type passive))
(pin (num 413) (name Pin_413) (type passive))
(pin (num 414) (name Pin_414) (type passive))
(pin (num 415) (name Pin_415) (type passive))
(pin (num 416) (name Pin_416) (type passive))
(pin (num 417) (name Pin_417) (type passive))
(pin (num 418) (name Pin_418) (type passive))
(pin (num 419) (name Pin_419) (type passive))
(pin (num 420) (name Pin_420) (type passive))
(pin (num 421) (name Pin_421) (type passive))
(pin (num 422) (name Pin_422) (type passive))
(pin (num 423) (name Pin_423) (type passive))
(pin (num 424) (name Pin_424) (type passive))
(pin (num 425) (name Pin_425) (type passive))
(pin (num 426) (name Pin_426) (type passive))
(pin (num 427) (name Pin_427) (type passive))
(pin (num 428) (name Pin_428) (type passive))
(pin (num 429) (name Pin_429) (type passive))
(pin (num 430) (name Pin_430) (type passive))
(pin (num 431) (name Pin_431) (type passive))
(pin (num 432) (name Pin_432) (type passive))
(pin (num 433) (name Pin_433) (type passive))
(pin (num 434) (name Pin_434) (type passive))
(pin (num 435) (name Pin_435) (type passive))
(pin (num 436) (name Pin_436) (type passive))
(pin (num 437) (name Pin_437) (type passive))
(pin (num 438) (name Pin_438) (type passive))
(pin (num 439) (name Pin_439) (type passive))
(pin (num 440) (name Pin_440) (type passive))
(pin (num 501) (name Pin_501) (type passive))
(pin (num 502) (name Pin_502) (type passive))
(pin (num 503) (name Pin_503) (type passive))
(pin (num 504) (name Pin_504) (type passive))
(pin (num 505) (name Pin_505) (type passive))
(pin (num 506) (name Pin_506) (type passive))
(pin (num 507) (name Pin_507) (type passive))
(pin (num 508) (name Pin_508) (type passive))
(pin (num 509) (name Pin_509) (type passive))))
(libpart (lib Connector_Generic) (part Conn_01x01)
(description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x01))
(pins
(pin (num 1) (name Pin_1) (type passive))))
(libpart (lib Connector_Generic) (part Conn_01x03)
(description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x03))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))))
(libpart (lib Connector_Generic) (part Conn_01x06)
(description "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x06))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))))
(libpart (lib Connector_Generic) (part Conn_01x10)
(description "Generic connector, single row, 01x10, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x10))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))
(pin (num 9) (name Pin_9) (type passive))
(pin (num 10) (name Pin_10) (type passive))))
(libpart (lib Connector_Generic) (part Conn_01x13)
(description "Generic connector, single row, 01x13, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x13))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))
(pin (num 9) (name Pin_9) (type passive))
(pin (num 10) (name Pin_10) (type passive))
(pin (num 11) (name Pin_11) (type passive))
(pin (num 12) (name Pin_12) (type passive))
(pin (num 13) (name Pin_13) (type passive))))
(libpart (lib Graphic) (part Logo_Open_Hardware_Small)
(description "Open Hardware logo, small")
(docs ~)
(fields
(field (name Reference) "#LOGO")
(field (name Value) Logo_Open_Hardware_Small)))
(libpart (lib RusEFI_Logo) (part LOGO)
(fields
(field (name Reference) "#G")
(field (name Value) LOGO))))
(libraries
(library (logical 134pin_7-967288-1_KC5_SYMBOL)
(uri C:\Users\Owner\Desktop\daecu_repo\Hardware\trunk\rusefi.com\Breakout_134pin_7-967288-1_KC5/Project_Specific_Libs/134pin_7-967288-1_KC5.LIB))
(library (logical Connector_Generic)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Connector_Generic.lib"))
(library (logical Graphic)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Graphic.lib"))
(library (logical RusEFI_Logo)
(uri C:\Users\Owner\Desktop\daecu_repo\Hardware\trunk\rusefi.com\Breakout_134pin_7-967288-1_KC5/../rusefi_lib/logo.lib)))
(nets
(net (code 1) (name "Net-(J17-Pad11)")
(node (ref J17) (pin 11))
(node (ref J21) (pin 11))
(node (ref P1) (pin 337)))
(net (code 2) (name "Net-(J16-Pad8)")
(node (ref P1) (pin 321))
(node (ref J20) (pin 8))
(node (ref J16) (pin 8)))
(net (code 3) (name "Net-(J16-Pad9)")
(node (ref P1) (pin 322))
(node (ref J20) (pin 9))
(node (ref J16) (pin 9)))
(net (code 4) (name /327)
(node (ref J21) (pin 1))
(node (ref P1) (pin 327))
(node (ref J17) (pin 1)))
(net (code 5) (name "Net-(J17-Pad10)")
(node (ref P1) (pin 336))
(node (ref J21) (pin 10))
(node (ref J17) (pin 10)))
(net (code 6) (name /320)
(node (ref J16) (pin 7))
(node (ref J20) (pin 7))
(node (ref P1) (pin 320)))
(net (code 7) (name "Net-(J17-Pad12)")
(node (ref J17) (pin 12))
(node (ref J21) (pin 12))
(node (ref P1) (pin 338)))
(net (code 8) (name /339)
(node (ref J21) (pin 13))
(node (ref P1) (pin 339))
(node (ref J17) (pin 13)))
(net (code 9) (name "Net-(J17-Pad2)")
(node (ref J17) (pin 2))
(node (ref J21) (pin 2))
(node (ref P1) (pin 328)))
(net (code 10) (name "Net-(J17-Pad3)")
(node (ref P1) (pin 329))
(node (ref J17) (pin 3))
(node (ref J21) (pin 3)))
(net (code 11) (name /330)
(node (ref J21) (pin 4))
(node (ref P1) (pin 330))
(node (ref J17) (pin 4)))
(net (code 12) (name "Net-(J17-Pad5)")
(node (ref J17) (pin 5))
(node (ref J21) (pin 5))
(node (ref P1) (pin 331)))
(net (code 13) (name "Net-(J17-Pad6)")
(node (ref P1) (pin 332))
(node (ref J21) (pin 6))
(node (ref J17) (pin 6)))
(net (code 14) (name "Net-(J17-Pad7)")
(node (ref J21) (pin 7))
(node (ref P1) (pin 333))
(node (ref J17) (pin 7)))
(net (code 15) (name "Net-(J17-Pad8)")
(node (ref J21) (pin 8))
(node (ref J17) (pin 8))
(node (ref P1) (pin 334)))
(net (code 16) (name /335)
(node (ref J21) (pin 9))
(node (ref P1) (pin 335))
(node (ref J17) (pin 9)))
(net (code 17) (name /207)
(node (ref J5) (pin 1))
(node (ref J9) (pin 1))
(node (ref P1) (pin 207)))
(net (code 18) (name "Net-(J5-Pad2)")
(node (ref P1) (pin 208))
(node (ref J5) (pin 2))
(node (ref J9) (pin 2)))
(net (code 19) (name "Net-(J5-Pad3)")
(node (ref J5) (pin 3))
(node (ref J9) (pin 3))
(node (ref P1) (pin 209)))
(net (code 20) (name "Net-(J5-Pad4)")
(node (ref P1) (pin 210))
(node (ref J9) (pin 4))
(node (ref J5) (pin 4)))
(net (code 21) (name "Net-(J5-Pad5)")
(node (ref J9) (pin 5))
(node (ref P1) (pin 211))
(node (ref J5) (pin 5)))
(net (code 22) (name /212)
(node (ref J5) (pin 6))
(node (ref P1) (pin 212))
(node (ref J9) (pin 6)))
(net (code 23) (name /213)
(node (ref J6) (pin 1))
(node (ref J10) (pin 1))
(node (ref P1) (pin 213)))
(net (code 24) (name "Net-(J10-Pad2)")
(node (ref P1) (pin 214))
(node (ref J6) (pin 2))
(node (ref J10) (pin 2)))
(net (code 25) (name "Net-(J10-Pad3)")
(node (ref J6) (pin 3))
(node (ref P1) (pin 215))
(node (ref J10) (pin 3)))
(net (code 26) (name "Net-(J10-Pad4)")
(node (ref P1) (pin 216))
(node (ref J10) (pin 4))
(node (ref J6) (pin 4)))
(net (code 27) (name "Net-(J10-Pad5)")
(node (ref P1) (pin 217))
(node (ref J6) (pin 5))
(node (ref J10) (pin 5)))
(net (code 28) (name /218)
(node (ref P1) (pin 218))
(node (ref J10) (pin 6))
(node (ref J6) (pin 6)))
(net (code 29) (name /314)
(node (ref J16) (pin 1))
(node (ref P1) (pin 314))
(node (ref J20) (pin 1)))
(net (code 30) (name "Net-(J16-Pad10)")
(node (ref J20) (pin 10))
(node (ref P1) (pin 323))
(node (ref J16) (pin 10)))
(net (code 31) (name "Net-(J16-Pad11)")
(node (ref P1) (pin 324))
(node (ref J20) (pin 11))
(node (ref J16) (pin 11)))
(net (code 32) (name /325)
(node (ref J16) (pin 12))
(node (ref P1) (pin 325))
(node (ref J20) (pin 12)))
(net (code 33) (name /326)
(node (ref J16) (pin 13))
(node (ref J20) (pin 13))
(node (ref P1) (pin 326)))
(net (code 34) (name /315)
(node (ref J16) (pin 2))
(node (ref J20) (pin 2))
(node (ref P1) (pin 315)))
(net (code 35) (name "Net-(J16-Pad3)")
(node (ref J20) (pin 3))
(node (ref P1) (pin 316))
(node (ref J16) (pin 3)))
(net (code 36) (name "Net-(J16-Pad4)")
(node (ref J20) (pin 4))
(node (ref J16) (pin 4))
(node (ref P1) (pin 317)))
(net (code 37) (name "Net-(J16-Pad5)")
(node (ref J16) (pin 5))
(node (ref P1) (pin 318))
(node (ref J20) (pin 5)))
(net (code 38) (name "Net-(J16-Pad6)")
(node (ref P1) (pin 319))
(node (ref J16) (pin 6))
(node (ref J20) (pin 6)))
(net (code 39) (name /219)
(node (ref P1) (pin 219))
(node (ref J11) (pin 1))
(node (ref J7) (pin 1)))
(net (code 40) (name "Net-(J11-Pad2)")
(node (ref P1) (pin 220))
(node (ref J7) (pin 2))
(node (ref J11) (pin 2)))
(net (code 41) (name "Net-(J11-Pad3)")
(node (ref J7) (pin 3))
(node (ref J11) (pin 3))
(node (ref P1) (pin 221)))
(net (code 42) (name "Net-(J11-Pad4)")
(node (ref P1) (pin 222))
(node (ref J11) (pin 4))
(node (ref J7) (pin 4)))
(net (code 43) (name "Net-(J11-Pad5)")
(node (ref P1) (pin 223))
(node (ref J7) (pin 5))
(node (ref J11) (pin 5)))
(net (code 44) (name /224)
(node (ref P1) (pin 224))
(node (ref J7) (pin 6))
(node (ref J11) (pin 6)))
(net (code 45) (name GND)
(node (ref J37) (pin 1)))
(net (code 46) (name /101)
(node (ref J12) (pin 1))
(node (ref J1) (pin 1))
(node (ref P1) (pin 101)))
(net (code 47) (name "Net-(J26-Pad6)")
(node (ref P1) (pin 436))
(node (ref J33) (pin 6))
(node (ref J26) (pin 6)))
(net (code 48) (name /431)
(node (ref P1) (pin 431))
(node (ref J33) (pin 1))
(node (ref J26) (pin 1)))
(net (code 49) (name /440)
(node (ref P1) (pin 440))
(node (ref J26) (pin 10))
(node (ref J33) (pin 10)))
(net (code 50) (name "Net-(J26-Pad2)")
(node (ref J33) (pin 2))
(node (ref J26) (pin 2))
(node (ref P1) (pin 432)))
(net (code 51) (name "Net-(J26-Pad3)")
(node (ref P1) (pin 433))
(node (ref J33) (pin 3))
(node (ref J26) (pin 3)))
(net (code 52) (name "Net-(J26-Pad4)")
(node (ref P1) (pin 434))
(node (ref J26) (pin 4))
(node (ref J33) (pin 4)))
(net (code 53) (name /435)
(node (ref J33) (pin 5))
(node (ref J26) (pin 5))
(node (ref P1) (pin 435)))
(net (code 54) (name "Net-(J26-Pad7)")
(node (ref P1) (pin 437))
(node (ref J33) (pin 7))
(node (ref J26) (pin 7)))
(net (code 55) (name "Net-(J26-Pad8)")
(node (ref J33) (pin 8))
(node (ref P1) (pin 438))
(node (ref J26) (pin 8)))
(net (code 56) (name "Net-(J26-Pad9)")
(node (ref J33) (pin 9))
(node (ref P1) (pin 439))
(node (ref J26) (pin 9)))
(net (code 57) (name /501)
(node (ref P1) (pin 501))
(node (ref J34) (pin 1))
(node (ref J27) (pin 1)))
(net (code 58) (name /503)
(node (ref P1) (pin 503))
(node (ref J27) (pin 3))
(node (ref J34) (pin 3)))
(net (code 59) (name /504)
(node (ref P1) (pin 504))
(node (ref J28) (pin 1))
(node (ref J35) (pin 1)))
(net (code 60) (name /506)
(node (ref J28) (pin 3))
(node (ref J35) (pin 3))
(node (ref P1) (pin 506)))
(net (code 61) (name /507)
(node (ref P1) (pin 507))
(node (ref J36) (pin 1))
(node (ref J29) (pin 1)))
(net (code 62) (name /103)
(node (ref J12) (pin 3))
(node (ref J1) (pin 3))
(node (ref P1) (pin 103)))
(net (code 63) (name /106)
(node (ref J13) (pin 3))
(node (ref P1) (pin 106))
(node (ref J2) (pin 3)))
(net (code 64) (name "Net-(J18-Pad5)")
(node (ref P1) (pin 344))
(node (ref J22) (pin 5))
(node (ref J18) (pin 5)))
(net (code 65) (name /340)
(node (ref J18) (pin 1))
(node (ref J22) (pin 1))
(node (ref P1) (pin 340)))
(net (code 66) (name "Net-(J18-Pad10)")
(node (ref J18) (pin 10))
(node (ref J22) (pin 10))
(node (ref P1) (pin 349)))
(net (code 67) (name /350)
(node (ref J18) (pin 11))
(node (ref P1) (pin 350))
(node (ref J22) (pin 11)))
(net (code 68) (name "Net-(J18-Pad12)")
(node (ref J18) (pin 12))
(node (ref P1) (pin 351))
(node (ref J22) (pin 12)))
(net (code 69) (name /352)
(node (ref J18) (pin 13))
(node (ref P1) (pin 352))
(node (ref J22) (pin 13)))
(net (code 70) (name "Net-(J18-Pad2)")
(node (ref P1) (pin 341))
(node (ref J22) (pin 2))
(node (ref J18) (pin 2)))
(net (code 71) (name "Net-(J18-Pad3)")
(node (ref P1) (pin 342))
(node (ref J22) (pin 3))
(node (ref J18) (pin 3)))
(net (code 72) (name "Net-(J18-Pad4)")
(node (ref J22) (pin 4))
(node (ref P1) (pin 343))
(node (ref J18) (pin 4)))
(net (code 73) (name /345)
(node (ref J22) (pin 6))
(node (ref J18) (pin 6))
(node (ref P1) (pin 345)))
(net (code 74) (name "Net-(J18-Pad7)")
(node (ref J22) (pin 7))
(node (ref J18) (pin 7))
(node (ref P1) (pin 346)))
(net (code 75) (name "Net-(J18-Pad8)")
(node (ref J22) (pin 8))
(node (ref J18) (pin 8))
(node (ref P1) (pin 347)))
(net (code 76) (name "Net-(J18-Pad9)")
(node (ref J22) (pin 9))
(node (ref J18) (pin 9))
(node (ref P1) (pin 348)))
(net (code 77) (name "Net-(J24-Pad3)")
(node (ref J24) (pin 3))
(node (ref P1) (pin 413))
(node (ref J31) (pin 3)))
(net (code 78) (name /411)
(node (ref P1) (pin 411))
(node (ref J24) (pin 1))
(node (ref J31) (pin 1)))
(net (code 79) (name /420)
(node (ref J31) (pin 10))
(node (ref J24) (pin 10))
(node (ref P1) (pin 420)))
(net (code 80) (name "Net-(J24-Pad2)")
(node (ref P1) (pin 412))
(node (ref J31) (pin 2))
(node (ref J24) (pin 2)))
(net (code 81) (name "Net-(J24-Pad4)")
(node (ref P1) (pin 414))
(node (ref J24) (pin 4))
(node (ref J31) (pin 4)))
(net (code 82) (name /415)
(node (ref P1) (pin 415))
(node (ref J24) (pin 5))
(node (ref J31) (pin 5)))
(net (code 83) (name "Net-(J24-Pad6)")
(node (ref P1) (pin 416))
(node (ref J24) (pin 6))
(node (ref J31) (pin 6)))
(net (code 84) (name "Net-(J24-Pad7)")
(node (ref J24) (pin 7))
(node (ref J31) (pin 7))
(node (ref P1) (pin 417)))
(net (code 85) (name "Net-(J24-Pad8)")
(node (ref P1) (pin 418))
(node (ref J31) (pin 8))
(node (ref J24) (pin 8)))
(net (code 86) (name "Net-(J24-Pad9)")
(node (ref J31) (pin 9))
(node (ref J24) (pin 9))
(node (ref P1) (pin 419)))
(net (code 87) (name /421)
(node (ref J25) (pin 1))
(node (ref J32) (pin 1))
(node (ref P1) (pin 421)))
(net (code 88) (name /430)
(node (ref P1) (pin 430))
(node (ref J25) (pin 10))
(node (ref J32) (pin 10)))
(net (code 89) (name "Net-(J25-Pad2)")
(node (ref P1) (pin 422))
(node (ref J25) (pin 2))
(node (ref J32) (pin 2)))
(net (code 90) (name "Net-(J25-Pad3)")
(node (ref J25) (pin 3))
(node (ref J32) (pin 3))
(node (ref P1) (pin 423)))
(net (code 91) (name "Net-(J25-Pad4)")
(node (ref J32) (pin 4))
(node (ref P1) (pin 424))
(node (ref J25) (pin 4)))
(net (code 92) (name /425)
(node (ref J25) (pin 5))
(node (ref P1) (pin 425))
(node (ref J32) (pin 5)))
(net (code 93) (name "Net-(J25-Pad6)")
(node (ref J25) (pin 6))
(node (ref J32) (pin 6))
(node (ref P1) (pin 426)))
(net (code 94) (name "Net-(J25-Pad7)")
(node (ref J25) (pin 7))
(node (ref P1) (pin 427))
(node (ref J32) (pin 7)))
(net (code 95) (name "Net-(J25-Pad8)")
(node (ref P1) (pin 428))
(node (ref J32) (pin 8))
(node (ref J25) (pin 8)))
(net (code 96) (name "Net-(J25-Pad9)")
(node (ref P1) (pin 429))
(node (ref J25) (pin 9))
(node (ref J32) (pin 9)))
(net (code 97) (name "Net-(J15-Pad9)")
(node (ref P1) (pin 309))
(node (ref J19) (pin 9))
(node (ref J15) (pin 9)))
(net (code 98) (name "Net-(J15-Pad8)")
(node (ref J19) (pin 8))
(node (ref J15) (pin 8))
(node (ref P1) (pin 308)))
(net (code 99) (name /301)
(node (ref J15) (pin 1))
(node (ref P1) (pin 301))
(node (ref J19) (pin 1)))
(net (code 100) (name /401)
(node (ref J23) (pin 1))
(node (ref J30) (pin 1))
(node (ref P1) (pin 401)))
(net (code 101) (name /410)
(node (ref J23) (pin 10))
(node (ref J30) (pin 10))
(node (ref P1) (pin 410)))
(net (code 102) (name "Net-(J23-Pad2)")
(node (ref J23) (pin 2))
(node (ref P1) (pin 402))
(node (ref J30) (pin 2)))
(net (code 103) (name "Net-(J23-Pad3)")
(node (ref J30) (pin 3))
(node (ref J23) (pin 3))
(node (ref P1) (pin 403)))
(net (code 104) (name "Net-(J23-Pad4)")
(node (ref J23) (pin 4))
(node (ref J30) (pin 4))
(node (ref P1) (pin 404)))
(net (code 105) (name /405)
(node (ref J23) (pin 5))
(node (ref J30) (pin 5))
(node (ref P1) (pin 405)))
(net (code 106) (name "Net-(J23-Pad6)")
(node (ref P1) (pin 406))
(node (ref J23) (pin 6))
(node (ref J30) (pin 6)))
(net (code 107) (name "Net-(J23-Pad7)")
(node (ref P1) (pin 407))
(node (ref J30) (pin 7))
(node (ref J23) (pin 7)))
(net (code 108) (name "Net-(J23-Pad8)")
(node (ref J30) (pin 8))
(node (ref J23) (pin 8))
(node (ref P1) (pin 408)))
(net (code 109) (name "Net-(J23-Pad9)")
(node (ref J30) (pin 9))
(node (ref P1) (pin 409))
(node (ref J23) (pin 9)))
(net (code 110) (name /310)
(node (ref J15) (pin 10))
(node (ref J19) (pin 10))
(node (ref P1) (pin 310)))
(net (code 111) (name "Net-(J15-Pad11)")
(node (ref P1) (pin 311))
(node (ref J19) (pin 11))
(node (ref J15) (pin 11)))
(net (code 112) (name "Net-(J15-Pad12)")
(node (ref P1) (pin 312))
(node (ref J15) (pin 12))
(node (ref J19) (pin 12)))
(net (code 113) (name /313)
(node (ref P1) (pin 313))
(node (ref J15) (pin 13))
(node (ref J19) (pin 13)))
(net (code 114) (name "Net-(J15-Pad2)")
(node (ref P1) (pin 302))
(node (ref J19) (pin 2))