-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathm2sata.kicad_sch
1728 lines (1676 loc) · 69.5 KB
/
m2sata.kicad_sch
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_sch (version 20211123) (generator eeschema)
(uuid bd8b1253-fcda-4fe3-8739-03befc246c9a)
(paper "A4")
(title_block
(title "M.2 SATA Port Reclaimer")
(date "2022-11-10")
(rev "1.1")
)
(lib_symbols
(symbol "Connector_Generic:Conn_01x09" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 12.7 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x09" (id 1) (at 0 -12.7 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x09, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x09_1_1"
(rectangle (start -1.27 -10.033) (end 0 -10.287)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -7.493) (end 0 -7.747)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 5.207) (end 0 4.953)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 7.747) (end 0 7.493)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 10.287) (end 0 10.033)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 11.43) (end 1.27 -11.43)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin passive line (at -5.08 10.16 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 7.62 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 5.08 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -5.08 0) (length 3.81)
(name "Pin_7" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -7.62 0) (length 3.81)
(name "Pin_8" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -10.16 0) (length 3.81)
(name "Pin_9" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "nvme:NGFF_M" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -10.16 35.56 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "NGFF_M" (id 1) (at -7.62 -66.04 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "NGFF_M_0_1"
(rectangle (start -11.43 34.29) (end 11.43 -64.77)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "NGFF_M_1_1"
(pin input line (at -13.97 31.75 0) (length 2.54)
(name "C3" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at 13.97 21.59 180) (length 2.54)
(name "DAS/DSS" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 19.05 0) (length 2.54)
(name "PET3-" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin input line (at 13.97 19.05 180) (length 2.54)
(name "3.3V" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 16.51 0) (length 2.54)
(name "PET3+" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin input line (at 13.97 16.51 180) (length 2.54)
(name "3.3V" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 13.97 0) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin input line (at 13.97 13.97 180) (length 2.54)
(name "3.3V" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 11.43 0) (length 2.54)
(name "PER2-" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin input line (at 13.97 11.43 180) (length 2.54)
(name "3.3V" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 8.89 0) (length 2.54)
(name "PER2+" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin input line (at 13.97 31.75 180) (length 2.54)
(name "3.3V" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at 13.97 8.89 180) (length 2.54)
(name "N/A" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 6.35 0) (length 2.54)
(name "C0" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin input line (at 13.97 6.35 180) (length 2.54)
(name "N/A" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 3.81 0) (length 2.54)
(name "PET2-" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin input line (at 13.97 3.81 180) (length 2.54)
(name "N/A" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 1.27 0) (length 2.54)
(name "PET2+" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin input line (at 13.97 1.27 180) (length 2.54)
(name "N/A" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 -1.27 0) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin input line (at 13.97 -1.27 180) (length 2.54)
(name "N/A" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 -3.81 0) (length 2.54)
(name "PER1-" (effects (font (size 1.27 1.27))))
(number "29" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 29.21 0) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at 13.97 -3.81 180) (length 2.54)
(name "N/A" (effects (font (size 1.27 1.27))))
(number "30" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 -6.35 0) (length 2.54)
(name "PER1+" (effects (font (size 1.27 1.27))))
(number "31" (effects (font (size 1.27 1.27))))
)
(pin input line (at 13.97 -6.35 180) (length 2.54)
(name "N/A" (effects (font (size 1.27 1.27))))
(number "32" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 -8.89 0) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "33" (effects (font (size 1.27 1.27))))
)
(pin input line (at 13.97 -8.89 180) (length 2.54)
(name "N/A" (effects (font (size 1.27 1.27))))
(number "34" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 -11.43 0) (length 2.54)
(name "PET1-" (effects (font (size 1.27 1.27))))
(number "35" (effects (font (size 1.27 1.27))))
)
(pin input line (at 13.97 -11.43 180) (length 2.54)
(name "N/A" (effects (font (size 1.27 1.27))))
(number "36" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 -13.97 0) (length 2.54)
(name "PET1+" (effects (font (size 1.27 1.27))))
(number "37" (effects (font (size 1.27 1.27))))
)
(pin input line (at 13.97 -13.97 180) (length 2.54)
(name "DEVSLP" (effects (font (size 1.27 1.27))))
(number "38" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 -16.51 0) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "39" (effects (font (size 1.27 1.27))))
)
(pin input line (at 13.97 29.21 180) (length 2.54)
(name "3.3V" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at 13.97 -16.51 180) (length 2.54)
(name "N/A" (effects (font (size 1.27 1.27))))
(number "40" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 -19.05 0) (length 2.54)
(name "PER0-/B+" (effects (font (size 1.27 1.27))))
(number "41" (effects (font (size 1.27 1.27))))
)
(pin input line (at 13.97 -19.05 180) (length 2.54)
(name "N/A" (effects (font (size 1.27 1.27))))
(number "42" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 -21.59 0) (length 2.54)
(name "PER0+/B-" (effects (font (size 1.27 1.27))))
(number "43" (effects (font (size 1.27 1.27))))
)
(pin input line (at 13.97 -21.59 180) (length 2.54)
(name "N/A" (effects (font (size 1.27 1.27))))
(number "44" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 -24.13 0) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "45" (effects (font (size 1.27 1.27))))
)
(pin input line (at 13.97 -24.13 180) (length 2.54)
(name "N/A" (effects (font (size 1.27 1.27))))
(number "46" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 -26.67 0) (length 2.54)
(name "PET0-/A-" (effects (font (size 1.27 1.27))))
(number "47" (effects (font (size 1.27 1.27))))
)
(pin input line (at 13.97 -26.67 180) (length 2.54)
(name "N/A" (effects (font (size 1.27 1.27))))
(number "48" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 -29.21 0) (length 2.54)
(name "PET0+/A+" (effects (font (size 1.27 1.27))))
(number "49" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 26.67 0) (length 2.54)
(name "PER3-" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at 13.97 -29.21 180) (length 2.54)
(name "~{PERST}" (effects (font (size 1.27 1.27))))
(number "50" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 -31.75 0) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "51" (effects (font (size 1.27 1.27))))
)
(pin input line (at 13.97 -31.75 180) (length 2.54)
(name "~{CLKREQ}" (effects (font (size 1.27 1.27))))
(number "52" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 -34.29 0) (length 2.54)
(name "REFCLK-" (effects (font (size 1.27 1.27))))
(number "53" (effects (font (size 1.27 1.27))))
)
(pin input line (at 13.97 -34.29 180) (length 2.54)
(name "~{PEWAKE}" (effects (font (size 1.27 1.27))))
(number "54" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 -36.83 0) (length 2.54)
(name "REFCLK+" (effects (font (size 1.27 1.27))))
(number "55" (effects (font (size 1.27 1.27))))
)
(pin input line (at 13.97 -36.83 180) (length 2.54)
(name "MFG1" (effects (font (size 1.27 1.27))))
(number "56" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 -39.37 0) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "57" (effects (font (size 1.27 1.27))))
)
(pin input line (at 13.97 -39.37 180) (length 2.54)
(name "MFG2" (effects (font (size 1.27 1.27))))
(number "58" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -13.97 -41.91 0) (length 2.54)
(name "X" (effects (font (size 1.27 1.27))))
(number "59" (effects (font (size 1.27 1.27))))
)
(pin input line (at 13.97 26.67 180) (length 2.54)
(name "N/A" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 13.97 -41.91 180) (length 2.54)
(name "X" (effects (font (size 1.27 1.27))))
(number "60" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -13.97 -44.45 0) (length 2.54)
(name "X" (effects (font (size 1.27 1.27))))
(number "61" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 13.97 -44.45 180) (length 2.54)
(name "X" (effects (font (size 1.27 1.27))))
(number "62" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -13.97 -46.99 0) (length 2.54)
(name "X" (effects (font (size 1.27 1.27))))
(number "63" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 13.97 -46.99 180) (length 2.54)
(name "X" (effects (font (size 1.27 1.27))))
(number "64" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -13.97 -49.53 0) (length 2.54)
(name "X" (effects (font (size 1.27 1.27))))
(number "65" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 13.97 -49.53 180) (length 2.54)
(name "X" (effects (font (size 1.27 1.27))))
(number "66" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 -52.07 0) (length 2.54)
(name "N/A" (effects (font (size 1.27 1.27))))
(number "67" (effects (font (size 1.27 1.27))))
)
(pin input line (at 13.97 -52.07 180) (length 2.54)
(name "SUSCLK" (effects (font (size 1.27 1.27))))
(number "68" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 -54.61 0) (length 2.54)
(name "C1" (effects (font (size 1.27 1.27))))
(number "69" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 24.13 0) (length 2.54)
(name "PER3+" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at 13.97 -54.61 180) (length 2.54)
(name "3.3V" (effects (font (size 1.27 1.27))))
(number "70" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 -57.15 0) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "71" (effects (font (size 1.27 1.27))))
)
(pin input line (at 13.97 -57.15 180) (length 2.54)
(name "3.3V" (effects (font (size 1.27 1.27))))
(number "72" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 -59.69 0) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "73" (effects (font (size 1.27 1.27))))
)
(pin input line (at 13.97 -59.69 180) (length 2.54)
(name "3.3V" (effects (font (size 1.27 1.27))))
(number "74" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 -62.23 0) (length 2.54)
(name "C2" (effects (font (size 1.27 1.27))))
(number "75" (effects (font (size 1.27 1.27))))
)
(pin input line (at 13.97 24.13 180) (length 2.54)
(name "N/A" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -13.97 21.59 0) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
(pin input line (at 0 -67.31 90) (length 2.54)
(name "MP" (effects (font (size 1.27 1.27))))
(number "MP" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(no_connect (at 97.79 88.9) (uuid 0ba37b42-a904-4cc0-9a19-7bd85495b903))
(no_connect (at 97.79 83.82) (uuid 0da5c847-f9c3-4fa9-bfa9-8464c17e3254))
(no_connect (at 97.79 53.34) (uuid 116f2f78-785a-460c-8878-5954890d735a))
(no_connect (at 97.79 71.12) (uuid 317b45dc-80f8-425e-b358-5208d5d3d168))
(no_connect (at 97.79 78.74) (uuid 3532121e-aeaf-4337-8d04-64470adde60f))
(no_connect (at 97.79 99.06) (uuid 37cc387e-e727-4e19-828a-d8202e5ffbad))
(no_connect (at 97.79 116.84) (uuid 420f086b-3d8e-45eb-befe-2990b7c02253))
(no_connect (at 97.79 93.98) (uuid 4492f8fe-5fab-4685-b959-e9a9a97497b7))
(no_connect (at 97.79 73.66) (uuid 4cc1f877-ba02-4e72-9378-5044b33772a9))
(no_connect (at 97.79 114.3) (uuid 4fdcdec7-c686-4ced-84c6-2ff2b4c3c476))
(no_connect (at 97.79 129.54) (uuid 58d53f07-b31c-42a0-82e6-260fc3185909))
(no_connect (at 97.79 96.52) (uuid 7e6237f1-898e-4aa6-9e38-d5ef7f56194d))
(no_connect (at 97.79 104.14) (uuid 8082b2e9-013b-492e-8874-b1f63a99ca3d))
(no_connect (at 97.79 45.72) (uuid 822082d7-79ab-4ba2-bf28-7ee6475ec00b))
(no_connect (at 97.79 48.26) (uuid 822082d7-79ab-4ba2-bf28-7ee6475ec00c))
(no_connect (at 97.79 66.04) (uuid 822082d7-79ab-4ba2-bf28-7ee6475ec00d))
(no_connect (at 97.79 58.42) (uuid 822082d7-79ab-4ba2-bf28-7ee6475ec00e))
(no_connect (at 97.79 60.96) (uuid 822082d7-79ab-4ba2-bf28-7ee6475ec00f))
(no_connect (at 97.79 63.5) (uuid 822082d7-79ab-4ba2-bf28-7ee6475ec010))
(no_connect (at 69.85 129.54) (uuid 88ed5bb4-a53a-494e-bacd-8353493d422d))
(no_connect (at 97.79 101.6) (uuid 9a73bf89-ca61-4cf7-91ea-3fdceb9537e2))
(no_connect (at 97.79 132.08) (uuid 9f035078-dd16-4c6f-80f0-f3493e940efd))
(no_connect (at 97.79 134.62) (uuid 9f035078-dd16-4c6f-80f0-f3493e940efe))
(no_connect (at 97.79 137.16) (uuid 9f035078-dd16-4c6f-80f0-f3493e940eff))
(no_connect (at 97.79 91.44) (uuid a0256423-8542-478f-ac35-d62b4a187823))
(no_connect (at 97.79 68.58) (uuid c5be29fd-8889-4ca9-b1a4-c7a14e916061))
(no_connect (at 97.79 50.8) (uuid cf99a2cb-a75b-4c7a-9f63-28275b5766d5))
(no_connect (at 97.79 76.2) (uuid d89a32b6-47a4-429f-a88e-bc5ebc7c167c))
(no_connect (at 69.85 114.3) (uuid dadf324f-bcf2-4e99-8dc9-a71e076c6d50))
(no_connect (at 69.85 111.76) (uuid dadf324f-bcf2-4e99-8dc9-a71e076c6d51))
(no_connect (at 97.79 81.28) (uuid e9edb1ef-7eff-4bc3-82e6-212e3a82a622))
(no_connect (at 97.79 55.88) (uuid ee55f159-f5aa-4d25-aa11-46df975f61d5))
(no_connect (at 97.79 106.68) (uuid ee55f159-f5aa-4d25-aa11-46df975f61d6))
(no_connect (at 97.79 109.22) (uuid ee55f159-f5aa-4d25-aa11-46df975f61d7))
(no_connect (at 97.79 111.76) (uuid ee55f159-f5aa-4d25-aa11-46df975f61d8))
(no_connect (at 97.79 86.36) (uuid fd8c8d08-4aa0-416b-be70-4924190a902e))
(polyline (pts (xy 59.69 78.74) (xy 59.69 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0a84307a-c766-4df8-bb99-fcc5e6d5f3f9)
)
(polyline (pts (xy 62.23 48.26) (xy 59.69 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1be49dbd-9385-4d14-ad10-968321dbae2e)
)
(polyline (pts (xy 59.69 100.33) (xy 62.23 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 34a17576-6154-47ad-8005-a7714dbc161e)
)
(polyline (pts (xy 59.69 69.85) (xy 62.23 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f52a1d5-210a-4cae-b612-d7b8618f912e)
)
(polyline (pts (xy 59.69 54.61) (xy 62.23 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 505e004b-1a52-4cbc-9be6-882f4055e915)
)
(polyline (pts (xy 105.41 152.4) (xy 49.53 152.4))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 510bd313-deb7-4a64-88bd-e6579243bb2b)
)
(polyline (pts (xy 62.23 93.98) (xy 59.69 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 51353513-8cd3-43e5-990b-329cc150a315)
)
(polyline (pts (xy 49.53 33.02) (xy 49.53 152.4))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6ea1c64d-7d0f-4ad1-8734-9c77ab89c364)
)
(polyline (pts (xy 203.2 50.8) (xy 254 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7584538c-cbef-407f-af0f-928f9a756347)
)
(polyline (pts (xy 59.69 93.98) (xy 60.96 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7c10f63e-6a28-4ba6-8e5f-a6e80a8dbeeb)
)
(polyline (pts (xy 59.69 93.98) (xy 59.69 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 81571516-4c57-4998-bb26-f293ebf0c119)
)
(polyline (pts (xy 254 50.8) (xy 254 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9a9b71b1-0209-4a35-aaf9-ceb721d95a4b)
)
(polyline (pts (xy 62.23 63.5) (xy 59.69 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9b0660c4-531e-4fe4-ac42-d3551bc85407)
)
(polyline (pts (xy 59.69 85.09) (xy 62.23 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid add737de-758c-448f-b8eb-1f4178e5c7d8)
)
(polyline (pts (xy 105.41 33.02) (xy 105.41 152.4))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c64e9ea8-53d1-414c-9b1e-b9fd1cc36389)
)
(polyline (pts (xy 59.69 63.5) (xy 59.69 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ce51fc9e-d125-4ff9-99a2-187aa2a007c4)
)
(polyline (pts (xy 49.53 33.02) (xy 105.41 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d204e30d-5db2-418a-9ae1-cc79b8682b77)
)
(polyline (pts (xy 203.2 120.65) (xy 203.2 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d7a1ec1c-0376-4f2f-a8a0-bac29e104113)
)
(polyline (pts (xy 62.23 78.74) (xy 59.69 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e18de7f3-2e8d-4ae5-ba87-652c9a761afa)
)
(polyline (pts (xy 59.69 48.26) (xy 59.69 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e23caf4d-e0cb-4485-bee0-eb5cfe180d53)
)
(polyline (pts (xy 254 120.65) (xy 203.2 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f12d36ac-004d-47a5-aa45-2f1130c21493)
)
(text "swapped\nby us" (at 50.8 53.34 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 272c58e7-e4c9-479a-b267-ea60576dde50)
)
(text "swapped\nby us" (at 50.8 83.82 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 7caabb32-1458-4be5-b9d9-49c18772316b)
)
(text "M.2 Edge" (at 50.8 38.1 0)
(effects (font (size 2.54 2.54) (thickness 0.508) bold) (justify left bottom))
(uuid a0cb18fb-6bfb-4b6b-95e8-7d1e6791d67c)
)
(text "already\nswapped\nby host" (at 50.8 100.33 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a32229a5-1e42-449f-b6a2-7cd3eafe5977)
)
(text "swapped\nby us" (at 50.8 68.58 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a67d7be5-c0a8-4ec6-a790-92782d275657)
)
(text "SATA Ports" (at 204.47 55.88 0)
(effects (font (size 2.54 2.54) (thickness 0.508) bold) (justify left bottom))
(uuid ccdb4c09-976f-44c1-922b-fc04bf17c3eb)
)
(label "SATA4_A+" (at 241.3 96.52 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 010f27b3-eb83-4470-99d1-060bd0252da5)
)
(label "SATA2_B-" (at 69.85 81.28 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 0eb583cf-5705-4dcf-a90a-47ea1a92ed7a)
)
(label "SATA1_B-" (at 217.17 74.93 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 0f3d0a30-747e-4efc-8fbb-023260e3505f)
)
(label "SATA2_A+" (at 241.3 67.31 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 137856c5-7b83-4870-8dd0-8001e80bfd54)
)
(label "SATA2_A-" (at 241.3 69.85 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 144789ab-61fd-4db8-b175-0f4463af99c3)
)
(label "SATA2_A+" (at 69.85 91.44 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 18f7d126-752b-487c-9df6-cdc517bc15a7)
)
(label "SATA4_A-" (at 69.85 58.42 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 1e161599-a8f0-4c3d-8b8b-a14cdfa920bb)
)
(label "SATA1_A+" (at 217.17 67.31 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 252303a4-4d3a-4f26-8573-8e9ea7039381)
)
(label "SATA3_A-" (at 69.85 73.66 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 4cabcecb-4321-4165-baa8-39be6dd65bb6)
)
(label "SATA3_A+" (at 217.17 96.52 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 5570eb89-cb6c-416d-a056-e13e869d5913)
)
(label "SATA3_B+" (at 69.85 68.58 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 59432265-7b4f-468a-9514-8cae04a56e6e)
)
(label "SATA2_B-" (at 241.3 74.93 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 5ed8d46c-2a5e-49be-a28e-80f1dde3afc5)
)
(label "SATA2_B+" (at 69.85 83.82 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 64415414-6804-41b5-9340-7268ae5edf9f)
)
(label "SATA3_A+" (at 69.85 76.2 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 673bf908-0eae-4bdb-9dae-40dfd283734b)
)
(label "SATA1_B+" (at 69.85 96.52 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 691ab85e-b71e-4b17-853c-084b3134a3ed)
)
(label "SATA2_A-" (at 69.85 88.9 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 7692f14d-a8c4-4725-a52c-73fdf214647c)
)
(label "SATA4_B-" (at 241.3 104.14 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 7d5f4bef-f439-4d23-bdae-2eabba2a02bd)
)
(label "SATA1_A+" (at 69.85 106.68 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 8140ffe8-240d-4630-b613-fba7d6fc756f)
)
(label "SATA4_B+" (at 69.85 53.34 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 83855490-a95a-4010-a410-a3e9700dfaa3)
)
(label "SATA3_B-" (at 69.85 66.04 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 870d4d4f-6e01-481d-aedf-880d321cda9a)
)
(label "SATA3_B+" (at 217.17 106.68 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 8a1e2131-9b44-4d9e-99de-f171547a825d)
)
(label "SATA1_B+" (at 217.17 77.47 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid a061c65a-ffc1-4b02-aa40-0c4230115d89)
)
(label "SATA4_A+" (at 69.85 60.96 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid a6f93adc-8a71-4be9-bbb4-372709aab517)
)
(label "SATA4_B+" (at 241.3 106.68 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid aa58d4db-57be-4a22-99cc-de1e0b2e5539)
)
(label "SATA2_B+" (at 241.3 77.47 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid aac038ff-c6ea-4a38-9654-31ae2f4fa203)
)
(label "SATA4_B-" (at 69.85 50.8 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid bb0593a1-067a-4941-9e0e-e5252df74576)
)
(label "SATA3_B-" (at 217.17 104.14 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid d64d71db-4597-41fe-a0b8-254dead885f7)
)
(label "SATA1_A-" (at 217.17 69.85 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid e2567bd6-7a8d-45c4-aedf-b0f2c1ea419d)
)
(label "SATA3_A-" (at 217.17 99.06 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid e47c36ca-2638-4f0e-970a-6a93109a2f14)
)
(label "SATA1_A-" (at 69.85 104.14 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid e6daec23-f1fd-4450-9a16-6b16f48361ca)
)
(label "SATA1_B-" (at 69.85 99.06 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid f4fd6676-2504-498d-8ec7-62b38f6f2266)
)
(label "SATA4_A-" (at 241.3 99.06 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid f730a16c-1814-4bca-8d7a-3b52c53390ae)
)
(symbol (lib_id "nvme:NGFF_M") (at 83.82 77.47 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000061838243)
(property "Reference" "U1" (id 0) (at 83.82 38.989 0))
(property "Value" "IN" (id 1) (at 83.82 41.3004 0))
(property "Footprint" "nvme_to_dual_ssd:NGFF_M" (id 2) (at 83.82 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 83.82 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 76ce4198-6721-4fe2-8c98-cd3559ed30b4))
(pin "10" (uuid bf74a3a9-c491-487b-9ee7-78181e4f0331))
(pin "11" (uuid 7ecc5139-af0d-492d-beab-a865d2cb1bab))
(pin "12" (uuid f812fc72-9b6b-4a22-971f-06a9cd2c619d))
(pin "13" (uuid 2e4dc8ed-9e15-446f-8148-831cd70d6543))
(pin "14" (uuid 53d727dc-036b-40da-ad93-98edd5ff2f62))
(pin "15" (uuid 27a9464b-3d11-4e42-92ed-e797d87907b5))
(pin "16" (uuid f7069c07-97b2-4035-b602-0a2ad594d10d))
(pin "17" (uuid 5612e13e-578d-4a8e-b68e-ff425942eb4c))
(pin "18" (uuid e49a9f31-c944-4a62-909d-bce38b179aa7))
(pin "19" (uuid 98bca6f0-aa60-47d5-b1c8-bc33ff6ec967))
(pin "2" (uuid 86c8d5bb-6c68-4231-b7d9-810fe8937617))
(pin "20" (uuid 6dc9a829-3ced-4fe2-81fd-57cb3570cd6e))
(pin "21" (uuid c26c3f80-5273-443e-aadb-22d1cf6b34c6))
(pin "22" (uuid ff1ebb84-3e96-413f-84ce-8a5d8d8da94c))
(pin "23" (uuid 864f1f76-797c-4482-95b8-39149c98af0f))
(pin "24" (uuid 31dfc722-e9d4-421b-b93b-a1557a66e4a9))
(pin "25" (uuid 79db4edd-c84f-4283-978f-fcea2c5d70ca))
(pin "26" (uuid 76e2d117-c327-4a04-a423-53486d86a0df))
(pin "27" (uuid 53922593-6c71-4cbc-961f-9c932cbc5e69))
(pin "28" (uuid 6b881bc9-f17c-476a-a0f6-a0ee71d63277))
(pin "29" (uuid a70285a2-2a8b-43d7-8688-f299d6332e2b))
(pin "3" (uuid c988f930-4234-4fb9-adbb-8ccada48980d))
(pin "30" (uuid 98855947-44f1-4978-8ee9-c6adc8a8598a))
(pin "31" (uuid 879b5101-4cc2-462e-af7c-5a94782793db))
(pin "32" (uuid ce3b579a-df5a-4c8d-b6ff-6253edba3379))
(pin "33" (uuid 7550ec2c-53fb-4724-b0b5-f0c791e806e6))
(pin "34" (uuid 9bc1e96d-c784-46e7-a5c8-fdddf6027472))
(pin "35" (uuid 8ea70f60-5a37-42f4-95c3-e345ecc2c66b))
(pin "36" (uuid cb9036c4-8a1e-4e06-9015-840902dc2463))
(pin "37" (uuid 0e8149cd-fcc3-463a-8dcb-f21ce1bb4c55))
(pin "38" (uuid 5f0dfa6c-65c0-416f-a113-4989f02b3a1f))
(pin "39" (uuid 5d4dab39-51ed-4fb0-9a71-04a30b2bbdf9))
(pin "4" (uuid 7ce0cdac-386c-4f91-875f-7fa740b2ae4e))
(pin "40" (uuid c78f612b-4f86-4401-b933-4ee13b075609))
(pin "41" (uuid 805457a0-bfc5-46f7-816f-3e185050fece))
(pin "42" (uuid f87c03dd-6d56-41ee-88a8-9d093e89d793))
(pin "43" (uuid 459e7698-a699-4e16-a161-02f28003b0c5))
(pin "44" (uuid 790cfc16-2830-4cca-9bf8-66931f68f872))
(pin "45" (uuid 8e8bb4bd-e4fe-44c4-99ed-6153831ccc1d))
(pin "46" (uuid 8c9cb23e-689e-430b-8628-4de5cbfad894))
(pin "47" (uuid be3e9fea-4763-4ec1-bfe2-a948b2a98183))
(pin "48" (uuid e5cc71ae-324b-4569-a560-285ab3f0baeb))
(pin "49" (uuid a31e20af-2207-4a36-bb25-92eaf881eb2b))
(pin "5" (uuid f7803453-5482-4b63-963a-67a7850fc59c))
(pin "50" (uuid 26937951-7a61-46c9-a009-e7cb0b1ebbaa))
(pin "51" (uuid 1b2c6519-7566-4e0f-bd98-7dee2f06b99f))
(pin "52" (uuid d6d3c4d6-03bd-415f-be37-4c609107acbf))
(pin "53" (uuid 9428d3d3-b1de-43e1-8b00-96eca0768244))
(pin "54" (uuid b6d8efc6-ef82-4a04-9328-8fc7d136ff57))
(pin "55" (uuid 01b322cb-304d-4b31-abe9-ef1beeaced58))
(pin "56" (uuid 2094843d-1d3f-429f-bcf8-7f367ce7bcb7))
(pin "57" (uuid 65d76f91-4075-4fc8-b06d-c462fdf8891c))
(pin "58" (uuid 9025719e-ac9b-499d-bb98-5c17cf827250))
(pin "59" (uuid d536168f-cb12-41fe-852e-dd9f54e1f126))
(pin "6" (uuid e340444a-51c7-4515-9b2d-47173eb7d726))
(pin "60" (uuid a2ddaae7-5ac8-4a62-aeea-5176712759d3))
(pin "61" (uuid d2cfec8b-bb3d-4084-9a64-d1114fee1f6f))
(pin "62" (uuid c395fbd0-b95f-4c8a-beef-698074dfc747))
(pin "63" (uuid 71c8bbaa-761c-4187-a75a-9a4939975e3a))
(pin "64" (uuid 0481f2ae-199d-4a87-96e5-2e36d0261536))
(pin "65" (uuid 696e1e2d-a7b3-4061-80fe-e23a54783761))
(pin "66" (uuid fe1bbff5-a3f0-4121-9133-16f061f7f194))
(pin "67" (uuid 859a4aaf-0853-4165-bd5e-67d756c9ec06))
(pin "68" (uuid a3e5878d-58bf-4aca-aaa9-1ff6b93b972b))
(pin "69" (uuid a06aa595-51a4-49da-ac8e-62e493845fcf))
(pin "7" (uuid 138ac631-426a-4a7b-af30-d27077180967))
(pin "70" (uuid b45c14a1-351a-4712-9ca4-585e04fb5ea4))
(pin "71" (uuid ed816d5e-2325-4c16-8bff-5860e1262fb4))
(pin "72" (uuid 08e8abe4-d5d2-49de-9272-fea6d738512e))
(pin "73" (uuid 05d855b8-e807-43db-a3c7-f976bd6599f0))
(pin "74" (uuid 22507c88-4567-46ac-9cf8-8d35b2e4c3f7))
(pin "75" (uuid 29f13f54-8395-47f9-8bee-a19d4575ee4b))
(pin "8" (uuid e4852648-eb5e-425b-acfe-095a84831196))
(pin "9" (uuid b09d8623-576b-41d5-a167-e0a200c87735))
(pin "MP" (uuid 6852abc1-0807-452e-ba4d-14c99c2b3d77))
)
(symbol (lib_id "power:GND") (at 83.82 144.78 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006183b455)
(property "Reference" "#PWR0101" (id 0) (at 83.82 151.13 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 83.947 149.1742 0))
(property "Footprint" "" (id 2) (at 83.82 144.78 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 83.82 144.78 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 57f6d4f9-c8f0-4715-a63a-b5879cd897f2))
)
(symbol (lib_id "power:GND") (at 69.85 137.16 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006184ac4d)
(property "Reference" "#PWR0129" (id 0) (at 63.5 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 66.5988 137.287 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (id 2) (at 69.85 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 69.85 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0ba91ed6-e543-4662-b8db-7801ddfcbe43))
)
(symbol (lib_id "power:GND") (at 69.85 134.62 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006184ba18)
(property "Reference" "#PWR0130" (id 0) (at 63.5 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 66.5988 134.747 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (id 2) (at 69.85 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 69.85 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 44fb48a9-8e08-477f-b731-e033b22cb788))
)
(symbol (lib_id "power:GND") (at 69.85 116.84 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006184bb91)
(property "Reference" "#PWR0131" (id 0) (at 63.5 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 66.5988 116.967 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (id 2) (at 69.85 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 69.85 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0300894d-8f6c-464c-9ba9-ed1f1654d9ec))
)
(symbol (lib_id "power:GND") (at 69.85 109.22 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006184c9fd)
(property "Reference" "#PWR0132" (id 0) (at 63.5 109.22 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 66.5988 109.347 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (id 2) (at 69.85 109.22 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 69.85 109.22 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 29f83ab0-214d-42f7-9290-179e0aa454ad))
)
(symbol (lib_id "power:GND") (at 69.85 101.6 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006184cc96)
(property "Reference" "#PWR0133" (id 0) (at 63.5 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 66.5988 101.727 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (id 2) (at 69.85 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 69.85 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c7e64168-41bb-4e8a-a051-a4e7c5812104))
)
(symbol (lib_id "power:GND") (at 69.85 93.98 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006184cdfc)
(property "Reference" "#PWR0134" (id 0) (at 63.5 93.98 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 66.5988 94.107 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (id 2) (at 69.85 93.98 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 69.85 93.98 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 66a3d53a-963f-4b30-9beb-2848cbb27949))
)
(symbol (lib_id "power:GND") (at 69.85 86.36 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006184cfa7)
(property "Reference" "#PWR0135" (id 0) (at 63.5 86.36 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 66.5988 86.487 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (id 2) (at 69.85 86.36 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 69.85 86.36 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f2adc830-a0f9-429d-a569-e50adcd2c53f))
)
(symbol (lib_id "power:GND") (at 69.85 78.74 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006184e028)
(property "Reference" "#PWR0136" (id 0) (at 63.5 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 66.5988 78.867 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (id 2) (at 69.85 78.74 0)