forked from dynamicx-circuit/USB2XXX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
USB2XXX.kicad_sch
1784 lines (1748 loc) · 74 KB
/
USB2XXX.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 e63e39d7-6ac0-4ffd-8aa3-1841a4541b55)
(paper "A4")
(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_01x03" (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_01x03" (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, 01x03, 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_01x03_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 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 -3.81)
(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))))
)
)
)
(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:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (id 1) (at 0.254 -2.032 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" "capacitor cap" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_Small_1_1"
(pin passive line (at 0 2.54 270) (length 2.032)
(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 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:D_TVS" (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" "D_TVS" (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" "diode TVS thyrector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Bidirectional transient-voltage-suppression diode" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "D_TVS_0_1"
(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 0.508 1.27)
(xy 0 1.27)
(xy 0 -1.27)
(xy -0.508 -1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.54 1.27)
(xy -2.54 -1.27)
(xy 2.54 1.27)
(xy 2.54 -1.27)
(xy -2.54 1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "D_TVS_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "A1" (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 "A2" (effects (font (size 1.27 1.27))))
(number "2" (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 "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 "power:+5V" (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" (id 1) (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+5V_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_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 "power:GND" (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" (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 \"GND\" , ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:VCC" (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" "VCC" (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 \"VCC\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "VCC_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 "VCC_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "VCC" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 116.586 80.772) (diameter 0) (color 0 0 0 0)
(uuid 787529c4-5777-41ee-9f3a-ba7042e00622)
)
(junction (at 96.266 82.55) (diameter 0) (color 0 0 0 0)
(uuid 78e646dc-01de-4fa2-9189-54c3bdc89801)
)
(junction (at 105.41 88.138) (diameter 0) (color 0 0 0 0)
(uuid 94fb1ec6-e38a-4d93-82b0-f275824b198f)
)
(junction (at 113.284 91.694) (diameter 0) (color 0 0 0 0)
(uuid bcc955fb-8808-4f61-b6ed-7e142555f88d)
)
(junction (at 116.586 76.454) (diameter 0) (color 0 0 0 0)
(uuid e8c8eacc-eabb-4ab0-a7e9-a308aa668dc1)
)
(wire (pts (xy 116.586 80.772) (xy 118.618 80.772))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 09a83a53-65d0-4f7e-a03d-45340d0682a4)
)
(wire (pts (xy 105.41 88.138) (xy 123.19 88.138))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0c5bafec-74e4-47d1-a4a7-18c4ac4c1adc)
)
(wire (pts (xy 142.748 88.646) (xy 147.32 88.646))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0e22666b-055d-420e-bf0a-68987e806b52)
)
(wire (pts (xy 164.592 112.268) (xy 167.64 112.268))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 174ef894-f850-4d87-b9b5-5570cf1b2934)
)
(wire (pts (xy 96.266 82.55) (xy 116.586 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1d03841b-eb66-4d7c-b931-2327974e1916)
)
(wire (pts (xy 89.662 85.09) (xy 105.41 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 27ebcba0-f094-4e08-91bb-a0234764fc5c)
)
(wire (pts (xy 96.266 82.55) (xy 96.266 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2953b092-3ac0-4ea4-9fe0-7e2aaca83472)
)
(wire (pts (xy 89.662 87.63) (xy 102.362 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2bc704cf-2ad0-417d-9a7a-de20ab017e9b)
)
(wire (pts (xy 89.662 82.55) (xy 96.266 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2bfc1051-b75a-4b0b-b96f-78a22e99e306)
)
(wire (pts (xy 142.748 124.206) (xy 147.066 124.206))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 306fe6b6-489b-46aa-9551-ef84e97973c3)
)
(wire (pts (xy 167.132 87.376) (xy 167.64 87.376))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 324db6af-ffc1-4c0a-b421-95a3d625fcb8)
)
(wire (pts (xy 116.586 69.088) (xy 116.586 76.454))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 42c4ae04-7499-4497-a69b-250f22e2e383)
)
(wire (pts (xy 164.592 109.728) (xy 167.64 109.728))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 444ffcd1-454f-47c9-ab30-84d74ca0e7bc)
)
(wire (pts (xy 105.41 88.138) (xy 105.41 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4535d0e7-35ee-40cb-9cc0-73bb40bf2184)
)
(wire (pts (xy 102.362 91.694) (xy 113.284 91.694))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 45ef5749-21b9-48b7-baf3-e4f4b8931329)
)
(wire (pts (xy 89.662 90.17) (xy 89.662 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 47e003b5-47db-4603-b44c-7a789b33e8c8)
)
(wire (pts (xy 160.274 89.916) (xy 167.64 89.916))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 49fe6b93-02be-4792-951c-0cb873cf7271)
)
(wire (pts (xy 116.586 69.088) (xy 123.19 69.088))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5796b327-a4ef-4bfc-9bac-09dd00e56552)
)
(wire (pts (xy 166.624 97.282) (xy 167.64 97.282))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 72788e27-0549-4d3f-af79-1d0d722835b4)
)
(wire (pts (xy 72.898 95.758) (xy 72.898 97.028))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 77a1cf01-fc90-4dbb-8b18-9f71b7da98ba)
)
(wire (pts (xy 113.284 100.33) (xy 113.284 101.346))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7afd13ec-1226-441e-bb20-646944629370)
)
(wire (pts (xy 105.41 85.09) (xy 105.41 88.138))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8196a22e-d00b-4984-9abe-42f99fcbceeb)
)
(wire (pts (xy 113.284 91.694) (xy 123.19 91.694))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 82c268de-abf2-4376-b07c-7b61a31e4b07)
)
(wire (pts (xy 113.284 91.694) (xy 113.284 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8b594169-77ce-493e-b77a-79c3cf66af72)
)
(wire (pts (xy 123.698 76.454) (xy 124.968 76.454))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8d89657e-6c8d-4389-8fae-6faf85c00cf2)
)
(wire (pts (xy 72.898 87.376) (xy 72.898 88.138))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 96f4afa9-77a6-4308-a565-eaf2d2bad8e4)
)
(wire (pts (xy 142.748 91.186) (xy 147.32 91.186))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9b903957-7e0e-4003-901d-2a244e22bfa2)
)
(wire (pts (xy 142.748 109.728) (xy 147.066 109.728))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a9113907-a89f-430e-b1d3-18db339bf67d)
)
(wire (pts (xy 164.338 121.666) (xy 167.64 121.666))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ac668a18-8e0f-4aa6-bfc1-4693101bd310)
)
(wire (pts (xy 116.586 76.454) (xy 116.586 80.772))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b4730d41-c504-48c5-af16-76f31eb481ff)
)
(wire (pts (xy 164.338 124.206) (xy 167.64 124.206))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b71e5bb7-6d4d-4b68-b6a9-2816f916640f)
)
(wire (pts (xy 96.266 100.33) (xy 96.266 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bd0d0098-1972-4e73-85c6-c85d89f61e41)
)
(wire (pts (xy 160.274 99.822) (xy 167.64 99.822))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c0d87d21-c783-49c9-bb67-e3f2a021c010)
)
(wire (pts (xy 160.274 102.362) (xy 167.64 102.362))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c51a3de2-d2e9-436f-ae39-77edd2c736d9)
)
(wire (pts (xy 102.362 87.63) (xy 102.362 91.694))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c6479ab4-4776-4b77-a292-c2dc32e06e73)
)
(wire (pts (xy 72.898 80.01) (xy 72.898 82.296))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d116c9cc-5cca-466e-bb7a-35dfd56ee7dd)
)
(wire (pts (xy 116.586 82.55) (xy 116.586 80.772))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d425604c-6a22-454e-a724-6bb057255dcd)
)
(wire (pts (xy 142.748 112.268) (xy 147.066 112.268))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d545df23-5ff7-4938-8b63-581bf5a822ab)
)
(wire (pts (xy 105.41 100.33) (xy 105.41 101.346))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d6b3e7a8-d4db-4efd-98da-dbeadd3c48a9)
)
(wire (pts (xy 116.586 76.454) (xy 118.618 76.454))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e7d1e4c2-b4af-419f-8c9f-c187253bc6b4)
)
(wire (pts (xy 167.132 84.836) (xy 167.64 84.836))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ec849dab-58c5-42fc-adf5-11f2df67c5cf)
)
(wire (pts (xy 123.698 80.772) (xy 124.968 80.772))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid eccd8992-7d36-4e6e-9ac0-44a5435a48b0)
)
(wire (pts (xy 142.748 102.362) (xy 147.32 102.362))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ef04e179-1035-430f-b8a3-37f6edb09c73)
)
(wire (pts (xy 142.748 121.666) (xy 147.066 121.666))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fc0c340d-078d-442f-85a7-37bfd9919386)
)
(wire (pts (xy 142.748 99.822) (xy 147.32 99.822))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fe72b5c6-0bec-481c-82b5-61ae97cd13f8)
)
(symbol (lib_id "power:GND") (at 166.624 97.282 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 01f5edb9-b262-4567-aefb-a3c14f87af29)
(property "Reference" "#PWR029" (id 0) (at 160.274 97.282 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 164.592 95.25 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (id 2) (at 166.624 97.282 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 166.624 97.282 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e254a276-421c-4fb1-8206-84e3697e7df6))
)
(symbol (lib_id "power:GND") (at 113.284 101.346 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 2b0a7a13-2ab3-4754-a043-ddfdd4b702fd)
(property "Reference" "#PWR031" (id 0) (at 113.284 107.696 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 113.284 105.9085 0))
(property "Footprint" "" (id 2) (at 113.284 101.346 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 113.284 101.346 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7a65cd86-217b-49f6-b7f8-c25193df9386))
)
(symbol (lib_id "Device:R_Small") (at 72.898 84.836 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 350f2937-97c5-4530-9649-824c0ec67b0c)
(property "Reference" "R13" (id 0) (at 74.3966 83.9275 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1K" (id 1) (at 74.3966 86.7026 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 72.898 84.836 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 72.898 84.836 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e62d50a5-879b-4af8-828e-27748b0c14dd))
(pin "2" (uuid f1bc3f15-e2f1-415f-b584-63b5c52d230a))
)
(symbol (lib_id "power:GND") (at 72.898 97.028 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 35264ca2-620d-4eea-a665-32a8d59c639c)
(property "Reference" "#PWR034" (id 0) (at 72.898 103.378 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 72.898 101.5905 0))
(property "Footprint" "" (id 2) (at 72.898 97.028 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 72.898 97.028 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4a9878d1-fe59-47b8-987f-d38ce1d60dd8))
)
(symbol (lib_id "Device:D_TVS") (at 105.41 96.52 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 3621cbbd-5cfc-49ea-af54-38a6cb8fd03e)
(property "Reference" "D6" (id 0) (at 107.442 95.6115 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "BV05C" (id 1) (at 106.172 100.076 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Diode_SMD:D_SOD-323" (id 2) (at 105.41 96.52 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 105.41 96.52 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b97c6654-b9fd-4b97-b46e-4a54ba9973fa))
(pin "2" (uuid f01f513f-d9e6-450d-b580-5d7f1a31c2ac))
)
(symbol (lib_id "Connector_Generic:Conn_01x04") (at 84.582 85.09 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 3d353840-3aaf-44c3-860e-5387613b4726)
(property "Reference" "J1" (id 0) (at 84.582 80.0885 0))
(property "Value" "Conn_01x04" (id 1) (at 84.582 80.0886 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "Connector_Molex:Molex_CLIK-Mate_502386-0470_1x04-1MP_P1.25mm_Horizontal" (id 2) (at 84.582 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 84.582 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0f89699c-83da-46d0-a2df-67e2c104e291))
(pin "2" (uuid ccdb6767-c202-4535-bbd0-28d93f99e00a))
(pin "3" (uuid 0a3ed2b2-cf1e-40a5-a259-e36046525a50))
(pin "4" (uuid 583ac8a5-1c48-4250-b337-ad17f3bec25b))
)
(symbol (lib_id "Device:C_Small") (at 121.158 80.772 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 4f3e13ff-cb91-41a7-88b2-bb58a260e739)
(property "Reference" "C27" (id 0) (at 118.872 79.502 90))
(property "Value" "100n" (id 1) (at 123.952 79.248 90))
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 121.158 80.772 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 121.158 80.772 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8a646737-105b-4286-b039-1220c4b5c5e7))
(pin "2" (uuid ca26901c-11f0-48e3-bca9-1c204b71fdb3))
)
(symbol (lib_id "power:+5V") (at 167.132 87.376 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 5101365b-b4be-4f1c-9fa1-be6db4bb58c3)
(property "Reference" "#PWR028" (id 0) (at 170.942 87.376 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (id 1) (at 165.1 86.36 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 167.132 87.376 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 167.132 87.376 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7146d578-75c6-4bed-b1eb-46a48dfd5b1d))
)
(symbol (lib_id "power:GND") (at 105.41 101.346 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 74416964-3639-45aa-8fbf-e4ca79b8cb71)
(property "Reference" "#PWR030" (id 0) (at 105.41 107.696 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 105.41 105.9085 0))
(property "Footprint" "" (id 2) (at 105.41 101.346 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 105.41 101.346 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 465e19fd-2705-451d-aa63-b3df8b856635))
)
(symbol (lib_id "Connector_Generic:Conn_01x03") (at 172.72 99.822 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 9b664edd-9026-46e2-9164-e2b4169d7d7f)
(property "Reference" "J3" (id 0) (at 172.72 94.8205 0))
(property "Value" "Conn_01x03" (id 1) (at 174.752 97.9554 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "Connector_JST:JST_GH_SM03B-GHS-TB_1x03-1MP_P1.25mm_Horizontal" (id 2) (at 172.72 99.822 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 172.72 99.822 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 514e2018-feed-4760-81b4-3215fcc3bfa9))
(pin "2" (uuid c8b29e06-4b17-4bf6-bdbd-dace57e07aaf))
(pin "3" (uuid 0d5880cb-c997-4346-8a4c-147141cb29ea))
)
(symbol (lib_id "power:GND") (at 124.968 76.454 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 9d87d66c-04b6-4d77-8e65-ee3d79da3f81)
(property "Reference" "#PWR025" (id 0) (at 131.318 76.454 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 128.143 76.933 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (id 2) (at 124.968 76.454 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 124.968 76.454 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e17480b8-d344-4339-aa2d-7942c795e4bd))
)
(symbol (lib_id "power:GND") (at 89.662 101.6 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid a9d5667e-882d-4b6b-8251-196f96c6cefe)
(property "Reference" "#PWR0131" (id 0) (at 89.662 107.95 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 89.662 106.1625 0))
(property "Footprint" "" (id 2) (at 89.662 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 89.662 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 66729428-5c8f-4cf0-b2d1-0ed679244f00))
)
(symbol (lib_id "Connector_Generic:Conn_01x02") (at 172.72 124.206 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid b3791515-85aa-466b-b510-cb45412b4ef0)
(property "Reference" "J5" (id 0) (at 172.72 119.2045 0))
(property "Value" "Conn_01x02" (id 1) (at 174.752 121.0694 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "Connector_JST:JST_GH_SM02B-GHS-TB_1x02-1MP_P1.25mm_Horizontal" (id 2) (at 172.72 124.206 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 172.72 124.206 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 92ce9bbf-3190-4289-8be7-b57aca9a36b2))
(pin "2" (uuid 5fe14305-486a-4dd0-a9d2-b346a24c3210))
)
(symbol (lib_id "Connector_Generic:Conn_01x02") (at 172.72 112.268 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid b4a4ed54-c8b9-4e37-94fb-f343dfb9c367)
(property "Reference" "J4" (id 0) (at 172.72 107.2665 0))
(property "Value" "Conn_01x02" (id 1) (at 174.752 109.1314 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "Connector_JST:JST_GH_SM02B-GHS-TB_1x02-1MP_P1.25mm_Horizontal" (id 2) (at 172.72 112.268 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 172.72 112.268 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0318d09c-ae38-4d2e-9867-82626927590f))
(pin "2" (uuid 211bf8d0-869b-468d-9c83-c279e311e369))
)
(symbol (lib_id "Device:D_TVS") (at 96.266 96.52 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid ba7c50f6-b759-4ab6-a7b6-c09a460c87bf)
(property "Reference" "D5" (id 0) (at 98.298 95.6115 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "BV05C" (id 1) (at 97.028 100.076 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Diode_SMD:D_SOD-323" (id 2) (at 96.266 96.52 0)
(effects (font (size 1.27 1.27)) hide)
)