forked from e3w2q/Pangaea-keyboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprototyper.kicad_sch
3186 lines (3105 loc) · 131 KB
/
prototyper.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 20210406) (generator eeschema)
(uuid 6b6b0995-a961-4ffd-ad93-018c67121a03)
(paper "A4")
(title_block
(title "Suzuri Keypad")
(rev "1")
(company "@e3w2q")
)
(lib_symbols
(symbol "#library:BLEMicroPro" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U?" (id 0) (at 0 29.21 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "ProMicro/BLEMicroPro" (id 1) (at 0 25.4 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "#footprint:ArduinoProMicro-ZigZag-BLEMicroPro-Multi-rev2" (id 2) (at 2.54 -26.67 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (id 3) (at 2.54 -26.67 0)
(effects (font (size 1.524 1.524)))
)
(symbol "BLEMicroPro_0_1"
(rectangle (start -12.7 24.13) (end 12.7 -11.43)
(stroke (width 0)) (fill (type none))
)
)
(symbol "BLEMicroPro_1_1"
(pin input line (at -17.78 21.59 0) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "0" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 19.05 0) (length 5.08)
(name "TX/D3" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -3.81 0) (length 5.08)
(name "E6" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -6.35 0) (length 5.08)
(name "B4" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -8.89 0) (length 5.08)
(name "B5" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -8.89 180) (length 5.08)
(name "B6" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -6.35 180) (length 5.08)
(name "MOSI/B2" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -3.81 180) (length 5.08)
(name "MISO/B3" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -1.27 180) (length 5.08)
(name "SCLK/B1" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 1.27 180) (length 5.08)
(name "F7" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 3.81 180) (length 5.08)
(name "F6" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 6.35 180) (length 5.08)
(name "F5" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 16.51 0) (length 5.08)
(name "RX/D2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 8.89 180) (length 5.08)
(name "F4" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 17.78 11.43 180) (length 5.08)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 13.97 180) (length 5.08)
(name "RST" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 17.78 16.51 180) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 17.78 19.05 180) (length 5.08)
(name "RAW" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 21.59 180) (length 5.08)
(name "BAT" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -17.78 13.97 0) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -17.78 11.43 0) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 8.89 0) (length 5.08)
(name "SDA/D1" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 6.35 0) (length 5.08)
(name "SCL/D0" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 3.81 0) (length 5.08)
(name "D4" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 1.27 0) (length 5.08)
(name "C6" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -1.27 0) (length 5.08)
(name "D7" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "#library:MJ-4PP-9" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MJ-4PP-9" (id 1) (at 0 -5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 6.985 4.445 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 6.985 4.445 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MJ-4PP-9_0_1"
(rectangle (start -1.905 -2.54) (end -3.175 4.445)
(stroke (width 0)) (fill (type none))
)
(rectangle (start 3.175 6.35) (end -3.81 -3.81)
(stroke (width 0.3048)) (fill (type none))
)
(polyline
(pts
(xy -2.54 4.445)
(xy -2.54 5.08)
(xy 3.175 5.08)
)
(stroke (width 0)) (fill (type none))
)
(polyline
(pts
(xy -1.27 -2.54)
(xy -0.635 -1.905)
(xy 0 -2.54)
(xy 3.175 -2.54)
)
(stroke (width 0)) (fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0.635 0.635)
(xy 1.27 0)
(xy 3.175 0)
)
(stroke (width 0)) (fill (type none))
)
(polyline
(pts
(xy 1.27 2.54)
(xy 1.905 3.175)
(xy 2.54 2.54)
(xy 3.175 2.54)
)
(stroke (width 0)) (fill (type none))
)
)
(symbol "MJ-4PP-9_1_1"
(pin input line (at 5.08 5.08 180) (length 2.0066)
(name "~" (effects (font (size 0.508 0.508))))
(number "A" (effects (font (size 0.7112 0.7112))))
)
(pin input line (at 5.08 -2.54 180) (length 2.0066)
(name "~" (effects (font (size 0.508 0.508))))
(number "B" (effects (font (size 0.7112 0.7112))))
)
(pin input line (at 5.08 0 180) (length 2.0066)
(name "~" (effects (font (size 0.508 0.508))))
(number "C" (effects (font (size 0.7112 0.7112))))
)
(pin input line (at 5.08 2.54 180) (length 2.0066)
(name "~" (effects (font (size 0.508 0.508))))
(number "D" (effects (font (size 0.7112 0.7112))))
)
)
)
(symbol "#library:SW_and_D" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "SW" (id 0) (at 1.27 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "SW_and_D" (id 1) (at 0 -1.524 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "switch normally-open pushbutton push-button" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Push button switch, generic, two pins" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SW_and_D_0_1"
(circle (center -2.032 0) (radius 0.508) (stroke (width 0)) (fill (type none)))
(circle (center 2.032 0) (radius 0.508) (stroke (width 0)) (fill (type none)))
(polyline
(pts
(xy 0 1.27)
(xy 0 3.048)
)
(stroke (width 0)) (fill (type none))
)
(polyline
(pts
(xy 2.54 1.27)
(xy -2.54 1.27)
)
(stroke (width 0)) (fill (type none))
)
(polyline
(pts
(xy 3.81 -5.08)
(xy 6.35 -5.08)
)
(stroke (width 0)) (fill (type none))
)
(polyline
(pts
(xy 2.54 0)
(xy 5.08 0)
(xy 5.08 -5.08)
(xy 6.35 -2.54)
(xy 3.81 -2.54)
(xy 5.08 -5.08)
)
(stroke (width 0)) (fill (type none))
)
(pin passive line (at -5.08 0 0) (length 2.54)
(name "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 90) (length 2.54)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_01x03" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x03" (id 1) (at 0 -5.08 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, 01x03, 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_01x03_1_1"
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 3.81) (end 1.27 -3.81)
(stroke (width 0.254)) (fill (type background))
)
(pin passive line (at -5.08 2.54 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 0 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 -2.54 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_01x06" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x06" (id 1) (at 0 -10.16 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, 01x06, 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_01x06_1_1"
(rectangle (start -1.27 -7.493) (end 0 -7.747)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 -4.953) (end 0 -5.207)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 5.207) (end 0 4.953)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 6.35) (end 1.27 -8.89)
(stroke (width 0.254)) (fill (type background))
)
(pin passive line (at -5.08 5.08 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 2.54 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 0 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 -5.08 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 -7.62 0) (length 3.81)
(name "Pin_6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_01x08" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 10.16 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x08" (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, 01x08, 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_01x08_1_1"
(rectangle (start -1.27 -10.033) (end 0 -10.287)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 -7.493) (end 0 -7.747)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 -4.953) (end 0 -5.207)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 5.207) (end 0 4.953)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 7.747) (end 0 7.493)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 8.89) (end 1.27 -11.43)
(stroke (width 0.254)) (fill (type background))
)
(pin passive line (at -5.08 7.62 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 5.08 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 2.54 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 0 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 -2.54 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 -5.08 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 -7.62 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 -10.16 0) (length 3.81)
(name "Pin_8" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Mechanical:MountingHole" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "H" (id 0) (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MountingHole" (id 1) (at 0 3.175 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" "mounting hole" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Mounting Hole without connection" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "MountingHole*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MountingHole_0_1"
(circle (center 0 0) (radius 1.27) (stroke (width 1.27)) (fill (type none)))
)
)
(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 flag, 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)) (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))))
)
)
)
(symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "#FLG" (id 0) (at 0 1.905 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (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 flag, general" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PWR_FLAG_0_0"
(pin power_out line (at 0 0 90) (length 0)
(name "pwr" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "PWR_FLAG_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 1.27)
(xy -1.016 1.905)
(xy 0 2.54)
(xy 1.016 1.905)
(xy 0 1.27)
)
(stroke (width 0)) (fill (type none))
)
)
)
(symbol "power:VCC" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (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 flag, VCC" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "VCC_0_1"
(circle (center 0 1.905) (radius 0.635) (stroke (width 0)) (fill (type none)))
(polyline
(pts
(xy 0 0)
(xy 0 1.27)
)
(stroke (width 0)) (fill (type none))
)
)
(symbol "VCC_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "VCC" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 90.17 50.8) (diameter 0.9144) (color 0 0 0 0))
(junction (at 90.17 66.04) (diameter 0.9144) (color 0 0 0 0))
(junction (at 90.17 81.28) (diameter 0.9144) (color 0 0 0 0))
(junction (at 100.33 58.42) (diameter 0.9144) (color 0 0 0 0))
(junction (at 100.33 73.66) (diameter 0.9144) (color 0 0 0 0))
(junction (at 100.33 88.9) (diameter 0.9144) (color 0 0 0 0))
(junction (at 100.33 104.14) (diameter 0.9144) (color 0 0 0 0))
(junction (at 116.84 50.8) (diameter 0.9144) (color 0 0 0 0))
(junction (at 116.84 66.04) (diameter 0.9144) (color 0 0 0 0))
(junction (at 116.84 81.28) (diameter 0.9144) (color 0 0 0 0))
(junction (at 127 58.42) (diameter 0.9144) (color 0 0 0 0))
(junction (at 127 73.66) (diameter 0.9144) (color 0 0 0 0))
(junction (at 127 88.9) (diameter 0.9144) (color 0 0 0 0))
(junction (at 127 104.14) (diameter 0.9144) (color 0 0 0 0))
(junction (at 157.48 151.13) (diameter 0.9144) (color 0 0 0 0))
(junction (at 175.26 50.8) (diameter 0.9144) (color 0 0 0 0))
(junction (at 175.26 66.04) (diameter 0.9144) (color 0 0 0 0))
(junction (at 175.26 81.28) (diameter 0.9144) (color 0 0 0 0))
(junction (at 175.26 96.52) (diameter 0.9144) (color 0 0 0 0))
(junction (at 185.42 58.42) (diameter 0.9144) (color 0 0 0 0))
(junction (at 185.42 73.66) (diameter 0.9144) (color 0 0 0 0))
(junction (at 185.42 88.9) (diameter 0.9144) (color 0 0 0 0))
(junction (at 185.42 104.14) (diameter 0.9144) (color 0 0 0 0))
(junction (at 185.42 151.13) (diameter 0.9144) (color 0 0 0 0))
(junction (at 201.93 50.8) (diameter 0.9144) (color 0 0 0 0))
(junction (at 201.93 66.04) (diameter 0.9144) (color 0 0 0 0))
(junction (at 201.93 81.28) (diameter 0.9144) (color 0 0 0 0))
(junction (at 201.93 96.52) (diameter 0.9144) (color 0 0 0 0))
(junction (at 212.09 58.42) (diameter 0.9144) (color 0 0 0 0))
(junction (at 212.09 73.66) (diameter 0.9144) (color 0 0 0 0))
(junction (at 212.09 88.9) (diameter 0.9144) (color 0 0 0 0))
(junction (at 212.09 104.14) (diameter 0.9144) (color 0 0 0 0))
(junction (at 212.09 151.13) (diameter 0.9144) (color 0 0 0 0))
(junction (at 228.6 50.8) (diameter 0.9144) (color 0 0 0 0))
(junction (at 228.6 66.04) (diameter 0.9144) (color 0 0 0 0))
(junction (at 228.6 81.28) (diameter 0.9144) (color 0 0 0 0))
(junction (at 228.6 96.52) (diameter 0.9144) (color 0 0 0 0))
(junction (at 238.76 58.42) (diameter 0.9144) (color 0 0 0 0))
(junction (at 238.76 73.66) (diameter 0.9144) (color 0 0 0 0))
(junction (at 238.76 88.9) (diameter 0.9144) (color 0 0 0 0))
(junction (at 238.76 104.14) (diameter 0.9144) (color 0 0 0 0))
(junction (at 238.76 151.13) (diameter 0.9144) (color 0 0 0 0))
(junction (at 255.27 50.8) (diameter 0.9144) (color 0 0 0 0))
(junction (at 255.27 66.04) (diameter 0.9144) (color 0 0 0 0))
(junction (at 255.27 81.28) (diameter 0.9144) (color 0 0 0 0))
(junction (at 255.27 96.52) (diameter 0.9144) (color 0 0 0 0))
(junction (at 265.43 58.42) (diameter 0.9144) (color 0 0 0 0))
(junction (at 265.43 73.66) (diameter 0.9144) (color 0 0 0 0))
(junction (at 265.43 88.9) (diameter 0.9144) (color 0 0 0 0))
(junction (at 265.43 104.14) (diameter 0.9144) (color 0 0 0 0))
(no_connect (at 22.86 58.42) (uuid c47f0624-314e-4b1e-aaf1-7b1353cbb255))
(no_connect (at 41.91 134.62) (uuid ca7f6c4a-f813-42cc-a901-eab9d6f91b96))
(no_connect (at 43.18 88.9) (uuid d18fdcef-c322-4ba4-9feb-2c827ca1cbed))
(no_connect (at 58.42 43.18) (uuid 47c105e6-a0eb-4e6e-b858-7c49c7f33176))
(no_connect (at 58.42 50.8) (uuid 93bb2f21-96d3-401a-9c6a-664ebae738a7))
(wire (pts (xy 20.32 20.32) (xy 20.32 24.13))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6507ce9a-9704-40e6-9194-4e4d7285d305)
)
(wire (pts (xy 29.21 20.32) (xy 29.21 24.13))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8f4ab173-03a3-4e76-afb0-e68663df4441)
)
(wire (pts (xy 41.91 116.84) (xy 50.8 116.84))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 2894840e-83e4-48fb-8c96-c19d35cb744a)
)
(wire (pts (xy 41.91 132.08) (xy 50.8 132.08))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 9d3d147e-1c93-4618-965e-27cc0f0ba971)
)
(wire (pts (xy 41.91 156.21) (xy 46.99 156.21))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 4a34355e-5347-419a-bbf3-5ee036b90340)
)
(wire (pts (xy 41.91 179.07) (xy 46.99 179.07))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a84abd59-ba74-4029-9727-a9b139ce4d0d)
)
(wire (pts (xy 43.18 91.44) (xy 50.8 91.44))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6c2981d0-60be-4fc8-b4af-4c9d88d94dab)
)
(wire (pts (xy 43.18 93.98) (xy 50.8 93.98))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 5a67c13a-0059-4364-83a7-d07b5b4c9663)
)
(wire (pts (xy 44.45 19.05) (xy 44.45 21.59))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid b62fd7d7-79cb-4c93-910a-02785f1e9621)
)
(wire (pts (xy 46.99 156.21) (xy 46.99 152.4))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 4e2d329e-7a79-4616-882d-357c1ac2a5a5)
)
(wire (pts (xy 46.99 161.29) (xy 41.91 161.29))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 1c6528a7-95ec-4839-813e-fe8e310c6614)
)
(wire (pts (xy 46.99 162.56) (xy 46.99 161.29))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 532fcf5a-495d-4ad5-9cb8-63e305c68a98)
)
(wire (pts (xy 46.99 179.07) (xy 46.99 175.26))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 3cdee15e-abd7-40e3-8b98-e41d6d895443)
)
(wire (pts (xy 46.99 184.15) (xy 41.91 184.15))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 5cd15c5b-5e2f-45e8-bfc5-aec2f11f405c)
)
(wire (pts (xy 46.99 185.42) (xy 46.99 184.15))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 4d296da8-bcfa-46d7-b3a9-fc02b272640e)
)
(wire (pts (xy 50.8 91.44) (xy 50.8 87.63))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7aacdb98-6492-4e92-b26d-dbb9aaa12a0e)
)
(wire (pts (xy 50.8 93.98) (xy 50.8 97.79))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 95c09dae-29f9-46a5-b567-3a8fc7726cad)
)
(wire (pts (xy 50.8 111.76) (xy 50.8 116.84))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 2894840e-83e4-48fb-8c96-c19d35cb744a)
)
(wire (pts (xy 50.8 132.08) (xy 50.8 137.16))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 9d3d147e-1c93-4618-965e-27cc0f0ba971)
)
(wire (pts (xy 58.42 53.34) (xy 67.31 53.34))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid bc8f4d3e-540b-46e8-a10e-9344ce6521bd)
)
(wire (pts (xy 67.31 39.37) (xy 67.31 53.34))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid fe130bd1-5681-4092-821c-e5d03f747bd2)
)
(wire (pts (xy 80.01 58.42) (xy 100.33 58.42))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6e517a5b-55a4-4d40-8d10-198e4cbcbc38)
)
(wire (pts (xy 80.01 73.66) (xy 100.33 73.66))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 1a2d75c3-4a8e-438d-96f7-682477309715)
)
(wire (pts (xy 80.01 88.9) (xy 100.33 88.9))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid cc4d17c8-dd52-4601-95b4-add14816a9fd)
)
(wire (pts (xy 80.01 104.14) (xy 100.33 104.14))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 88aa03bc-e075-4bd0-b44c-cb3ff435168b)
)
(wire (pts (xy 90.17 40.64) (xy 90.17 50.8))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a2fce757-daf6-4bd4-b7d2-3decd898dee5)
)
(wire (pts (xy 90.17 40.64) (xy 144.78 40.64))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 81fbbbcf-e707-4251-9240-36c1e7a7b9dd)
)
(wire (pts (xy 90.17 50.8) (xy 90.17 66.04))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a2f20dc0-c2ff-4d3a-8e61-ef89617dc44e)
)
(wire (pts (xy 90.17 66.04) (xy 90.17 81.28))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 4b1829d4-cc85-4d99-8f0d-e2145dab8a47)
)
(wire (pts (xy 90.17 81.28) (xy 90.17 96.52))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 3d8cd133-bd6e-472f-a8b2-7a8fe967de19)
)
(wire (pts (xy 100.33 58.42) (xy 127 58.42))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e05f4658-1997-49ee-8c8d-e0540c28502f)
)
(wire (pts (xy 100.33 73.66) (xy 127 73.66))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 0746f7ac-1714-4fc0-9fc6-db5bba17cd7d)
)
(wire (pts (xy 100.33 88.9) (xy 127 88.9))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid eaf8f2ee-53ab-4549-9558-c761fd19c7ac)
)
(wire (pts (xy 100.33 104.14) (xy 127 104.14))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 1bf6a521-9f54-42bc-8c52-1456ba6d3fd6)
)
(wire (pts (xy 116.84 41.91) (xy 116.84 50.8))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8446a646-0af9-48a7-b3f3-d4bcd152a4ad)
)
(wire (pts (xy 116.84 41.91) (xy 143.51 41.91))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a7aad4f5-527e-4061-8085-77ca7d2b2d1c)
)
(wire (pts (xy 116.84 50.8) (xy 116.84 66.04))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a5bfd8e5-c284-448e-9558-7a07b5bd827e)
)
(wire (pts (xy 116.84 66.04) (xy 116.84 81.28))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid bc53b58f-06ab-46ed-95bc-a29c3963c639)
)
(wire (pts (xy 116.84 81.28) (xy 116.84 96.52))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ae5c2c2d-021c-49f8-a314-9b8f7e2c4874)
)
(wire (pts (xy 127 58.42) (xy 142.24 58.42))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 731a86a5-7c46-45e9-aedc-7c8fbc13a697)
)
(wire (pts (xy 127 73.66) (xy 140.97 73.66))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7e06fdbf-92dc-42f0-9b1c-73fb80940ba9)
)
(wire (pts (xy 127 88.9) (xy 140.97 88.9))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 1dac2d4f-8ac3-456f-a749-0dbf360e6b9d)
)
(wire (pts (xy 127 104.14) (xy 142.24 104.14))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid bb83845b-e37d-46ec-b54b-b290fc0d3049)
)
(wire (pts (xy 140.97 82.55) (xy 140.97 73.66))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7e06fdbf-92dc-42f0-9b1c-73fb80940ba9)
)
(wire (pts (xy 140.97 85.09) (xy 140.97 88.9))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 1dac2d4f-8ac3-456f-a749-0dbf360e6b9d)
)
(wire (pts (xy 142.24 80.01) (xy 142.24 58.42))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 731a86a5-7c46-45e9-aedc-7c8fbc13a697)
)
(wire (pts (xy 142.24 87.63) (xy 142.24 104.14))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid bb83845b-e37d-46ec-b54b-b290fc0d3049)
)
(wire (pts (xy 143.51 77.47) (xy 143.51 41.91))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a7aad4f5-527e-4061-8085-77ca7d2b2d1c)
)
(wire (pts (xy 144.78 40.64) (xy 144.78 74.93))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e0bfd81d-aeef-484b-9280-49131253bcc2)
)
(wire (pts (xy 146.05 135.89) (xy 146.05 151.13))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 28d64a60-2317-494b-b54b-811749d90ff5)
)
(wire (pts (xy 146.05 151.13) (xy 157.48 151.13))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 93a8d6b6-bfd9-411d-b817-73a1c801d5f1)
)
(wire (pts (xy 147.32 74.93) (xy 144.78 74.93))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7e75adf5-31a2-4429-ae70-2e2b2b58a5a6)
)
(wire (pts (xy 147.32 77.47) (xy 143.51 77.47))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a7aad4f5-527e-4061-8085-77ca7d2b2d1c)
)
(wire (pts (xy 147.32 80.01) (xy 142.24 80.01))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 731a86a5-7c46-45e9-aedc-7c8fbc13a697)
)
(wire (pts (xy 147.32 82.55) (xy 140.97 82.55))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7e06fdbf-92dc-42f0-9b1c-73fb80940ba9)
)
(wire (pts (xy 147.32 85.09) (xy 140.97 85.09))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 1dac2d4f-8ac3-456f-a749-0dbf360e6b9d)
)
(wire (pts (xy 147.32 87.63) (xy 142.24 87.63))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid bb83845b-e37d-46ec-b54b-b290fc0d3049)
)
(wire (pts (xy 147.32 137.16) (xy 147.32 143.51))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 70f40b14-ecdd-4656-8409-22bfad4fc869)
)
(wire (pts (xy 157.48 151.13) (xy 185.42 151.13))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 0907b3f7-5471-4a4d-81de-725a46ad38ce)
)
(wire (pts (xy 165.1 74.93) (xy 167.64 74.93))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7c07df6e-e931-40a6-b6b7-d4e0757c1274)
)
(wire (pts (xy 165.1 77.47) (xy 168.91 77.47))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 5ad14a60-600f-4fe7-8ced-06f393b3d66d)
)
(wire (pts (xy 165.1 80.01) (xy 170.18 80.01))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a66caef9-1adc-4312-96e3-afbdf93569ef)
)
(wire (pts (xy 165.1 82.55) (xy 171.45 82.55))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e138acd5-fc51-4e50-8acd-13e1a391e00c)
)
(wire (pts (xy 165.1 85.09) (xy 171.45 85.09))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 0c2a0cb2-f702-4183-90c3-4697d6d39f21)
)
(wire (pts (xy 165.1 87.63) (xy 170.18 87.63))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 35deae60-261a-4a1d-a219-0fa581553830)
)
(wire (pts (xy 165.1 114.3) (xy 181.61 114.3))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 48277e9c-9494-4f58-989f-b87fe4d8fc52)
)
(wire (pts (xy 167.64 41.91) (xy 167.64 74.93))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7c07df6e-e931-40a6-b6b7-d4e0757c1274)
)
(wire (pts (xy 168.91 41.91) (xy 168.91 77.47))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 5ad14a60-600f-4fe7-8ced-06f393b3d66d)
)
(wire (pts (xy 168.91 109.22) (xy 168.91 113.03))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 806d6f21-f10f-42d6-9f86-7bb5a45fd10d)
)
(wire (pts (xy 170.18 58.42) (xy 185.42 58.42))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 35282702-2289-428d-9268-db976f470a14)
)
(wire (pts (xy 170.18 80.01) (xy 170.18 58.42))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a66caef9-1adc-4312-96e3-afbdf93569ef)
)
(wire (pts (xy 170.18 87.63) (xy 170.18 104.14))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 35deae60-261a-4a1d-a219-0fa581553830)
)
(wire (pts (xy 170.18 104.14) (xy 185.42 104.14))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 35deae60-261a-4a1d-a219-0fa581553830)
)
(wire (pts (xy 171.45 73.66) (xy 185.42 73.66))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e138acd5-fc51-4e50-8acd-13e1a391e00c)
)
(wire (pts (xy 171.45 82.55) (xy 171.45 73.66))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e138acd5-fc51-4e50-8acd-13e1a391e00c)
)
(wire (pts (xy 171.45 85.09) (xy 171.45 88.9))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 0c2a0cb2-f702-4183-90c3-4697d6d39f21)
)
(wire (pts (xy 171.45 88.9) (xy 185.42 88.9))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 0c2a0cb2-f702-4183-90c3-4697d6d39f21)
)
(wire (pts (xy 175.26 41.91) (xy 175.26 50.8))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 2af951f9-2e3e-492d-a207-320ec67e3596)
)
(wire (pts (xy 175.26 50.8) (xy 175.26 66.04))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 644ef95f-34dd-4b51-9803-f1a5ec6eab3f)
)
(wire (pts (xy 175.26 66.04) (xy 175.26 81.28))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 92e5b160-dc62-4309-bef7-3047c41045a0)
)
(wire (pts (xy 175.26 81.28) (xy 175.26 96.52))