-
Notifications
You must be signed in to change notification settings - Fork 0
/
connectors.kicad_sch
1594 lines (1565 loc) · 62.9 KB
/
connectors.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 bb2f1bee-7311-42ca-9ec0-808a67102928)
(paper "A4")
(lib_symbols
(symbol "prius_gen2-rescue:+12V-power-prius_gen2-rescue" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+12V-power-prius_gen2-rescue" (id 1) (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+12V-power-prius_gen2-rescue_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+12V-power-prius_gen2-rescue_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+12V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "prius_gen2-rescue:+5V-power-prius_gen2-rescue" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V-power-prius_gen2-rescue" (id 1) (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+5V-power-prius_gen2-rescue_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+5V-power-prius_gen2-rescue_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+5V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "prius_gen2-rescue:C-Device-prius_gen2-rescue" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C-Device-prius_gen2-rescue" (id 1) (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C-Device-prius_gen2-rescue_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C-Device-prius_gen2-rescue_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 "prius_gen2-rescue:Conn_01x14-Connector_Generic-prius_gen2-rescue" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 17.78 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x14-Connector_Generic-prius_gen2-rescue" (id 1) (at 0 -20.32 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_fp_filters" "Connector*:*_1x??_*" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x14-Connector_Generic-prius_gen2-rescue_1_1"
(rectangle (start -1.27 -17.653) (end 0 -17.907)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -15.113) (end 0 -15.367)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(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 12.827) (end 0 12.573)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 15.367) (end 0 15.113)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 16.51) (end 1.27 -19.05)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin passive line (at -5.08 15.24 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 -7.62 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 -10.16 0) (length 3.81)
(name "Pin_11" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -12.7 0) (length 3.81)
(name "Pin_12" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -15.24 0) (length 3.81)
(name "Pin_13" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -17.78 0) (length 3.81)
(name "Pin_14" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 12.7 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 10.16 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 7.62 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 5.08 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 0 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 -2.54 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 -5.08 0) (length 3.81)
(name "Pin_9" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "prius_gen2-rescue:Conn_01x23-Connector_Generic-prius_gen2-rescue" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 30.48 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x23-Connector_Generic-prius_gen2-rescue" (id 1) (at 0 -30.48 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_fp_filters" "Connector*:*_1x??_*" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x23-Connector_Generic-prius_gen2-rescue_1_1"
(rectangle (start -1.27 -27.813) (end 0 -28.067)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -25.273) (end 0 -25.527)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -22.733) (end 0 -22.987)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -20.193) (end 0 -20.447)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -17.653) (end 0 -17.907)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -15.113) (end 0 -15.367)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(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 12.827) (end 0 12.573)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 15.367) (end 0 15.113)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 17.907) (end 0 17.653)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 20.447) (end 0 20.193)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 22.987) (end 0 22.733)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 25.527) (end 0 25.273)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 28.067) (end 0 27.813)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 29.21) (end 1.27 -29.21)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin passive line (at -5.08 27.94 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 5.08 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 2.54 0) (length 3.81)
(name "Pin_11" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_12" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_13" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -5.08 0) (length 3.81)
(name "Pin_14" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -7.62 0) (length 3.81)
(name "Pin_15" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -10.16 0) (length 3.81)
(name "Pin_16" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -12.7 0) (length 3.81)
(name "Pin_17" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -15.24 0) (length 3.81)
(name "Pin_18" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -17.78 0) (length 3.81)
(name "Pin_19" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 25.4 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 -20.32 0) (length 3.81)
(name "Pin_20" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -22.86 0) (length 3.81)
(name "Pin_21" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -25.4 0) (length 3.81)
(name "Pin_22" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -27.94 0) (length 3.81)
(name "Pin_23" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 22.86 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 20.32 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 17.78 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 15.24 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 12.7 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 10.16 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 7.62 0) (length 3.81)
(name "Pin_9" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "prius_gen2-rescue:GND-power-prius_gen2-rescue" (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" "GND-power-prius_gen2-rescue" (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)
)
(symbol "GND-power-prius_gen2-rescue_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 "GND-power-prius_gen2-rescue_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))))
)
)
)
(symbol "prius_gen2-rescue:R-Device-prius_gen2-rescue" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R-Device-prius_gen2-rescue" (id 1) (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -1.778 0 90)
(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_fp_filters" "R_*" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R-Device-prius_gen2-rescue_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R-Device-prius_gen2-rescue_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 "prius_gen2-rescue:ULN2003A-Transistor_Array-prius_gen2-rescue" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 0 15.875 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "ULN2003A-Transistor_Array-prius_gen2-rescue" (id 1) (at 0 13.97 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 1.27 -13.97 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "" (id 3) (at 2.54 -5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DIP*W7.62mm* SOIC*3.9x9.9mm*P1.27mm* SSOP*4.4x5.2mm*P0.65mm* TSSOP*4.4x5mm*P0.65mm* SOIC*W*5.3x10.2mm*P1.27mm*" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "ULN2003A-Transistor_Array-prius_gen2-rescue_0_1"
(rectangle (start -7.62 -12.7) (end 7.62 12.7)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(circle (center -1.778 5.08) (radius 0.254)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center -1.27 -2.286) (radius 0.254)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(circle (center -1.27 0) (radius 0.254)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(circle (center -1.27 2.54) (radius 0.254)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(circle (center -0.508 5.08) (radius 0.254)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy -4.572 5.08)
(xy -3.556 5.08)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.524 5.08)
(xy 4.064 5.08)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 6.731)
(xy -1.016 6.731)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.508 5.08)
(xy -0.508 10.16)
(xy 2.921 10.16)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -3.556 6.096)
(xy -3.556 4.064)
(xy -2.032 5.08)
(xy -3.556 6.096)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 5.969)
(xy -1.016 5.969)
(xy -0.508 6.731)
(xy 0 5.969)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "ULN2003A-Transistor_Array-prius_gen2-rescue_1_1"
(pin input line (at -10.16 5.08 0) (length 2.54)
(name "I1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin open_collector line (at 10.16 -10.16 180) (length 2.54)
(name "O7" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin open_collector line (at 10.16 -7.62 180) (length 2.54)
(name "O6" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin open_collector line (at 10.16 -5.08 180) (length 2.54)
(name "O5" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin open_collector line (at 10.16 -2.54 180) (length 2.54)
(name "O4" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin open_collector line (at 10.16 0 180) (length 2.54)
(name "O3" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin open_collector line (at 10.16 2.54 180) (length 2.54)
(name "O2" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin open_collector line (at 10.16 5.08 180) (length 2.54)
(name "O1" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 2.54 0) (length 2.54)
(name "I2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 0 0) (length 2.54)
(name "I3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -2.54 0) (length 2.54)
(name "I4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -5.08 0) (length 2.54)
(name "I5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -7.62 0) (length 2.54)
(name "I6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -10.16 0) (length 2.54)
(name "I7" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -15.24 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 10.16 180) (length 2.54)
(name "COM" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 167.64 85.09) (diameter 0) (color 0 0 0 0)
(uuid 002acc15-c1b2-4ac8-a860-6a620c49517c)
)
(junction (at 71.12 66.675) (diameter 0) (color 0 0 0 0)
(uuid 12621afe-aa06-4610-875e-181985424237)
)
(junction (at 81.28 76.835) (diameter 0) (color 0 0 0 0)
(uuid 129f4db3-26b9-47a0-bf34-3c6d9bebc1fc)
)
(junction (at 93.98 140.335) (diameter 0) (color 0 0 0 0)
(uuid 22fc2c0a-4ef0-4d8b-aeb3-8027304a6245)
)
(junction (at 81.28 66.675) (diameter 0) (color 0 0 0 0)
(uuid 45626409-ca04-4647-a879-8262b23720c9)
)
(junction (at 93.98 137.795) (diameter 0) (color 0 0 0 0)
(uuid 52ed8440-75ed-47a3-90ce-a4138fbaec41)
)
(junction (at 218.44 120.015) (diameter 0) (color 0 0 0 0)
(uuid 637e7183-d40d-47e1-88e2-1aa6420a20c8)
)
(junction (at 147.955 113.03) (diameter 0) (color 0 0 0 0)
(uuid 7d61ce17-5afe-40c4-ad76-a61f5f7477d2)
)
(junction (at 218.44 122.555) (diameter 0) (color 0 0 0 0)
(uuid 8ba97270-9e91-4476-83bf-1b6f3f3dcfc8)
)
(junction (at 147.955 102.235) (diameter 0) (color 0 0 0 0)
(uuid ce491578-8969-45bb-8ac9-e23cf019b661)
)
(no_connect (at 191.77 94.615) (uuid 1775740e-c6fc-4ee5-9f23-615a6cb32409))
(no_connect (at 191.77 104.775) (uuid 2530c2c9-426a-4aca-9dbd-c1dd29542c5b))
(no_connect (at 171.45 104.775) (uuid cd8819e0-7e2f-4b64-88d0-6da1e4c3ff51))
(wire (pts (xy 222.25 112.395) (xy 191.77 112.395))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0447ed10-038e-42b0-855e-3b8c51e022d6)
)
(wire (pts (xy 191.77 102.235) (xy 195.58 102.235))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0512892b-714a-4272-990e-baa24bba37e3)
)
(wire (pts (xy 94.615 92.075) (xy 100.965 92.075))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 05622b1c-3f5d-4c95-9b55-e7326bb0b4c8)
)
(wire (pts (xy 140.335 104.14) (xy 140.335 102.235))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 05e4566f-5341-4e04-a19c-394bfccb6e58)
)
(wire (pts (xy 94.615 125.095) (xy 100.965 125.095))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0afe416f-5f3c-4a2c-9190-90612d1abddf)
)
(wire (pts (xy 147.955 113.03) (xy 147.955 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 154a88af-a7a1-4f99-9f17-d2e0f2041fa9)
)
(wire (pts (xy 100.965 130.175) (xy 94.615 130.175))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2a25a0d5-3455-494a-9486-e14401c30057)
)
(wire (pts (xy 94.615 120.015) (xy 100.965 120.015))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2d8c7c03-9ab2-42f0-b4e1-111f73d955ae)
)
(wire (pts (xy 93.98 137.795) (xy 93.98 135.255))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2e7fd043-81c1-40c6-a0ae-b892731c2ca7)
)
(wire (pts (xy 167.64 82.55) (xy 167.64 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 33a60fb0-8ccb-4330-93cd-702057d594dc)
)
(wire (pts (xy 94.615 114.935) (xy 100.965 114.935))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 344bb6a4-5d2f-4697-aa46-d0c76f55b402)
)
(wire (pts (xy 94.615 99.695) (xy 100.965 99.695))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 372c52fa-a932-4f13-8c84-f89db11231c7)
)
(wire (pts (xy 100.965 140.335) (xy 93.98 140.335))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3a922121-1929-480b-900d-9f9bd3264d85)
)
(wire (pts (xy 95.25 97.155) (xy 100.965 97.155))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3b75d7f1-397f-445c-87bb-0936700f1e45)
)
(wire (pts (xy 195.58 85.09) (xy 167.64 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3c1421ad-fda8-4297-8b3d-430d3fddb643)
)
(wire (pts (xy 147.955 102.235) (xy 147.955 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f1b1af8-66c5-4b02-83b0-0f8e5ac7270b)
)
(wire (pts (xy 81.28 76.835) (xy 90.17 76.835))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 42f263d1-5356-438b-b5ed-904819ff29ca)
)
(wire (pts (xy 71.12 66.675) (xy 71.12 57.785))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 436b8cb1-3107-4d30-91d1-d7601a5869c8)
)
(wire (pts (xy 218.44 89.535) (xy 222.25 89.535))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 43a46073-8421-446a-9cf9-a1485c60db38)
)
(wire (pts (xy 93.98 144.272) (xy 93.98 140.335))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 472d36bc-f853-4be5-8b99-778930961899)
)
(wire (pts (xy 222.25 99.695) (xy 218.44 99.695))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 48188007-ec5b-43b2-a9f5-0a4c06180360)
)
(wire (pts (xy 94.615 132.715) (xy 100.965 132.715))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 547c8f0a-be6e-4aad-8607-c153bacc7b75)
)
(wire (pts (xy 140.335 102.235) (xy 147.955 102.235))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 54dab820-83fc-47e8-9323-727e8fede41d)
)
(wire (pts (xy 93.98 140.335) (xy 93.98 137.795))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5854049e-c371-4d25-bb0c-41d5f71f43d9)
)
(wire (pts (xy 71.12 86.995) (xy 100.965 86.995))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5bb8d612-528b-42b3-839c-f932ef77ad81)
)
(wire (pts (xy 100.965 112.395) (xy 94.615 112.395))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5c45eb18-f416-468c-b31d-4ef2b041ef42)
)
(wire (pts (xy 147.955 102.235) (xy 171.45 102.235))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5d4a548f-9496-409f-9543-41fc15cd76b4)
)
(wire (pts (xy 81.28 76.835) (xy 81.28 79.375))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 616ae709-575d-4d79-b91a-deaa2cfa16de)
)
(wire (pts (xy 94.615 104.775) (xy 100.965 104.775))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 65a6e551-58c4-49ce-a1c5-603b68c5afd5)
)
(wire (pts (xy 191.77 109.855) (xy 222.25 109.855))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 666710c6-956a-4e46-946e-3bb10189de06)
)
(wire (pts (xy 81.28 76.835) (xy 81.28 75.565))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 66b37b26-8e73-44cf-85a7-e6a373996659)
)
(wire (pts (xy 222.25 122.555) (xy 218.44 122.555))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6fa276fe-6ae3-453f-80d3-3353cbccb082)
)
(wire (pts (xy 171.45 107.315) (xy 167.005 107.315))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 741f96c5-2cd5-429b-b2e7-9bb7f5758cac)
)
(wire (pts (xy 195.58 102.235) (xy 195.58 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 77253528-be9d-45e5-97c5-620e513c13c9)
)
(wire (pts (xy 171.45 112.395) (xy 167.005 112.395))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 789bfdf4-f92e-4da2-b608-f00d493d66c0)
)
(wire (pts (xy 100.965 117.475) (xy 94.615 117.475))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 78c2992a-327f-49b0-8087-4a1a1a3cf711)
)
(wire (pts (xy 218.44 120.015) (xy 218.44 117.475))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7a868a99-f325-4147-8101-1e90af5a7eb0)
)
(wire (pts (xy 146.05 88.265) (xy 147.955 88.265))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7dc888be-9848-4b76-8db6-5667aed75df3)
)
(wire (pts (xy 90.17 66.675) (xy 81.28 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7f8a5dd3-55c9-46e8-9791-7d715a95ad64)
)
(wire (pts (xy 100.965 137.795) (xy 93.98 137.795))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 838f4c44-a3e3-4fe2-9a39-1a38d209fdf1)
)
(wire (pts (xy 90.17 76.835) (xy 90.17 75.565))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 842e9541-4d11-4552-a504-52dc45cc67d7)
)
(wire (pts (xy 197.485 99.695) (xy 191.77 99.695))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 86c79a1c-0256-426c-a75b-90e368af990a)
)
(wire (pts (xy 100.965 107.315) (xy 94.615 107.315))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 87cc1d49-de6a-4655-9126-68911d1a84a8)
)
(wire (pts (xy 167.64 99.695) (xy 171.45 99.695))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 88acafba-8d72-43c4-a771-25bba60d2d7c)
)
(wire (pts (xy 100.965 122.555) (xy 94.615 122.555))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 89fd2b02-148d-4c5e-bcbc-9a975e7f1231)
)
(wire (pts (xy 71.12 66.675) (xy 71.12 86.995))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8a674b57-0a04-4592-8fb1-a23f059ea949)
)
(wire (pts (xy 81.28 66.675) (xy 71.12 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8c6c15fd-1b7e-47cf-b17a-606c93e88414)
)
(wire (pts (xy 222.25 92.075) (xy 218.44 92.075))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8c775d42-7a4b-45fd-b289-d7e2e224429b)
)
(wire (pts (xy 81.28 67.945) (xy 81.28 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 902194f4-4cd2-4d07-8c4a-fda5aae6ea99)
)
(wire (pts (xy 181.61 120.015) (xy 181.61 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 93db89c9-c079-4284-bd97-a0f354a86d71)
)
(wire (pts (xy 167.005 109.855) (xy 171.45 109.855))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 974815ab-3007-434e-8b53-d0809b5ee863)
)
(wire (pts (xy 100.965 89.535) (xy 94.615 89.535))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 983e8769-79a2-4988-bc0a-595e171251e6)
)
(wire (pts (xy 167.64 85.09) (xy 167.64 99.695))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a246ebe5-dd6e-4457-b06b-930b39aee441)
)
(wire (pts (xy 218.44 102.235) (xy 222.25 102.235))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aa22f65b-3d0e-42f5-9fb6-b580dbe57ca6)
)
(wire (pts (xy 147.955 88.265) (xy 147.955 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ad15ada2-6812-4d66-9959-0dfc863cce03)
)
(wire (pts (xy 94.615 109.855) (xy 100.965 109.855))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b137c5cc-49a5-41bb-a24f-284d51724f92)
)
(wire (pts (xy 167.64 71.755) (xy 167.64 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b28a4c95-a9c1-4367-8f97-8dc4a5126653)
)
(wire (pts (xy 218.44 126.746) (xy 218.44 122.555))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b487b670-20b9-4c44-a235-aa11146cb599)
)
(wire (pts (xy 100.965 94.615) (xy 94.615 94.615))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b6fc620e-f8b1-4c3b-b6c2-42e2b172d27c)
)
(wire (pts (xy 218.44 117.475) (xy 222.25 117.475))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b93f5736-0cef-4cb3-95c8-be113e6c1c18)
)
(wire (pts (xy 191.77 114.935) (xy 222.25 114.935))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bd0744d2-e66a-44e0-8d9a-4aaa14933ad5)
)
(wire (pts (xy 100.965 102.235) (xy 94.615 102.235))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bdc1733e-523d-47df-9dd5-0e2478becb0f)
)