-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsensor.kicad_pcb
4845 lines (4825 loc) · 192 KB
/
sensor.kicad_pcb
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_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "Green") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (color "Green") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(grid_origin 89.598 97.39)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin true)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber/")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "Net-(C1-Pad1)")
(net 3 "+1V9")
(net 4 "VCC")
(net 5 "Net-(C6-Pad1)")
(net 6 "Net-(C6-Pad2)")
(net 7 "Net-(C8-Pad1)")
(net 8 "MOTION_2")
(net 9 "NCS_2")
(net 10 "SCLK_2")
(net 11 "SDIO_2")
(net 12 "Net-(R1-Pad1)")
(net 13 "unconnected-(U1-Pad4)")
(net 14 "unconnected-(U2-Pad4)")
(net 15 "Net-(U2-Pad15)")
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical" (layer "F.Cu")
(tedit 632EEC5E) (tstamp b27da24e-0290-42cb-9a53-e4d99b9a4fa2)
(at 99.475 104.15)
(descr "Through hole straight pin header, 1x06, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x06 2.54mm single row")
(property "Sheetfile" "sensor.kicad_sch")
(property "Sheetname" "")
(path "/d04e4a25-fea8-400a-b78a-19b8bbedb78b")
(attr through_hole)
(fp_text reference "J1" (at 0 -2.33) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3e2c8bf3-c0c8-4e13-ab91-7df06505bfe7)
)
(fp_text value "Conn_01x06" (at -11.958238 17.691) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8b1ad516-8116-4d67-afff-6363c44ba8c2)
)
(fp_line (start 1.8 14.5) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 2d9ba040-322d-4314-93f2-2c62a754cdb2))
(fp_line (start -1.8 14.5) (end 1.8 14.5) (layer "F.CrtYd") (width 0.05) (tstamp 6128a590-2bd4-47ae-aa8f-416a5c8ec0ea))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 6369fe02-e971-4315-8a3b-63162f49afb4))
(fp_line (start -1.8 -1.8) (end -1.8 14.5) (layer "F.CrtYd") (width 0.05) (tstamp 86a57e73-03a0-4103-a4c6-346a62c1d04b))
(fp_line (start 1.27 13.97) (end -1.27 13.97) (layer "F.Fab") (width 0.1) (tstamp 117fd1a3-f04a-45a6-8805-c18cbde167b7))
(fp_line (start -1.27 13.97) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 4811af6a-69a4-4271-9bf1-17f51ee958d9))
(fp_line (start 1.27 -1.27) (end 1.27 13.97) (layer "F.Fab") (width 0.1) (tstamp b94d815f-679e-4808-b29d-97bbfad96810))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp eb68be0f-5652-470e-b3d1-ee64d187b13a))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp f4023a78-bc99-4836-9188-e14517faa872))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp b7eb526c-8444-44c5-9f8f-ab7c944c16da))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "VCC") (pinfunction "Pin_2") (pintype "passive") (tstamp cc7a33d2-c867-4ed4-abe5-21c1caad12a4))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "MOTION_2") (pinfunction "Pin_3") (pintype "passive") (tstamp fbeefc12-59ab-4cf4-a92b-208c7789630a))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 11 "SDIO_2") (pinfunction "Pin_4") (pintype "passive") (tstamp d695e1ac-181b-4a85-913c-44276e1fd2b7))
(pad "5" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 "SCLK_2") (pinfunction "Pin_5") (pintype "passive") (tstamp 80f9e53b-91be-42e7-9238-5fbec8436fbb))
(pad "6" thru_hole circle (at 0 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 "NCS_2") (pinfunction "Pin_6") (pintype "passive") (tstamp 0e444c8b-2508-4aae-9659-bb5d25735ab9))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x06_P2.54mm_Vertical.wrl" hide
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23-5" (layer "B.Cu")
(tedit 5F6F9B37) (tstamp 3c3e78d8-62d7-4020-ae7c-c489234b27d5)
(at 78.674 120.31 -90)
(descr "SOT, 5 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "LCSC" "C146366")
(property "Sheetfile" "sensor.kicad_sch")
(property "Sheetname" "")
(path "/dbf9d52f-7c18-496f-9222-1cd5f4d22ee1")
(attr smd)
(fp_text reference "U1" (at 0 2.4 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp cb6f88f8-d28c-4835-8ac0-c6de233cbbeb)
)
(fp_text value "TCR2EF19" (at 0 -2.4 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 29f97c6d-f4a1-4b11-bc21-f267ac1969c6)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp 7d8e69b9-7592-427b-8bf2-52ec32b9a07d)
)
(fp_line (start 0 1.56) (end -1.8 1.56) (layer "B.SilkS") (width 0.12) (tstamp 4ed71a16-b3f0-4e14-80fa-b27e8ad7c053))
(fp_line (start 0 -1.56) (end 0.8 -1.56) (layer "B.SilkS") (width 0.12) (tstamp 4f41c769-5e9b-484d-a900-27f099059258))
(fp_line (start 0 1.56) (end 0.8 1.56) (layer "B.SilkS") (width 0.12) (tstamp f1e3855f-467b-4729-a598-302bb35285ba))
(fp_line (start 0 -1.56) (end -0.8 -1.56) (layer "B.SilkS") (width 0.12) (tstamp f4223a35-95f3-495e-af74-64218a03163c))
(fp_line (start -2.05 1.7) (end -2.05 -1.7) (layer "B.CrtYd") (width 0.05) (tstamp 8ac3ece7-219f-48ea-aecf-661b0274dac7))
(fp_line (start -2.05 -1.7) (end 2.05 -1.7) (layer "B.CrtYd") (width 0.05) (tstamp 90883fea-fa58-4c9a-97ea-cb96f9d4dcf7))
(fp_line (start 2.05 1.7) (end -2.05 1.7) (layer "B.CrtYd") (width 0.05) (tstamp a1b5d1e1-d2c9-4518-a7b9-f8cd2335caac))
(fp_line (start 2.05 -1.7) (end 2.05 1.7) (layer "B.CrtYd") (width 0.05) (tstamp e987b886-cfff-40a7-b52a-c5ebea6eb36e))
(fp_line (start -0.8 1.05) (end -0.4 1.45) (layer "B.Fab") (width 0.1) (tstamp 38088687-4d8b-4773-be70-5559122b65c9))
(fp_line (start -0.4 1.45) (end 0.8 1.45) (layer "B.Fab") (width 0.1) (tstamp 63ed6903-6a18-4b03-8c92-db80b6141029))
(fp_line (start 0.8 -1.45) (end -0.8 -1.45) (layer "B.Fab") (width 0.1) (tstamp d66b58ba-a112-4eaa-979b-81b2a28ccb90))
(fp_line (start -0.8 -1.45) (end -0.8 1.05) (layer "B.Fab") (width 0.1) (tstamp f32fa9b2-cb54-4e78-b698-09d2f8ad041d))
(fp_line (start 0.8 1.45) (end 0.8 -1.45) (layer "B.Fab") (width 0.1) (tstamp ff57a491-485b-4862-8bf1-76dfe201cc07))
(pad "1" smd roundrect (at -1.1375 0.95 270) (size 1.325 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 4 "VCC") (pinfunction "IN") (pintype "power_in") (tstamp c74eddd3-8ad3-42ea-b77f-329eaf4cdace))
(pad "2" smd roundrect (at -1.1375 0 270) (size 1.325 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 943d8297-5e0b-4eb9-a3c4-35731050e0a6))
(pad "3" smd roundrect (at -1.1375 -0.95 270) (size 1.325 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 4 "VCC") (pinfunction "EN") (pintype "input") (tstamp 0f250504-dccb-4f42-ae7d-6a82b0ad8836))
(pad "4" smd roundrect (at 1.1375 -0.95 270) (size 1.325 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 13 "unconnected-(U1-Pad4)") (pinfunction "NC") (pintype "no_connect") (tstamp 99e49cb0-f4b5-4d70-9f27-821a65e53a72))
(pad "5" smd roundrect (at 1.1375 0.95 270) (size 1.325 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 3 "+1V9") (pinfunction "OUT") (pintype "power_out") (tstamp 6c8daa04-8052-4bd0-96fb-348698b66842))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp 46aac001-1e0b-4992-9b6b-7fbd6860af0e)
(at 89.004 113.19 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C19666")
(property "Sheetfile" "sensor.kicad_sch")
(property "Sheetname" "")
(path "/e0e2ca39-d81d-4638-b2d7-b3eff9325a7e")
(attr smd)
(fp_text reference "C3" (at 0.45 -1.99) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp ac132512-c893-4cc0-8b4f-a1bad93547b0)
)
(fp_text value "3.3u/16V" (at 0 -1.43 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 81816e02-b9d5-45a3-b7b0-cc74f750fa3d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp ad64683d-010c-4165-b7c9-bdb9b865521a)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "B.SilkS") (width 0.12) (tstamp c0e0a1a8-5894-4120-8299-374e6aad4977))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "B.SilkS") (width 0.12) (tstamp cf76941b-7cb7-403f-a724-5c62005145fb))
(fp_line (start -1.48 0.73) (end 1.48 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 07d3b61f-181e-44f2-a79b-11ae69e583c2))
(fp_line (start 1.48 -0.73) (end -1.48 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 50082213-59b8-4178-ae4c-b6bf80352015))
(fp_line (start -1.48 -0.73) (end -1.48 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 73e7ee50-75bc-4e42-a441-14efd20aa67d))
(fp_line (start 1.48 0.73) (end 1.48 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 91546da2-7098-44e2-83b0-a90492f689ab))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp 1975c854-ae05-4e02-ba0d-06f01ae95443))
(fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp 6504cfdc-6446-4592-b544-df5485f34a07))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp bf7f7976-c492-4b38-9696-c24926909542))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp fa6bc78b-e1f7-4f3f-af18-60d695ec1311))
(pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 3 "+1V9") (pintype "passive") (tstamp 2830adc5-17f5-4a49-b4ca-77de80571a05))
(pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp fee0ccd7-c5f0-4f23-b779-1cce36ec4445))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp 5c60e2fd-e25b-42a0-9a7e-d020a279558a)
(at 88.994 110.165 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C19666")
(property "Sheetfile" "sensor.kicad_sch")
(property "Sheetname" "")
(path "/ac284b14-05ec-4e61-b8f3-fbc0418a37e4")
(attr smd)
(fp_text reference "C2" (at -1.075 2.128 180) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp ce628648-1b8d-49bf-882f-f998f76a2b80)
)
(fp_text value "100n" (at 0 -1.43 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 4890192f-4ca9-4006-b535-3dc64647ab9a)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp c0ae5f5d-8d99-4135-9d74-80ba2393b6c1)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "B.SilkS") (width 0.12) (tstamp 594cafaf-4e36-4fe3-ae6e-2d5f1f752e3b))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "B.SilkS") (width 0.12) (tstamp c266032e-acd0-44cc-865b-6767afae75ce))
(fp_line (start 1.48 -0.73) (end -1.48 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 48a98276-a055-4403-9edc-ea658cee0774))
(fp_line (start -1.48 -0.73) (end -1.48 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 4d178d07-adbb-424c-a40a-c0d6cc374d90))
(fp_line (start 1.48 0.73) (end 1.48 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 8f058a9f-941d-4b15-895b-78546127f770))
(fp_line (start -1.48 0.73) (end 1.48 0.73) (layer "B.CrtYd") (width 0.05) (tstamp b0d58a21-2385-48d6-a26b-b74e39154302))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp 06b679d7-2631-42d8-b59d-bdf320efb995))
(fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp c21e578d-daf7-490f-9c62-e8e53fa6a05e))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp d3128ba1-e8fb-4427-bf6d-55b9d95f311c))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp f7c59d3b-150e-4fe4-9d7a-d8150b555fa0))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 3 "+1V9") (pintype "passive") (tstamp a181bf67-7276-483b-8352-c18044784a3e))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 4f6d5c60-febe-403b-b1ae-9baf26bb0a3f))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp 5ed637ac-40ac-434c-a406-609e25d3658d)
(at 73.55 105.5 180)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C19666")
(property "Sheetfile" "sensor.kicad_sch")
(property "Sheetname" "")
(path "/082217f1-4379-4503-b728-55106d6bf1c7")
(attr smd)
(fp_text reference "C7" (at 2.748 0.102) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 3ad80d0b-658f-434e-9b97-32834b217a0f)
)
(fp_text value "100n" (at 0 -1.43) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 193ab06f-2dc8-4ef9-b68e-8a6fdb811a8c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp fa9c0566-7ecb-4410-afc3-4a0d94e75136)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "B.SilkS") (width 0.12) (tstamp 4fd04d76-bcdf-4e8c-9ee9-52f4b923099d))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "B.SilkS") (width 0.12) (tstamp 75df9d90-1b85-489e-9b08-365c60ea6910))
(fp_line (start -1.48 -0.73) (end -1.48 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 2368fa1d-588a-4f1f-93cb-e31534b5b6e9))
(fp_line (start 1.48 0.73) (end 1.48 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 58ec862e-429d-43cf-844e-c5ccadf9ebf8))
(fp_line (start -1.48 0.73) (end 1.48 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 5bd3a05a-1192-4988-88c5-5128945d72de))
(fp_line (start 1.48 -0.73) (end -1.48 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp ae8225b4-a070-4f96-9400-6d19c4aed3d8))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp 1d597524-cea4-4dba-b007-667e6f3b201e))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp 9f6201be-02fe-442b-8644-1d5990c49833))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp b07d43c0-4d18-408b-9d9e-0ce113f0ef7f))
(fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp f5e839c8-37c4-4fbd-af53-d16ae995a925))
(pad "1" smd roundrect (at -0.775 0 180) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 4 "VCC") (pintype "passive") (tstamp e4699690-a3e3-4276-a309-fb7c9e011a61))
(pad "2" smd roundrect (at 0.775 0 180) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 1eb918d9-71a2-4af8-9be2-45045e30b2f2))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "mylib:PMW3610" (layer "B.Cu")
(tedit 631C94B7) (tstamp 75f982a1-6ab8-4209-a4a8-58e41c3ce9c1)
(at 76.21 114.28)
(descr "https://www.pixart.com/products-detail/21/PMW3610DM-SUDU")
(property "Sheetfile" "sensor.kicad_sch")
(property "Sheetname" "")
(path "/5d8ede79-525a-4699-a26f-2f9fda21b037")
(attr through_hole)
(fp_text reference "U2" (at 4.984 -15.39) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 12581dc1-b688-4eb2-a71d-0466f2d98e05)
)
(fp_text value "PMW3610" (at 5.35 -13.375) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 00646933-d8d4-4673-937d-cdfea8d67d6a)
)
(fp_circle (center -1.225 0) (end -1.025 0) (layer "B.SilkS") (width 0.4) (fill none) (tstamp 9b6cfa4d-a58c-4120-9d6c-2add5443b970))
(fp_line (start 5.35 -2.8) (end 5.35 -3.55) (layer "Dwgs.User") (width 0.12) (tstamp 012ede6f-7862-4804-b89f-f5354bd7b872))
(fp_line (start 5.05 -3.18) (end 5.75 -3.18) (layer "Dwgs.User") (width 0.12) (tstamp 68309690-8580-48fb-8da5-a98e1964fe78))
(fp_circle (center 5.35 -4.56) (end 5.85 -4.56) (layer "Dwgs.User") (width 0.12) (fill none) (tstamp 83326781-ae37-4f12-b7b0-b8f8e0f7a728))
(fp_circle (center 5.35 -3.18) (end 5.85 -3.18) (layer "Cmts.User") (width 0.12) (fill none) (tstamp 89f4bfd5-bacb-40fe-adcc-439bd0f3eb38))
(fp_line (start 1.05 2.78) (end 9.65 2.78) (layer "Edge.Cuts") (width 0.12) (tstamp 9009e5f5-c53c-4b34-b38f-c0f1509c87da))
(fp_line (start 9.65 2.78) (end 9.65 -14.18) (layer "Edge.Cuts") (width 0.12) (tstamp 952d4823-a982-440f-bf82-595615563354))
(fp_line (start 1.05 -14.18) (end 9.65 -14.18) (layer "Edge.Cuts") (width 0.12) (tstamp e45ad754-f45f-4bfe-b65e-3a2d4c9a7b0b))
(fp_line (start 1.05 2.78) (end 1.05 -14.18) (layer "Edge.Cuts") (width 0.12) (tstamp ece6d9b2-587f-40c3-afb2-73bee7fe7561))
(fp_rect (start 1.22 2.15) (end 9.48 -10.85) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp c1cbda1b-2305-4d97-8468-1a6bed162811))
(pad "1" thru_hole circle (at 0 0) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)
(net 2 "Net-(C1-Pad1)") (pinfunction "+VCSEL") (pintype "input") (tstamp a323579a-1e1c-4968-9012-37e829da8d7c))
(pad "2" thru_hole circle (at 0 -1.78) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)
(net 11 "SDIO_2") (pinfunction "SDIO") (pintype "bidirectional") (tstamp e7a480e5-735d-4bd4-aff9-d461458157f0))
(pad "3" thru_hole circle (at 0 -3.56) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)
(net 10 "SCLK_2") (pinfunction "SCLK") (pintype "input") (tstamp bbe8e30d-1c2e-49ee-9c6b-bdc8ed3e7f04))
(pad "4" thru_hole circle (at 0 -5.34) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)
(net 14 "unconnected-(U2-Pad4)") (pinfunction "NC") (pintype "no_connect") (tstamp 670434df-d4ca-4bbe-962e-9c37bdcadd78))
(pad "5" thru_hole circle (at 0 -7.12) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)
(net 9 "NCS_2") (pinfunction "NCS") (pintype "input") (tstamp bb42589f-da18-447e-b155-b3f699689375))
(pad "6" thru_hole circle (at 0 -8.9) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)
(net 4 "VCC") (pinfunction "VDDIO") (pintype "input") (tstamp d63cf6a0-babc-4f61-85e2-cc9a354f4cd4))
(pad "7" thru_hole circle (at 0 -10.68) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)
(net 12 "Net-(R1-Pad1)") (pinfunction "NRESET") (pintype "input") (tstamp e58b9315-768f-4c8d-b17a-10c8e9e10148))
(pad "8" thru_hole circle (at 0 -12.46) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)
(net 8 "MOTION_2") (pinfunction "MOTION") (pintype "output") (tstamp 54971daa-17cc-4a5c-b515-cdb3418c6f44))
(pad "9" thru_hole circle (at 10.7 -13.35) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)
(net 7 "Net-(C8-Pad1)") (pinfunction "VCP") (pintype "unspecified") (tstamp fe2c3c93-e75d-477c-8725-eb342d92f4d1))
(pad "10" thru_hole circle (at 10.7 -11.57) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)
(net 2 "Net-(C1-Pad1)") (pinfunction "PASS_T") (pintype "unspecified") (tstamp 5527a45d-81af-4418-8fcb-f2db54c4b5a2))
(pad "11" thru_hole rect (at 10.7 -9.79) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "input") (tstamp 14cadce7-51fd-4b88-861d-bb18abf13a8f))
(pad "12" thru_hole circle (at 10.7 -8.01) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)
(net 6 "Net-(C6-Pad2)") (pinfunction "CP") (pintype "unspecified") (tstamp 041d6160-1b9f-4691-a085-01c61179a804))
(pad "13" thru_hole circle (at 10.7 -6.23) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)
(net 5 "Net-(C6-Pad1)") (pinfunction "CN") (pintype "unspecified") (tstamp 7454e4d5-6c2b-40d8-af0b-9db4fbff2923))
(pad "14" thru_hole circle (at 10.7 -4.45) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)
(net 3 "+1V9") (pinfunction "VDD") (pintype "power_in") (tstamp 14869bc7-a399-4902-864e-4e563f3d4793))
(pad "15" thru_hole circle (at 10.7 -2.67) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)
(net 15 "Net-(U2-Pad15)") (pinfunction "XYLASER") (pintype "input") (tstamp ee596ad1-e95b-4fd2-8758-95bf8b2555c6))
(pad "16" thru_hole circle (at 10.7 -0.89) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)
(net 15 "Net-(U2-Pad15)") (pinfunction "-VCSEL") (pintype "unspecified") (tstamp eca56b4f-c44a-4c92-87d3-61fd687f1674))
(model "${MYLIB_DIR}/3dmodels/peripherals/PMW3360 v12.step"
(offset (xyz 5.3 -5.7 2.14))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp 7a4a5c0e-c639-4f33-aa7f-cf5502abd572)
(at 88.984 103.58 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C19666")
(property "Sheetfile" "sensor.kicad_sch")
(property "Sheetname" "")
(path "/bb4dbbaa-4b5d-4e6d-8c43-1b8be9dab861")
(attr smd)
(fp_text reference "C1" (at -0.09 -2.06) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 22823228-ec30-42c9-9fbd-c96c92e66a97)
)
(fp_text value "10n" (at 0 -1.43 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 2844eda9-971c-477b-a422-c7a585a07991)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp 680e961d-8d71-438e-96c6-8c4d546e4f35)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "B.SilkS") (width 0.12) (tstamp 84a5ce41-a421-40fb-b8e7-42bfc3b7b203))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "B.SilkS") (width 0.12) (tstamp d2886e7e-e45b-4c24-a941-3a69da57d7dc))
(fp_line (start 1.48 -0.73) (end -1.48 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 9edd2f4d-ab17-4d21-be4a-64fba361cb20))
(fp_line (start -1.48 0.73) (end 1.48 0.73) (layer "B.CrtYd") (width 0.05) (tstamp c51c6cf4-254f-4c40-8dd7-09e6762d0e47))
(fp_line (start -1.48 -0.73) (end -1.48 0.73) (layer "B.CrtYd") (width 0.05) (tstamp cc6d1127-8717-4392-8007-b559fd87fe63))
(fp_line (start 1.48 0.73) (end 1.48 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp f00793b6-9de3-4563-a5dd-8810cad7c60e))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp 010ef052-d719-4642-bffc-5baaba850b88))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp 29be8cde-215c-4cfe-9e77-10ac34c7b704))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp 420474b5-af24-49dd-a7fa-bc0e2f6c77d2))
(fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp ebda5c06-22a4-4d06-afb4-45d8dd8f9060))
(pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 2 "Net-(C1-Pad1)") (pintype "passive") (tstamp e988836e-d900-40e3-9586-2e129e13a52b))
(pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 799c8b1d-b563-48cf-be71-a7d5702942ec))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp 7badec54-dd0c-405a-acf1-25eff9460213)
(at 85.344 98.84 180)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C19666")
(property "Sheetfile" "sensor.kicad_sch")
(property "Sheetname" "")
(path "/e78a0281-86b2-4c0d-817d-12bc27d269bb")
(attr smd)
(fp_text reference "C8" (at -2.73 -0.208) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 35db8d54-eaa9-4183-b556-a8cb68d057d1)
)
(fp_text value " 10u (X7R)" (at 0 -1.43) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 7d6d6475-6516-4a66-a923-a295358a0cb5)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp f172e016-140e-4bc0-8a5a-df92d434e6ea)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "B.SilkS") (width 0.12) (tstamp 1cf300a2-4cfc-4a49-b119-55be9ca6e530))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "B.SilkS") (width 0.12) (tstamp 5d3f5ed0-e6d7-43ca-a26c-f5c2b5c27710))
(fp_line (start 1.48 0.73) (end 1.48 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 7e4179eb-ba11-40f3-b081-d1c757b70262))
(fp_line (start -1.48 0.73) (end 1.48 0.73) (layer "B.CrtYd") (width 0.05) (tstamp baf567e9-6da6-4636-91dd-b9fa515ca620))
(fp_line (start -1.48 -0.73) (end -1.48 0.73) (layer "B.CrtYd") (width 0.05) (tstamp dbdf2d02-16f4-455d-9ecf-e9ca499a5cb6))
(fp_line (start 1.48 -0.73) (end -1.48 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp f3762dae-846e-4946-a834-2ea4d6f8a8fb))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp 039aa012-f1fa-43f7-ae22-9712ce6700f1))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp 5f945720-da45-4930-a5ed-b66aa71c5314))
(fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp 8a6e7823-3391-4e54-96e2-3184c60c4d52))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp b32da7db-26e4-4806-82f7-ed6613bffe02))
(pad "1" smd roundrect (at -0.775 0 180) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(C8-Pad1)") (pintype "passive") (tstamp e944669e-51b4-498b-8735-89631f6245f7))
(pad "2" smd roundrect (at 0.775 0 180) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 443c2a07-e2da-4dee-95b1-1da39022b7ed))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp 977371ef-232c-40b3-8805-7fed7909b206)
(at 81.144 119.065 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C14663")
(property "Sheetfile" "sensor.kicad_sch")
(property "Sheetname" "")
(path "/5ee72b24-30a2-4ba3-ba3d-ec1cb3a2b25f")
(attr smd)
(fp_text reference "C4" (at -0.303 1.596 90) (layer "B.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify mirror))
(tstamp c8eb7630-b1d8-4bed-9192-8248f357acf5)
)
(fp_text value "0.1u" (at 0 -1.43 90) (layer "B.Fab") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp a86b461b-d055-40f3-a0c0-825d0b72a6bf)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab") hide
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp cf297f33-1202-43fb-a6b1-88d0829ad532)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "B.SilkS") (width 0.12) (tstamp 1715d6b3-27d7-4caa-b1bd-ef57906f4243))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "B.SilkS") (width 0.12) (tstamp 5999fc63-6b91-4813-8c24-726dc2a7812d))
(fp_line (start -1.48 -0.73) (end -1.48 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 28784cb3-0331-4094-9085-9574e4e4175f))
(fp_line (start -1.48 0.73) (end 1.48 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 2cccacde-c877-45be-9a75-a5974dc992ff))
(fp_line (start 1.48 0.73) (end 1.48 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 4b59c5f9-9001-4228-9169-91ed9e34b51c))
(fp_line (start 1.48 -0.73) (end -1.48 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp aa3ec969-ea60-4b4d-b0fb-2e27ba2b50a1))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp 08f556d3-6a3d-48e3-b5fa-89951eebc88d))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp 15312494-75c4-4be3-a0ee-6ce276ff7f86))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp 7dce429e-9b53-4836-be96-4f46f8d38a3c))
(fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp ed70f97a-cc49-46a4-898f-2df5bd4509ef))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 58ce3956-661c-4fc8-a5db-d9ac60b713c2))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 4 "VCC") (pintype "passive") (tstamp 53a9e8f5-40cc-4fbc-a9fa-9876a91c9908))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp ad541cb2-f097-4769-b1c0-c1cca23ca9bd)
(at 88.974 107.02 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C19666")
(property "Sheetfile" "sensor.kicad_sch")
(property "Sheetname" "")
(path "/463ef955-df04-4e3f-a3b0-531d202b4f5e")
(attr smd)
(fp_text reference "C6" (at 0.03 2.07) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 069867ba-56d6-4a39-9d7a-e04cbc7ddebc)
)
(fp_text value " 100n (X7R)" (at 0 -1.43 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp bb48b068-a631-45e0-ba20-908d61546deb)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp 39279baf-6ba9-4081-b177-8729e507b09c)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "B.SilkS") (width 0.12) (tstamp 08e3c2a3-9d19-4492-9a15-6f3eb748a9dd))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "B.SilkS") (width 0.12) (tstamp fd1abc48-cbff-4c1e-bafa-606b0baefb17))
(fp_line (start -1.48 0.73) (end 1.48 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 05a406c0-eeff-414a-b0b7-1ec8109d75cf))
(fp_line (start -1.48 -0.73) (end -1.48 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 50f08ba0-7289-418a-a124-e495e5a8f807))
(fp_line (start 1.48 -0.73) (end -1.48 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 88b4c3b5-cdba-451d-bfa9-6540b576b863))
(fp_line (start 1.48 0.73) (end 1.48 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 906bfecb-f12b-4023-b80a-3fe48766fac3))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp 2f9261a4-6d77-4f48-9946-887df68c5623))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp 956d5ac0-d792-4f7d-ae86-eb3ff9fb3b1b))
(fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp a3e9f49b-e32c-4ac2-921d-705020ecd6ea))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp e3743d5d-6a6e-4ef8-901a-52ec0011573f))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 5 "Net-(C6-Pad1)") (pintype "passive") (tstamp 2db7dc9a-206d-4655-b4aa-0936121ea67f))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 6 "Net-(C6-Pad2)") (pintype "passive") (tstamp bc6effc8-87db-4893-b9a4-0083d7cf18d2))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp b5b863ac-a506-4b3e-baa9-6daff41ac83f)
(at 85.344 97.136 180)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C19666")
(property "Sheetfile" "sensor.kicad_sch")
(property "Sheetname" "")
(path "/e8276d7a-599d-4ddf-b976-d27fd2070882")
(attr smd)
(fp_text reference "C9" (at -2.73 -0.134) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp e6e8adc0-cc91-4304-bc09-9c397052e703)
)
(fp_text value " 10n (X7R)" (at 0 -1.43) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 90a85695-0dd7-4d5f-b71f-636e5dfaf486)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp f23bb9e1-5e05-4bbf-b127-ffe25089156d)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "B.SilkS") (width 0.12) (tstamp 5bdd5001-6963-4df7-adb7-2ce61373b008))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "B.SilkS") (width 0.12) (tstamp 7e6f1c93-04e3-4772-90bf-62a93cb7a441))
(fp_line (start -1.48 -0.73) (end -1.48 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 1550eec9-61b8-4a78-9169-ce138015a6a4))
(fp_line (start 1.48 -0.73) (end -1.48 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 23adc280-7bed-4b43-8a2b-bde543d4ad17))
(fp_line (start 1.48 0.73) (end 1.48 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 3b6c0748-74f2-434d-9dab-9cb69878bbfb))
(fp_line (start -1.48 0.73) (end 1.48 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 7db57f0e-c003-4a7f-a15f-ca598dae4432))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp 2a145e4d-85aa-4794-887b-e1e6e5da63cb))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp 78d8bd80-466a-436c-a59f-bcd2d0c0227a))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp 9e86cb8e-1a22-46de-862e-4afe62210ba6))
(fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp b8d0cfe8-5ded-440a-9c37-0547de2a1de1))
(pad "1" smd roundrect (at -0.775 0 180) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(C8-Pad1)") (pintype "passive") (tstamp f15b7890-7890-4f03-b09f-f68ac18a7833))
(pad "2" smd roundrect (at 0.775 0 180) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp f1ec6152-cb9f-4130-89f1-9c8268da3e53))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp cb264f5c-8c6d-42d7-b52d-ea304b08528f)
(at 74.36 102.97 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "sensor.kicad_sch")
(property "Sheetname" "")
(path "/9e5e4903-09da-4954-92eb-265e593186a9")
(attr smd)
(fp_text reference "R1" (at 0 1.78 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 10fc04e4-25f0-4857-a9b5-a8ebd1ddb0a6)
)
(fp_text value "2M" (at 0 -1.43 90) (layer "B.Fab") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 47d0f5a6-25b3-46f1-a668-a53336cbf780)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab") hide
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp 156ebbd6-97f5-4a63-9fb1-5f03fae8f469)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "B.SilkS") (width 0.12) (tstamp 1b6403c6-cd7b-4518-b4ee-84dfd9d27955))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "B.SilkS") (width 0.12) (tstamp 35378cde-ae2d-47cb-b323-8f4cbea74c14))
(fp_line (start -1.48 -0.73) (end -1.48 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 6b6debe6-81b8-4732-a3ac-5da444f3a73b))
(fp_line (start -1.48 0.73) (end 1.48 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 7f144151-92c4-42f7-9428-7559221bc3f1))
(fp_line (start 1.48 -0.73) (end -1.48 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 916fc7c7-a3fe-4f9d-9544-8114138771b8))
(fp_line (start 1.48 0.73) (end 1.48 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp cc45952c-e778-4c1c-89c2-1c95d7401688))
(fp_line (start -0.8 -0.4125) (end -0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp 0b2234c3-2d14-4061-8885-76abbdce278a))
(fp_line (start 0.8 -0.4125) (end -0.8 -0.4125) (layer "B.Fab") (width 0.1) (tstamp 1aea7337-573c-4a54-b016-8e75d1c35656))
(fp_line (start -0.8 0.4125) (end 0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp 2505d81d-cf79-4b92-93ab-0c2e3692953c))
(fp_line (start 0.8 0.4125) (end 0.8 -0.4125) (layer "B.Fab") (width 0.1) (tstamp ee614b4f-5537-42b7-9bae-261f9a7b6950))
(pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 12 "Net-(R1-Pad1)") (pintype "passive") (tstamp d8f7c1b8-cfbc-46a0-a4fb-bfe0b0c79e64))
(pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 4 "VCC") (pintype "passive") (tstamp b5aa27bf-73a1-4e9c-991c-7c03258d11d4))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp ec1c193f-86ec-48fc-a26b-de8201d681ac)
(at 78.694 123.12)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C15849")
(property "Sheetfile" "sensor.kicad_sch")
(property "Sheetname" "")
(path "/2d596433-9303-455a-b481-8baffdc68f31")
(attr smd)
(fp_text reference "C5" (at -2.6 0.02) (layer "B.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify mirror))
(tstamp 9c6816c4-88e1-4208-9897-3ec1d807db60)
)
(fp_text value "1u" (at 0 -1.43) (layer "B.Fab") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp b45e5d29-c730-444e-ba2b-5c322ae6ef78)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab") hide
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp b1973869-c6b6-4a4b-b27e-3b442444c64f)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "B.SilkS") (width 0.12) (tstamp 842cf3dc-1b9c-4bf9-ab1e-730712711020))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "B.SilkS") (width 0.12) (tstamp 8c99c5d3-7ae5-4206-97ab-5d6b29a4fec4))
(fp_line (start 1.48 -0.73) (end -1.48 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 20c5126f-4fbd-4110-a954-383ebdbbf163))
(fp_line (start -1.48 -0.73) (end -1.48 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 3bd93b99-b6ae-4863-85b1-ee47831c3d4b))
(fp_line (start -1.48 0.73) (end 1.48 0.73) (layer "B.CrtYd") (width 0.05) (tstamp d1c17d13-88b5-4251-98f5-dfe3d8d40cf6))
(fp_line (start 1.48 0.73) (end 1.48 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp ef33cb28-e817-4821-aaaf-68ee47054b52))
(fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp 2847b6b1-e035-4b66-b9e7-44ef590ea7b8))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp cdb1fe4b-faa2-45dc-a54f-6bb353bc6f06))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp d035799f-0d2c-41df-a04c-c0d82b2607e9))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp d7fedfae-c711-4a1a-9476-8ca01d215fcc))
(pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 3 "+1V9") (pintype "passive") (tstamp 66c3e187-996d-4670-816c-6aba32ce06b4))
(pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 6d22c918-ce68-460a-9e42-7a7f97152442))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_circle (center 81.649946 110.6) (end 103.05 110.55) (layer "Dwgs.User") (width 0.05) (fill none) (tstamp a76189fb-5e7d-4538-8226-4878b05f68a8))
(gr_arc (start 79.9 131.9) (mid 68.917172 127.152463) (end 64.099999 116.2) (layer "Edge.Cuts") (width 0.05) (tstamp 0c535efc-c312-43ee-983d-e113d5f793e2))
(gr_line (start 64.1 116.2) (end 64.1 104.9) (layer "Edge.Cuts") (width 0.05) (tstamp 4411f013-1239-4841-add0-56f380024b60))
(gr_arc (start 64.1 104.9) (mid 69.841085 94.062641) (end 81.1 89.200001) (layer "Edge.Cuts") (width 0.05) (tstamp b16695f3-b76e-41c5-9585-51f82fb5af4c))
(gr_arc (start 81.1 89.2) (mid 102.82616 111.177433) (end 79.9 131.899999) (layer "Edge.Cuts") (width 0.05) (tstamp e1bcd3af-470b-44f9-812f-ec89f779b0c2))
(gr_text "VCC" (at 96.71 106.534) (layer "B.SilkS") (tstamp 47ad5f6d-8922-44f9-8882-057eccb587d7)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "MOTION" (at 95.44 109.074) (layer "B.SilkS") (tstamp 7ed0ad05-6e81-49bd-9492-84b73054710a)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "GND" (at 96.71 103.994 180) (layer "B.SilkS") (tstamp 83272059-bb6c-4970-9aec-a892b6bed5f7)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "SCLK" (at 96.202 114.408) (layer "B.SilkS") (tstamp bf88e627-a867-4f92-ac88-13513f66db9e)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "github.com/ufan\n2022.09.04" (at 81.724 127.87) (layer "B.SilkS") (tstamp c4d6024a-f806-442d-81dd-f95d356f4f4e)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "SDIO" (at 96.456 111.868) (layer "B.SilkS") (tstamp d45d76be-6bc9-4593-adfb-1935f50128fa)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "NCS" (at 96.456 116.948) (layer "B.SilkS") (tstamp dd4b5c92-4b69-4b39-a584-e4e2d0439318)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(segment (start 90.544 110.15) (end 90.174 109.78) (width 0.4) (layer "F.Cu") (net 1) (tstamp 3497045f-d218-47c9-8fd1-2d0a39585aa6))
(segment (start 86.044 97.99) (end 86.044 96.765) (width 0.4) (layer "F.Cu") (net 1) (tstamp 3bc24d10-b3eb-4abe-836d-a8521ccc4341))
(segment (start 86.044 96.765) (end 85.219 95.94) (width 0.4) (layer "F.Cu") (net 1) (tstamp 3cf0233f-86e3-4b85-ad75-fb8a46f37498))
(segment (start 85.219 95.94) (end 82.994 95.94) (width 0.4) (layer "F.Cu") (net 1) (tstamp 481354ed-51b9-4db2-9835-781681979b4b))
(segment (start 78.744 120.09) (end 81.394 120.09) (width 0.4) (layer "F.Cu") (net 1) (tstamp 6476e233-d260-45fe-84d2-9ade7d0003a0))
(segment (start 82.369 96.565) (end 82.369 97.915) (width 0.4) (layer "F.Cu") (net 1) (tstamp 90912a07-8f0d-457a-b78a-1c112c8f2052))
(segment (start 86.282 119.89) (end 90.544 115.628) (width 0.4) (layer "F.Cu") (net 1) (tstamp a2c745ae-90db-4f7c-b3ad-83cabc1225ea))
(segment (start 82.994 95.94) (end 82.369 96.565) (width 0.4) (layer "F.Cu") (net 1) (tstamp a2d090b5-bdc2-4863-87f2-2ea46a246d3d))
(segment (start 90.544 112.49) (end 90.544 110.15) (width 0.4) (layer "F.Cu") (net 1) (tstamp b4856fa9-d711-4b3f-8ccf-343375c62dce))
(segment (start 89.394 101.34) (end 86.044 97.99) (width 0.4) (layer "F.Cu") (net 1) (tstamp bc408f2c-2338-4a2e-9d30-e90fd4d4f487))
(segment (start 81.394 120.09) (end 81.594 119.89) (width 0.4) (layer "F.Cu") (net 1) (tstamp dd552f19-e379-4dd5-a10b-882b6c8e7a65))
(segment (start 81.594 119.89) (end 86.282 119.89) (width 0.4) (layer "F.Cu") (net 1) (tstamp ea3ec7ff-5ab4-4e51-97e7-6c90fab9e1a0))
(segment (start 90.544 115.628) (end 90.544 112.49) (width 0.4) (layer "F.Cu") (net 1) (tstamp ef205e60-ffeb-4070-ae2b-0672f13cd9ec))
(via (at 82.369 97.915) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 1c4dfe58-85b1-467f-8e9d-bdb7a0d0ca8e))
(via (at 90.544 112.49) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 290c753b-3b9b-4c45-85a5-65bd9eae1f9e))
(via (at 89.394 101.34) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 6a5b3eea-de35-4a54-8316-e56ea2a634e4))
(via (at 81.594 119.89) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 740c9c9e-c377-4082-a7c2-2dfeb8296429))
(via (at 78.744 120.09) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 90b3e3a5-04e0-491b-97bf-2e8a21e1833b))
(via (at 90.174 109.78) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp da7eee34-4516-4154-9034-7c9b8e2afe41))
(segment (start 82.369 97.915) (end 83.294 98.84) (width 0.4) (layer "B.Cu") (net 1) (tstamp 10e5ae6d-e43e-4ff8-abc5-fd9df16782da))
(segment (start 78.674 120.02) (end 78.674 118.7525) (width 0.4) (layer "B.Cu") (net 1) (tstamp 19d6a411-8997-491d-aace-09fdbc63404d))
(segment (start 88.994 109.39) (end 89.784 109.39) (width 0.4) (layer "B.Cu") (net 1) (tstamp 218a2487-4406-4830-b6ad-8a4182eda4f4))
(segment (start 89.254 104.355) (end 90.119 103.49) (width 0.4) (layer "B.Cu") (net 1) (tstamp 28f921ab-5f55-47f8-b726-02e567145cd5))
(segment (start 74.565 97.915) (end 72.07 100.41) (width 0.4) (layer "B.Cu") (net 1) (tstamp 3d2de93f-a7ac-4978-b883-af4c0e13417d))
(segment (start 83.294 98.84) (end 84.569 98.84) (width 0.4) (layer "B.Cu") (net 1) (tstamp 4263a0e8-33fc-439f-9b56-889a4f5d7b26))
(segment (start 81.544 119.84) (end 81.594 119.89) (width 0.4) (layer "B.Cu") (net 1) (tstamp 55b28997-b330-40d1-b32a-125cd071668d))
(segment (start 90.119 102.065) (end 89.394 101.34) (width 0.4) (layer "B.Cu") (net 1) (tstamp 5aa1c642-a9f0-4211-8572-3a7e8453422e))
(segment (start 90.034 108.35) (end 90.034 105.405) (width 0.4) (layer "B.Cu") (net 1) (tstamp 5da0928a-9939-439c-bcbe-74de097058a8))
(segment (start 82.369 97.915) (end 74.565 97.915) (width 0.4) (layer "B.Cu") (net 1) (tstamp 82b4533d-9984-4f05-b8dd-a2715f410729))
(segment (start 90.034 105.405) (end 88.984 104.355) (width 0.4) (layer "B.Cu") (net 1) (tstamp 899a4caf-0563-4c2a-9bca-5aa28747ef75))
(segment (start 90.544 112.49) (end 90.479 112.49) (width 0.4) (layer "B.Cu") (net 1) (tstamp 9cdaf74c-bd9d-4293-9612-c30a4bca9a30))
(segment (start 72.07 100.41) (end 72.07 104.795) (width 0.4) (layer "B.Cu") (net 1) (tstamp 9d9fe44d-fc79-4fbe-a7af-28e16082c8cb))
(segment (start 72.07 104.795) (end 72.775 105.5) (width 0.4) (layer "B.Cu") (net 1) (tstamp a16d404a-f55b-47f6-8db2-d9c5c2ca68a7))
(segment (start 90.479 112.49) (end 89.004 113.965) (width 0.4) (layer "B.Cu") (net 1) (tstamp afc58bc7-e8b3-4ec7-b7ec-e155055196a5))
(segment (start 81.144 119.84) (end 81.544 119.84) (width 0.4) (layer "B.Cu") (net 1) (tstamp b285d77c-3eef-4763-b6e4-d7759b529dfd))
(segment (start 87.045 104.355) (end 88.984 104.355) (width 0.55) (layer "B.Cu") (net 1) (tstamp b2cac11a-5f3b-43d7-88e5-8d0241ac6453))
(segment (start 89.784 109.39) (end 90.174 109.78) (width 0.4) (layer "B.Cu") (net 1) (tstamp b70f4be0-be81-40f1-b237-a16be3740211))
(segment (start 84.569 97.39) (end 84.569 98.84) (width 0.55) (layer "B.Cu") (net 1) (tstamp bca99a8e-598f-436a-9158-7a050d1f7ca4))
(segment (start 90.119 103.49) (end 90.119 102.065) (width 0.4) (layer "B.Cu") (net 1) (tstamp c0e13d91-53b7-4de6-8d61-7c13732113b8))
(segment (start 88.994 109.39) (end 90.034 108.35) (width 0.4) (layer "B.Cu") (net 1) (tstamp da37a168-b259-4f98-9030-90f2f5ac962a))
(segment (start 78.744 120.09) (end 78.674 120.02) (width 0.4) (layer "B.Cu") (net 1) (tstamp f0f3907b-44e3-4106-9f24-d8ce836b6bb0))
(segment (start 86.064 118.17) (end 88.304 115.93) (width 0.4) (layer "F.Cu") (net 2) (tstamp 16709085-85fb-43c9-a971-6c749e7fdc44))
(segment (start 76.21 117.41) (end 76.97 118.17) (width 0.4) (layer "F.Cu") (net 2) (tstamp 3dc9d7a4-0001-4958-a467-4a40bbf22c9c))
(segment (start 76.97 118.17) (end 86.064 118.17) (width 0.4) (layer "F.Cu") (net 2) (tstamp 4a62c6d5-9ea7-4fe8-863f-e6fb598710ef))
(segment (start 76.21 114.28) (end 76.21 117.41) (width 0.4) (layer "F.Cu") (net 2) (tstamp 53ac6219-1fc6-431e-8052-441e4fb33528))
(segment (start 88.304 115.93) (end 88.304 104.104) (width 0.4) (layer "F.Cu") (net 2) (tstamp 8628e550-83cc-4680-99c1-567370e3c220))
(segment (start 88.304 104.104) (end 86.91 102.71) (width 0.4) (layer "F.Cu") (net 2) (tstamp ea0abb1c-eef6-4ece-97c4-8a6b0afe0425))
(segment (start 87.005 102.805) (end 88.984 102.805) (width 0.55) (layer "B.Cu") (net 2) (tstamp 8dcf40e6-09a5-42e4-8b46-f4738540468d))
(segment (start 90.14468 110.94) (end 88.994 110.94) (width 0.4) (layer "B.Cu") (net 3) (tstamp 327c5208-9709-416a-a09f-b8aff5342660))
(segment (start 91.094 109.99068) (end 90.14468 110.94) (width 0.4) (layer "B.Cu") (net 3) (tstamp 39999d78-2a67-4bd1-8868-b9a34156e73a))
(segment (start 74.798 95.612) (end 86.516 95.612) (width 0.4) (layer "B.Cu") (net 3) (tstamp 3d8e68eb-013b-43ae-94e1-88766341d7da))
(segment (start 87.154 109.83) (end 88.264 110.94) (width 0.55) (layer "B.Cu") (net 3) (tstamp 4a56ac62-5ec2-46fc-a86c-9adf2d8fead1))
(segment (start 88.264 110.94) (end 88.994 110.94) (width 0.55) (layer "B.Cu") (net 3) (tstamp 78d3a4a0-e724-44e1-963f-de88a39d4158))
(segment (start 77.744 121.54) (end 77.744 122.945) (width 0.55) (layer "B.Cu") (net 3) (tstamp 84315919-677c-4909-a747-2c92c96d5870))
(segment (start 77.744 121.54) (end 76.944 121.54) (width 0.4) (layer "B.Cu") (net 3) (tstamp 89485277-ecbf-4f69-ba1c-5f873c81dce6))
(segment (start 76.944 121.54) (end 70.5 115.096) (width 0.4) (layer "B.Cu") (net 3) (tstamp 89b4a9f2-4f8c-4f70-84cf-6b10e918470c))
(segment (start 86.516 95.612) (end 91.094 100.19) (width 0.4) (layer "B.Cu") (net 3) (tstamp 94297994-7d21-4e85-aabf-9ae691d6e306))
(segment (start 89.004 112.415) (end 89.004 110.95) (width 0.55) (layer "B.Cu") (net 3) (tstamp ad2d033c-4040-4813-b5da-82cf827f9d86))
(segment (start 70.5 115.096) (end 70.5 99.91) (width 0.4) (layer "B.Cu") (net 3) (tstamp d066382c-deeb-4d80-9b36-ad187dfb3ae9))
(segment (start 70.5 99.91) (end 74.798 95.612) (width 0.4) (layer "B.Cu") (net 3) (tstamp e00abed0-1bd2-40da-85db-4c3e3702211d))
(segment (start 91.094 100.19) (end 91.094 109.99068) (width 0.4) (layer "B.Cu") (net 3) (tstamp ff6d67d7-4434-4bcc-9a40-fe0d0aea8a97))
(segment (start 81.144 118.29) (end 89.152 118.29) (width 0.55) (layer "B.Cu") (net 4) (tstamp 0952f70b-9a46-4df4-b908-9da98d2239e2))
(segment (start 78.054 117.74) (end 79.274 117.74) (width 0.4) (layer "B.Cu") (net 4) (tstamp 4b3cefd2-e7d7-4d25-8bb9-37548c3e8b03))
(segment (start 72.854 108.356) (end 74.324 106.886) (width 0.4) (layer "B.Cu") (net 4) (tstamp 4ea5d199-4ee3-461a-abe8-f4036ce6cdc5))
(segment (start 79.624 118.09) (end 79.624 118.7525) (width 0.4) (layer "B.Cu") (net 4) (tstamp 6d401fdd-c1f6-4321-96c4-4843b6143be9))
(segment (start 94.424 109.462) (end 97.196 106.69) (width 0.55) (layer "B.Cu") (net 4) (tstamp 6e33e314-d055-456a-a8df-6a721cfdc95c))
(segment (start 77.744 118.7325) (end 77.744 118.05) (width 0.4) (layer "B.Cu") (net 4) (tstamp 773bdc81-beec-4a4b-9485-1c1dd15c6e5a))
(segment (start 89.152 118.29) (end 94.424 113.018) (width 0.55) (layer "B.Cu") (net 4) (tstamp 7dc93a63-5d3f-470f-b8af-1c0b7435de97))
(segment (start 79.624 119.1725) (end 80.5065 118.29) (width 0.55) (layer "B.Cu") (net 4) (tstamp 90671817-460f-456a-a6e3-6cfa468bea55))
(segment (start 97.196 106.69) (end 99.475 106.69) (width 0.55) (layer "B.Cu") (net 4) (tstamp c3fe04c5-1aa5-49a6-ae84-3de897d86b26))
(segment (start 77.379 119.1725) (end 72.854 114.6475) (width 0.4) (layer "B.Cu") (net 4) (tstamp d071d2d2-6096-4ff7-9d49-fbbb1443334c))
(segment (start 77.744 118.05) (end 78.054 117.74) (width 0.4) (layer "B.Cu") (net 4) (tstamp d22f8c08-7c7a-481b-96ff-cad6b4c95453))
(segment (start 94.424 113.018) (end 94.424 109.462) (width 0.55) (layer "B.Cu") (net 4) (tstamp e16ced8b-d26f-4435-8a0f-f0bef66c43ad))
(segment (start 74.36 103.795) (end 74.36 105.424) (width 0.4) (layer "B.Cu") (net 4) (tstamp e240a30e-997f-4d09-90cb-c455ee4b9241))
(segment (start 74.324 105.46) (end 76.13 105.46) (width 0.55) (layer "B.Cu") (net 4) (tstamp e4df63e4-2a5a-405f-916a-ea67ff3a2b21))
(segment (start 80.5065 118.29) (end 81.144 118.29) (width 0.55) (layer "B.Cu") (net 4) (tstamp ef3c2ca7-fcc8-4cff-8fc1-0c762aa25455))
(segment (start 79.274 117.74) (end 79.624 118.09) (width 0.4) (layer "B.Cu") (net 4) (tstamp f5a54919-b960-48fc-8517-e9e32dce0bf0))
(segment (start 72.854 114.6475) (end 72.854 108.356) (width 0.4) (layer "B.Cu") (net 4) (tstamp f6486cd2-a763-4672-997e-532ddce795b6))
(segment (start 74.324 106.886) (end 74.324 105.46) (width 0.4) (layer "B.Cu") (net 4) (tstamp fa193b0f-9184-4d12-8a7a-e741f999af57))
(segment (start 77.724 119.1725) (end 77.379 119.1725) (width 0.4) (layer "B.Cu") (net 4) (tstamp fabb5e74-28d5-45d8-b83e-ede4a7ccbac1))
(segment (start 87.165 107.795) (end 88.974 107.795) (width 0.4) (layer "B.Cu") (net 5) (tstamp 78de0256-23a6-42c0-8b5a-1425aa40457a))
(segment (start 86.935 106.245) (end 88.974 106.245) (width 0.4) (layer "B.Cu") (net 6) (tstamp 8aaa3345-c586-4729-9584-3137be876023))
(segment (start 86.119 98.84) (end 86.91 99.631) (width 0.55) (layer "B.Cu") (net 7) (tstamp a8333ca2-6919-4fe3-9f28-bacc852923df))
(segment (start 86.119 97.39) (end 86.119 98.84) (width 0.55) (layer "B.Cu") (net 7) (tstamp c6d0e6be-376d-4beb-9794-508920a2265a))
(segment (start 86.91 99.631) (end 86.91 100.93) (width 0.55) (layer "B.Cu") (net 7) (tstamp ca2c6135-06b9-49ec-b90b-71e52fd66fd1))
(segment (start 79.438 94.222) (end 87.312 94.222) (width 0.4) (layer "F.Cu") (net 8) (tstamp 28ecf7f2-034a-4e0b-a3f6-1c81b9438c81))
(segment (start 76.21 101.82) (end 76.21 97.45) (width 0.4) (layer "F.Cu") (net 8) (tstamp 560b9e22-fbfa-4284-9322-ea7eb29bec44))
(segment (start 76.21 97.45) (end 79.438 94.222) (width 0.4) (layer "F.Cu") (net 8) (tstamp 7e5bda16-3970-4a26-baa9-45aa8d23b9a1))
(segment (start 95.44 102.35) (end 95.44 107.43) (width 0.4) (layer "F.Cu") (net 8) (tstamp 89001eb4-07b7-400a-a300-d352c9682a39))
(segment (start 95.44 107.43) (end 97.24 109.23) (width 0.4) (layer "F.Cu") (net 8) (tstamp ab9595db-a680-4bad-a72b-55da1a3d5069))
(segment (start 97.24 109.23) (end 99.475 109.23) (width 0.4) (layer "F.Cu") (net 8) (tstamp f44413c2-8190-4b54-b9ee-8b1f5920bf81))
(segment (start 87.312 94.222) (end 95.44 102.35) (width 0.4) (layer "F.Cu") (net 8) (tstamp f8a7b39b-8799-4b90-8fe7-fd4be73f1311))
(segment (start 76.395674 123.52351) (end 71.564 118.691836) (width 0.4) (layer "F.Cu") (net 9) (tstamp 0f346e2a-ea7e-4b32-9d07-52a7f1321428))
(segment (start 71.564 118.691836) (end 71.564 111.806) (width 0.4) (layer "F.Cu") (net 9) (tstamp 43063f5e-ac2b-48f8-9a2a-f37eab0fc4b1))
(segment (start 92.80149 123.52351) (end 76.395674 123.52351) (width 0.4) (layer "F.Cu") (net 9) (tstamp 69044048-1ef4-477e-9f27-7138e84bb855))
(segment (start 99.475 116.85) (end 92.80149 123.52351) (width 0.4) (layer "F.Cu") (net 9) (tstamp 8f26c893-a124-47db-b838-78b7a0db55e7))
(segment (start 71.564 111.806) (end 76.21 107.16) (width 0.4) (layer "F.Cu") (net 9) (tstamp ea97746c-0720-4037-bd8c-d8e230510a96))
(segment (start 76.644 122.924) (end 90.861 122.924) (width 0.4) (layer "F.Cu") (net 10) (tstamp 258f804a-0b08-4cb9-a8d7-b6f9fb6405e3))
(segment (start 73.088 119.368) (end 76.644 122.924) (width 0.4) (layer "F.Cu") (net 10) (tstamp 91690ac3-0915-4763-b7d5-a410c6258938))
(segment (start 73.088 113.842) (end 73.088 119.368) (width 0.4) (layer "F.Cu") (net 10) (tstamp b0772f96-268d-4131-ae20-997992f46da6))
(segment (start 76.21 110.72) (end 73.088 113.842) (width 0.4) (layer "F.Cu") (net 10) (tstamp b57ba258-7a6b-4a16-beb8-39cfb954bcfb))
(segment (start 90.861 122.924) (end 99.475 114.31) (width 0.4) (layer "F.Cu") (net 10) (tstamp d539dd7d-d6c8-4a16-bfb7-4e67f395709c))
(segment (start 76.21 112.5) (end 74.358 114.352) (width 0.4) (layer "F.Cu") (net 11) (tstamp 478c6feb-fd2b-4f05-ab5a-f1474afe01e4))
(segment (start 76.898 122.162) (end 89.083 122.162) (width 0.4) (layer "F.Cu") (net 11) (tstamp 68e8547c-e90b-4287-b982-15ace070ef7f))
(segment (start 74.358 114.352) (end 74.358 119.622) (width 0.4) (layer "F.Cu") (net 11) (tstamp 907c6039-a260-49f4-a29e-f966b24dc075))
(segment (start 74.358 119.622) (end 76.898 122.162) (width 0.4) (layer "F.Cu") (net 11) (tstamp b3b6271a-5793-4bca-be58-001a1d4ca23d))
(segment (start 89.083 122.162) (end 99.475 111.77) (width 0.4) (layer "F.Cu") (net 11) (tstamp fc532fb2-6692-4775-9765-103e11a020c0))
(segment (start 74.755 102.145) (end 76.21 103.6) (width 0.4) (layer "B.Cu") (net 12) (tstamp 16049ddd-1751-41e6-a6aa-9af488e1ca52))
(segment (start 74.36 102.145) (end 74.755 102.145) (width 0.4) (layer "B.Cu") (net 12) (tstamp b2cd9815-d8c4-41b6-bff0-7687e6a5cdfa))
(segment (start 86.91 113.39) (end 86.91 111.61) (width 0.4) (layer "B.Cu") (net 15) (tstamp 594594ee-9de8-45bc-b621-a9251877b0c2))
(zone (net 1) (net_name "GND") (layers F&B.Cu) (tstamp d59297ee-aa3f-4051-95a5-03f46ea0f9b2) (hatch edge 0.508)
(connect_pads (clearance 0.508))
(min_thickness 0.254) (filled_areas_thickness no)
(fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508) (island_removal_mode 2) (island_area_min 1))
(polygon
(pts
(xy 118.125 139.95)
(xy 52.5 142.4)
(xy 47.675 83.075)
(xy 113.15 81.075)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 82.00477 89.712362)
(xy 82.010195 89.712505)
(xy 82.456522 89.733954)
(xy 82.902871 89.755406)
(xy 82.908241 89.75578)
(xy 83.751141 89.832785)
(xy 83.798192 89.837083)
(xy 83.803585 89.837693)
(xy 84.689207 89.957245)
(xy 84.694529 89.95808)
(xy 85.57423 90.115672)
(xy 85.579522 90.116738)
(xy 86.047037 90.221451)
(xy 86.451577 90.312059)
(xy 86.456847 90.313359)
(xy 87.319684 90.546057)
(xy 87.324892 90.547583)
(xy 88.176887 90.817216)
(xy 88.182026 90.818965)
(xy 89.021619 91.125042)
(xy 89.026677 91.12701)
(xy 89.852341 91.468974)
(xy 89.857309 91.471159)
(xy 90.667432 91.848341)
(xy 90.672302 91.850737)
(xy 91.465465 92.262477)
(xy 91.470227 92.265081)
(xy 92.244893 92.710581)
(xy 92.249539 92.713387)
(xy 93.004323 93.19185)
(xy 93.008835 93.194848)
(xy 93.487457 93.527985)
(xy 93.742322 93.70538)
(xy 93.746709 93.708576)
(xy 94.457518 94.250215)
(xy 94.461763 94.253597)
(xy 95.148592 94.825349)
(xy 95.152682 94.828907)
(xy 95.814241 95.429697)
(xy 95.818159 95.433413)
(xy 96.453245 96.062156)
(xy 96.457019 96.066056)
(xy 97.064432 96.721557)
(xy 97.068034 96.725617)
(xy 97.232982 96.919765)
(xy 97.645394 97.405186)
(xy 97.646629 97.40664)
(xy 97.650047 97.410842)
(xy 97.949434 97.79566)
(xy 98.198807 98.116193)
(xy 98.202037 98.120534)
(xy 98.719908 98.848859)
(xy 98.722957 98.853349)
(xy 99.208968 99.60328)
(xy 99.211821 99.607897)
(xy 99.294169 99.747819)
(xy 99.665108 100.378104)
(xy 99.667733 100.382794)
(xy 100.08742 101.171787)
(xy 100.089848 101.176598)
(xy 100.204607 101.41675)
(xy 100.475175 101.982955)
(xy 100.477409 101.987901)
(xy 100.786588 102.713704)
(xy 100.788862 102.719043)
(xy 100.797157 102.789553)
(xy 100.766014 102.853355)
(xy 100.705321 102.890191)
(xy 100.634348 102.888367)
(xy 100.597377 102.86925)
(xy 100.578648 102.855214)
(xy 100.563054 102.846676)
(xy 100.442606 102.801522)
(xy 100.427351 102.797895)
(xy 100.376486 102.792369)
(xy 100.369672 102.792)
(xy 99.747115 102.792)
(xy 99.731876 102.796475)
(xy 99.730671 102.797865)
(xy 99.729 102.805548)
(xy 99.729 103.877885)
(xy 99.733475 103.893124)
(xy 99.734865 103.894329)
(xy 99.742548 103.896)
(xy 100.814884 103.896)
(xy 100.830123 103.891525)
(xy 100.831328 103.890135)
(xy 100.832999 103.882452)
(xy 100.832999 103.51717)
(xy 100.853001 103.449049)
(xy 100.906657 103.402556)
(xy 100.976931 103.392452)
(xy 101.041511 103.421946)
(xy 101.076939 103.472828)
(xy 101.144145 103.651583)
(xy 101.145945 103.656703)
(xy 101.424125 104.50596)
(xy 101.425701 104.511149)
(xy 101.591528 105.102352)
(xy 101.667046 105.371589)
(xy 101.668399 105.376844)
(xy 101.781318 105.858277)
(xy 101.872467 106.246896)
(xy 101.873592 106.252205)
(xy 102.036378 107.111123)
(xy 102.039995 107.13021)
(xy 102.040888 107.135547)
(xy 102.164494 107.986638)
(xy 102.169332 108.019952)
(xy 102.169994 108.025322)
(xy 102.226881 108.58584)
(xy 102.260227 108.914409)
(xy 102.260659 108.919817)
(xy 102.311866 109.800722)
(xy 102.31252 109.811979)
(xy 102.312718 109.817391)
(xy 102.314583 109.941858)
(xy 102.326107 110.710959)
(xy 102.326071 110.716386)
(xy 102.300968 111.609667)
(xy 102.300699 111.615089)
(xy 102.237145 112.506498)
(xy 102.236642 112.511902)
(xy 102.230307 112.567111)
(xy 102.138097 113.370653)
(xy 102.134764 113.399695)
(xy 102.134032 113.405059)
(xy 102.082303 113.731124)
(xy 101.994002 114.287712)
(xy 101.993036 114.293052)
(xy 101.815132 115.168817)
(xy 101.813938 115.174108)
(xy 101.60315 116.022617)
(xy 101.598483 116.041402)
(xy 101.597063 116.046634)
(xy 101.549491 116.208065)
(xy 101.344456 116.903841)
(xy 101.34281 116.909013)
(xy 101.053525 117.754535)
(xy 101.051658 117.759632)
(xy 100.726218 118.591933)
(xy 100.724133 118.596943)
(xy 100.363155 119.414453)
(xy 100.360865 119.419352)
(xy 100.100322 119.946691)
(xy 99.96502 120.220542)
(xy 99.962512 120.225355)
(xy 99.532518 121.008778)
(xy 99.529805 121.013478)
(xy 99.066477 121.777645)
(xy 99.063563 121.782225)
(xy 98.567765 122.525713)
(xy 98.564657 122.530162)
(xy 98.037286 123.251628)
(xy 98.03399 123.25594)
(xy 97.476052 123.954006)
(xy 97.472573 123.958172)
(xy 96.885069 124.631585)