-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathI2C 24 GPIO.kicad_sch
2972 lines (2908 loc) · 107 KB
/
I2C 24 GPIO.kicad_sch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_sch (version 20230121) (generator eeschema)
(uuid 36b4b911-b189-47d4-9b9d-1e85553ebccf)
(paper "A4")
(lib_symbols
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (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))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(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 "Device:R_US" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R_US" (at -2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 1.016 -0.254 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, US symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_US_0_1"
(polyline
(pts
(xy 0 -2.286)
(xy 0 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.286)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 -0.762)
(xy 1.016 -1.143)
(xy 0 -1.524)
(xy -1.016 -1.905)
(xy 0 -2.286)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0.762)
(xy 1.016 0.381)
(xy 0 0)
(xy -1.016 -0.381)
(xy 0 -0.762)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.286)
(xy 1.016 1.905)
(xy 0 1.524)
(xy -1.016 1.143)
(xy 0 0.762)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "R_US_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(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 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "I2C Expander:TCA6424ARGJR" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at 0 2.54 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "TCA6424ARGJR" (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "RGJ0032A" (at 0 0 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "Datasheet" "TCA6424ARGJR" (at 0 0 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_keywords" "TCA6424ARGJR" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "RGJ0032A" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TCA6424ARGJR_0_1"
(polyline
(pts
(xy -15.24 -35.56)
(xy 15.24 -35.56)
)
(stroke (width 0.1016) (type default))
(fill (type none))
)
(polyline
(pts
(xy -15.24 35.56)
(xy -15.24 -35.56)
)
(stroke (width 0.1016) (type default))
(fill (type none))
)
(polyline
(pts
(xy 15.24 -35.56)
(xy 15.24 35.56)
)
(stroke (width 0.1016) (type default))
(fill (type none))
)
(polyline
(pts
(xy 15.24 35.56)
(xy -15.24 35.56)
)
(stroke (width 0.1016) (type default))
(fill (type none))
)
(pin bidirectional line (at 20.32 22.86 180) (length 5.08)
(name "P00" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 20.32 -5.08 180) (length 5.08)
(name "P11" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 20.32 -7.62 180) (length 5.08)
(name "P12" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 20.32 -10.16 180) (length 5.08)
(name "P13" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 20.32 -12.7 180) (length 5.08)
(name "P14" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 20.32 -15.24 180) (length 5.08)
(name "P15" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 20.32 -17.78 180) (length 5.08)
(name "P16" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 20.32 -20.32 180) (length 5.08)
(name "P17" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -20.32 -15.24 0) (length 5.08)
(name "P20" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -20.32 -12.7 0) (length 5.08)
(name "P21" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -20.32 -10.16 0) (length 5.08)
(name "P22" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 20.32 17.78 180) (length 5.08)
(name "P01" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -20.32 -7.62 0) (length 5.08)
(name "P23" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -20.32 -5.08 0) (length 5.08)
(name "P24" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -20.32 -2.54 0) (length 5.08)
(name "P25" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -20.32 0 0) (length 5.08)
(name "P26" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -20.32 2.54 0) (length 5.08)
(name "P27" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 20.32 -25.4 180) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin input line (at -20.32 -20.32 0) (length 5.08)
(name "ADDR" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 20.32 30.48 180) (length 5.08)
(name "VCCP" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin input line (at -20.32 12.7 0) (length 5.08)
(name "RESET_N" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin input line (at -20.32 20.32 0) (length 5.08)
(name "SCL" (effects (font (size 1.27 1.27))))
(number "29" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 20.32 12.7 180) (length 5.08)
(name "P02" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -20.32 17.78 0) (length 5.08)
(name "SDA" (effects (font (size 1.27 1.27))))
(number "30" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -20.32 30.48 0) (length 5.08)
(name "VCCI" (effects (font (size 1.27 1.27))))
(number "31" (effects (font (size 1.27 1.27))))
)
(pin output line (at -20.32 15.24 0) (length 5.08)
(name "INT_N" (effects (font (size 1.27 1.27))))
(number "32" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 20.32 -30.48 180) (length 5.08)
(name "PAD" (effects (font (size 1.27 1.27))))
(number "33" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 20.32 10.16 180) (length 5.08)
(name "P03" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 20.32 7.62 180) (length 5.08)
(name "P04" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 20.32 5.08 180) (length 5.08)
(name "P05" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 20.32 2.54 180) (length 5.08)
(name "P06" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 20.32 0 180) (length 5.08)
(name "P07" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 20.32 -2.54 180) (length 5.08)
(name "P10" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default))
(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))))
)
)
)
)
(junction (at 171.45 69.215) (diameter 0) (color 0 0 0 0)
(uuid 031a5ed1-5f07-4f9b-a48a-2fa7dfce38e2)
)
(junction (at 266.7 104.775) (diameter 0) (color 0 0 0 0)
(uuid 06ec7e3b-47f1-4d3b-8c4d-c1a424b0bcb1)
)
(junction (at 164.465 64.135) (diameter 0) (color 0 0 0 0)
(uuid 072fac4b-365d-4598-acf0-91668890044d)
)
(junction (at 59.055 92.075) (diameter 0) (color 0 0 0 0)
(uuid 0be2d706-99b9-40ae-b40a-daec1977e07a)
)
(junction (at 252.095 99.695) (diameter 0) (color 0 0 0 0)
(uuid 0cb74fd6-87a1-4717-915c-37afe560b4f7)
)
(junction (at 104.775 48.895) (diameter 0) (color 0 0 0 0)
(uuid 24bc1dd2-f06a-4349-a863-c8379263bf89)
)
(junction (at 193.675 79.375) (diameter 0) (color 0 0 0 0)
(uuid 260bc628-347f-4bde-a583-3c181410339d)
)
(junction (at 63.5 71.755) (diameter 0) (color 0 0 0 0)
(uuid 2c510546-1cda-4dce-b538-8ceac0574fa9)
)
(junction (at 74.93 86.995) (diameter 0) (color 0 0 0 0)
(uuid 39524df2-9650-4ce0-9d1b-4da44fa74e2d)
)
(junction (at 237.49 94.615) (diameter 0) (color 0 0 0 0)
(uuid 4170fb30-9924-4c89-845a-9b575f87fcca)
)
(junction (at 179.07 74.295) (diameter 0) (color 0 0 0 0)
(uuid 4519c861-37b6-4267-b0c1-c0f455c5f59b)
)
(junction (at 208.28 84.455) (diameter 0) (color 0 0 0 0)
(uuid 4ab34b5f-83ac-4cac-916a-4991242c3f4d)
)
(junction (at 82.55 84.455) (diameter 0) (color 0 0 0 0)
(uuid 535902fd-c511-4d0d-bc2e-e920df5acd67)
)
(junction (at 186.055 76.835) (diameter 0) (color 0 0 0 0)
(uuid 65599c92-e615-4af7-ac10-d3b5c4481d06)
)
(junction (at 151.13 117.475) (diameter 0) (color 0 0 0 0)
(uuid 6682fa3d-a684-4ad3-b835-f724a0db5545)
)
(junction (at 55.88 74.295) (diameter 0) (color 0 0 0 0)
(uuid 66b6bee0-023c-40ea-b4b8-741fd4868b9a)
)
(junction (at 66.675 89.535) (diameter 0) (color 0 0 0 0)
(uuid 66c00c61-fc15-41f1-bc33-5ef95d17c6ca)
)
(junction (at 200.66 81.915) (diameter 0) (color 0 0 0 0)
(uuid 783f503b-87a0-4b7d-b5db-1a8742135404)
)
(junction (at 146.685 29.845) (diameter 0) (color 0 0 0 0)
(uuid 7a09d0ce-8858-45dc-b76d-a3473fbbe9a1)
)
(junction (at 215.265 86.995) (diameter 0) (color 0 0 0 0)
(uuid 7d72205d-2f24-4c59-a955-6cd30d993d9a)
)
(junction (at 35.56 99.695) (diameter 0) (color 0 0 0 0)
(uuid 968f8f00-cb82-48ea-8bb6-07d823923656)
)
(junction (at 27.94 102.235) (diameter 0) (color 0 0 0 0)
(uuid 9ac9f67f-7c1e-46b0-aadc-e700a49238d1)
)
(junction (at 50.8 94.615) (diameter 0) (color 0 0 0 0)
(uuid b37adef7-ee03-4c2b-b80e-69e2a3067f32)
)
(junction (at 259.08 102.235) (diameter 0) (color 0 0 0 0)
(uuid b491f20f-a354-4adb-9752-9b751b09b72a)
)
(junction (at 244.475 97.155) (diameter 0) (color 0 0 0 0)
(uuid c2d188d9-fef9-4468-a110-6577c12222a6)
)
(junction (at 222.885 89.535) (diameter 0) (color 0 0 0 0)
(uuid d76e070c-e170-4292-9343-b436ad6e4b98)
)
(junction (at 273.685 107.315) (diameter 0) (color 0 0 0 0)
(uuid e3ffaf22-e4be-44c0-9c5e-d49589cdcc3e)
)
(junction (at 229.87 92.075) (diameter 0) (color 0 0 0 0)
(uuid f86b5dd4-499c-4fa4-9a21-ebf400016de9)
)
(junction (at 43.18 97.155) (diameter 0) (color 0 0 0 0)
(uuid fbe32cc2-bb68-407f-85c3-ad8d30753393)
)
(wire (pts (xy 43.18 97.155) (xy 43.18 107.315))
(stroke (width 0) (type default))
(uuid 042bb9de-01ec-4c75-a1cf-bceefcbc2a2f)
)
(wire (pts (xy 164.465 58.42) (xy 164.465 64.135))
(stroke (width 0) (type default))
(uuid 05ecb695-6b19-4b7a-a597-d25047124443)
)
(wire (pts (xy 104.775 47.625) (xy 104.775 48.895))
(stroke (width 0) (type default))
(uuid 0744acb9-7e6d-4b6c-b402-586540b26da5)
)
(wire (pts (xy 151.13 117.475) (xy 151.13 112.395))
(stroke (width 0) (type default))
(uuid 0a2fb4da-c657-46de-999b-b54921a4f936)
)
(wire (pts (xy 59.055 92.075) (xy 59.055 107.315))
(stroke (width 0) (type default))
(uuid 0da985d8-80d8-4402-a96f-29fb825d69e2)
)
(wire (pts (xy 229.87 48.26) (xy 229.87 50.8))
(stroke (width 0) (type default))
(uuid 0eabf291-253d-4e90-b1d5-bc73b652b734)
)
(wire (pts (xy 222.885 89.535) (xy 278.765 89.535))
(stroke (width 0) (type default))
(uuid 0f38066c-762d-480e-818e-4c733471cb87)
)
(wire (pts (xy 252.095 58.42) (xy 252.095 99.695))
(stroke (width 0) (type default))
(uuid 0fe2c037-ff9c-4e00-9bec-c6da4bf4c63a)
)
(wire (pts (xy 52.07 71.755) (xy 63.5 71.755))
(stroke (width 0) (type default))
(uuid 14337c93-8012-43b6-aa3d-f66f458b15ff)
)
(wire (pts (xy 35.56 99.695) (xy 96.52 99.695))
(stroke (width 0) (type default))
(uuid 14f81314-7667-460b-aeaa-23a10986a52b)
)
(wire (pts (xy 156.21 99.695) (xy 252.095 99.695))
(stroke (width 0) (type default))
(uuid 168ae72d-9b93-42cc-9e7e-922ac0162c7b)
)
(wire (pts (xy 208.28 84.455) (xy 278.765 84.455))
(stroke (width 0) (type default))
(uuid 1994ed0d-b5b2-4080-a33c-116a4817a17c)
)
(wire (pts (xy 156.21 107.315) (xy 273.685 107.315))
(stroke (width 0) (type default))
(uuid 19d08c67-709d-49b2-9754-04cf85676c1b)
)
(wire (pts (xy 43.18 97.155) (xy 96.52 97.155))
(stroke (width 0) (type default))
(uuid 1aaf99ba-9c85-4d08-b087-7f5d64638456)
)
(wire (pts (xy 146.685 94.615) (xy 148.59 94.615))
(stroke (width 0) (type default))
(uuid 1c08a660-cad4-4bc7-a46a-1970ca4bbc75)
)
(wire (pts (xy 82.55 84.455) (xy 82.55 107.315))
(stroke (width 0) (type default))
(uuid 1d950ec4-7929-405d-bc2f-48d228004b0b)
)
(wire (pts (xy 43.18 117.475) (xy 43.18 114.935))
(stroke (width 0) (type default))
(uuid 21a605cb-2f7d-427b-82dc-8386e5f13168)
)
(wire (pts (xy 156.21 86.995) (xy 215.265 86.995))
(stroke (width 0) (type default))
(uuid 223aec69-156a-4991-b0f2-4f4b4428a7c3)
)
(wire (pts (xy 146.685 29.845) (xy 146.685 56.515))
(stroke (width 0) (type default))
(uuid 23078ed4-766f-48b3-bd86-f288b4b6c352)
)
(wire (pts (xy 146.685 102.235) (xy 148.59 102.235))
(stroke (width 0) (type default))
(uuid 25173809-d54e-4f7f-b656-60cf1bad92f9)
)
(wire (pts (xy 104.775 48.895) (xy 104.775 56.515))
(stroke (width 0) (type default))
(uuid 25e67fb5-bb2f-4d82-be06-c40ca6bef927)
)
(wire (pts (xy 171.45 58.42) (xy 171.45 69.215))
(stroke (width 0) (type default))
(uuid 25ee356a-09e6-4ee3-aa32-7e597ac5e6bb)
)
(wire (pts (xy 193.675 48.26) (xy 193.675 50.8))
(stroke (width 0) (type default))
(uuid 271224b6-85da-43b1-a747-f67102e73997)
)
(wire (pts (xy 52.07 74.295) (xy 55.88 74.295))
(stroke (width 0) (type default))
(uuid 2821fd5b-05bf-488f-94de-b1d6738291c6)
)
(wire (pts (xy 156.21 79.375) (xy 193.675 79.375))
(stroke (width 0) (type default))
(uuid 307123ae-6848-420f-b610-2ee73118c093)
)
(wire (pts (xy 244.475 97.155) (xy 278.765 97.155))
(stroke (width 0) (type default))
(uuid 3215e3f2-d04e-482d-8884-89438026b840)
)
(wire (pts (xy 259.08 102.235) (xy 278.765 102.235))
(stroke (width 0) (type default))
(uuid 33b10c0a-5581-4ed9-bd80-7b3705388981)
)
(wire (pts (xy 66.675 117.475) (xy 66.675 114.935))
(stroke (width 0) (type default))
(uuid 360a4935-3efd-4113-9665-2f13e3022b65)
)
(wire (pts (xy 156.21 89.535) (xy 222.885 89.535))
(stroke (width 0) (type default))
(uuid 363fc44e-4a47-48cf-b68d-854f3f05b89c)
)
(wire (pts (xy 52.07 66.675) (xy 106.045 66.675))
(stroke (width 0) (type default))
(uuid 37f5070f-263e-4186-8974-fa265bf32891)
)
(wire (pts (xy 21.59 84.455) (xy 82.55 84.455))
(stroke (width 0) (type default))
(uuid 3989d67b-eb4a-492a-a5ef-1981eadb6eee)
)
(wire (pts (xy 273.685 107.315) (xy 278.765 107.315))
(stroke (width 0) (type default))
(uuid 3a1826a6-1ce7-476e-9872-5e0a91ad9a7a)
)
(wire (pts (xy 59.055 92.075) (xy 96.52 92.075))
(stroke (width 0) (type default))
(uuid 3b5b8db2-1dc7-4469-bf8d-3f50c3b4888e)
)
(wire (pts (xy 156.21 76.835) (xy 186.055 76.835))
(stroke (width 0) (type default))
(uuid 3cf37727-d8ef-47d5-91bf-538ae7f077ad)
)
(wire (pts (xy 156.21 81.915) (xy 200.66 81.915))
(stroke (width 0) (type default))
(uuid 3d07ff31-68fd-466b-b233-68bb63622fad)
)
(wire (pts (xy 55.88 74.295) (xy 106.045 74.295))
(stroke (width 0) (type default))
(uuid 3d9847b5-0811-4b8b-9068-0ec5751bff10)
)
(wire (pts (xy 154.94 29.845) (xy 146.685 29.845))
(stroke (width 0) (type default))
(uuid 3faff3a5-4531-49cb-a708-06395f2a1bf4)
)
(wire (pts (xy 52.07 69.215) (xy 106.045 69.215))
(stroke (width 0) (type default))
(uuid 4030afef-bc09-4a04-9f24-6d41d48878df)
)
(wire (pts (xy 154.94 39.37) (xy 154.94 38.1))
(stroke (width 0) (type default))
(uuid 4303b90a-d7b9-4c66-b474-9d06be8f7bc4)
)
(wire (pts (xy 35.56 99.695) (xy 35.56 107.315))
(stroke (width 0) (type default))
(uuid 44f794a7-2c68-4128-b486-c7b75a394f91)
)
(wire (pts (xy 193.675 58.42) (xy 193.675 79.375))
(stroke (width 0) (type default))
(uuid 472ebb22-c76c-4ab8-9f1e-8bbbd8c6589d)
)
(wire (pts (xy 171.45 69.215) (xy 278.765 69.215))
(stroke (width 0) (type default))
(uuid 47c52ba7-0e46-4f78-a171-b37228536fe0)
)
(wire (pts (xy 146.685 81.915) (xy 148.59 81.915))
(stroke (width 0) (type default))
(uuid 49e91cd2-f239-4dca-8cea-ffcde48bc5c3)
)
(wire (pts (xy 21.59 92.075) (xy 59.055 92.075))
(stroke (width 0) (type default))
(uuid 4a20363a-1122-4253-b7e5-7b46d82bf4af)
)
(wire (pts (xy 146.685 79.375) (xy 148.59 79.375))
(stroke (width 0) (type default))
(uuid 4aec3b6a-4f81-48de-a8c6-6fbb85452040)
)
(wire (pts (xy 74.93 86.995) (xy 96.52 86.995))
(stroke (width 0) (type default))
(uuid 4bee454f-e396-4793-8be3-a20f7a4eb2d5)
)
(wire (pts (xy 208.28 48.26) (xy 208.28 50.8))
(stroke (width 0) (type default))
(uuid 4d2c73e0-9f62-46ba-870c-6673b002aa64)
)
(wire (pts (xy 146.685 99.695) (xy 148.59 99.695))
(stroke (width 0) (type default))
(uuid 4faf2dfa-9574-44b8-8e43-d1254d848666)
)
(wire (pts (xy 179.07 58.42) (xy 179.07 74.295))
(stroke (width 0) (type default))
(uuid 5246246b-74d9-4d7c-8e0f-f6602f4b10ac)
)
(wire (pts (xy 266.7 58.42) (xy 266.7 104.775))
(stroke (width 0) (type default))
(uuid 5272d269-d2cb-4c30-b5ab-08b38d1e6dc2)
)
(wire (pts (xy 193.675 79.375) (xy 278.765 79.375))
(stroke (width 0) (type default))
(uuid 5407c1bc-18f2-41d9-bf0e-7ed3cbe442b5)
)
(wire (pts (xy 21.59 89.535) (xy 66.675 89.535))
(stroke (width 0) (type default))
(uuid 5a48b59e-70de-4e4e-a347-069c73b787aa)
)
(wire (pts (xy 106.045 102.235) (xy 104.14 102.235))
(stroke (width 0) (type default))
(uuid 5c10cdeb-8428-4765-81c0-778f9fc5ad09)
)
(wire (pts (xy 156.21 102.235) (xy 259.08 102.235))
(stroke (width 0) (type default))
(uuid 5ca0a788-a6f1-41b6-a90d-999f8b3baa23)
)
(wire (pts (xy 63.5 71.755) (xy 106.045 71.755))
(stroke (width 0) (type default))
(uuid 5d780fdf-6768-4a8d-a333-4c3f761fdb83)
)
(wire (pts (xy 50.8 94.615) (xy 96.52 94.615))
(stroke (width 0) (type default))
(uuid 5de3f47e-2981-47d4-8256-6f0c2c117166)
)
(wire (pts (xy 146.685 92.075) (xy 148.59 92.075))
(stroke (width 0) (type default))
(uuid 62c1d3e5-70df-49a8-99f9-0d7bee9e548d)
)
(wire (pts (xy 222.885 58.42) (xy 222.885 89.535))
(stroke (width 0) (type default))
(uuid 63d59e40-ff99-497e-b418-d41324dd58fe)
)
(wire (pts (xy 27.94 102.235) (xy 27.94 107.315))
(stroke (width 0) (type default))
(uuid 6d03ee08-a6d8-479e-bf23-4f0ac2a43e52)
)
(wire (pts (xy 156.21 94.615) (xy 237.49 94.615))
(stroke (width 0) (type default))
(uuid 7184573f-7438-489d-8a95-24108d3f2d10)
)
(wire (pts (xy 21.59 97.155) (xy 43.18 97.155))
(stroke (width 0) (type default))
(uuid 7452e972-6b03-4992-b3eb-4d7aa05b38db)
)
(wire (pts (xy 146.685 97.155) (xy 148.59 97.155))
(stroke (width 0) (type default))
(uuid 74b5f5fb-abf7-456d-bdc2-8459a4822b51)
)
(wire (pts (xy 266.7 48.26) (xy 266.7 50.8))
(stroke (width 0) (type default))
(uuid 767830cf-6d76-419c-b9f1-a68be5022330)
)
(wire (pts (xy 186.055 58.42) (xy 186.055 76.835))
(stroke (width 0) (type default))
(uuid 782dc46b-af1c-4fe1-92a4-56bc10bd191c)
)
(wire (pts (xy 156.21 84.455) (xy 208.28 84.455))
(stroke (width 0) (type default))
(uuid 787483c7-2ed7-4c8c-8958-d64fbfd50102)
)
(wire (pts (xy 208.28 58.42) (xy 208.28 84.455))
(stroke (width 0) (type default))
(uuid 7881d09d-b7ac-49a7-8687-1bf6b24855f6)
)
(wire (pts (xy 151.13 112.395) (xy 146.685 112.395))
(stroke (width 0) (type default))
(uuid 79816413-7911-46cd-8d19-d9d44f1241f0)
)
(wire (pts (xy 154.94 30.48) (xy 154.94 29.845))
(stroke (width 0) (type default))
(uuid 7a9e9feb-bfd6-47de-836e-1e445f3a45e8)
)
(wire (pts (xy 200.66 81.915) (xy 278.765 81.915))
(stroke (width 0) (type default))
(uuid 7baa6b3c-d2f2-4db1-b890-63bfbde3730b)
)
(wire (pts (xy 106.045 86.995) (xy 104.14 86.995))
(stroke (width 0) (type default))
(uuid 7ea019f2-0d47-4a45-aa3d-47c131a8719e)
)
(wire (pts (xy 273.685 58.42) (xy 273.685 107.315))
(stroke (width 0) (type default))
(uuid 7eac8f24-fe04-42f3-9442-7a9f2ebe9306)
)
(wire (pts (xy 156.21 64.135) (xy 164.465 64.135))
(stroke (width 0) (type default))
(uuid 7f721862-9f1a-49cd-80e2-993f859651d4)
)
(wire (pts (xy 156.21 97.155) (xy 244.475 97.155))
(stroke (width 0) (type default))
(uuid 80447f24-0e0b-463f-a7e4-47b208baec6b)
)
(wire (pts (xy 106.045 84.455) (xy 104.14 84.455))
(stroke (width 0) (type default))
(uuid 8080292f-0d6c-4ad4-916a-60abf91abc3b)
)
(wire (pts (xy 244.475 58.42) (xy 244.475 97.155))
(stroke (width 0) (type default))
(uuid 855d1be9-e930-41de-a19f-7115a66d84fb)
)
(wire (pts (xy 237.49 58.42) (xy 237.49 94.615))
(stroke (width 0) (type default))
(uuid 863c2d84-b8cd-4c17-a676-e2b761f32176)
)
(wire (pts (xy 50.8 94.615) (xy 50.8 107.315))
(stroke (width 0) (type default))
(uuid 876abc91-a741-412f-a846-49e452c8a0fc)
)
(wire (pts (xy 106.045 92.075) (xy 104.14 92.075))
(stroke (width 0) (type default))
(uuid 89818724-9f54-40fd-a6b7-a69a9dee464b)
)
(wire (pts (xy 146.685 104.775) (xy 148.59 104.775))
(stroke (width 0) (type default))
(uuid 8b1c9f96-aa64-4718-8a17-d4049146d73b)
)
(wire (pts (xy 63.5 53.34) (xy 63.5 55.245))
(stroke (width 0) (type default))
(uuid 8b410365-0668-4c22-95ae-dc394873ed6f)
)
(wire (pts (xy 164.465 48.26) (xy 164.465 50.8))
(stroke (width 0) (type default))
(uuid 8e139e2e-73f8-45c7-b7e7-42f95d6d914a)
)
(wire (pts (xy 35.56 117.475) (xy 35.56 114.935))
(stroke (width 0) (type default))
(uuid 8e9cd48a-61c2-4bcb-9ef1-3f27a1acaaa8)
)
(wire (pts (xy 179.07 48.26) (xy 179.07 50.8))
(stroke (width 0) (type default))
(uuid 904f66ad-2443-42f8-b29d-f24fa22e873b)
)
(wire (pts (xy 156.21 92.075) (xy 229.87 92.075))
(stroke (width 0) (type default))
(uuid 92785123-8fa6-449c-82c3-06c190a4e25f)
)
(wire (pts (xy 215.265 58.42) (xy 215.265 86.995))
(stroke (width 0) (type default))
(uuid 928e55e4-f057-46f3-883f-6e83085b35ad)
)
(wire (pts (xy 104.775 56.515) (xy 106.045 56.515))
(stroke (width 0) (type default))
(uuid 931dd58e-aa03-46d1-9b8b-231711a8d49f)
)
(wire (pts (xy 27.94 102.235) (xy 96.52 102.235))
(stroke (width 0) (type default))
(uuid 934a039c-dfab-404f-bb3b-78dcaa3128fb)
)
(wire (pts (xy 259.08 48.26) (xy 259.08 50.8))
(stroke (width 0) (type default))
(uuid 939d2e6d-8e72-4a7f-8853-e0a676c4d130)
)
(wire (pts (xy 21.59 86.995) (xy 74.93 86.995))
(stroke (width 0) (type default))
(uuid 95b948eb-77b4-48a9-8054-54eda0b63aa5)
)
(wire (pts (xy 50.8 117.475) (xy 50.8 114.935))
(stroke (width 0) (type default))
(uuid 965b9aa7-ae65-4673-985c-a299e9bbefa3)
)
(wire (pts (xy 21.59 102.235) (xy 27.94 102.235))
(stroke (width 0) (type default))
(uuid 9de77ce9-830d-4d0b-8c43-8718e12d53db)
)
(wire (pts (xy 146.685 89.535) (xy 148.59 89.535))
(stroke (width 0) (type default))
(uuid 9e7a8c4e-cff6-483e-923a-a2ca2d59a150)
)
(wire (pts (xy 55.88 53.975) (xy 55.88 55.88))
(stroke (width 0) (type default))
(uuid a0454d19-36cd-4b0d-beb2-5bc12eb06d8f)
)
(wire (pts (xy 99.695 48.895) (xy 104.775 48.895))
(stroke (width 0) (type default))
(uuid a22209e3-ce7a-4446-a4b6-6692617d92dd)
)
(wire (pts (xy 151.13 120.65) (xy 151.13 117.475))
(stroke (width 0) (type default))
(uuid a4318219-5bf2-4c98-9ea8-a8299263a0e3)
)
(wire (pts (xy 74.93 86.995) (xy 74.93 107.315))
(stroke (width 0) (type default))
(uuid a51c706c-e03d-48fb-907f-5e37c14646dc)
)
(wire (pts (xy 99.695 59.055) (xy 99.695 57.785))
(stroke (width 0) (type default))
(uuid a5aa2fa8-f370-4f78-904f-7774aac051d3)
)
(wire (pts (xy 179.07 74.295) (xy 278.765 74.295))
(stroke (width 0) (type default))
(uuid a7c26fe4-4cc2-4159-8963-a7e6d46d1663)
)
(wire (pts (xy 106.045 94.615) (xy 104.14 94.615))
(stroke (width 0) (type default))
(uuid ab6e59af-82c2-4918-902a-def285bc8cfb)
)
(wire (pts (xy 156.21 74.295) (xy 179.07 74.295))
(stroke (width 0) (type default))
(uuid ad5c5109-e6be-42d4-a800-4e313a5f284a)
)
(wire (pts (xy 146.685 84.455) (xy 148.59 84.455))
(stroke (width 0) (type default))
(uuid b1157144-fd00-4b1e-b3e7-18addc6299c6)
)
(wire (pts (xy 82.55 117.475) (xy 82.55 114.935))
(stroke (width 0) (type default))
(uuid b75e7afc-0f22-4318-80ca-71ed56f59ce0)
)
(wire (pts (xy 156.21 104.775) (xy 266.7 104.775))
(stroke (width 0) (type default))
(uuid b96fdcb6-dbfe-4205-9d7c-d698c4f948b0)
)
(wire (pts (xy 59.055 117.475) (xy 59.055 114.935))
(stroke (width 0) (type default))
(uuid bc2080f0-fa77-4602-b8a3-2e5e9fedf8f9)
)
(wire (pts (xy 237.49 48.26) (xy 237.49 50.8))
(stroke (width 0) (type default))
(uuid be268f4f-a764-4ff4-bf78-a5a3ec0ac88f)
)
(wire (pts (xy 200.66 48.26) (xy 200.66 50.8))
(stroke (width 0) (type default))
(uuid c1a884bc-2f8f-41ef-8677-314247d82f84)
)
(wire (pts (xy 146.685 117.475) (xy 151.13 117.475))
(stroke (width 0) (type default))
(uuid c2d77ba6-d338-46b9-abd4-94a9aa51e0d3)
)
(wire (pts (xy 146.685 76.835) (xy 148.59 76.835))
(stroke (width 0) (type default))
(uuid c37cbf3a-d41f-418b-a6d4-b937a67fa4d5)
)
(wire (pts (xy 266.7 104.775) (xy 278.765 104.775))
(stroke (width 0) (type default))
(uuid c46eaa89-f32a-431a-bf57-6ebd3bb8112c)
)
(wire (pts (xy 74.93 117.475) (xy 74.93 114.935))
(stroke (width 0) (type default))
(uuid c5877da2-410d-4a08-8397-103f9f15f287)
)
(wire (pts (xy 200.66 58.42) (xy 200.66 81.915))
(stroke (width 0) (type default))
(uuid c72616b8-1dd8-4c78-879e-0aa1d280b23b)
)
(wire (pts (xy 186.055 48.26) (xy 186.055 50.8))
(stroke (width 0) (type default))
(uuid c9209ff3-888f-417a-86b6-2aa1fa63dd68)
)
(wire (pts (xy 259.08 58.42) (xy 259.08 102.235))
(stroke (width 0) (type default))
(uuid c9f760a8-c02b-4938-9399-3806f8840229)
)
(wire (pts (xy 244.475 48.26) (xy 244.475 50.8))
(stroke (width 0) (type default))
(uuid ca479c11-03b6-426e-872c-1ac552f2f5ac)
)
(wire (pts (xy 106.045 99.695) (xy 104.14 99.695))
(stroke (width 0) (type default))
(uuid ccf23f7a-de64-4ca5-9b9e-5b43f4c64bfc)
)
(wire (pts (xy 222.885 48.26) (xy 222.885 50.8))
(stroke (width 0) (type default))
(uuid ce118f0b-3282-4779-bae8-6e6eebd9cf47)
)
(wire (pts (xy 106.045 89.535) (xy 104.14 89.535))
(stroke (width 0) (type default))
(uuid d03c53bd-3e35-48e3-8ad3-0b089c43acbe)
)
(wire (pts (xy 215.265 48.26) (xy 215.265 50.8))
(stroke (width 0) (type default))
(uuid d0826988-dd23-4b52-bded-b69cbfa11568)
)
(wire (pts (xy 146.685 64.135) (xy 148.59 64.135))
(stroke (width 0) (type default))
(uuid d3f4b8de-8295-4dfd-885e-d38f165c0a90)
)
(wire (pts (xy 27.94 117.475) (xy 27.94 114.935))
(stroke (width 0) (type default))
(uuid d585f943-fb55-497d-bf90-26135acd910b)
)
(wire (pts (xy 21.59 99.695) (xy 35.56 99.695))
(stroke (width 0) (type default))
(uuid d72038f9-7db3-4a3e-a882-298e5a046100)
)
(wire (pts (xy 273.685 48.26) (xy 273.685 50.8))
(stroke (width 0) (type default))
(uuid d74feca3-02d1-48a4-ac5e-38a291e9c765)
)
(wire (pts (xy 186.055 76.835) (xy 278.765 76.835))
(stroke (width 0) (type default))
(uuid d814b894-a1bb-444f-9b2c-df80310339cf)
)
(wire (pts (xy 171.45 48.26) (xy 171.45 50.8))
(stroke (width 0) (type default))
(uuid da1d3874-b079-4db9-822d-f3a98b66d2a6)
)
(wire (pts (xy 82.55 84.455) (xy 96.52 84.455))
(stroke (width 0) (type default))
(uuid da6c40a7-ede6-47d6-a428-07d7bfdbe35f)
)
(wire (pts (xy 229.87 92.075) (xy 278.765 92.075))
(stroke (width 0) (type default))
(uuid daa1cdf1-a571-4bbe-85c9-96a06300b2e3)
)
(wire (pts (xy 66.675 89.535) (xy 96.52 89.535))
(stroke (width 0) (type default))
(uuid dad44b72-51f0-4291-a5d4-90d77d03e98b)
)
(wire (pts (xy 55.88 63.5) (xy 55.88 74.295))
(stroke (width 0) (type default))
(uuid dcc8e5e6-18b1-4545-a5e0-1140098e415c)
)
(wire (pts (xy 146.685 69.215) (xy 148.59 69.215))
(stroke (width 0) (type default))
(uuid de1e6f17-ac88-4e4a-acc2-64fba3436f50)
)
(wire (pts (xy 106.045 97.155) (xy 104.14 97.155))
(stroke (width 0) (type default))
(uuid e1b2ad11-b0fc-4bae-935e-97575a0344e4)
)
(wire (pts (xy 156.21 69.215) (xy 171.45 69.215))
(stroke (width 0) (type default))
(uuid e5f9068d-d1c3-4731-8f46-29d5e38f5201)
)
(wire (pts (xy 252.095 48.26) (xy 252.095 50.8))
(stroke (width 0) (type default))
(uuid e686ffdf-94df-4a42-bb5a-aa4af6294b53)
)
(wire (pts (xy 252.095 99.695) (xy 278.765 99.695))
(stroke (width 0) (type default))
(uuid e72a91c4-babd-45ec-84f7-f2a6bef2e591)
)
(wire (pts (xy 21.59 94.615) (xy 50.8 94.615))
(stroke (width 0) (type default))
(uuid eb556403-a5f4-43eb-b8e8-9b39e725027a)
)
(wire (pts (xy 146.685 27.305) (xy 146.685 29.845))
(stroke (width 0) (type default))
(uuid ec061987-7887-4e7c-9dad-607e5d2c1bae)