-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMemory.kicad_sch
1606 lines (1559 loc) · 60.5 KB
/
Memory.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 e5be320f-768e-41af-bb94-3b23a215c8ba)
(paper "A4")
(title_block
(title "MAXI030 - 68030 based expandable computer")
(date "2021-10-02")
(comment 1 "Lawrence Manning")
)
(lib_symbols
(symbol "Aslak:SST39SF040-PC32" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -10.16 26.035 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Value" "Aslak_SST39SF040-PC32" (id 1) (at 2.54 26.035 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Footprint" "w_pth_plcc:plcc32_pth-skt" (id 2) (at 0 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DIP*W15.24mm*" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SST39SF040-PC32_0_0"
(pin power_in line (at 0 -27.94 90) (length 2.54)
(name "VSS" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 27.94 270) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "32" (effects (font (size 1.27 1.27))))
)
)
(symbol "SST39SF040-PC32_0_1"
(rectangle (start -10.16 25.4) (end 10.16 -25.4)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "SST39SF040-PC32_1_1"
(pin input line (at -12.7 -22.86 0) (length 2.54)
(name "A18" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 17.78 0) (length 2.54)
(name "A2" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 20.32 0) (length 2.54)
(name "A1" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 22.86 0) (length 2.54)
(name "A0" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 22.86 180) (length 2.54)
(name "DQ0" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 20.32 180) (length 2.54)
(name "DQ1" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 17.78 180) (length 2.54)
(name "DQ2" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 15.24 180) (length 2.54)
(name "DQ3" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 12.7 180) (length 2.54)
(name "DQ4" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 10.16 180) (length 2.54)
(name "DQ5" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -17.78 0) (length 2.54)
(name "A16" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 7.62 180) (length 2.54)
(name "DQ6" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 5.08 180) (length 2.54)
(name "DQ7" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 -2.54 180) (length 2.54)
(name "CE#" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -2.54 0) (length 2.54)
(name "A10" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 -5.08 180) (length 2.54)
(name "OE#" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -5.08 0) (length 2.54)
(name "A11" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 0 0) (length 2.54)
(name "A9" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 2.54 0) (length 2.54)
(name "A8" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -10.16 0) (length 2.54)
(name "A13" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -12.7 0) (length 2.54)
(name "A14" (effects (font (size 1.27 1.27))))
(number "29" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -15.24 0) (length 2.54)
(name "A15" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -20.32 0) (length 2.54)
(name "A17" (effects (font (size 1.27 1.27))))
(number "30" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 -7.62 180) (length 2.54)
(name "WE#" (effects (font (size 1.27 1.27))))
(number "31" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -7.62 0) (length 2.54)
(name "A12" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 5.08 0) (length 2.54)
(name "A7" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 7.62 0) (length 2.54)
(name "A6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 10.16 0) (length 2.54)
(name "A5" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 12.7 0) (length 2.54)
(name "A4" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 15.24 0) (length 2.54)
(name "A3" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (id 1) (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0.9652 -3.81 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" "cap capacitor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+5VD" (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" "+5VD" (id 1) (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+5VD\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+5VD_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+5VD_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+5VD" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GNDD" (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" "GNDD" (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" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GNDD\" , digital ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GNDD_0_1"
(rectangle (start -1.27 -1.524) (end 1.27 -2.032)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy 0 0)
(xy 0 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GNDD_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GNDD" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 116.84 33.02) (diameter 0) (color 0 0 0 0)
(uuid 3b7c2d36-fed4-4781-8c5b-75948337da95)
)
(junction (at 157.48 132.08) (diameter 0) (color 0 0 0 0)
(uuid 4cb6e1f3-a673-4ee4-abab-26eb693875d2)
)
(junction (at 72.39 91.44) (diameter 0) (color 0 0 0 0)
(uuid 69005a0d-cfd3-4679-9b70-5ed909f1c6f5)
)
(junction (at 72.39 104.14) (diameter 0) (color 0 0 0 0)
(uuid d31f4b01-a06d-4e61-bf90-e0bd4cdfaaf2)
)
(bus_entry (at 173.99 76.2) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 02251133-669f-4085-953d-551a221da0a0)
)
(bus_entry (at 116.84 78.74) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 050f8551-29a2-4f8f-9e7d-928a1d9505b5)
)
(bus_entry (at 173.99 68.58) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 05b94bc3-bced-4346-b1c4-2bb83daa1ce7)
)
(bus_entry (at 173.99 66.04) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0addbd19-696d-4d9d-903d-363527911d24)
)
(bus_entry (at 154.94 68.58) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0b34e33e-e222-486b-9947-85a466d2bb87)
)
(bus_entry (at 212.09 71.12) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 11a656c5-d2a9-4546-8d4f-cc78d7e4fe78)
)
(bus_entry (at 116.84 71.12) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1b17507f-573a-45db-a847-0ce2c56dc05f)
)
(bus_entry (at 116.84 88.9) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1c910c92-537e-49f6-8877-791e45f1b250)
)
(bus_entry (at 173.99 78.74) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 28038ad6-917d-4a11-b584-7c5bacdb1f02)
)
(bus_entry (at 173.99 55.88) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2bae3084-62d4-41a6-92b8-3964b0ffa628)
)
(bus_entry (at 173.99 73.66) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 34eafa46-7b45-424e-8576-a6edfe7579ec)
)
(bus_entry (at 116.84 83.82) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3abdeb51-7a37-4d0b-b56b-51efde14702f)
)
(bus_entry (at 212.09 66.04) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 46f9b272-0fac-4415-b08d-4d833d47d6f3)
)
(bus_entry (at 116.84 60.96) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 471f9b47-6d53-4a48-82e4-1dc5a3fc84cb)
)
(bus_entry (at 173.99 81.28) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4aaa0c0c-e4ee-4eb3-8220-1d97f00707b0)
)
(bus_entry (at 173.99 91.44) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4edab9b6-f480-43df-a908-ec7f653bcc18)
)
(bus_entry (at 154.94 73.66) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4ffa5162-ac0d-40f3-9b80-3e9e232d719e)
)
(bus_entry (at 212.09 63.5) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 516cd272-044b-4cc6-bc92-9a94adeabbcc)
)
(bus_entry (at 173.99 93.98) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 53f3e012-ae38-4a22-9c59-c4065984aed4)
)
(bus_entry (at 173.99 53.34) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 55f3e7a1-8809-42de-a06d-73cd98e50190)
)
(bus_entry (at 154.94 58.42) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 58f4ff23-19ac-4d8a-9b6b-39c016f481e9)
)
(bus_entry (at 212.09 68.58) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 59ece3cb-786e-4487-9626-cb0862a79753)
)
(bus_entry (at 154.94 60.96) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5a4e0797-aa7b-4095-aa17-ad9b6f337373)
)
(bus_entry (at 116.84 81.28) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5cee19b0-a92f-499c-87ae-c74f482b8915)
)
(bus_entry (at 173.99 88.9) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6e4a799a-be5e-41b7-b7ab-4cfd4597ef65)
)
(bus_entry (at 116.84 93.98) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6e9c7c6c-4d38-48b7-863e-7b34dbe70944)
)
(bus_entry (at 116.84 91.44) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6ef6d699-e02a-497c-891c-81503e66901d)
)
(bus_entry (at 173.99 63.5) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 83bcfc95-4055-4e77-afdf-bbd7753feb2c)
)
(bus_entry (at 173.99 83.82) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 84a6447b-8726-4202-966a-a0e1bbcd1800)
)
(bus_entry (at 116.84 58.42) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 85fefe08-3c33-465d-aedd-4b212959b78a)
)
(bus_entry (at 116.84 76.2) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8b4df8f6-6f5f-412d-9f97-6192e4f22160)
)
(bus_entry (at 173.99 71.12) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8d9c0efc-b33e-44d3-b630-22ea151efcec)
)
(bus_entry (at 154.94 63.5) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9066a23c-61d1-43cd-a9fb-4c8bdb389ec0)
)
(bus_entry (at 173.99 99.06) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 917916b2-ba14-47d6-af92-3f208d86225c)
)
(bus_entry (at 116.84 66.04) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a175152c-122a-4c72-8725-19c7f38db37a)
)
(bus_entry (at 116.84 96.52) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a1cda6b0-3340-46b8-a280-1ffbd3785612)
)
(bus_entry (at 116.84 99.06) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b00ffc58-1c9c-40fd-a4d2-0b8f286fd78c)
)
(bus_entry (at 173.99 60.96) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b5212985-26a0-45be-871d-c057f5a30549)
)
(bus_entry (at 116.84 53.34) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b5636a56-ae7b-49c6-8d26-64051ec2833b)
)
(bus_entry (at 154.94 55.88) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b6ebbffd-71c6-411a-bf9b-0c56ec59e852)
)
(bus_entry (at 116.84 63.5) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bb75688c-d6e7-465e-b2d4-37de44c113c3)
)
(bus_entry (at 212.09 60.96) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c1823bc6-76c8-44d6-a866-7f459b341d02)
)
(bus_entry (at 154.94 66.04) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c3574724-9210-4b75-94e4-199896a9933f)
)
(bus_entry (at 173.99 86.36) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c5b8da3e-1802-4c63-8077-08da6113fa13)
)
(bus_entry (at 116.84 86.36) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cd3a57a1-f7ea-4d1b-b66b-f6a3e18b6417)
)
(bus_entry (at 116.84 68.58) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d06b839b-59c8-4258-9de3-1d3df43a0c51)
)
(bus_entry (at 212.09 58.42) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e42e9f5d-fd37-4637-9007-56709d42c90f)
)
(bus_entry (at 154.94 71.12) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e4687fdb-29df-4bc1-9081-5e8e7eceb3f8)
)
(bus_entry (at 173.99 96.52) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e4a9eb06-6209-4b9c-8033-383caaffe8c9)
)
(bus_entry (at 173.99 58.42) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e9783b3d-77c3-41c1-8b6c-c2afd4672fa2)
)
(bus_entry (at 212.09 73.66) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ea4c9f90-c6ad-4536-8a9f-edd8e26c0fb2)
)
(bus_entry (at 116.84 73.66) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid eb66f5c7-08fb-480b-b81e-8e568d865d27)
)
(bus_entry (at 212.09 55.88) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f6fe996e-1417-4f3f-8277-7333a7ce19f9)
)
(bus_entry (at 116.84 55.88) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fe1c1e7e-0f13-498b-90a3-2a65a2b05840)
)
(wire (pts (xy 176.53 99.06) (xy 181.61 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 00c42f8d-4076-4ad2-aba2-7383c98c85bb)
)
(wire (pts (xy 181.61 78.74) (xy 176.53 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 017a5634-6862-4e92-8921-16ab0e31542d)
)
(wire (pts (xy 72.39 104.14) (xy 72.39 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 036ab44f-e2a4-467b-a4ff-25bae0ed8567)
)
(bus (pts (xy 173.99 58.42) (xy 173.99 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 03cb76a9-1a9b-45f4-a265-e3710ae751c5)
)
(bus (pts (xy 116.84 86.36) (xy 116.84 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0773173d-af12-43a2-8768-b50baf868073)
)
(bus (pts (xy 116.84 33.02) (xy 116.84 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0855ecb0-ea27-464a-9ea2-5c0d6f581886)
)
(bus (pts (xy 116.84 76.2) (xy 116.84 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 09570594-4cf6-4115-b861-597a3b592e5e)
)
(wire (pts (xy 181.61 83.82) (xy 176.53 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0b24e82d-4e6f-492f-8837-57ae658d3c50)
)
(wire (pts (xy 149.86 86.36) (xy 161.29 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0c49cdb8-9419-4cf6-859f-f5f721837fed)
)
(wire (pts (xy 181.61 76.2) (xy 176.53 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0c67abd7-cb1e-4be3-a6da-e6debf2a4d5c)
)
(bus (pts (xy 173.99 76.2) (xy 173.99 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0cecc9ca-fe98-4ebe-904b-9bddb53d33a4)
)
(wire (pts (xy 149.86 55.88) (xy 154.94 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0eaaddf2-4de2-41f6-83ce-1cf2c872faf1)
)
(bus (pts (xy 157.48 58.42) (xy 157.48 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 11ca91b0-742d-4789-97c7-45f1315a3b94)
)
(wire (pts (xy 124.46 60.96) (xy 119.38 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 12cfc32b-3127-4a91-bf40-b1c82309bfdb)
)
(wire (pts (xy 72.39 88.9) (xy 72.39 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 133ff75e-f62e-4a47-9a52-fa9390050861)
)
(bus (pts (xy 116.84 88.9) (xy 116.84 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 14fd3f2a-30fc-47ee-8576-c4046e9fd1be)
)
(bus (pts (xy 116.84 81.28) (xy 116.84 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 16faa16d-4d79-4e53-a706-78c98698288c)
)
(wire (pts (xy 181.61 63.5) (xy 176.53 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 194ac333-3f8a-4bae-af45-e080029b3586)
)
(wire (pts (xy 149.86 73.66) (xy 154.94 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 19a4bf92-d5c3-4b2d-b8d2-5f6a5150e2d7)
)
(wire (pts (xy 124.46 83.82) (xy 119.38 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1b3c2607-fbbb-4d24-a576-e0ebbcbde843)
)
(wire (pts (xy 181.61 71.12) (xy 176.53 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1b7be23f-7245-4681-bce9-6afa5bf340a1)
)
(wire (pts (xy 149.86 81.28) (xy 161.29 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1c1dacfa-9c52-4fe2-a89f-bc6d279b00d1)
)
(wire (pts (xy 124.46 63.5) (xy 119.38 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1dbd0b96-9748-49d9-ace4-746104fb362a)
)
(bus (pts (xy 214.63 73.66) (xy 214.63 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1edc3a0b-b695-44c0-9bce-777c09cb6c71)
)
(wire (pts (xy 124.46 91.44) (xy 119.38 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 28458f88-8920-4144-9c1d-59e26078e0bc)
)
(wire (pts (xy 72.39 101.6) (xy 72.39 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 28fd415e-9882-4c4f-b88e-77a4d37fe9a6)
)
(wire (pts (xy 181.61 91.44) (xy 176.53 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 29f51fac-f58f-412c-adb2-82e58ca0c61a)
)
(wire (pts (xy 149.86 58.42) (xy 154.94 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2d950f7b-3815-4500-9a4b-9c4fca37f41b)
)
(wire (pts (xy 149.86 68.58) (xy 154.94 68.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2de77f84-c9e7-4c05-8ce2-44f478cf232f)
)
(wire (pts (xy 124.46 58.42) (xy 119.38 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2f6d84ad-d63d-4741-85f1-4e83d421211a)
)
(wire (pts (xy 181.61 86.36) (xy 176.53 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2f72f993-2b3e-4cdf-950d-abd6192f54ed)
)
(bus (pts (xy 157.48 132.08) (xy 214.63 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 30f85b7e-6649-41f7-9dde-6ba79894024d)
)
(wire (pts (xy 207.01 55.88) (xy 212.09 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 311caf9e-f4ce-4e66-8b4c-7b1ee11f5d9b)
)
(wire (pts (xy 207.01 66.04) (xy 212.09 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 352be23d-1455-4da6-b8b2-9915600dab2d)
)
(wire (pts (xy 181.61 88.9) (xy 176.53 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 369761e3-6a57-4891-a4a8-3189c581e238)
)
(bus (pts (xy 116.84 33.02) (xy 173.99 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 36f380ae-20bc-439b-b79b-94bed52abe8c)
)
(bus (pts (xy 116.84 66.04) (xy 116.84 68.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 39af3433-fe9d-4c27-83bf-aa7dc8c96082)
)
(bus (pts (xy 157.48 71.12) (xy 157.48 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3a176d22-cf70-4bd6-a98d-9c9447cf4788)
)
(bus (pts (xy 199.39 142.24) (xy 209.55 142.24))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3a313157-d4e2-437d-a886-dceff71219c9)
)
(bus (pts (xy 214.63 58.42) (xy 214.63 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3a86c995-ad85-44f8-acb6-c2e11dd21cc9)
)
(wire (pts (xy 137.16 106.68) (xy 137.16 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3b94cf05-55a4-491f-8c86-5e26fdcac11e)
)
(wire (pts (xy 124.46 86.36) (xy 119.38 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3d604cb5-bf3f-48b6-8974-6ba9784bf2e4)
)
(bus (pts (xy 116.84 55.88) (xy 116.84 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f2ff030-0731-40a5-89cc-e0e7e5aff9ff)
)
(wire (pts (xy 181.61 60.96) (xy 176.53 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 407c0f8c-4806-4817-a75f-1617d04ff379)
)
(wire (pts (xy 119.38 101.6) (xy 124.46 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 455ea1ed-d21d-4a90-a782-de8ed40a2615)
)
(bus (pts (xy 173.99 60.96) (xy 173.99 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4604ce29-6eec-4ecd-952b-098d889ab553)
)
(wire (pts (xy 207.01 63.5) (xy 212.09 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 48229a34-3e29-47b5-9710-a654cef82812)
)
(bus (pts (xy 173.99 88.9) (xy 173.99 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4f551cf6-16cc-4bb4-9d7d-2a098dd11229)
)
(wire (pts (xy 176.53 96.52) (xy 181.61 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 509521ce-48d4-4536-9e26-9a84698af8db)
)
(bus (pts (xy 116.84 78.74) (xy 116.84 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 54049f71-c41d-4c4d-a53b-5894933e0062)
)
(wire (pts (xy 149.86 83.82) (xy 161.29 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 55981b38-bf61-4654-8b06-470204402dee)
)
(wire (pts (xy 137.16 50.8) (xy 137.16 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 575f0665-12c3-471f-82b6-91fc26489cb4)
)
(wire (pts (xy 176.53 101.6) (xy 181.61 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 59dd1203-209e-43da-bcfa-b2bc72b76ad9)
)
(wire (pts (xy 124.46 55.88) (xy 119.38 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5b8a4b67-cffe-429e-8a0a-476e9f54296c)
)
(wire (pts (xy 72.39 91.44) (xy 78.74 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5c4b21ab-b39d-4431-9b5b-43a95668f2ee)
)
(bus (pts (xy 116.84 71.12) (xy 116.84 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5dd1900d-a159-4e86-b73f-c8f6471821d3)
)
(wire (pts (xy 149.86 71.12) (xy 154.94 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5e591343-9a95-48b4-9cea-3ff2c3ada56d)
)
(wire (pts (xy 149.86 60.96) (xy 154.94 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5e858319-23df-4271-83f1-5f35e3a9b9d7)
)
(wire (pts (xy 124.46 68.58) (xy 119.38 68.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5fb8646a-8160-45f9-9786-670008cfdb24)
)
(bus (pts (xy 173.99 91.44) (xy 173.99 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 61150c2d-5c81-4b07-9590-1f8b7685d499)
)
(bus (pts (xy 173.99 96.52) (xy 173.99 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6179edbc-20a5-4502-951d-14ad33d2ba83)
)
(wire (pts (xy 181.61 55.88) (xy 176.53 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 61ba1614-9c38-474c-9be2-11869fd925b5)
)
(bus (pts (xy 173.99 55.88) (xy 173.99 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 68d412b5-7d92-451d-8942-e82df81c35d5)
)
(wire (pts (xy 181.61 68.58) (xy 176.53 68.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6f78a7c5-4a47-4191-9b0b-be234e7a0073)
)
(wire (pts (xy 124.46 81.28) (xy 119.38 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6fa18b9d-c164-457a-ab4e-8fed80b01ce9)
)
(wire (pts (xy 78.74 101.6) (xy 78.74 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 72ab2599-2c6c-4329-90b7-65b786fb65c3)
)
(wire (pts (xy 124.46 66.04) (xy 119.38 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 785f469f-1a2a-48e5-b19c-3dcd06b061fd)
)
(bus (pts (xy 173.99 83.82) (xy 173.99 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 786a58b8-2ebf-412a-80d2-aae3c4457845)
)
(wire (pts (xy 149.86 63.5) (xy 154.94 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 79950e87-1426-4a3b-8ec3-ec855c128456)
)
(wire (pts (xy 124.46 78.74) (xy 119.38 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 79b87d24-8a61-479c-aa12-8042d9a04067)
)
(wire (pts (xy 194.31 50.8) (xy 194.31 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7ae3df9d-5f56-41a1-bdda-e94a3d6ec7b4)
)
(bus (pts (xy 116.84 91.44) (xy 116.84 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7b4a9461-1be2-41eb-8431-48da00a58109)
)
(bus (pts (xy 116.84 68.58) (xy 116.84 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7ef5ed8b-dc9e-4a29-8b64-db5379dc2295)
)
(bus (pts (xy 214.63 60.96) (xy 214.63 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 817236c5-4e20-4ffd-91f1-11b8661965cf)
)
(bus (pts (xy 214.63 68.58) (xy 214.63 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 83816fee-68ed-4885-bef6-1178648e8534)
)
(wire (pts (xy 124.46 88.9) (xy 119.38 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 85fb18ac-31e8-44a0-a694-de4d574635a1)
)
(bus (pts (xy 116.84 96.52) (xy 116.84 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 86c5e103-e73a-45ef-b94b-dd2f74f7eb73)
)
(bus (pts (xy 116.84 83.82) (xy 116.84 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 86faed15-89e6-4e61-99ce-c8cdcaecf04a)
)
(bus (pts (xy 116.84 58.42) (xy 116.84 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 895ca5b3-253f-4bf7-8134-239a3aee8f6b)
)
(bus (pts (xy 116.84 53.34) (xy 116.84 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 93bbed06-7333-4bef-9684-d0e78c4f1a69)
)
(wire (pts (xy 78.74 93.98) (xy 78.74 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 960d6e17-812c-4d1b-9eb2-01a7b0e9d678)
)
(bus (pts (xy 173.99 66.04) (xy 173.99 68.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9a1e219e-928d-4ec0-89f0-595babee3fc1)
)
(bus (pts (xy 173.99 81.28) (xy 173.99 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9ad11e90-ae9f-4cdf-9ed6-7d7aee3eda8e)
)
(wire (pts (xy 181.61 81.28) (xy 176.53 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9d3af17a-369c-4aba-b04a-69cfe5ebfe18)
)
(wire (pts (xy 181.61 73.66) (xy 176.53 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a0157537-2a6c-44b4-8f88-420b98168270)
)
(bus (pts (xy 157.48 60.96) (xy 157.48 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a2eca1d5-65ec-4017-b96c-a59732b06586)
)
(wire (pts (xy 207.01 83.82) (xy 218.44 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a4349dec-c37f-462c-81c7-1dccc259d624)
)
(wire (pts (xy 207.01 71.12) (xy 212.09 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ac31d29e-018b-4524-97c1-1f99cfbf8cbb)
)
(wire (pts (xy 119.38 99.06) (xy 124.46 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid adbf0119-eb85-4883-ac57-6e3384b15ab7)
)
(bus (pts (xy 173.99 78.74) (xy 173.99 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid af5c20f7-99e2-4147-bdeb-1669533ab842)
)
(bus (pts (xy 173.99 63.5) (xy 173.99 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b254df05-4da0-40a1-85df-ce7820a819a2)
)
(bus (pts (xy 214.63 76.2) (xy 214.63 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b94395f3-46c4-41dc-8bb8-333303de7637)
)
(wire (pts (xy 207.01 86.36) (xy 218.44 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bb76c8d8-7fb9-49c4-910c-4c5d3e030c4f)
)
(bus (pts (xy 214.63 63.5) (xy 214.63 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bc7769d8-9bdd-4aed-931a-8bcf56890ab1)
)
(bus (pts (xy 214.63 71.12) (xy 214.63 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bcf04560-8d0a-4178-ad45-25c8d48e2d81)
)
(bus (pts (xy 173.99 73.66) (xy 173.99 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bd45c49e-60c4-48e7-a28f-098912e39c0e)
)
(wire (pts (xy 207.01 81.28) (xy 218.44 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bef8d06a-05ef-4998-a1ad-a79838826674)
)
(wire (pts (xy 149.86 66.04) (xy 154.94 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bf6d44f3-0588-4f5e-845f-2bee97f852cd)
)
(wire (pts (xy 119.38 93.98) (xy 124.46 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c01877d5-a226-42cf-9173-4a3bf9193760)
)
(bus (pts (xy 173.99 86.36) (xy 173.99 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c19e604c-bb05-446b-bc73-c36f46953ff7)
)
(wire (pts (xy 72.39 91.44) (xy 72.39 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c238f3f4-73dd-4406-afeb-628845008660)
)
(bus (pts (xy 173.99 93.98) (xy 173.99 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c3b85870-54f9-4eef-8f66-bd353ae980cf)
)
(bus (pts (xy 157.48 73.66) (xy 157.48 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c44448ec-4d2d-423d-a4c4-eebe8d50cefb)
)
(wire (pts (xy 124.46 71.12) (xy 119.38 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c456059e-85d2-4134-be83-cfec42d2afdc)
)
(bus (pts (xy 157.48 66.04) (xy 157.48 68.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c89c32ad-2855-4736-9ce4-15ed612f230d)
)
(wire (pts (xy 124.46 73.66) (xy 119.38 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c8bb35df-8e75-4d32-9333-7fd95a85d05e)
)
(bus (pts (xy 173.99 53.34) (xy 173.99 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ca43d428-7f77-4e5f-8991-202a03f27af4)
)
(wire (pts (xy 124.46 76.2) (xy 119.38 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ccc42c8a-3fdf-450a-a50a-13fc7c17bc44)
)