This repository has been archived by the owner on Sep 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDP02.kicad_sch
3179 lines (3142 loc) · 138 KB
/
DP02.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 7556c6b7-65ac-413e-a9cd-66bd4b5b10f7)
(paper "B")
(title_block
(title "DATA PATH ARX & MQ REGISTERS")
(date "10/21/1976")
(rev "A")
(company "DIGITAL")
(comment 1 "M8512-0-DP02")
)
(lib_symbols
(symbol "DEC20:10141" (in_bom yes) (on_board yes)
(property "Reference" "E" (id 0) (at 1.27 0 0)
(effects (font (size 0.635 0.635)) (justify left))
)
(property "Value" "10141" (id 1) (at 2.54 1.27 0)
(effects (font (size 0.635 0.635)))
)
(property "Footprint" "" (id 2) (at 6.35 -2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 6.35 -2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "10141_0_0"
(rectangle (start 0 0) (end 0 0)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 1.27 -1.27) (end 1.27 -1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(text "0=HOLD" (at 2.54 -24.13 0)
(effects (font (size 0.762 0.762)) (justify left))
)
(text "1=3IN+3" (at 2.54 -22.86 0)
(effects (font (size 0.762 0.762)) (justify left))
)
(text "2=0IN+0" (at 2.54 -21.59 0)
(effects (font (size 0.762 0.762)) (justify left))
)
(text "3=LOAD" (at 2.54 -20.32 0)
(effects (font (size 0.762 0.762)) (justify left))
)
(text "SHFT REG" (at 2.54 2.54 0)
(effects (font (size 0.635 0.635)))
)
)
(symbol "10141_0_1"
(rectangle (start 0 -18.415) (end 8.255 -25.4)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 0 -17.145) (end 8.255 -18.415)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 0 -13.335) (end 8.255 -17.145)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 0 -9.525) (end 8.255 -13.335)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 0 -5.715) (end 8.255 -9.525)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 0 -1.905) (end 8.255 -5.715)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 0 -0.635) (end 8.255 -1.905)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 0 3.81) (end 8.255 -27.94)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 0.635 -16.51) (end 0.635 -16.51)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "10141_1_1"
(pin input inverted (at -5.08 -22.86 0) (length 5.08)
(name "S1" (effects (font (size 0.635 0.635))))
(number "10" (effects (font (size 0.635 0.635))))
)
(pin input line (at -5.08 -8.255 0) (length 5.08)
(name "D1" (effects (font (size 0.635 0.635))))
(number "11" (effects (font (size 0.635 0.635))))
)
(pin input line (at -5.08 -4.445 0) (length 5.08)
(name "D0" (effects (font (size 0.635 0.635))))
(number "12" (effects (font (size 0.635 0.635))))
)
(pin input line (at -5.08 -1.27 0) (length 5.08)
(name "SHFT-0IN" (effects (font (size 0.635 0.635))))
(number "13" (effects (font (size 0.635 0.635))))
)
(pin output line (at 13.335 -2.54 180) (length 5.08)
(name "Q0" (effects (font (size 0.635 0.635))))
(number "14" (effects (font (size 0.635 0.635))))
)
(pin output line (at 13.335 -6.35 180) (length 5.08)
(name "Q1" (effects (font (size 0.635 0.635))))
(number "15" (effects (font (size 0.635 0.635))))
)
(pin output line (at 13.335 -10.16 180) (length 5.08)
(name "Q2" (effects (font (size 0.635 0.635))))
(number "2" (effects (font (size 0.635 0.635))))
)
(pin output line (at 13.335 -13.97 180) (length 5.08)
(name "Q3" (effects (font (size 0.635 0.635))))
(number "3" (effects (font (size 0.635 0.635))))
)
(pin input clock (at -5.08 -26.67 0) (length 5.08)
(name "CLK" (effects (font (size 0.635 0.635))))
(number "4" (effects (font (size 0.635 0.635))))
)
(pin input line (at -5.08 -17.78 0) (length 5.08)
(name "SHFT-3IN" (effects (font (size 0.635 0.635))))
(number "5" (effects (font (size 0.635 0.635))))
)
(pin input line (at -5.08 -15.875 0) (length 5.08)
(name "D3" (effects (font (size 0.635 0.635))))
(number "6" (effects (font (size 0.635 0.635))))
)
(pin input inverted (at -5.08 -20.955 0) (length 5.08)
(name "S2" (effects (font (size 0.635 0.635))))
(number "7" (effects (font (size 0.635 0.635))))
)
(pin input line (at -5.08 -12.065 0) (length 5.08)
(name "D2" (effects (font (size 0.635 0.635))))
(number "9" (effects (font (size 0.635 0.635))))
)
)
)
(symbol "DEC20:MC10101" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "E" (id 0) (at -4.445 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MC10101" (id 1) (at -6.35 6.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -11.43 -1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at -11.43 -1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "or-gate nor-gate quad ECL" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Quad OR/NOR gate" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MC10101_0_0"
(pin power_in line (at -6.35 6.35 270) (length 2.54) hide
(name "VCC1" (effects (font (size 0.635 0.635))))
(number "1" (effects (font (size 0.635 0.635))))
)
(pin power_in line (at -1.27 6.35 270) (length 3.556) hide
(name "VCC2" (effects (font (size 0.635 0.635))))
(number "16" (effects (font (size 0.635 0.635))))
)
(pin passive line (at -5.08 -6.35 90) (length 2.54) hide
(name "VEE" (effects (font (size 0.635 0.635))))
(number "8" (effects (font (size 0.635 0.635))))
)
)
(symbol "MC10101_0_1"
(arc (start -7.3662 -3.81) (mid -6.1452 0) (end -7.3662 3.81)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start -4.1658 -3.81) (mid -1.3707 -2.584) (end 0.2538 0)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -7.3662 -3.81)
(xy -4.1912 -3.81)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -7.3662 3.81)
(xy -4.1912 3.81)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0.2538 0) (mid -1.3634 2.5925) (end -4.1658 3.81)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin input line (at -10.16 -2.54 0) (length 3.556)
(name "COMin" (effects (font (size 0.635 0.635))))
(number "12" (effects (font (size 0.635 0.635))))
)
)
(symbol "MC10101_0_2"
(arc (start -4.1658 -3.81) (mid -1.3707 -2.584) (end 0.2538 0)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -7.62 -3.81)
(xy -4.1912 -3.81)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -7.62 3.81)
(xy -7.62 -3.81)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -7.62 3.81)
(xy -4.1912 3.81)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -6.35 3.81)
(xy -6.35 3.81)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -6.35 3.81)
(xy -6.35 3.81)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0.2538 0) (mid -1.3634 2.5925) (end -4.1658 3.81)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin input inverted (at -11.43 -2.54 0) (length 3.81)
(name "COMin" (effects (font (size 0.635 0.635))))
(number "12" (effects (font (size 0.635 0.635))))
)
)
(symbol "MC10101_1_1"
(pin output inverted (at 3.81 2.54 180) (length 4.826)
(name "~Aout" (effects (font (size 0.635 0.635))))
(number "2" (effects (font (size 0.635 0.635))))
)
(pin input line (at -10.16 2.54 0) (length 3.556)
(name "Ain" (effects (font (size 0.635 0.635))))
(number "4" (effects (font (size 0.635 0.635))))
)
(pin output line (at 3.81 -2.54 180) (length 5.08)
(name "Aout" (effects (font (size 0.635 0.635))))
(number "5" (effects (font (size 0.635 0.635))))
)
)
(symbol "MC10101_1_2"
(circle (center -8.89 2.54) (radius 0.0001)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin output line (at 3.81 2.54 180) (length 5.08)
(name "~Aout" (effects (font (size 0.635 0.635))))
(number "2" (effects (font (size 0.635 0.635))))
)
(pin input inverted (at -11.43 2.54 0) (length 3.81)
(name "Ain" (effects (font (size 0.635 0.635))))
(number "4" (effects (font (size 0.635 0.635))))
)
(pin output inverted (at 3.81 -2.54 180) (length 4.826)
(name "Aout" (effects (font (size 0.635 0.635))))
(number "5" (effects (font (size 0.635 0.635))))
)
)
(symbol "MC10101_2_1"
(pin input line (at -10.16 -2.54 0) (length 3.556)
(name "COMin" (effects (font (size 0.635 0.635))))
(number "12" (effects (font (size 0.635 0.635))))
)
(pin output inverted (at 3.81 2.54 180) (length 4.826)
(name "~Bout" (effects (font (size 0.635 0.635))))
(number "3" (effects (font (size 0.635 0.635))))
)
(pin output line (at 3.81 -2.54 180) (length 5.08)
(name "Bout" (effects (font (size 0.635 0.635))))
(number "6" (effects (font (size 0.635 0.635))))
)
(pin input line (at -10.16 2.54 0) (length 3.556)
(name "Bin" (effects (font (size 0.635 0.635))))
(number "7" (effects (font (size 0.635 0.635))))
)
)
(symbol "MC10101_2_2"
(circle (center -8.89 2.54) (radius 0.0001)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin output line (at 3.81 2.54 180) (length 5.08)
(name "~Bout" (effects (font (size 0.635 0.635))))
(number "3" (effects (font (size 0.635 0.635))))
)
(pin output inverted (at 3.81 -2.54 180) (length 4.826)
(name "Bout" (effects (font (size 0.635 0.635))))
(number "6" (effects (font (size 0.635 0.635))))
)
(pin input inverted (at -11.43 2.54 0) (length 3.81)
(name "Bin" (effects (font (size 0.635 0.635))))
(number "7" (effects (font (size 0.635 0.635))))
)
)
(symbol "MC10101_3_1"
(pin input line (at -10.16 2.54 0) (length 3.556)
(name "Cin" (effects (font (size 0.635 0.635))))
(number "10" (effects (font (size 0.635 0.635))))
)
(pin output line (at 3.81 -2.54 180) (length 5.08)
(name "Cout" (effects (font (size 0.635 0.635))))
(number "11" (effects (font (size 0.635 0.635))))
)
(pin input line (at -10.16 -2.54 0) (length 3.556)
(name "COMin" (effects (font (size 0.635 0.635))))
(number "12" (effects (font (size 0.635 0.635))))
)
(pin output inverted (at 3.81 2.54 180) (length 4.826)
(name "~Cout" (effects (font (size 0.635 0.635))))
(number "14" (effects (font (size 0.635 0.635))))
)
)
(symbol "MC10101_3_2"
(circle (center -8.89 2.54) (radius 0.0001)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin input inverted (at -11.43 2.54 0) (length 3.81)
(name "Cin" (effects (font (size 0.635 0.635))))
(number "10" (effects (font (size 0.635 0.635))))
)
(pin output inverted (at 3.81 -2.54 180) (length 4.826)
(name "Cout" (effects (font (size 0.635 0.635))))
(number "11" (effects (font (size 0.635 0.635))))
)
(pin output line (at 3.81 2.54 180) (length 4.826)
(name "~Cout" (effects (font (size 0.635 0.635))))
(number "14" (effects (font (size 0.635 0.635))))
)
)
(symbol "MC10101_4_1"
(pin input line (at -10.16 -2.54 0) (length 3.556)
(name "COMin" (effects (font (size 0.635 0.635))))
(number "12" (effects (font (size 0.635 0.635))))
)
(pin input line (at -10.16 2.54 0) (length 3.556)
(name "Din" (effects (font (size 0.635 0.635))))
(number "13" (effects (font (size 0.635 0.635))))
)
(pin output inverted (at 3.81 2.54 180) (length 4.826)
(name "~Dout" (effects (font (size 0.635 0.635))))
(number "15" (effects (font (size 0.635 0.635))))
)
(pin output line (at 3.81 -2.54 180) (length 5.08)
(name "Dout" (effects (font (size 0.635 0.635))))
(number "9" (effects (font (size 0.635 0.635))))
)
)
(symbol "MC10101_4_2"
(circle (center -8.89 2.54) (radius 0.0001)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin input inverted (at -11.43 2.54 0) (length 3.81)
(name "Din" (effects (font (size 0.635 0.635))))
(number "13" (effects (font (size 0.635 0.635))))
)
(pin output line (at 3.81 2.54 180) (length 5.08)
(name "~Dout" (effects (font (size 0.635 0.635))))
(number "15" (effects (font (size 0.635 0.635))))
)
(pin output inverted (at 3.81 -2.54 180) (length 4.826)
(name "Dout" (effects (font (size 0.635 0.635))))
(number "9" (effects (font (size 0.635 0.635))))
)
)
)
(symbol "DEC20:MC10164" (in_bom yes) (on_board yes)
(property "Reference" "E" (id 0) (at -1.27 -3.81 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MC10164" (id 1) (at 0 -1.905 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 "MC10164_0_0"
(rectangle (start -5.08 -26.035) (end 7.62 -34.29)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -5.08 -5.08) (end 7.62 -26.035)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -5.08 1.27) (end 7.62 -37.465)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(text "8 MIX" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(pin power_in non_logic (at -3.81 3.81 270) (length 2.54) hide
(name "VCC1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -27.305 0) (length 2.54)
(name "SEL4" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -17.145 0) (length 2.54)
(name "D4" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -19.685 0) (length 2.54)
(name "D5" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -22.225 0) (length 2.54)
(name "D6" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -24.765 0) (length 2.54)
(name "D7" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin output line (at 10.16 -6.985 180) (length 2.54)
(name "B" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin power_in non_logic (at -1.27 3.81 270) (length 2.54) hide
(name "VCC2" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin input inverted (at -7.62 -36.195 0) (length 2.54)
(name "EN" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -14.605 0) (length 2.54)
(name "D3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -12.065 0) (length 2.54)
(name "D2" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -9.525 0) (length 2.54)
(name "D1" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -6.985 0) (length 2.54)
(name "D0" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -32.385 0) (length 2.54)
(name "SEL1" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin power_in non_logic (at 0.635 -40.005 90) (length 2.54) hide
(name "VEE" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -29.845 0) (length 2.54)
(name "SEL2" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "DEC20:MC10174" (in_bom yes) (on_board yes)
(property "Reference" "E" (id 0) (at 1.27 34.29 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MC10174" (id 1) (at 5.08 36.83 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 5.08 39.37 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 5.08 39.37 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "dual mux 4-to-1 ECL" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Dual 4-to-1 multiplexer" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MC10174_0_0"
(rectangle (start 0 9.525) (end 12.7 3.175)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 0 20.955) (end 12.7 9.525)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 0 32.385) (end 12.7 20.955)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 0 40.64) (end 12.7 0)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(text "2X4 MIX" (at 5.08 39.37 0)
(effects (font (size 1.27 1.27)))
)
(pin power_in non_logic (at 1.27 43.18 270) (length 2.54) hide
(name "VCC1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -2.54 11.43 0) (length 2.54)
(name "D13" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input line (at -2.54 16.51 0) (length 2.54)
(name "D11" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin input line (at -2.54 13.97 0) (length 2.54)
(name "D12" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at -2.54 19.05 0) (length 2.54)
(name "D10" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin input inverted (at -2.54 1.27 0) (length 2.54)
(name "EN" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin output line (at 15.24 19.05 180) (length 2.54)
(name "B1" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin power_in non_logic (at 3.81 43.18 270) (length 2.54) hide
(name "VCC2" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin output line (at 15.24 30.48 180) (length 2.54)
(name "B0" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -2.54 30.48 0) (length 2.54)
(name "D00" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -2.54 25.4 0) (length 2.54)
(name "D02" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -2.54 27.94 0) (length 2.54)
(name "D01" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -2.54 22.86 0) (length 2.54)
(name "D03" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -2.54 5.08 0) (length 2.54)
(name "SEL1" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin power_in non_logic (at 5.715 -2.54 90) (length 2.54) hide
(name "VEE" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -2.54 7.62 0) (length 2.54)
(name "SEL2" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 104.775 173.355) (diameter 0) (color 0 0 0 0)
(uuid 19626864-9820-4e9f-a8da-bd647dc35a10)
)
(junction (at 85.09 117.475) (diameter 0) (color 0 0 0 0)
(uuid 1d4ac2a4-280d-48ce-8360-ae8c76bcc944)
)
(junction (at 85.09 120.015) (diameter 0) (color 0 0 0 0)
(uuid 1de6e460-405d-4848-b7dc-52f8087e91d6)
)
(junction (at 85.09 122.555) (diameter 0) (color 0 0 0 0)
(uuid 206d7e27-3711-4e04-b4cd-ce055d0a7a7b)
)
(junction (at 168.275 169.545) (diameter 0) (color 0 0 0 0)
(uuid 229ef6e6-6589-46a3-858c-f0b4e1dc2f54)
)
(junction (at 171.45 66.675) (diameter 0) (color 0 0 0 0)
(uuid 38174050-6937-404c-ae1b-b4e619c0c547)
)
(junction (at 306.705 68.58) (diameter 0) (color 0 0 0 0)
(uuid 3c68b3f9-efb0-4906-9fdb-f2bf3331cf97)
)
(junction (at 104.775 169.545) (diameter 0) (color 0 0 0 0)
(uuid 3e08eab2-5ea2-48dd-9429-377b3024d4f1)
)
(junction (at 142.24 122.555) (diameter 0) (color 0 0 0 0)
(uuid 406ef276-e76d-4b9e-97ec-19e83280ee1e)
)
(junction (at 321.31 122.555) (diameter 0) (color 0 0 0 0)
(uuid 4a721143-bcf9-4e8a-8da3-ba4b07e11a64)
)
(junction (at 104.775 175.895) (diameter 0) (color 0 0 0 0)
(uuid 4c6fb9d1-49db-4464-9e81-d6ebe4af5911)
)
(junction (at 171.45 68.58) (diameter 0) (color 0 0 0 0)
(uuid 75dc4285-c6d6-41c6-9b93-fcbdc7713db3)
)
(junction (at 171.45 53.975) (diameter 0) (color 0 0 0 0)
(uuid 78ef2911-c6b7-4c8b-aaa5-c1d161a4f951)
)
(junction (at 103.505 169.545) (diameter 0) (color 0 0 0 0)
(uuid 7b3b0f6c-a20e-4ec4-8fb0-52fec61e5e78)
)
(junction (at 104.775 179.705) (diameter 0) (color 0 0 0 0)
(uuid 82c2b38a-2bae-4b3c-b1fe-97b632e6b8b6)
)
(junction (at 321.31 117.475) (diameter 0) (color 0 0 0 0)
(uuid 87d9967c-fd40-4bf7-9406-d3eefee941d8)
)
(junction (at 261.62 117.475) (diameter 0) (color 0 0 0 0)
(uuid 88d2282b-24a3-458a-acd6-7cc5ed08a803)
)
(junction (at 321.31 120.015) (diameter 0) (color 0 0 0 0)
(uuid 8bdcf5ed-2c28-4787-b516-d9c82645293e)
)
(junction (at 201.93 117.475) (diameter 0) (color 0 0 0 0)
(uuid 9fc540d1-f343-4010-a93a-30b790526124)
)
(junction (at 309.88 170.18) (diameter 0) (color 0 0 0 0)
(uuid a51008f9-2fa7-4da6-b115-aebd0e4b375b)
)
(junction (at 168.275 179.705) (diameter 0) (color 0 0 0 0)
(uuid a5df4220-032d-441c-aff1-42c036568e8f)
)
(junction (at 261.62 122.555) (diameter 0) (color 0 0 0 0)
(uuid aae9ee6e-202f-436a-bba4-614e40959a9e)
)
(junction (at 168.275 175.895) (diameter 0) (color 0 0 0 0)
(uuid bff17107-d8bf-48e4-994d-a61964d3d3e0)
)
(junction (at 201.93 122.555) (diameter 0) (color 0 0 0 0)
(uuid c5c8ef21-ea99-41aa-ab57-86a552a645fd)
)
(junction (at 142.24 120.015) (diameter 0) (color 0 0 0 0)
(uuid d500e6b3-1066-4938-ae47-b425b10e2c26)
)
(junction (at 201.93 120.015) (diameter 0) (color 0 0 0 0)
(uuid d59ad4e5-6499-4983-8d7c-613f84f12424)
)
(junction (at 168.275 173.355) (diameter 0) (color 0 0 0 0)
(uuid df4daeac-0d27-4d5e-a6d7-ed1a074fbee9)
)
(junction (at 142.24 117.475) (diameter 0) (color 0 0 0 0)
(uuid e45a3e69-7a7b-4ce4-b6fe-26a593ff9b5e)
)
(junction (at 309.88 168.275) (diameter 0) (color 0 0 0 0)
(uuid e76f4791-8dea-4a20-9bfe-80e578bf8e6c)
)
(junction (at 261.62 120.015) (diameter 0) (color 0 0 0 0)
(uuid e93516c2-5909-4bfc-92b3-b629d1eff85a)
)
(wire (pts (xy 325.12 55.88) (xy 325.755 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 02b06e51-bbee-4157-95be-0018892e0947)
)
(wire (pts (xy 141.605 104.775) (xy 142.24 104.775))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 03038812-fb68-46d6-80b5-afa905bcbac4)
)
(wire (pts (xy 102.87 97.155) (xy 103.505 97.155))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 03bd3c8f-b1e0-4648-9722-49ceefcc2461)
)
(wire (pts (xy 167.64 155.575) (xy 168.275 155.575))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 048c8e79-2b38-474c-9b77-eeaf0d61dd42)
)
(wire (pts (xy 142.24 122.555) (xy 201.93 122.555))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0640852d-ce47-4956-9df5-62e24e62ba7b)
)
(wire (pts (xy 294.64 208.915) (xy 307.975 208.915))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0757cf6c-bea6-45a8-87ba-1ff9dbdf3dcc)
)
(wire (pts (xy 307.975 170.18) (xy 309.88 170.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 07bfb9f0-dc73-4b2e-abfd-bad0ad964fb7)
)
(wire (pts (xy 260.985 102.235) (xy 261.62 102.235))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 09ac52ee-06e5-4356-86db-dc03779a4e24)
)
(wire (pts (xy 17.78 115.57) (xy 17.78 81.915))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0c2daf29-5ce7-43a1-91c1-3cd59178ff03)
)
(wire (pts (xy 85.09 122.555) (xy 142.24 122.555))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0d0beb03-0397-406b-8b8c-979622b3e840)
)
(wire (pts (xy 189.865 52.07) (xy 190.5 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0dbdc4a1-1d30-4f63-b4a0-29a7691066de)
)
(wire (pts (xy 347.345 217.805) (xy 347.345 181.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0e97ef24-6c38-4ba0-b267-c08a2fb91deb)
)
(wire (pts (xy 370.205 186.69) (xy 370.205 165.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 11712be1-181a-4e0c-bca0-26cf6258ede2)
)
(wire (pts (xy 167.64 57.785) (xy 171.45 57.785))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 135ad266-16cc-47b3-8fcf-cc06db65f051)
)
(wire (pts (xy 189.865 48.26) (xy 190.5 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 13a83afb-02ff-4ad1-a704-c58300a0ea35)
)
(wire (pts (xy 309.245 155.575) (xy 309.88 155.575))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 13e40eee-be88-4dc6-bb02-61222ebf144c)
)
(wire (pts (xy 260.985 114.935) (xy 261.62 114.935))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 14360f78-c55e-4635-b260-3fc3cee33b75)
)
(wire (pts (xy 142.24 120.015) (xy 201.93 120.015))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 15a5ed8a-b1ba-4509-8bb1-c6fe4c4fe3e3)
)
(wire (pts (xy 102.235 164.465) (xy 104.775 164.465))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 174e23f0-7aa1-4f81-b643-7c872164a1c3)
)
(wire (pts (xy 371.475 148.59) (xy 372.11 148.59))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 17823fe2-b06d-4ba5-bba7-d8d8a834f053)
)
(wire (pts (xy 320.675 99.695) (xy 321.31 99.695))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 17caf1d6-beea-4f7c-adbb-0b12b94cdf52)
)
(wire (pts (xy 242.57 61.595) (xy 243.205 61.595))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 17feeaac-f146-43e9-8f70-f382c354e619)
)
(wire (pts (xy 102.235 150.495) (xy 104.775 150.495))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1bf18b8a-1d41-4c56-8b2f-f9a327d8e52f)
)
(wire (pts (xy 201.295 102.235) (xy 201.93 102.235))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 20c3e224-f281-4d29-90f2-8b6a78bf80e9)
)
(wire (pts (xy 381 109.855) (xy 378.46 109.855))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 20f63b90-aa95-4040-aea5-27dbe8df6201)
)
(wire (pts (xy 201.295 112.395) (xy 201.93 112.395))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 22f2e43d-8fb0-427b-bfd3-f4b5a46e2e11)
)
(wire (pts (xy 301.625 165.1) (xy 309.88 165.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 25a7635a-7a95-46cd-9d6a-2d9b20b1faed)
)
(wire (pts (xy 365.125 186.69) (xy 370.205 186.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 269357f3-c9d4-4858-a027-8def4bc7cde5)
)
(wire (pts (xy 88.265 204.47) (xy 100.33 204.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 29313da4-0a1c-4551-9087-b9387a732105)
)
(wire (pts (xy 79.375 102.235) (xy 85.09 102.235))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2b270d7b-4f19-4187-b574-0859ee121976)
)
(wire (pts (xy 347.345 181.61) (xy 351.155 181.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2d10cd81-5db3-4b89-a85e-a7e1c9a9c209)
)
(wire (pts (xy 321.31 120.015) (xy 381 120.015))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2e994cef-8c3d-4e0d-8146-3a6d21f1e9cf)
)
(wire (pts (xy 302.895 61.595) (xy 306.705 61.595))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3259dc18-265a-46b4-bce6-d491ba2c88ba)
)
(wire (pts (xy 78.105 122.555) (xy 85.09 122.555))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 337be385-e9f9-46b2-b009-5e3e98853c5a)
)
(wire (pts (xy 167.64 164.465) (xy 168.275 164.465))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 357d8b24-d973-49d1-898c-903b273aa194)
)
(wire (pts (xy 92.71 173.355) (xy 104.775 173.355))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 375d29c4-98e6-4ca1-a09d-eaec1cb69b86)
)
(wire (pts (xy 305.435 168.275) (xy 309.88 168.275))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 37fe8c8e-5e07-45a1-926c-66397cf2df45)
)
(wire (pts (xy 83.185 87.63) (xy 83.185 114.935))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3814c0f1-b35b-42ef-9b24-6546b19fc9cc)
)
(wire (pts (xy 261.62 117.475) (xy 321.31 117.475))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 385876aa-d2a2-4a3e-a0a7-57428a5ac875)
)
(wire (pts (xy 392.43 56.515) (xy 396.24 56.515))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 39e9db23-094c-480e-ba5d-7dfa8e3f2975)
)
(wire (pts (xy 392.43 74.93) (xy 396.24 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3b6045e8-484c-497d-97ce-918d168e9120)
)
(wire (pts (xy 325.12 52.07) (xy 325.755 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3bc7da9a-5834-4cd0-b3e8-2af003cbbe44)
)
(wire (pts (xy 92.71 181.61) (xy 92.71 173.355))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3c8ee9ec-1b72-418a-8080-b50cba02798b)
)
(wire (pts (xy 339.09 97.155) (xy 339.725 97.155))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3cd4da3d-b068-43c2-9dd9-d93ed13f044b)
)
(wire (pts (xy 135.255 133.985) (xy 137.16 133.985))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3d1fe8c8-6caa-406d-9fb0-545c0d552e11)
)
(wire (pts (xy 104.775 169.545) (xy 168.275 169.545))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3d313662-9fa1-44c8-9ac5-2194dd2bc9f0)
)
(wire (pts (xy 377.825 60.325) (xy 378.46 60.325))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3e0fe0b8-8c91-40e4-a7af-242976c27c99)
)
(wire (pts (xy 280.035 181.61) (xy 280.67 181.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3e452e99-c37f-40a9-81fc-8616f0d60368)
)
(wire (pts (xy 328.295 157.48) (xy 328.93 157.48))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f0c46cb-32ed-43cd-af30-0bff35a817f5)
)
(wire (pts (xy 328.295 153.67) (xy 328.93 153.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 41e6cf05-3928-4e3d-b3e8-a3d368d19811)
)
(wire (pts (xy 302.895 53.975) (xy 306.705 53.975))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 45ba8863-cf22-4066-b138-749fb78b9739)
)
(wire (pts (xy 73.66 181.61) (xy 74.295 181.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 461c6896-6f0c-4baa-9679-a91755b4f7cb)
)
(wire (pts (xy 85.09 120.015) (xy 142.24 120.015))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4649a97a-597b-43f8-ba61-922511c05318)
)
(wire (pts (xy 103.505 158.115) (xy 103.505 169.545))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 47085835-ca58-43ac-a093-a08c07c3f6ee)
)
(wire (pts (xy 137.16 114.935) (xy 142.24 114.935))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 47dfb765-38f1-4994-8a34-f3a0149651e0)
)
(wire (pts (xy 81.28 87.63) (xy 83.185 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 482aa861-5fca-4ba5-b8df-f4f60832a449)
)
(wire (pts (xy 73.66 199.39) (xy 74.295 199.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4842624e-c54d-4a50-b534-9851a4e5b8f9)
)
(wire (pts (xy 125.73 66.675) (xy 130.81 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 48828b9a-c484-4895-bf62-db65321b3f5d)
)
(wire (pts (xy 378.46 109.855) (xy 378.46 132.715))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 492f25f0-f9cd-4f98-b1c0-eb1d70fbc6ba)
)
(wire (pts (xy 261.62 122.555) (xy 321.31 122.555))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4b25f0bb-8e89-491a-870b-35687e53594c)
)
(wire (pts (xy 230.505 150.495) (xy 231.14 150.495))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4bd78df0-b4ad-448e-bde8-e3b5be14751a)
)
(wire (pts (xy 189.865 55.88) (xy 190.5 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4c464ba4-24ad-477f-b9dd-914ee513a149)
)
(wire (pts (xy 371.475 163.195) (xy 372.11 163.195))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4c822439-2190-4604-8d64-3845b6550cc5)
)
(wire (pts (xy 398.78 97.155) (xy 400.685 97.155))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4d19baf4-c8d4-4cfe-84b0-866a9936f6f3)
)
(wire (pts (xy 309.245 151.765) (xy 309.88 151.765))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4d1ab872-f8f3-4b56-86c0-5452d8546b68)
)
(wire (pts (xy 17.78 115.57) (xy 40.005 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4e389381-fcf8-4b14-bae3-997e090c5639)
)
(wire (pts (xy 167.64 53.975) (xy 171.45 53.975))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4f8e6f86-9077-491a-9fd4-4e88f0934926)
)
(wire (pts (xy 85.09 120.015) (xy 76.835 120.015))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 50356d2a-abc1-40c2-82c4-2f5ff4fc6ba0)
)
(wire (pts (xy 325.12 59.69) (xy 325.755 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 55dd4f01-7c0b-41cf-b464-b9f3d224de9c)
)
(wire (pts (xy 167.64 61.595) (xy 171.45 61.595))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 576b18c8-c57e-4cdf-86f6-e16e29257136)
)
(wire (pts (xy 307.975 208.915) (xy 307.975 170.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5918c534-9eab-4126-b67c-bb505b46c9c7)
)
(wire (pts (xy 168.275 173.355) (xy 231.14 173.355))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5a683fd3-e5e3-4d8e-a407-16240da56319)
)
(wire (pts (xy 85.09 117.475) (xy 142.24 117.475))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5ad010ec-608a-46f6-ada4-e198781650fe)
)
(wire (pts (xy 186.055 161.925) (xy 188.595 161.925))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5c521d2a-4e3e-49c5-90e5-9842dfd86efc)
)
(wire (pts (xy 309.245 148.59) (xy 309.88 148.59))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5d7a3724-197f-4f3c-83fe-0baac84a31c5)