-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpcie-m2-key-e.kicad_sch
4004 lines (3971 loc) · 250 KB
/
pcie-m2-key-e.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 20230121) (generator eeschema)
(uuid ccddece9-03a7-463e-9dd9-7aa26a109c55)
(paper "A3")
(title_block
(title "Kria K26 Devboard")
(date "2024-03-26")
(rev "1.2.5")
(comment 1 "www.antmicro.com")
(comment 2 "Antmicro Ltd.")
)
(lib_symbols
(symbol "kria-k26-devboard:Bus_M.2_2199119-6" (in_bom yes) (on_board yes)
(property "Reference" "J" (at 48.26 -2.54 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Value" "Bus_M.2_2199119-6" (at 48.26 -5.08 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Footprint" "kria-k26-devboard-footprints:Bus_M.2_Socket_Key_E_TE_1-2199119-6" (at 48.26 -7.62 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Datasheet" "https://www.te.com/usa-en/product-1-2199119-6.datasheet.pdf" (at 48.26 -10.16 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "MPN" "2199119-6" (at 48.26 -12.7 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Manufacturer" "TE Connectivity" (at 48.26 -15.24 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Author" "Antmicro" (at 48.26 -17.78 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "License" "Apache-2.0" (at 48.26 -20.32 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "ki_keywords" "HORIZONTAL, SMT, PCIE, CONNECTOR" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Key E, PCI connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Bus_M.2_2199119-6_1_1"
(rectangle (start 2.54 2.54) (end 31.75 -83.82)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin power_in line (at 0 -81.28 0) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 34.29 -5.08 180) (length 2.54)
(name "PCM_SYNC" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 0 -15.24 0) (length 2.54)
(name "SDIO_CMD" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 34.29 -7.62 180) (length 2.54)
(name "PCM_OUT" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 0 -17.78 0) (length 2.54)
(name "SDIO_D0" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 34.29 -10.16 180) (length 2.54)
(name "PCM_IN" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 0 -20.32 0) (length 2.54)
(name "SDIO_D1" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin output line (at 34.29 -12.7 180) (length 2.54)
(name "~{LED_2}" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 0 -22.86 0) (length 2.54)
(name "SDIO_D2" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -81.28 0) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 0 -25.4 0) (length 2.54)
(name "SDIO_D3" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 0 0) (length 2.54)
(name "3.3V" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin output line (at 34.29 -15.24 180) (length 2.54)
(name "~{UART_WAKE}" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 0 -27.94 0) (length 2.54)
(name "SDIO_~{WAKE}" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 34.29 -20.32 180) (length 2.54)
(name "UART_TXD" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin input line (at 0 -30.48 0) (length 2.54)
(name "SDIO_~{RESET}" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 0 -5.08 0) (length 2.54)
(name "USB_D+" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 34.29 -22.86 180) (length 2.54)
(name "UART_RXD" (effects (font (size 1.27 1.27))))
(number "32" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -81.28 0) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "33" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 34.29 -25.4 180) (length 2.54)
(name "UART_RTS" (effects (font (size 1.27 1.27))))
(number "34" (effects (font (size 1.27 1.27))))
)
(pin input line (at 0 -34.29 0) (length 2.54)
(name "PET0+" (effects (font (size 1.27 1.27))))
(number "35" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 34.29 -27.94 180) (length 2.54)
(name "UART_CTS" (effects (font (size 1.27 1.27))))
(number "36" (effects (font (size 1.27 1.27))))
)
(pin input line (at 0 -36.83 0) (length 2.54)
(name "PET0-" (effects (font (size 1.27 1.27))))
(number "37" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 34.29 -33.02 180) (length 2.54)
(name "VENDOR_1" (effects (font (size 1.27 1.27))))
(number "38" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -81.28 0) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "39" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 0 0) (length 2.54) hide
(name "3.3V" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 34.29 -35.56 180) (length 2.54)
(name "VENDOR_2" (effects (font (size 1.27 1.27))))
(number "40" (effects (font (size 1.27 1.27))))
)
(pin output line (at 0 -40.64 0) (length 2.54)
(name "PER0+" (effects (font (size 1.27 1.27))))
(number "41" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 34.29 -38.1 180) (length 2.54)
(name "VENDOR_3" (effects (font (size 1.27 1.27))))
(number "42" (effects (font (size 1.27 1.27))))
)
(pin output line (at 0 -43.18 0) (length 2.54)
(name "PER0-" (effects (font (size 1.27 1.27))))
(number "43" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 34.29 -43.18 180) (length 2.54)
(name "COEX3" (effects (font (size 1.27 1.27))))
(number "44" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -81.28 0) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "45" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 34.29 -45.72 180) (length 2.54)
(name "COEX_TXD" (effects (font (size 1.27 1.27))))
(number "46" (effects (font (size 1.27 1.27))))
)
(pin input line (at 0 -45.72 0) (length 2.54)
(name "REFCLK0+" (effects (font (size 1.27 1.27))))
(number "47" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 34.29 -48.26 180) (length 2.54)
(name "COEX_RXD" (effects (font (size 1.27 1.27))))
(number "48" (effects (font (size 1.27 1.27))))
)
(pin input line (at 0 -48.26 0) (length 2.54)
(name "REFCLK0-" (effects (font (size 1.27 1.27))))
(number "49" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 0 -7.62 0) (length 2.54)
(name "USB_D-" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at 34.29 -52.07 180) (length 2.54)
(name "SUSCLK" (effects (font (size 1.27 1.27))))
(number "50" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -81.28 0) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "51" (effects (font (size 1.27 1.27))))
)
(pin input line (at 34.29 -54.61 180) (length 2.54)
(name "~{PERST0}" (effects (font (size 1.27 1.27))))
(number "52" (effects (font (size 1.27 1.27))))
)
(pin output line (at 0 -68.58 0) (length 2.54)
(name "~{CLKREQ0}" (effects (font (size 1.27 1.27))))
(number "53" (effects (font (size 1.27 1.27))))
)
(pin input line (at 34.29 -57.15 180) (length 2.54)
(name "W_DISABLE2" (effects (font (size 1.27 1.27))))
(number "54" (effects (font (size 1.27 1.27))))
)
(pin output line (at 0 -71.12 0) (length 2.54)
(name "~{PEWAKE0}" (effects (font (size 1.27 1.27))))
(number "55" (effects (font (size 1.27 1.27))))
)
(pin input line (at 34.29 -60.96 180) (length 2.54)
(name "W_DISABLE1" (effects (font (size 1.27 1.27))))
(number "56" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -81.28 0) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "57" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 34.29 -66.04 180) (length 2.54)
(name "I2C_DATA" (effects (font (size 1.27 1.27))))
(number "58" (effects (font (size 1.27 1.27))))
)
(pin input line (at 0 -50.8 0) (length 2.54)
(name "PET1+" (effects (font (size 1.27 1.27))))
(number "59" (effects (font (size 1.27 1.27))))
)
(pin output line (at 34.29 0 180) (length 2.54)
(name "~{LED_1}" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 34.29 -68.58 180) (length 2.54)
(name "I2C_CLK" (effects (font (size 1.27 1.27))))
(number "60" (effects (font (size 1.27 1.27))))
)
(pin input line (at 0 -53.34 0) (length 2.54)
(name "PET1-" (effects (font (size 1.27 1.27))))
(number "61" (effects (font (size 1.27 1.27))))
)
(pin output line (at 34.29 -73.66 180) (length 2.54)
(name "~{ALERT}" (effects (font (size 1.27 1.27))))
(number "62" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -81.28 0) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "63" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 2.54 -76.2 0) (length 2.54) hide
(name "RFU" (effects (font (size 1.27 1.27))))
(number "64" (effects (font (size 1.27 1.27))))
)
(pin output line (at 0 -55.88 0) (length 2.54)
(name "PER1+" (effects (font (size 1.27 1.27))))
(number "65" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 34.29 -76.2 180) (length 2.54)
(name "UIM_SWP" (effects (font (size 1.27 1.27))))
(number "66" (effects (font (size 1.27 1.27))))
)
(pin output line (at 0 -58.42 0) (length 2.54)
(name "PER1-" (effects (font (size 1.27 1.27))))
(number "67" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 34.29 -78.74 180) (length 2.54)
(name "UIM_POWER_SNK" (effects (font (size 1.27 1.27))))
(number "68" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -81.28 0) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "69" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -81.28 0) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 34.29 -81.28 180) (length 2.54)
(name "UIM_POWER_SRC" (effects (font (size 1.27 1.27))))
(number "70" (effects (font (size 1.27 1.27))))
)
(pin input line (at 0 -60.96 0) (length 2.54)
(name "REFCLK1+" (effects (font (size 1.27 1.27))))
(number "71" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 0 0) (length 2.54) hide
(name "3.3V" (effects (font (size 1.27 1.27))))
(number "72" (effects (font (size 1.27 1.27))))
)
(pin input line (at 0 -63.5 0) (length 2.54)
(name "REFCLK1-" (effects (font (size 1.27 1.27))))
(number "73" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 0 0) (length 2.54) hide
(name "3.3V" (effects (font (size 1.27 1.27))))
(number "74" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -81.28 0) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "75" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 34.29 -2.54 180) (length 2.54)
(name "PCM_CLK" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at 0 -12.7 0) (length 2.54)
(name "SDIO_CLK" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -78.74 0) (length 2.54)
(name "MP" (effects (font (size 1.27 1.27))))
(number "MP" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "kria-k26-devboard:C_100n_0402" (pin_numbers hide) (pin_names hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 20.32 -5.08 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Value" "C_100n_0402" (at 20.32 -10.16 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Footprint" "kria-k26-devboard-footprints:C_0402_1005Metric" (at 20.32 -12.7 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Datasheet" "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM155R61H104KE14-01.pdf" (at 20.32 -15.24 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "MPN" "GRM155R61H104KE14D" (at 20.32 -17.78 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Manufacturer" "Murata" (at 20.32 -20.32 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "License" "Apache-2.0" (at 20.32 -22.86 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Author" "Antmicro" (at 20.32 -25.4 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Val" "100n" (at 20.32 -7.62 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Voltage" "50V" (at 20.32 -27.94 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "Dielectric" "X5R" (at 20.32 -30.48 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "ki_description" " " (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_100n_0402_0_1"
(polyline
(pts
(xy 2.032 -1.524)
(xy 2.032 1.524)
)
(stroke (width 0.3048) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.048 -1.524)
(xy 3.048 1.524)
)
(stroke (width 0.3302) (type default))
(fill (type none))
)
)
(symbol "C_100n_0402_1_1"
(pin passive line (at 0 0 0) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "kria-k26-devboard:C_10u_0603" (pin_numbers hide) (pin_names hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 20.32 -5.08 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Value" "C_10u_0603" (at 20.32 -10.16 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Footprint" "kria-k26-devboard-footprints:C_0603_1608Metric" (at 20.32 -12.7 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Datasheet" " " (at 20.32 -15.24 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "MPN" "GRM188R61A106KE69D" (at 20.32 -17.78 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Manufacturer" "Murata" (at 20.32 -20.32 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "License" "Apache-2.0" (at 20.32 -22.86 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Author" "Antmicro" (at 20.32 -25.4 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Val" "10u" (at 20.32 -7.62 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Voltage" "" (at 20.32 -27.94 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "Dielectric" "template_dielectric" (at 20.32 -30.48 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "ki_description" " " (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_10u_0603_0_1"
(polyline
(pts
(xy 2.032 -1.524)
(xy 2.032 1.524)
)
(stroke (width 0.3048) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.048 -1.524)
(xy 3.048 1.524)
)
(stroke (width 0.3302) (type default))
(fill (type none))
)
)
(symbol "C_10u_0603_1_1"
(pin passive line (at 0 0 0) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "kria-k26-devboard:GND" (power) (pin_numbers hide) (pin_names hide) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 8.89 -2.54 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Value" "GND" (at 8.89 -5.08 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Footprint" "" (at 8.89 -7.62 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Datasheet" "" (at 8.89 -12.7 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Author" "Antmicro" (at 8.89 -7.62 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "License" "Apache-2.0" (at 8.89 -10.16 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(symbol "GND_1_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.254) (type default))
(fill (type none))
)
(pin power_in line (at 0 0 270) (length 0)
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "kria-k26-devboard:R_0R_0402" (pin_numbers hide) (pin_names hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 20.32 -5.08 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Value" "R_0R_0402" (at 20.32 -12.7 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Footprint" "kria-k26-devboard-footprints:R_0402_1005Metric" (at 20.32 -15.24 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Datasheet" "https://industrial.panasonic.com/cdbs/www-data/pdf/RDA0000/AOA0000C301.pdf" (at 20.32 -17.78 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "MPN" "ERJ2GE0R00X" (at 20.32 -20.32 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Manufacturer" "Panasonic" (at 20.32 -22.86 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "License" "Apache-2.0" (at 20.32 -25.4 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Author" "Antmicro" (at 20.32 -27.94 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Val" "0R" (at 20.32 -7.62 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Tolerance" "~" (at 20.32 -10.16 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "Current" "1A" (at 20.32 -30.48 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "ki_description" "0R resistor in 0402 package with unspecified tolerance" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0R_0402_0_1"
(rectangle (start 0.635 0.889) (end 4.445 -0.889)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "R_0R_0402_1_1"
(pin passive line (at 0 0 0) (length 0.635)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 0.635)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "kria-k26-devboard:R_10k_0402" (pin_numbers hide) (pin_names hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 20.32 -5.08 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Value" "R_10k_0402" (at 20.32 -12.7 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Footprint" "kria-k26-devboard-footprints:R_0402_1005Metric" (at 20.32 -15.24 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Datasheet" "https://www.bourns.com/docs/product-datasheets/cr.pdf" (at 20.32 -17.78 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "MPN" "CR0402-FX-1002GLF" (at 20.32 -20.32 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Manufacturer" "Bourns" (at 20.32 -22.86 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "License" "Apache-2.0" (at 20.32 -25.4 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Author" "Antmicro" (at 20.32 -27.94 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Val" "10k" (at 20.32 -7.62 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Tolerance" "1%" (at 20.32 -10.16 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "ki_description" "10k resistor in 0402 package with 1% tolerance" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_10k_0402_0_1"
(rectangle (start 0.635 0.889) (end 4.445 -0.889)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "R_10k_0402_1_1"
(pin passive line (at 0 0 0) (length 0.635)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 0.635)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "kria-k26-devboard:Spacer_Drill3mm_H1.5mm_9774015243R" (in_bom yes) (on_board yes)
(property "Reference" "H" (at 22.86 -2.54 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Value" "Spacer_H1.5mm_9774015243R" (at 22.86 -5.08 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Footprint" "kria-k26-devboard-footprints:Spacer_Drill3mm_H1.5mm_9774015243R" (at 22.86 -7.62 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Datasheet" "https://www.we-online.com/catalog/datasheet/9774015243R.pdf" (at 22.86 -10.16 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Manufacturer" "Würth Elektronik" (at 22.86 -12.7 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "MPN" "9774015243R" (at 22.86 -15.24 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Author" "Antmicro" (at 22.86 -17.78 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "License" "Apache-2.0" (at 22.86 -20.32 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(symbol "Spacer_Drill3mm_H1.5mm_9774015243R_1_1"
(rectangle (start 2.54 -2.54) (end 7.62 2.54)
(stroke (width 0.254) (type default))
(fill (type background))
)
(rectangle (start 3.81 -1.27) (end 6.35 1.27)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin passive line (at 0 0 0) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "kria-k26-devboard:TP_0.75mm_SMD" (pin_numbers hide) (pin_names hide) (in_bom yes) (on_board yes)
(property "Reference" "TP" (at 17.78 -5.08 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Value" "TP_0.75mm_SMD" (at 17.78 -7.62 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Footprint" "kria-k26-devboard-footprints:TP_SMD_0.75mm" (at 17.78 -10.16 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Datasheet" "" (at 17.78 -12.7 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "MPN" "" (at 17.78 -15.24 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Manufacturer" "" (at 17.78 -17.78 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Author" "Antmicro" (at 17.78 -20.32 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "License" "Apache-2.0" (at 17.78 -22.86 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "ki_description" "Test Point 0.75mm" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TP_0.75mm_SMD_1_1"
(circle (center 3.175 0) (radius 0.635)
(stroke (width 0.254) (type default))
(fill (type none))
)
(pin passive line (at 0 0 0) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 156.845 176.53) (diameter 0) (color 0 0 0 0)
(uuid 144992f1-f172-4836-987b-79f9d895de9b)
)
(junction (at 254 123.825) (diameter 0) (color 0 0 0 0)
(uuid 146b10e0-44d0-467f-a9b0-a0e3ea71985d)
)
(junction (at 179.07 186.69) (diameter 0) (color 0 0 0 0)
(uuid 69fbe65b-0628-4a06-8fb2-2bcb1e6c8ac8)
)
(junction (at 170.815 176.53) (diameter 0) (color 0 0 0 0)
(uuid 8931116d-e79f-4791-9802-06b5abe5e1de)
)
(junction (at 239.395 160.02) (diameter 0) (color 0 0 0 0)
(uuid 8a785802-e034-4203-a7f8-a5b3dd68084a)
)
(junction (at 229.235 160.02) (diameter 0) (color 0 0 0 0)
(uuid 8dce7c3e-0c05-4b7a-b627-b68622005068)
)
(junction (at 245.745 123.825) (diameter 0) (color 0 0 0 0)
(uuid a8f5bcb3-76c3-4d05-9c16-1dbd7d2486a0)
)
(junction (at 168.275 173.99) (diameter 0) (color 0 0 0 0)
(uuid ae5cb0f6-9a9f-4d67-a9e1-74d4923c5740)
)
(junction (at 168.275 162.56) (diameter 0) (color 0 0 0 0)
(uuid be385d8e-e76b-495e-aa7e-a21f2d06305f)
)
(junction (at 150.495 173.99) (diameter 0) (color 0 0 0 0)
(uuid bf1c4ab9-e794-43c3-a73c-bb2be76779b4)
)
(junction (at 262.255 123.825) (diameter 0) (color 0 0 0 0)
(uuid e5f579c6-01b4-4cec-a42a-413bcbe00d86)
)
(no_connect (at 215.265 153.67) (uuid 004187ad-ca36-4e7a-8234-aaccafd18ce0))
(no_connect (at 180.975 130.81) (uuid 0d0ee517-64fe-4d13-ba6d-7a8cbcbbd73e))
(no_connect (at 215.265 179.07) (uuid 11682cc0-fa51-4c21-8926-495e9b977747))
(no_connect (at 215.265 162.56) (uuid 11b57328-2a16-4c0b-9d1b-e603d7b41a8f))
(no_connect (at 215.265 181.61) (uuid 1bb0f062-c81c-4f79-96f1-e04bae2fb1dc))
(no_connect (at 180.975 168.91) (uuid 213b91a8-3845-4620-801d-8fb6adfab262))
(no_connect (at 215.265 118.11) (uuid 2bc41019-60c3-457c-bb52-c412662b7e69))
(no_connect (at 215.265 186.69) (uuid 2ea42c22-0519-4e98-8670-48a42e55b283))
(no_connect (at 180.975 163.83) (uuid 32354d77-303f-4242-b806-0e37c37b1405))
(no_connect (at 215.265 166.37) (uuid 4315a871-0a9e-470a-a626-e803b238fe34))
(no_connect (at 215.265 115.57) (uuid 4548ebc9-6ae2-4a0c-881e-7200a319e3c7))
(no_connect (at 215.265 133.35) (uuid 4c18afd8-268f-4dbb-a0bc-4c92a3f0ae35))
(no_connect (at 215.265 125.73) (uuid 4f49a87b-d25b-41ec-9960-c2a4f294b259))
(no_connect (at 180.975 120.65) (uuid 520e0e19-39d8-442f-9721-7eba2c23132e))
(no_connect (at 180.975 156.21) (uuid 53963eeb-1da5-4a7e-9241-1fdfd74c32a2))
(no_connect (at 215.265 157.48) (uuid 5ba3d21e-8067-4dfc-9edb-4139354a2e3e))
(no_connect (at 215.265 171.45) (uuid 60339321-9dbe-47b1-bd70-abdb0885dda5))
(no_connect (at 180.975 135.89) (uuid 62116d3d-b34e-4638-b078-3d414c7e368c))
(no_connect (at 180.975 118.11) (uuid 677a3b19-b9df-4d5d-b727-2795d89fbcb2))
(no_connect (at 180.975 166.37) (uuid 6ed855c4-bb88-4542-ae20-f6c96ad5814e))
(no_connect (at 180.975 128.27) (uuid 7f08495b-0149-40c3-929d-07f767ff4eee))
(no_connect (at 215.265 110.49) (uuid 80a163c5-895f-4476-895d-534a7d0ee95b))
(no_connect (at 215.265 113.03) (uuid 82d99097-0cb2-45c4-b837-635677faeb89))
(no_connect (at 215.265 107.95) (uuid 8b3668c4-892b-4150-b13b-e907a3b6990a))
(no_connect (at 215.265 184.15) (uuid 8cfbe64b-c870-4011-9f85-7219a7641888))
(no_connect (at 180.975 158.75) (uuid 91d24ac0-c989-4b7d-8a5e-fc2c3557c7ed))
(no_connect (at 215.265 128.27) (uuid 95a451ce-9d72-41a4-a757-355df0045360))
(no_connect (at 180.975 161.29) (uuid 96a2c479-fbe3-4ba5-853b-9d6c04e90b3c))
(no_connect (at 215.265 105.41) (uuid 9735c741-d07e-473b-8d11-6d446c368fe1))
(no_connect (at 215.265 120.65) (uuid 9eb34ddf-8135-4755-bce2-5705706931d9))
(no_connect (at 215.265 148.59) (uuid a0bc4202-43d0-4923-b423-ce40af373893))
(no_connect (at 180.975 123.19) (uuid bb9acaa7-0245-434d-ac49-1223e606ca7a))
(no_connect (at 215.265 173.99) (uuid cdcdcfba-747c-448e-b4b1-b8136b853cfb))
(no_connect (at 215.265 140.97) (uuid cdef7b5a-c08d-411f-9d7b-84a1d58da4fd))
(no_connect (at 215.265 138.43) (uuid ceda0c58-cd36-4256-afcf-fdfbb2d96ce9))
(no_connect (at 215.265 143.51) (uuid cf5501a5-b3c7-422d-b6bf-98a76a3ac82e))
(no_connect (at 215.265 151.13) (uuid df35e2e0-174b-4cff-b640-3df72c8cf971))
(no_connect (at 180.975 125.73) (uuid f0f99fc5-b04a-440c-8eac-4a393ce8f75a))
(no_connect (at 215.265 130.81) (uuid f7bf579c-35f7-4be7-b62a-7eee879850e3))
(no_connect (at 180.975 133.35) (uuid fbefab33-fcd7-4804-be7d-4096a1af1340))
(wire (pts (xy 135.255 176.53) (xy 156.845 176.53))
(stroke (width 0) (type default))
(uuid 0319fd50-639f-40a9-a5f3-86639a22e912)
)
(wire (pts (xy 239.395 160.02) (xy 243.205 160.02))
(stroke (width 0) (type default))
(uuid 05ca07bb-0afd-4787-980c-004111113e77)
)
(wire (pts (xy 254 123.825) (xy 262.255 123.825))
(stroke (width 0) (type default))
(uuid 06f0ece1-95b5-45ba-893e-2706450d375e)
)
(wire (pts (xy 262.255 126.365) (xy 262.255 123.825))
(stroke (width 0) (type default))
(uuid 0a3727d3-f38e-4194-a503-02da2c93ef3f)
)
(wire (pts (xy 229.235 150.495) (xy 229.235 152.4))
(stroke (width 0) (type default))
(uuid 0aa925d5-df74-424a-85c5-0dfaff9b694e)
)
(wire (pts (xy 144.145 146.05) (xy 180.975 146.05))
(stroke (width 0) (type default))
(uuid 14a5e35e-26d4-49f1-bfed-48ac1cf0129e)
)
(wire (pts (xy 179.07 184.15) (xy 180.975 184.15))
(stroke (width 0) (type default))
(uuid 1be9b446-d286-49eb-b69c-7a88e6681bc0)
)
(wire (pts (xy 168.275 162.56) (xy 170.815 162.56))
(stroke (width 0) (type default))
(uuid 217c8075-3ea7-432c-83ce-76058eaf837c)
)
(wire (pts (xy 180.975 110.49) (xy 176.53 110.49))
(stroke (width 0) (type default))
(uuid 23a059cf-c5c3-469a-8ea7-a48eeb4a9e62)
)
(wire (pts (xy 193.675 220.98) (xy 191.135 220.98))
(stroke (width 0) (type default))
(uuid 3012ebea-7cdb-46ca-88b5-adb12c1b150d)
)
(wire (pts (xy 150.495 172.72) (xy 150.495 173.99))
(stroke (width 0) (type default))
(uuid 39329aca-b8d2-4253-8193-1b153d53b4d7)
)
(wire (pts (xy 146.685 138.43) (xy 146.685 139.7))
(stroke (width 0) (type default))
(uuid 43d90690-9867-42b5-9a75-cc40687587c8)
)
(wire (pts (xy 160.655 142.24) (xy 160.655 143.51))
(stroke (width 0) (type default))
(uuid 4b9621be-2e92-48be-b095-fb454a377caa)
)
(wire (pts (xy 229.235 160.02) (xy 239.395 160.02))
(stroke (width 0) (type default))
(uuid 5a1a9e9e-832e-4012-b161-a6bbcca4c297)
)
(wire (pts (xy 168.275 162.56) (xy 165.735 162.56))
(stroke (width 0) (type default))
(uuid 62f290d4-18b5-4dd6-993e-be8b117e5fc3)
)
(wire (pts (xy 239.395 158.75) (xy 239.395 160.02))
(stroke (width 0) (type default))
(uuid 66301f3d-c372-482b-ac38-d801e5ed30ab)
)
(wire (pts (xy 179.07 186.69) (xy 179.07 187.96))
(stroke (width 0) (type default))
(uuid 6bb5f9f5-8bec-4f04-8c9e-4529357425c8)
)
(wire (pts (xy 151.765 138.43) (xy 146.685 138.43))
(stroke (width 0) (type default))
(uuid 6eb8afad-e33f-4399-a8d3-b9d22281f23c)
)
(wire (pts (xy 229.235 160.02) (xy 229.235 157.48))
(stroke (width 0) (type default))
(uuid 70ac86c0-4cab-441c-964d-b040936d64d0)
)
(wire (pts (xy 170.815 171.45) (xy 170.815 176.53))
(stroke (width 0) (type default))
(uuid 760b68a5-3dff-48db-8b95-1f771a937989)
)
(wire (pts (xy 170.815 162.56) (xy 170.815 166.37))
(stroke (width 0) (type default))
(uuid 7ae72dbf-49c8-48d4-90e9-ec34a6dfd8bb)
)
(wire (pts (xy 160.655 138.43) (xy 160.655 139.7))
(stroke (width 0) (type default))
(uuid 7b237783-2e7e-4c3e-a16c-a4bdd830fb62)
)
(wire (pts (xy 179.07 186.69) (xy 180.975 186.69))
(stroke (width 0) (type default))
(uuid 82901c2c-b905-4d15-b6c9-bfd8966b0dc0)
)
(wire (pts (xy 245.745 123.825) (xy 245.745 126.365))
(stroke (width 0) (type default))
(uuid 83649f91-b5c8-437a-8144-619b3441b693)
)
(wire (pts (xy 146.685 142.24) (xy 146.685 143.51))
(stroke (width 0) (type default))
(uuid 8ec6196a-8a3f-44c8-ac06-ac833f052116)
)
(wire (pts (xy 156.845 176.53) (xy 170.815 176.53))
(stroke (width 0) (type default))
(uuid 94c00510-3a35-4157-ba06-66d781c0e71d)
)
(wire (pts (xy 146.685 143.51) (xy 151.765 143.51))
(stroke (width 0) (type default))
(uuid 983f9664-b4ea-4d27-b40d-2d62d6eb638a)
)
(wire (pts (xy 160.655 142.24) (xy 180.975 142.24))
(stroke (width 0) (type default))
(uuid 9edd652f-04ec-4e1f-9923-3770dd87a4a9)
)
(wire (pts (xy 179.07 184.15) (xy 179.07 186.69))
(stroke (width 0) (type default))
(uuid 9f835fcd-d6a5-406e-9bae-f802a8d8b6bf)
)
(wire (pts (xy 254 123.825) (xy 245.745 123.825))
(stroke (width 0) (type default))
(uuid a712e1db-ca5c-4c37-84bd-2ca48eb24d89)
)
(wire (pts (xy 135.255 173.99) (xy 140.335 173.99))
(stroke (width 0) (type default))
(uuid a85ea08a-2621-4fbc-95fa-a326b44deca3)
)
(wire (pts (xy 168.275 166.37) (xy 168.275 162.56))
(stroke (width 0) (type default))
(uuid aa0ae00f-42c5-4ed2-b1b1-6bf8cc52ebbe)
)
(wire (pts (xy 156.845 172.72) (xy 156.845 176.53))
(stroke (width 0) (type default))
(uuid b0656cb5-e48b-4add-84c2-0c72f271cf6e)
)
(wire (pts (xy 150.495 173.99) (xy 168.275 173.99))
(stroke (width 0) (type default))
(uuid b2285252-c0da-4bd5-8fbf-7d2c7f5b3559)
)
(wire (pts (xy 180.975 105.41) (xy 176.53 105.41))
(stroke (width 0) (type default))
(uuid b7c0a560-5ba0-419f-9e72-6c3c60a6419c)
)
(wire (pts (xy 156.845 138.43) (xy 160.655 138.43))
(stroke (width 0) (type default))
(uuid b893244a-224f-4929-8725-8965acfe7f28)
)
(wire (pts (xy 168.275 173.99) (xy 180.975 173.99))
(stroke (width 0) (type default))
(uuid bb5e1d3e-43a4-48c0-901c-eaf48f0d9f3e)
)
(wire (pts (xy 145.415 173.99) (xy 150.495 173.99))
(stroke (width 0) (type default))
(uuid bfe13cdf-693c-4a7c-b17b-ec87c459a801)
)
(wire (pts (xy 215.265 160.02) (xy 229.235 160.02))
(stroke (width 0) (type default))
(uuid c30d9fd2-8c5c-4d16-98e1-f254ead9ce36)
)
(wire (pts (xy 170.815 176.53) (xy 180.975 176.53))
(stroke (width 0) (type default))
(uuid c8d86755-9f2d-434c-bb38-073380b6ecfe)
)
(wire (pts (xy 144.145 148.59) (xy 180.975 148.59))
(stroke (width 0) (type default))
(uuid c9a42c26-e935-4aff-be6b-c6d2765d4821)
)
(wire (pts (xy 168.275 171.45) (xy 168.275 173.99))
(stroke (width 0) (type default))
(uuid d070a98d-4332-4880-829f-0126a8678a99)
)
(wire (pts (xy 144.145 142.24) (xy 146.685 142.24))
(stroke (width 0) (type default))
(uuid d4bfed3b-00a5-42e9-8849-d92aca4f4773)
)
(wire (pts (xy 144.145 153.67) (xy 180.975 153.67))
(stroke (width 0) (type default))
(uuid d66d5f35-dd42-40d7-bcce-8cd4a17cb89e)
)
(wire (pts (xy 191.135 220.98) (xy 191.135 222.25))
(stroke (width 0) (type default))
(uuid d758f84f-abbc-428f-9eab-bfa67596f5bc)
)
(wire (pts (xy 270.51 123.825) (xy 270.51 126.365))
(stroke (width 0) (type default))
(uuid da6a0421-f68a-477d-a325-743275f816b5)
)
(wire (pts (xy 144.145 151.13) (xy 180.975 151.13))
(stroke (width 0) (type default))
(uuid dbc72eb7-84cd-45ef-a461-7f76ac5ef8ea)
)
(wire (pts (xy 227.33 150.495) (xy 229.235 150.495))
(stroke (width 0) (type default))
(uuid e4e32c6b-5683-46c6-8e91-392882402247)
)
(wire (pts (xy 146.685 139.7) (xy 144.145 139.7))
(stroke (width 0) (type default))
(uuid ebc13ff6-bdaf-4882-b9e8-0110b4cb3128)
)
(wire (pts (xy 245.745 123.825) (xy 241.3 123.825))
(stroke (width 0) (type default))
(uuid ec4bbf9f-993c-44f5-bb5d-ee83f415cbd0)
)
(wire (pts (xy 160.655 139.7) (xy 180.975 139.7))
(stroke (width 0) (type default))
(uuid ec8b96f4-3c77-429b-bf56-501d52cfa97d)
)
(wire (pts (xy 262.255 123.825) (xy 270.51 123.825))
(stroke (width 0) (type default))
(uuid f3a720aa-c14a-4605-8f0e-33af281e0fa9)
)
(wire (pts (xy 176.53 113.03) (xy 180.975 113.03))
(stroke (width 0) (type default))
(uuid f4688469-df42-4644-ad13-ea0a7b2f7729)
)
(wire (pts (xy 254 126.365) (xy 254 123.825))
(stroke (width 0) (type default))
(uuid fa22658e-5a73-4c3a-8341-c4d0e7b9cf18)
)
(wire (pts (xy 160.655 143.51) (xy 156.845 143.51))
(stroke (width 0) (type default))
(uuid fe239494-b553-4d03-8786-a81ab7083461)
)
(image (at 70.259 271.233) (scale 0.15)
(uuid 304228bb-e898-4a21-b169-1be970ef237f)
(data
iVBORw0KGgoAAAANSUhEUgAABLAAAASwCAIAAABkQySYAAAAA3NCSVQICAjb4U/gAAAACXBIWXMA
AC4YAAAuGAEqqicgAAAgAElEQVR4nOzdeVxV9dr//41DarotPUmlVIpGiImGYSTHW6WQcIy8M7K4
Nc2xMoecSnM2KKcU05MTCjmA5jyCY1ooQ4qCCAqoWxEcUJB5s/n94feXHVMUuPZae3g9/zqP+9b3
utZaO9e+9lrr+tiUlpZqAAConPz8/CNHjuzatWvfvn1xcXFql2PhPDw8vL29O3fu3LJlSxsbG7XL
AQCYMRsaQgBAJaWlpX311VcbN25UuxCrM2vWrBEjRtSqVUvtQgAA5oqGEABQKenp6d26dYuNjVW7
ECs1YcKEadOmVatWTe1CAABmqYraBQAAzNuCBQvoBlX03XffHT58WO0qAADmioYQAFBxGRkZ/v7+
aldh7dasWaN2CQAAc8UjowCAiouMjHzzzTfVrgKa7OxsrVardhUAAPPDHUIAQMWdP39e7RKg0Wg0
V65cUbsEAIBZoiEEAFTcyZMn1S4BGo1Gc+nSJbVLAACYJRpCAEAF6fX6LVu2qF0FNBqNJikpSe0S
AABmiYYQAFBBmZmZ9CEm4o8//lC7BACAWaIhBABU0OXLl9UuAf9PSEhIbm6u2lUAAMwPDSEAoIJS
U1PVLgH3XL16Ve0SAADmh4YQAFBBp06dUrsE3HPx4kW1SwAAmB8aQgBARZSUlGzdulXtKnDPuXPn
1C4BAGB+aAgBABVx/fr1uLg4tavAPceOHVO7BACA+bEpLS1VuwYAgPmJjY1t06aN2lXgv+Tl5dWq
VUvtKgAA5oQ7hACAikhLS1O7BNyPuTIAgPKiIQQAVMTp06fVLgH30+l0apcAADAzNIQAgHIrLS3d
tWuX2lXgfufPn1e7BACAmaEhBACU240bNyIjI9WuAveLiopSuwQAgJmhIQQAlNvly5fVLgEPEBwc
XFhYqHYVAABzQkMIACg3JsqYppycnIyMDLWrAACYExpCAEC5JSQkqF0CHoy5MgCAcqEhBACUT2lp
6d69e9WuAg+WkpKidgkAAHNCQwgAKJ+srKyDBw+qXQUe7M8//1S7BACAOaEhBACUz5UrV9QuAQ8V
GhpaXFysdhUAALNRTe0CAABm5sKFC4JpAQEBLVu2FAw0RytXrgwLCxOJ0ul0mZmZjRo1EkkDAFg8
GkIAQPkkJiYKpvXo0cPR0VEw0BxdvXpVqiHUaDQ6nY6GEADwmHhkFABQPgcOHBBMa9iwoWCamWra
tKlgWmpqqmAaAMCy0RACAMrh1q1bO3bskErr3r173bp1pdLM1wsvvCCYdvLkScE0AIBloyEEAJRD
enq6YFqnTp0E08zX888/r9VqpdJ+/fVXvV4vlQYAsGw0hACAcrh48aJgGm8P3lWzZs3evXtLpSUl
JV2/fl0qDQBg2WgIAQDlcPbsWcG0l156STDNrL3xxhuCaTqdTjANAGDBaAgBAOVw5MgRwbTnn39e