-
Notifications
You must be signed in to change notification settings - Fork 0
/
touchpanel.kicad_sch
1712 lines (1682 loc) · 70.6 KB
/
touchpanel.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 5978ad93-9f4f-4f41-ba18-49f5d630ba28)
(paper "A4")
(title_block
(title "Touchpanel")
(date "2022-09-25")
(rev "0.1")
)
(lib_symbols
(symbol "Connector_Generic:Conn_01x10" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 12.7 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x10" (id 1) (at 0 -15.24 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x10, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x10_1_1"
(rectangle (start -1.27 -12.573) (end 0 -12.827)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -10.033) (end 0 -10.287)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -7.493) (end 0 -7.747)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 5.207) (end 0 4.953)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 7.747) (end 0 7.493)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 10.287) (end 0 10.033)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 11.43) (end 1.27 -13.97)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin passive line (at -5.08 10.16 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -12.7 0) (length 3.81)
(name "Pin_10" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 7.62 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 5.08 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -5.08 0) (length 3.81)
(name "Pin_7" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -7.62 0) (length 3.81)
(name "Pin_8" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -10.16 0) (length 3.81)
(name "Pin_9" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LED" (id 1) (at 0 -2.54 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" "LED diode" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Light emitting diode" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "LED_0_1"
(polyline
(pts
(xy -1.27 -1.27)
(xy -1.27 1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0)
(xy 1.27 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -1.27)
(xy 1.27 1.27)
(xy -1.27 0)
(xy 1.27 -1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -3.048 -0.762)
(xy -4.572 -2.286)
(xy -3.81 -2.286)
(xy -4.572 -2.286)
(xy -4.572 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.778 -0.762)
(xy -3.302 -2.286)
(xy -2.54 -2.286)
(xy -3.302 -2.286)
(xy -3.302 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "LED_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Switch_Touch:EVQ-Q2201W" (pin_names (offset 0.762)) (in_bom yes) (on_board yes)
(property "Reference" "S" (id 0) (at 26.67 7.62 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "EVQ-Q2201W" (id 1) (at 26.67 5.08 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "EVQQ2201W" (id 2) (at 26.67 2.54 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "https://componentsearchengine.com/Datasheets/1/EVQ-Q2201W.pdf" (id 3) (at 26.67 0 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Description" "Switch Tactile N.O. SPST Round Button J-Bend 0.02A 15VDC 3.5N SMD T/R" (id 4) (at 26.67 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Height" "2.2" (id 5) (at 26.67 -5.08 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Manufacturer_Name" "Panasonic" (id 6) (at 26.67 -7.62 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Manufacturer_Part_Number" "EVQ-Q2201W" (id 7) (at 26.67 -10.16 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Mouser Part Number" "667-EVQ-Q2201W" (id 8) (at 26.67 -12.7 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Panasonic/EVQ-Q2201W?qs=WwqriLBepZu2TClqYHttsw%3D%3D" (id 9) (at 26.67 -15.24 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Arrow Part Number" "EVQ-Q2201W" (id 10) (at 26.67 -17.78 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Arrow Price/Stock" "https://www.arrow.com/en/products/evq-q2201w/panasonic" (id 11) (at 26.67 -20.32 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Mouser Testing Part Number" "" (id 12) (at 26.67 -22.86 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Mouser Testing Price/Stock" "" (id 13) (at 26.67 -25.4 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "ki_description" "Switch Tactile N.O. SPST Round Button J-Bend 0.02A 15VDC 3.5N SMD T/R" (id 14) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "EVQ-Q2201W_0_0"
(pin passive line (at 0 -2.54 0) (length 5.08)
(name "COM_1" (effects (font (size 1.27 1.27))))
(number "A1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 30.48 -2.54 180) (length 5.08)
(name "COM_2" (effects (font (size 1.27 1.27))))
(number "A2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 0 0) (length 5.08)
(name "NO_1" (effects (font (size 1.27 1.27))))
(number "B1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 30.48 0 180) (length 5.08)
(name "NO_2" (effects (font (size 1.27 1.27))))
(number "B2" (effects (font (size 1.27 1.27))))
)
)
(symbol "EVQ-Q2201W_0_1"
(polyline
(pts
(xy 5.08 2.54)
(xy 25.4 2.54)
(xy 25.4 -5.08)
(xy 5.08 -5.08)
(xy 5.08 2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
)
(junction (at 146.05 69.85) (diameter 0) (color 0 0 0 0)
(uuid 02548e3e-353b-44da-b790-341311020c13)
)
(junction (at 76.2 128.27) (diameter 0) (color 0 0 0 0)
(uuid 07729ee8-6ef3-4002-a4ae-cf98f90fcfb2)
)
(junction (at 209.55 128.27) (diameter 0) (color 0 0 0 0)
(uuid 079250d4-8531-480f-a3c9-f8ad57fc5641)
)
(junction (at 138.43 132.08) (diameter 0) (color 0 0 0 0)
(uuid 14b038e3-864e-4007-800c-1e731126f86c)
)
(junction (at 153.67 128.27) (diameter 0) (color 0 0 0 0)
(uuid 151027cf-d7c3-47f1-8a10-670eaef3e78a)
)
(junction (at 78.74 31.75) (diameter 0) (color 0 0 0 0)
(uuid 159667b4-0e73-40e5-bc4b-d775406223d1)
)
(junction (at 138.43 128.27) (diameter 0) (color 0 0 0 0)
(uuid 15c9827e-a376-48b7-a7c5-eabeb39373b7)
)
(junction (at 114.3 45.72) (diameter 0) (color 0 0 0 0)
(uuid 19d1e099-8628-4f00-9c91-ce0c3e6d753e)
)
(junction (at 170.18 128.27) (diameter 0) (color 0 0 0 0)
(uuid 1db3b34a-f8b7-4262-951c-cac19dedeba7)
)
(junction (at 177.8 72.39) (diameter 0) (color 0 0 0 0)
(uuid 2993f724-9a51-4037-9d33-cca19bf2c4f6)
)
(junction (at 83.82 128.27) (diameter 0) (color 0 0 0 0)
(uuid 2d4d4d23-efe5-495a-810a-d24dd7cfdccc)
)
(junction (at 91.44 134.62) (diameter 0) (color 0 0 0 0)
(uuid 349aa660-1c15-43ef-879a-f539f7b1ddb7)
)
(junction (at 172.72 31.75) (diameter 0) (color 0 0 0 0)
(uuid 34b739b7-ca9e-46dc-8112-953b3e9cd7c4)
)
(junction (at 217.17 128.27) (diameter 0) (color 0 0 0 0)
(uuid 4fb498c6-7704-4dcb-9322-8c25095505bb)
)
(junction (at 170.18 132.08) (diameter 0) (color 0 0 0 0)
(uuid 50668f8d-b92c-4253-8f73-c399ca377c07)
)
(junction (at 146.05 128.27) (diameter 0) (color 0 0 0 0)
(uuid 676a3975-f104-4642-a2b9-5044bc1de0c5)
)
(junction (at 201.93 128.27) (diameter 0) (color 0 0 0 0)
(uuid 6ab1e103-5f41-41ed-9355-29a875cb6739)
)
(junction (at 106.68 128.27) (diameter 0) (color 0 0 0 0)
(uuid 6b63b041-bd4d-4470-8731-01e2f4b2600e)
)
(junction (at 146.05 45.72) (diameter 0) (color 0 0 0 0)
(uuid 6ce15c62-c896-4e4d-a254-f635725b7641)
)
(junction (at 177.8 128.27) (diameter 0) (color 0 0 0 0)
(uuid 716c6bb7-4ff7-4f10-8d64-d250e6b4b7ec)
)
(junction (at 106.68 132.08) (diameter 0) (color 0 0 0 0)
(uuid 7259191a-7255-40a4-bb89-20c14c348b24)
)
(junction (at 177.8 45.72) (diameter 0) (color 0 0 0 0)
(uuid 74404e6d-6cfb-4916-9563-64b12ede02aa)
)
(junction (at 209.55 45.72) (diameter 0) (color 0 0 0 0)
(uuid 7a09f842-970b-433c-badd-03c1112deed0)
)
(junction (at 109.22 31.75) (diameter 0) (color 0 0 0 0)
(uuid 80777b14-69b1-4229-8639-a251d1ee893e)
)
(junction (at 121.92 134.62) (diameter 0) (color 0 0 0 0)
(uuid 8417a90c-75e6-47a5-8712-85cca481c731)
)
(junction (at 182.88 29.21) (diameter 0) (color 0 0 0 0)
(uuid 89de98ca-0812-42c4-a8d2-04975a4d846d)
)
(junction (at 119.38 29.21) (diameter 0) (color 0 0 0 0)
(uuid 8d513630-dd12-4da8-b1d3-8f4dfc06dcae)
)
(junction (at 83.82 97.79) (diameter 0) (color 0 0 0 0)
(uuid 98ce8495-9645-4e40-81fc-d915c81100c0)
)
(junction (at 177.8 97.79) (diameter 0) (color 0 0 0 0)
(uuid a2dcc308-b4e4-4115-a0e3-08a4c91586ee)
)
(junction (at 153.67 134.62) (diameter 0) (color 0 0 0 0)
(uuid abb6bce0-b97a-4435-87a6-8dba0a589bfc)
)
(junction (at 76.2 132.08) (diameter 0) (color 0 0 0 0)
(uuid ac11a916-5b6f-4062-b7a1-dcc10e4d83fc)
)
(junction (at 83.82 64.77) (diameter 0) (color 0 0 0 0)
(uuid aecebb12-551a-4980-a0de-747b90b95bfd)
)
(junction (at 185.42 128.27) (diameter 0) (color 0 0 0 0)
(uuid af723b00-54f3-487f-98f8-1fc81795a2e2)
)
(junction (at 91.44 128.27) (diameter 0) (color 0 0 0 0)
(uuid b1a1466b-5561-4382-bf8a-8b9874b625fe)
)
(junction (at 209.55 97.79) (diameter 0) (color 0 0 0 0)
(uuid b51383bf-0db4-4df4-96d2-d195739dfc22)
)
(junction (at 114.3 128.27) (diameter 0) (color 0 0 0 0)
(uuid b772fb9e-3c50-4604-9f7b-7eef19948536)
)
(junction (at 121.92 128.27) (diameter 0) (color 0 0 0 0)
(uuid b9b7afc8-2fc7-4fad-94ef-fc319afa348b)
)
(junction (at 88.9 29.21) (diameter 0) (color 0 0 0 0)
(uuid be7b8c51-2ac8-468e-af7f-b0ffca213cba)
)
(junction (at 151.13 29.21) (diameter 0) (color 0 0 0 0)
(uuid bec02bfa-7fc3-4ee4-9442-a7f4f0b66c1b)
)
(junction (at 114.3 97.79) (diameter 0) (color 0 0 0 0)
(uuid c13a0df2-e28e-48a7-aaa2-6aa4690432d3)
)
(junction (at 185.42 134.62) (diameter 0) (color 0 0 0 0)
(uuid d28ac18e-4a50-4bfe-86e9-5d33f4e740ed)
)
(junction (at 114.3 67.31) (diameter 0) (color 0 0 0 0)
(uuid d6fdf7f6-5a8e-4343-a355-ed1d84c9c282)
)
(junction (at 146.05 97.79) (diameter 0) (color 0 0 0 0)
(uuid d8bc19f5-72ff-4f85-8bef-caf3a19ee458)
)
(junction (at 140.97 31.75) (diameter 0) (color 0 0 0 0)
(uuid dcae92fc-b715-40ed-bf2f-fd3ce6d63721)
)
(junction (at 209.55 74.93) (diameter 0) (color 0 0 0 0)
(uuid f91efc8a-e596-453d-823b-fc3697f970f4)
)
(junction (at 83.82 45.72) (diameter 0) (color 0 0 0 0)
(uuid fc6e0893-9357-4a9f-b38d-f4c92ea132f5)
)
(no_connect (at 50.8 77.47) (uuid e7491a8c-93ae-4142-aead-e0ab8fada42f))
(wire (pts (xy 133.35 97.79) (xy 133.35 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0384d15e-8718-4541-9756-5e8a401d0b5b)
)
(wire (pts (xy 172.72 31.75) (xy 172.72 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 08ae9e87-0e48-461b-b949-7931a8dbbeda)
)
(wire (pts (xy 146.05 97.79) (xy 146.05 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 09f5c497-8055-499a-92ca-01ddad5c0b93)
)
(wire (pts (xy 119.38 29.21) (xy 119.38 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0af7f80f-7b34-4464-8e2b-c461d7a8da0c)
)
(wire (pts (xy 138.43 132.08) (xy 170.18 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0bf6304c-2459-4d72-8288-0406ac00eaa5)
)
(wire (pts (xy 50.8 69.85) (xy 146.05 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0c69542f-3164-432b-b779-88134bb70e7b)
)
(wire (pts (xy 114.3 67.31) (xy 114.3 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0cde0c72-7818-4b47-89ba-87ce72ef031f)
)
(wire (pts (xy 177.8 97.79) (xy 182.88 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0d3dbdfc-3f8a-4cf7-8e74-9cd46670a65a)
)
(wire (pts (xy 140.97 31.75) (xy 140.97 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0eea6648-2a4e-4332-ba8e-c05f0187e7fd)
)
(wire (pts (xy 214.63 29.21) (xy 214.63 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0f2ec505-1381-4e6f-b933-58899ae73539)
)
(wire (pts (xy 170.18 132.08) (xy 201.93 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0f6a045c-2d7f-4c5c-be1f-ce9237cd8392)
)
(wire (pts (xy 50.8 72.39) (xy 177.8 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0fac28e3-d0c6-47ca-bf07-5f44f353a787)
)
(wire (pts (xy 146.05 45.72) (xy 146.05 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 14e11c27-11d7-4dc9-943b-fbcb9699fd35)
)
(wire (pts (xy 170.18 128.27) (xy 170.18 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 15c142da-7713-4392-b83c-1c82a2374486)
)
(wire (pts (xy 125.73 128.27) (xy 125.73 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 160f166b-240c-4f69-b886-cba1b0717177)
)
(wire (pts (xy 91.44 134.62) (xy 121.92 134.62))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 16d8d861-e6f9-42b2-911b-96e3aeaa2a90)
)
(wire (pts (xy 138.43 128.27) (xy 138.43 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 18691481-2bd4-4498-ba7d-924071f5fc47)
)
(wire (pts (xy 106.68 128.27) (xy 106.68 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 18695f46-bdca-4555-b1fb-a862edf52931)
)
(wire (pts (xy 189.23 128.27) (xy 189.23 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 19af0fd1-c390-4909-8960-701499e90542)
)
(wire (pts (xy 101.6 97.79) (xy 101.6 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1b15d06b-37db-48e7-84e9-8d55a60588f3)
)
(wire (pts (xy 204.47 45.72) (xy 209.55 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1b86c004-e3e4-45e3-8cc5-b6172d8788cf)
)
(wire (pts (xy 83.82 97.79) (xy 83.82 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 20042196-03de-438e-8178-e6edb5948e42)
)
(wire (pts (xy 182.88 29.21) (xy 182.88 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 23c57bdd-02fb-49f3-809d-c813d245a251)
)
(wire (pts (xy 58.42 29.21) (xy 88.9 29.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2466a4d1-fe4d-42d6-a751-765e010eb74c)
)
(wire (pts (xy 83.82 45.72) (xy 88.9 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 254b3dcd-d6da-407e-9eb2-20c328115ccb)
)
(wire (pts (xy 146.05 69.85) (xy 146.05 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 25ae4906-3848-4dfc-807b-731e3acf33d0)
)
(wire (pts (xy 76.2 128.27) (xy 76.2 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 26ebead6-a2f5-497c-8341-441b5e75cc93)
)
(wire (pts (xy 114.3 97.79) (xy 119.38 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2a7e238b-7716-469e-b4fc-8ebfb89b9a89)
)
(wire (pts (xy 91.44 128.27) (xy 91.44 134.62))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2b88a79f-d349-42d8-9cf2-c396ccd299e8)
)
(wire (pts (xy 114.3 97.79) (xy 114.3 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2e91b506-6047-4e84-a056-b7ede22dee55)
)
(wire (pts (xy 217.17 128.27) (xy 217.17 134.62))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 30c2c6ea-72f4-4534-b257-5715cf9857b7)
)
(wire (pts (xy 177.8 45.72) (xy 182.88 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 32770165-3dd0-42b7-9ba1-3810873586fd)
)
(wire (pts (xy 78.74 128.27) (xy 83.82 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 33dc46d7-ea77-42a6-9b86-8526a879d635)
)
(wire (pts (xy 76.2 132.08) (xy 106.68 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 35e6a778-1c0f-4681-ba8a-af292b7877c2)
)
(wire (pts (xy 114.3 45.72) (xy 114.3 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 397fa642-e430-400b-88c7-8f1e631a6639)
)
(wire (pts (xy 60.96 31.75) (xy 78.74 31.75))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3e2667e2-399b-4cca-bc9f-fedd488d9314)
)
(wire (pts (xy 50.8 62.23) (xy 58.42 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3e98e973-2c04-4b77-8073-bcf7a088bce5)
)
(wire (pts (xy 157.48 128.27) (xy 153.67 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3fbcebeb-75f0-49db-9d0c-645cbdf2f521)
)
(wire (pts (xy 157.48 97.79) (xy 157.48 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3fc141e5-b1d8-4e22-ac65-af82feac1bed)
)
(wire (pts (xy 88.9 29.21) (xy 88.9 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 423f1893-b852-4b29-ac91-ba0a1ce71130)
)
(wire (pts (xy 204.47 97.79) (xy 209.55 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 42d244e8-3de8-49f0-a426-8e4312f81bf7)
)
(wire (pts (xy 109.22 31.75) (xy 140.97 31.75))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 46c7a1d0-2483-45dc-952f-d8e67844cda6)
)
(wire (pts (xy 133.35 128.27) (xy 138.43 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 47be4c9c-e631-4447-995f-1b6202dc92be)
)
(wire (pts (xy 121.92 134.62) (xy 153.67 134.62))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 47f46fa1-b577-4b28-83cd-5835ab39b162)
)
(wire (pts (xy 185.42 134.62) (xy 217.17 134.62))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4dda0d10-3d9e-46b2-809a-89d75aafd9c5)
)
(wire (pts (xy 83.82 64.77) (xy 83.82 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4e3c2aa0-a4df-4660-9c1f-fb7aa570e054)
)
(wire (pts (xy 50.8 57.15) (xy 60.96 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 50f545e1-2481-4ff7-a6c0-8feb4a037f93)
)
(wire (pts (xy 185.42 128.27) (xy 189.23 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 525dbdcf-4b0f-445e-a4c2-fe7413ae5045)
)
(wire (pts (xy 165.1 128.27) (xy 170.18 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 53cc4498-5fb5-4086-aff9-f44447a9b7bc)
)
(wire (pts (xy 50.8 59.69) (xy 60.96 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 552be6b9-67dd-477e-be58-55cc67b14de1)
)
(wire (pts (xy 153.67 97.79) (xy 157.48 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 56a78713-fb6a-4549-95b8-009b46fb940c)
)
(wire (pts (xy 121.92 128.27) (xy 125.73 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 57caa489-07b8-4a09-b76a-c484d158b232)
)
(wire (pts (xy 140.97 45.72) (xy 146.05 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5850d6cd-b31e-485f-9d64-34e54bd5efe4)
)
(wire (pts (xy 50.8 54.61) (xy 58.42 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 59bd4829-61b4-452c-8b3b-c1b5d2cd6c8d)
)
(wire (pts (xy 217.17 128.27) (xy 220.98 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5b758f7c-4490-4fe5-969c-018b9b72dace)
)
(wire (pts (xy 201.93 97.79) (xy 196.85 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5c9b0425-b32e-4cb8-a729-ff225cefcd30)
)
(wire (pts (xy 182.88 29.21) (xy 214.63 29.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5fdb06f4-5a0a-4d09-8195-b0cfe0f5f275)
)
(wire (pts (xy 60.96 59.69) (xy 60.96 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 61b5d38c-617e-428d-821e-46560ff49e0a)
)
(wire (pts (xy 185.42 128.27) (xy 185.42 134.62))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6341635e-c0ed-44d7-997f-732f25225b4a)
)
(wire (pts (xy 138.43 97.79) (xy 133.35 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 63e98296-e30b-4ade-b8a1-8e4045840eef)
)
(wire (pts (xy 209.55 45.72) (xy 214.63 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 650bb155-13f7-4948-afc4-9cd65972bf2f)
)
(wire (pts (xy 146.05 128.27) (xy 151.13 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 660fd023-7e3b-4d40-95fe-b9e83988eda8)
)
(wire (pts (xy 109.22 31.75) (xy 109.22 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 66a7829f-a0b8-4f10-9911-ce1207a76476)
)
(wire (pts (xy 60.96 132.08) (xy 76.2 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6a3b776e-3c5d-4df8-8e6f-c12d8a1cc2de)
)
(wire (pts (xy 220.98 128.27) (xy 220.98 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6c1367e9-b701-4741-91d7-2aa6556dd5b4)
)
(wire (pts (xy 109.22 97.79) (xy 114.3 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6f3b2851-b11f-42fa-b2f9-b7c7d1b38fed)
)
(wire (pts (xy 78.74 31.75) (xy 109.22 31.75))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6f763591-f364-477e-891c-657159c89aeb)
)
(wire (pts (xy 50.8 74.93) (xy 209.55 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 70576208-82a2-4288-b865-994817c8d315)
)
(wire (pts (xy 121.92 128.27) (xy 121.92 134.62))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7136e60f-0941-4e23-a739-21b6298ca828)
)
(wire (pts (xy 78.74 45.72) (xy 83.82 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7322f27d-0e73-4970-afff-c6712c86433a)
)
(wire (pts (xy 209.55 128.27) (xy 214.63 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 75c57eca-8168-43e7-84c5-dcdaec189e68)
)
(wire (pts (xy 83.82 97.79) (xy 88.9 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 77083e15-5d4f-45b6-9025-9e713ce25d3c)
)
(wire (pts (xy 172.72 31.75) (xy 204.47 31.75))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 788ac9af-4f4e-40eb-b134-ed4c25e1b76a)
)
(wire (pts (xy 204.47 128.27) (xy 209.55 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 79faebce-865f-41b0-9854-7cd5bb90a4af)
)
(wire (pts (xy 177.8 128.27) (xy 182.88 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7aa2d386-2893-4e40-8366-bdbad27a168e)
)
(wire (pts (xy 151.13 29.21) (xy 151.13 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7d3b93fe-bf3d-41cd-b828-de9e5db52423)
)
(wire (pts (xy 196.85 97.79) (xy 196.85 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 82ac2e94-2d11-4a8b-99a2-7a8d17811700)
)
(wire (pts (xy 119.38 29.21) (xy 151.13 29.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8438c610-fb68-449f-b68c-463245a6b3cd)
)
(wire (pts (xy 196.85 128.27) (xy 201.93 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8d247b97-a89f-4d31-9783-89b19281e929)
)
(wire (pts (xy 204.47 31.75) (xy 204.47 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8da7680d-130c-4fa0-9cff-b9303b7b0e5b)
)
(wire (pts (xy 114.3 128.27) (xy 119.38 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8e703ea5-093f-4c54-a36c-c0cbcf540f56)
)
(wire (pts (xy 83.82 45.72) (xy 83.82 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9121d5e3-607e-4a6e-b5a0-17c84a78c7d3)
)
(wire (pts (xy 140.97 128.27) (xy 146.05 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 92ce9ebd-1800-4956-97ec-6c69200613dc)
)
(wire (pts (xy 177.8 45.72) (xy 177.8 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 938b0160-0ac9-4e9c-92e5-399b7a2bb5c7)
)
(wire (pts (xy 50.8 67.31) (xy 114.3 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 96cd927d-6eea-4180-9d20-0531b12d3068)
)
(wire (pts (xy 153.67 128.27) (xy 153.67 134.62))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9b1c4fc9-dacd-4dd4-b9e8-db560fd221d8)
)
(wire (pts (xy 185.42 97.79) (xy 189.23 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9c80cdd2-7fe4-492d-abe8-0d676013dfbf)
)
(wire (pts (xy 71.12 97.79) (xy 71.12 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9ce62bee-6b72-4443-a226-41fb8287bcff)
)
(wire (pts (xy 114.3 45.72) (xy 119.38 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9da7b2a4-c803-41ea-bdc4-d1dd6a62d85c)
)
(wire (pts (xy 172.72 128.27) (xy 177.8 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9f093b58-c664-42b2-a971-ca729c878698)
)
(wire (pts (xy 58.42 134.62) (xy 91.44 134.62))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a2fa2a10-ed54-42f8-8d22-c2cea94782c0)
)
(wire (pts (xy 220.98 97.79) (xy 217.17 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a42f0034-19e9-4270-ab1a-d895e7bad3ce)
)
(wire (pts (xy 172.72 97.79) (xy 177.8 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a76b1192-8a43-4a83-a316-67f81671cc38)
)
(wire (pts (xy 60.96 57.15) (xy 60.96 31.75))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a8caead2-4436-4553-b64e-e7ec418c6072)
)
(wire (pts (xy 201.93 132.08) (xy 201.93 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aa81f434-0e11-4927-88af-dd79c46f5d28)
)
(wire (pts (xy 172.72 45.72) (xy 177.8 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aea0c943-317e-403a-a525-1c66cd1b2531)
)
(wire (pts (xy 209.55 97.79) (xy 209.55 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b33ec742-774f-45ea-a80a-629231b06011)
)
(wire (pts (xy 165.1 97.79) (xy 165.1 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b5d5639b-a282-4449-a639-c8a7547b8970)
)
(wire (pts (xy 177.8 72.39) (xy 177.8 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b87b9c32-3d3d-4100-a734-78c1363e2589)
)
(wire (pts (xy 58.42 62.23) (xy 58.42 134.62))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bb119d5b-6f9b-402d-86b1-cd2341a22860)
)
(wire (pts (xy 140.97 31.75) (xy 172.72 31.75))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bb191874-6302-405d-88f8-952b436a363e)
)
(wire (pts (xy 209.55 74.93) (xy 209.55 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bf49108a-2d46-45af-9b1c-15153103e1a8)
)
(wire (pts (xy 78.74 31.75) (xy 78.74 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c0111202-a92b-45aa-9f24-e29b8a7bd1eb)
)
(wire (pts (xy 109.22 45.72) (xy 114.3 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c0a093cb-1f56-4c20-a9bf-5e03861df9ac)
)
(wire (pts (xy 71.12 128.27) (xy 76.2 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c19a6bd0-9fa5-4db4-9429-c84501184f63)
)
(wire (pts (xy 101.6 128.27) (xy 106.68 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c255333e-bb61-4caf-b478-7b64e80d7d7a)
)
(wire (pts (xy 58.42 54.61) (xy 58.42 29.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c6a5f6b3-012e-4d7f-9c51-2142b6f731b3)
)
(wire (pts (xy 88.9 29.21) (xy 119.38 29.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c721d6a2-9778-4309-bafe-800ec906a0e7)
)
(wire (pts (xy 50.8 64.77) (xy 83.82 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c94c55bf-edac-4f46-889f-661c7b8aad5e)
)
(wire (pts (xy 71.12 97.79) (xy 76.2 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c9cb0742-ea29-43fe-999b-93ac88731d56)
)
(wire (pts (xy 91.44 128.27) (xy 95.25 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cf4c3cb7-89b6-4c51-9200-91d802c7517f)
)
(wire (pts (xy 146.05 45.72) (xy 151.13 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d063d17e-c792-4242-8985-60f382050968)
)
(wire (pts (xy 121.92 97.79) (xy 125.73 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid db43deb9-4a31-4b0c-b354-da4107d359bd)
)
(wire (pts (xy 78.74 97.79) (xy 83.82 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dc3e3644-c5b7-4793-97f2-19630016a1ea)
)
(wire (pts (xy 91.44 97.79) (xy 95.25 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dc52e144-f461-438d-902f-f1423e6a799e)
)
(wire (pts (xy 153.67 134.62) (xy 185.42 134.62))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e1e7ade2-058c-4c5f-b745-9ec800e32ed0)
)
(wire (pts (xy 106.68 132.08) (xy 138.43 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e33319e6-a789-4145-acbe-c7f8b9816ac9)
)
(wire (pts (xy 209.55 45.72) (xy 209.55 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e4802020-9e25-4079-a459-ab7ab1249a0e)
)
(wire (pts (xy 109.22 128.27) (xy 114.3 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e88d4813-e0e8-4919-aa8e-8d5fa83129a9)
)
(wire (pts (xy 209.55 97.79) (xy 214.63 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid eb54fcec-af27-4a73-86b0-6d1dcaec0e9a)
)
(wire (pts (xy 95.25 97.79) (xy 95.25 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid eb6abe61-20da-4c60-a0a6-78d615b9e933)
)
(wire (pts (xy 140.97 97.79) (xy 146.05 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ebc87a35-a727-4bd8-a194-7e367b3e1cfe)
)
(wire (pts (xy 83.82 128.27) (xy 88.9 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ec233168-6fe4-42d0-b614-31a85f9a23b3)
)
(wire (pts (xy 151.13 29.21) (xy 182.88 29.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid effa31a1-6acb-417a-ae42-2f23235ac8d4)
)
(wire (pts (xy 146.05 97.79) (xy 151.13 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f3d33c9e-bff9-4e3a-b6ea-61289d9ddfb7)
)
(wire (pts (xy 106.68 97.79) (xy 101.6 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f9a32e18-309d-4971-aa3f-cdaadb618b54)
)
(wire (pts (xy 177.8 97.79) (xy 177.8 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ff82e1a5-1fc0-446e-a0b5-91c0e0dc76fa)
)
(wire (pts (xy 170.18 97.79) (xy 165.1 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ff9c21d7-c326-409d-acd7-a298ea4cd0ef)
)
(symbol (lib_id "Switch_Touch:EVQ-Q2201W") (at 140.97 97.79 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 0d29ec64-7588-40b3-a8e6-911f7257074d)
(property "Reference" "SW5" (id 0) (at 134.62 114.3 0))
(property "Value" "SW_Push" (id 1) (at 144.78 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "EVQQ2201W" (id 2) (at 143.51 124.46 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "https://componentsearchengine.com/Datasheets/1/EVQ-Q2201W.pdf" (id 3) (at 140.97 124.46 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Description" "Switch Tactile N.O. SPST Round Button J-Bend 0.02A 15VDC 3.5N SMD T/R" (id 4) (at 138.43 124.46 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Height" "2.2" (id 5) (at 135.89 124.46 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Manufacturer_Name" "Panasonic" (id 6) (at 133.35 124.46 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Manufacturer_Part_Number" "EVQ-Q2201W" (id 7) (at 130.81 124.46 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Mouser Part Number" "667-EVQ-Q2201W" (id 8) (at 128.27 124.46 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Panasonic/EVQ-Q2201W?qs=WwqriLBepZu2TClqYHttsw%3D%3D" (id 9) (at 125.73 124.46 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Arrow Part Number" "EVQ-Q2201W" (id 10) (at 123.19 124.46 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Arrow Price/Stock" "https://www.arrow.com/en/products/evq-q2201w/panasonic" (id 11) (at 120.65 124.46 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Mouser Testing Part Number" "" (id 12) (at 118.11 124.46 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Mouser Testing Price/Stock" "" (id 13) (at 115.57 124.46 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(pin "A1" (uuid bb052fd3-a20b-4833-8715-e91b1ab21df7))
(pin "A2" (uuid 9f81fde4-2598-4e29-8c61-6cf1832ed729))
(pin "B1" (uuid 8cc687e0-98a7-40fb-b36d-d93e2fd9d1cb))
(pin "B2" (uuid f9501cb4-dbf3-4ad3-81e1-276878122828))
)
(symbol (lib_id "Device:LED") (at 151.13 41.91 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 0d81e36c-18ce-4d76-8e80-446309518ab1)
(property "Reference" "D6" (id 0) (at 153.162 39.4878 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "LED" (id 1) (at 153.162 42.0247 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "LedTouch:LEDM3528X210N" (id 2) (at 151.13 41.91 0)
(effects (font (size 1.27 1.27)) hide)
)