-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModbus-RJ45-Breakout.kicad_sch
More file actions
1967 lines (1930 loc) · 82.3 KB
/
Copy pathModbus-RJ45-Breakout.kicad_sch
File metadata and controls
1967 lines (1930 loc) · 82.3 KB
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 e63e39d7-6ac0-4ffd-8aa3-1841a4541b55)
(paper "A4")
(title_block
(title "Modbus-RJ45-Breakout")
(date "2023-04-24")
(rev "0.0.1")
(company "the78mole")
)
(lib_symbols
(symbol "Connector_Generic:Conn_01x02" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x02" (id 1) (at 0 -5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x02, 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_01x02_1_1"
(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 1.27) (end 1.27 -3.81)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_01x04" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x04" (id 1) (at 0 -7.62 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, 01x04, 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_01x04_1_1"
(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 3.81) (end 1.27 -6.35)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -5.08 0) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:LED_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at -1.27 3.175 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "LED_Small" (id 1) (at -4.445 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "LED diode light-emitting-diode" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Light emitting diode, small symbol" (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_Small_0_1"
(polyline
(pts
(xy -0.762 -1.016)
(xy -0.762 1.016)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.016 0)
(xy -0.762 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.016)
(xy -0.762 0)
(xy 0.762 1.016)
(xy 0.762 -1.016)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0.762)
(xy -0.508 1.27)
(xy -0.254 1.27)
(xy -0.508 1.27)
(xy -0.508 1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.508 1.27)
(xy 0 1.778)
(xy 0.254 1.778)
(xy 0 1.778)
(xy 0 1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "LED_Small_1_1"
(pin passive line (at -2.54 0 0) (length 1.778)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 0 180) (length 1.778)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 0.762 0.508 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_Small" (id 1) (at 0.762 -1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "R resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_Small_0_1"
(rectangle (start -0.762 1.778) (end 0.762 -1.778)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_Small_1_1"
(pin passive line (at 0 2.54 270) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Jumper:SolderJumper_2_Open" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "JP" (id 0) (at 0 2.032 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SolderJumper_2_Open" (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" "solder jumper SPST" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Solder Jumper, 2-pole, open" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SolderJumper*Open*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SolderJumper_2_Open_0_1"
(arc (start -0.254 1.016) (mid -1.27 0) (end -0.254 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start -0.254 1.016) (mid -1.27 0) (end -0.254 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy -0.254 1.016)
(xy -0.254 -1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.254 1.016)
(xy 0.254 -1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0.254 -1.016) (mid 1.27 0) (end 0.254 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0.254 -1.016) (mid 1.27 0) (end 0.254 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
(symbol "SolderJumper_2_Open_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "A" (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 "B" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Mechanical:MountingHole" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "H" (id 0) (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MountingHole" (id 1) (at 0 3.175 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "mounting hole" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Mounting Hole without connection" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "MountingHole*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MountingHole_0_1"
(circle (center 0 0) (radius 1.27)
(stroke (width 1.27) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
(symbol "power:GNDS" (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" "GNDS" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GNDS\" , signal ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GNDS_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) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GNDS_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GNDS" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "#FLG" (id 0) (at 0 1.905 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (id 1) (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PWR_FLAG_0_0"
(pin power_out line (at 0 0 90) (length 0)
(name "pwr" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "PWR_FLAG_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 1.27)
(xy -1.016 1.905)
(xy 0 2.54)
(xy 1.016 1.905)
(xy 0 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
(symbol "the78mole:RJ45_Weidmueller_2562920000" (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at -6.35 -8.89 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "RJ45_Weidmueller_2562920000" (id 1) (at 0 13.97 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "RJ45_Weidmueller_2562920000_0_1"
(polyline
(pts
(xy -5.08 3.81)
(xy -6.35 3.81)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -5.08 5.08)
(xy -6.35 5.08)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -6.35 -3.81)
(xy -5.08 -3.81)
(xy -5.08 -3.81)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -6.35 -2.54)
(xy -5.08 -2.54)
(xy -5.08 -2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -6.35 -1.27)
(xy -5.08 -1.27)
(xy -5.08 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -6.35 0)
(xy -5.08 0)
(xy -5.08 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -6.35 1.27)
(xy -5.08 1.27)
(xy -5.08 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -5.08 2.54)
(xy -6.35 2.54)
(xy -6.35 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -6.35 -5.08)
(xy -6.35 6.35)
(xy 3.81 6.35)
(xy 3.81 3.81)
(xy 5.08 3.81)
(xy 5.08 2.54)
(xy 6.35 2.54)
(xy 6.35 -1.27)
(xy 5.08 -1.27)
(xy 5.08 -2.54)
(xy 3.81 -2.54)
(xy 3.81 -5.08)
(xy -6.35 -5.08)
(xy -6.35 -5.08)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 7.62 12.065) (end -7.62 -10.795)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "RJ45_Weidmueller_2562920000_1_1"
(pin passive line (at 10.16 -8.255 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 -5.715 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 -3.175 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 -0.635 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 1.905 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 4.445 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 6.985 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 9.525 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -13.335 90) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "SH" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 192.405 60.325) (diameter 0) (color 0 0 0 0)
(uuid 06e99d25-a92e-4dbb-a664-59e8c4bed474)
)
(junction (at 233.68 62.865) (diameter 0) (color 0 0 0 0)
(uuid 08b45fa2-f656-4b21-977d-0517955d7093)
)
(junction (at 146.685 42.545) (diameter 0) (color 0 0 0 0)
(uuid 10944940-705b-442e-a87b-999c2ed3ffb4)
)
(junction (at 87.63 42.545) (diameter 0) (color 0 0 0 0)
(uuid 1d5b02b2-13ef-4897-8d0a-42e98f6be343)
)
(junction (at 238.125 65.405) (diameter 0) (color 0 0 0 0)
(uuid 334f0406-1325-470a-ae7f-43086316361f)
)
(junction (at 91.44 45.085) (diameter 0) (color 0 0 0 0)
(uuid 3883a676-9959-4f25-86e6-c63c976e3ff8)
)
(junction (at 196.215 65.405) (diameter 0) (color 0 0 0 0)
(uuid 3b298e05-cf52-4b55-9d98-9a4fb1dda134)
)
(junction (at 233.68 47.625) (diameter 0) (color 0 0 0 0)
(uuid 5e182c5c-fb2f-490b-9e7d-6bc114af1c2e)
)
(junction (at 102.87 62.865) (diameter 0) (color 0 0 0 0)
(uuid 69143a99-9b5d-4c13-8a77-b4fb2cd5a8d7)
)
(junction (at 238.125 45.085) (diameter 0) (color 0 0 0 0)
(uuid 757fec8c-e9a4-4bbd-bd43-0a19e15a6187)
)
(junction (at 99.06 60.325) (diameter 0) (color 0 0 0 0)
(uuid 9069d381-1c26-4172-98b5-418c1e9ee201)
)
(junction (at 229.235 60.325) (diameter 0) (color 0 0 0 0)
(uuid 9a376efb-cae0-4759-a9e4-18eb1fbfe2ec)
)
(junction (at 152.4 50.165) (diameter 0) (color 0 0 0 0)
(uuid a683353d-b997-4bd4-b736-1592fde99c46)
)
(junction (at 229.235 42.545) (diameter 0) (color 0 0 0 0)
(uuid a76313d2-3bbd-42ae-b407-a1a77d12fa0e)
)
(junction (at 173.355 31.75) (diameter 0) (color 0 0 0 0)
(uuid ae1b566e-ae8f-4190-bb59-9605b1179e9d)
)
(junction (at 85.725 50.165) (diameter 0) (color 0 0 0 0)
(uuid af024cbd-d7d9-48a9-a4b8-5019fe170b49)
)
(junction (at 194.31 62.865) (diameter 0) (color 0 0 0 0)
(uuid b1ebceda-9466-4cd3-bfa9-fa5e522a24f7)
)
(junction (at 222.885 67.945) (diameter 0) (color 0 0 0 0)
(uuid b2afe16a-8de5-41dd-8c6d-e49cf4e62ea5)
)
(junction (at 222.885 50.165) (diameter 0) (color 0 0 0 0)
(uuid b33bb3fd-ecc2-4fe4-935b-ea421005f7a6)
)
(junction (at 198.12 67.945) (diameter 0) (color 0 0 0 0)
(uuid b5d6e605-9b47-4f40-803b-25bca7b444fd)
)
(junction (at 150.495 47.625) (diameter 0) (color 0 0 0 0)
(uuid cf85497f-500b-422b-9a74-f68a6702adc0)
)
(junction (at 148.59 45.085) (diameter 0) (color 0 0 0 0)
(uuid cffe3bb7-87b9-4cb6-b9ab-bcf40261a3eb)
)
(junction (at 89.535 47.625) (diameter 0) (color 0 0 0 0)
(uuid ec225114-d00a-41c2-afa3-ed00c4bbe24c)
)
(junction (at 100.965 65.405) (diameter 0) (color 0 0 0 0)
(uuid f7476066-7466-4086-8c17-c3686f9184b8)
)
(junction (at 97.155 67.945) (diameter 0) (color 0 0 0 0)
(uuid ff836f3a-1a0e-4e50-b7ab-8b27a66282bc)
)
(wire (pts (xy 222.885 40.64) (xy 222.885 50.165))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 039f7a3d-2513-440b-8b8f-cef816d30cb1)
)
(wire (pts (xy 142.875 88.9) (xy 150.495 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 06e8118b-5fc9-4237-9d9b-dbc5a202d050)
)
(wire (pts (xy 233.68 74.93) (xy 233.68 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 07f9cb74-8b03-48fa-bd9f-10a2607abe1a)
)
(wire (pts (xy 91.44 29.21) (xy 91.44 45.085))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0c2e50b3-7126-4a11-9a0f-18e3cf569ce8)
)
(wire (pts (xy 102.87 62.865) (xy 194.31 62.865))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 10ba9788-9dfa-44e5-95fa-4b3150610b5d)
)
(wire (pts (xy 233.68 47.625) (xy 252.73 47.625))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 16178844-b9ed-4962-ab90-480783427baf)
)
(wire (pts (xy 150.495 47.625) (xy 233.68 47.625))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1b6275d0-909b-4ff4-af5a-62b704af6b8b)
)
(wire (pts (xy 239.395 83.185) (xy 229.235 83.185))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 22c0c378-f23a-49a3-a51f-e94a9319ca13)
)
(wire (pts (xy 222.885 32.385) (xy 222.885 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2482599b-995b-4bf7-99b4-06689cf71331)
)
(wire (pts (xy 63.5 94.615) (xy 64.77 94.615))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 26136f53-3b84-43b3-b350-d4dc409ca622)
)
(wire (pts (xy 91.44 45.085) (xy 148.59 45.085))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 289f72e7-f1fe-44ee-9b73-bb46b01b3099)
)
(wire (pts (xy 198.12 92.075) (xy 198.12 67.945))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2a2ed512-9120-4cc5-a665-93c19ff8baf0)
)
(wire (pts (xy 192.405 60.325) (xy 229.235 60.325))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2b432740-5d74-4844-9fc1-71c72e0d72c5)
)
(wire (pts (xy 198.12 67.945) (xy 222.885 67.945))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2ccf004b-d6b1-492b-b77b-2b5133a07405)
)
(wire (pts (xy 239.395 35.56) (xy 238.125 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 320f9c1d-8d06-4d21-997b-96c69b0db072)
)
(wire (pts (xy 64.77 49.53) (xy 63.5 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 322a1e03-46b7-4323-a663-b72f382adb28)
)
(wire (pts (xy 196.215 65.405) (xy 238.125 65.405))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 345ddf07-003b-4ef9-a6fa-fd66effb1560)
)
(wire (pts (xy 180.34 31.75) (xy 198.12 31.75))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 39765139-318d-4c49-afaf-f8eaa8449169)
)
(wire (pts (xy 74.93 26.67) (xy 100.965 26.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3aff713d-a136-4596-afaf-42e15811161b)
)
(wire (pts (xy 74.93 24.13) (xy 102.87 24.13))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3b037298-14f9-49fd-bf35-37af7307cacd)
)
(wire (pts (xy 229.235 26.67) (xy 229.235 42.545))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f19ef1b-7976-4415-a399-0c11364a4b9c)
)
(wire (pts (xy 85.725 50.165) (xy 152.4 50.165))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 40c4c429-ac4f-43f1-913a-358ed44349fb)
)
(wire (pts (xy 173.355 31.75) (xy 175.26 31.75))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 434ca515-418f-4443-9397-5a4ef96aa47c)
)
(wire (pts (xy 238.125 73.66) (xy 238.125 65.405))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 43568d3f-3c4d-4e78-b724-c16365b0254c)
)
(wire (pts (xy 233.68 62.865) (xy 233.68 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4499e81a-94f5-49bb-a45d-25bf2b607d79)
)
(wire (pts (xy 89.535 36.83) (xy 89.535 47.625))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 49e9bd77-1406-4d5c-8ffc-23b2679ad0f0)
)
(wire (pts (xy 87.63 39.37) (xy 87.63 42.545))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4bf6f758-7219-4aa0-9af4-25cd185ab7e5)
)
(wire (pts (xy 102.87 62.865) (xy 102.87 69.215))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4f2dac92-3216-4e9e-9c3e-2992af0849ea)
)
(wire (pts (xy 187.96 86.36) (xy 194.31 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4f390a26-7e3e-4e0c-90a2-d106866ac18c)
)
(wire (pts (xy 152.4 31.75) (xy 152.4 50.165))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 50e5082d-61aa-4074-a8f1-0fd9390951e1)
)
(wire (pts (xy 194.31 62.865) (xy 233.68 62.865))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 518b6a3f-cb86-4b97-9290-b77efe94aca9)
)
(wire (pts (xy 64.77 46.99) (xy 64.77 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 54156da1-a4ba-4432-8fc4-0760e2e00dc0)
)
(wire (pts (xy 100.965 65.405) (xy 196.215 65.405))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 54bef15a-c91d-489e-9158-1c019e02338e)
)
(wire (pts (xy 142.875 83.185) (xy 146.685 83.185))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 579620be-2a22-4883-897a-29cebc2815cd)
)
(wire (pts (xy 87.63 84.455) (xy 74.93 84.455))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5827fc9b-3c2c-491b-9109-3b28e53af27c)
)
(wire (pts (xy 97.155 67.945) (xy 198.12 67.945))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5975034b-5f10-4a62-ac12-9a9322590775)
)
(wire (pts (xy 89.535 47.625) (xy 89.535 81.915))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5b0806b5-50f5-4149-8367-08bfadaad9f2)
)
(wire (pts (xy 91.44 45.085) (xy 91.44 74.295))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5b9db5be-b954-4c1c-a18e-dffcdca87517)
)
(wire (pts (xy 229.235 60.325) (xy 252.73 60.325))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 607e9909-9de6-4ac5-84a4-dbd2be248386)
)
(wire (pts (xy 99.06 60.325) (xy 99.06 76.835))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 61e10ef1-6347-408a-a006-6cf7f6f8a711)
)
(wire (pts (xy 100.965 65.405) (xy 100.965 71.755))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 634d9759-0b05-4142-a8fd-03721013183a)
)
(wire (pts (xy 187.96 88.9) (xy 196.215 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 637beadb-9ea3-40bf-ac08-ad87feea360c)
)
(wire (pts (xy 100.965 26.67) (xy 100.965 65.405))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6ca7f60c-9bb2-4b31-ad22-12f3edc5def2)
)
(wire (pts (xy 238.125 35.56) (xy 238.125 45.085))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7090710f-a79c-4f2c-9792-1ec29935c1b5)
)
(wire (pts (xy 222.885 85.725) (xy 239.395 85.725))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 740b3d15-a0bf-4cb0-8771-c31a29e7aaf1)
)
(wire (pts (xy 222.885 67.945) (xy 252.73 67.945))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 768b1ee0-1258-47a2-a2fe-8b8ce0a741a7)
)
(wire (pts (xy 152.4 50.165) (xy 222.885 50.165))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 772875e2-b0e9-48e1-95fc-001eec3f01ec)
)
(wire (pts (xy 53.34 96.52) (xy 53.34 94.615))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7e5f499a-0b29-44cc-a879-763520e04d6d)
)
(wire (pts (xy 238.125 65.405) (xy 252.73 65.405))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 81678cbf-0ef3-40fc-88f3-ddb08deb4b04)
)
(wire (pts (xy 146.685 42.545) (xy 229.235 42.545))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 83b72bfc-1534-4a03-a426-9842b0957ac7)
)
(wire (pts (xy 152.4 31.75) (xy 166.37 31.75))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 866a2b56-b401-4536-9774-eb209d35b6b3)
)
(wire (pts (xy 53.34 94.615) (xy 55.88 94.615))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 86787d85-9fc3-4609-b83a-b9579b1db027)
)
(wire (pts (xy 89.535 47.625) (xy 150.495 47.625))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 88aa5cb6-56ab-4ba9-bc2c-ad39002959d5)
)
(wire (pts (xy 74.93 36.83) (xy 89.535 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8ae49509-fa35-42b0-9a94-bddab72e3344)
)
(wire (pts (xy 102.87 69.215) (xy 74.93 69.215))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8b69b426-d1a4-4b59-a1a3-fb1f9fb2600a)
)
(wire (pts (xy 100.965 71.755) (xy 74.93 71.755))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8c7716b6-4534-4d18-aa49-86210e95128e)
)
(wire (pts (xy 53.34 50.8) (xy 53.34 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8eb9e77f-2645-4c29-83c8-7ab26d529d6a)
)
(wire (pts (xy 74.93 29.21) (xy 91.44 29.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 914bee39-f184-4c68-b249-ae09ed09910f)
)
(wire (pts (xy 99.06 60.325) (xy 192.405 60.325))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 93071cbe-afe5-4ea5-8f44-7870eb1dfea0)
)
(wire (pts (xy 187.96 92.075) (xy 198.12 92.075))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 93929b75-dff3-4d94-8d4b-d04b8ac3c2ca)
)
(wire (pts (xy 194.31 86.36) (xy 194.31 62.865))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 940295b4-6775-49fc-8051-cc7f3a1a60dc)
)
(wire (pts (xy 142.875 86.36) (xy 148.59 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 96bcd4ad-4875-4398-890b-f7604a870f83)
)
(wire (pts (xy 87.63 42.545) (xy 146.685 42.545))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9742cb30-8cff-466c-916b-90acfbf1f5d5)
)
(wire (pts (xy 85.725 50.165) (xy 85.725 86.995))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 98272a81-a928-40da-b9db-2372098d58d2)
)
(wire (pts (xy 196.215 88.9) (xy 196.215 65.405))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 993d3c3f-df63-4691-858c-692c9872c342)
)
(wire (pts (xy 74.93 31.75) (xy 99.06 31.75))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9da16186-b661-40dc-bf3d-6e4be1a96f75)
)
(wire (pts (xy 99.06 31.75) (xy 99.06 60.325))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9fd1a389-316c-4f36-bf07-c25695bf2468)
)
(wire (pts (xy 74.93 39.37) (xy 87.63 39.37))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a24e2071-1f37-4696-b451-5eb10992a1ee)
)
(wire (pts (xy 89.535 81.915) (xy 74.93 81.915))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a33e442c-0d01-4028-b205-9a034cbac6df)
)
(wire (pts (xy 229.235 42.545) (xy 252.73 42.545))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a350ad3d-2d7e-4cf8-ae4f-d704c7e02364)
)
(wire (pts (xy 229.235 60.325) (xy 229.235 83.185))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a386d8bb-c179-46fc-aa16-cea178d1bfff)
)
(wire (pts (xy 173.355 29.21) (xy 173.355 31.75))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a7460c4b-f317-429a-850c-7602b4be08e7)
)
(wire (pts (xy 233.68 40.64) (xy 233.68 47.625))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a825ffa7-8157-4e8f-8d6b-35dc59c98fbb)
)
(wire (pts (xy 148.59 45.085) (xy 238.125 45.085))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a8bf255e-bd64-4c54-846b-eeb0b67b2403)
)
(wire (pts (xy 187.96 83.185) (xy 192.405 83.185))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ab6328be-2d46-4392-a4d9-46f268dd7f04)
)
(wire (pts (xy 53.34 49.53) (xy 55.88 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aea6956c-12b6-4101-bae4-5b63cbb2bde5)
)
(wire (pts (xy 142.875 92.075) (xy 152.4 92.075))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aec886f9-ac19-461e-bea1-54131d9f76fe)
)
(wire (pts (xy 102.87 24.13) (xy 102.87 62.865))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b31bb040-c2fc-4226-ac09-a4910de8a753)
)
(wire (pts (xy 85.725 86.995) (xy 74.93 86.995))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b3c27ddd-9aa4-4527-a8c3-76a2c2fbd176)
)
(wire (pts (xy 222.885 74.93) (xy 222.885 76.835))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b5156f1b-313a-4b73-9fde-a398d66cdbc1)
)
(wire (pts (xy 222.885 67.945) (xy 222.885 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b749b788-053a-4858-a17e-683dddd52991)
)
(wire (pts (xy 148.59 86.36) (xy 148.59 45.085))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ba6d516d-2766-4892-8869-680a7ec00d88)
)
(wire (pts (xy 74.93 34.29) (xy 97.155 34.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ba943b59-9351-473c-8362-7b0cfda59a99)
)
(wire (pts (xy 74.93 41.91) (xy 85.725 41.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bbd6f7fa-5ce0-4ca9-bc91-ad8cf0b26883)
)
(wire (pts (xy 238.125 45.085) (xy 252.73 45.085))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid be985999-a9b3-4a7c-a600-b9ba0e87a029)
)
(wire (pts (xy 192.405 83.185) (xy 192.405 60.325))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bf791a5d-48d4-4134-b1b2-ba3e605fb027)
)
(wire (pts (xy 99.06 76.835) (xy 74.93 76.835))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c0a6f852-6471-4d35-821f-bf40c1cf4758)
)
(wire (pts (xy 91.44 74.295) (xy 74.93 74.295))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c14c7e3c-90ca-417a-9ed4-a5dfab1b7c5b)
)
(wire (pts (xy 239.395 26.67) (xy 229.235 26.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c7dd55d0-2b99-47c3-93c4-3bbc6d51553c)
)