This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbed_occupacy_sensor.kicad_pcb
8287 lines (8275 loc) · 306 KB
/
bed_occupacy_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)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (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") (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)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(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 "unconnected-(U1-Pad40)")
(net 2 "unconnected-(U1-Pad39)")
(net 3 "unconnected-(U1-Pad38)")
(net 4 "unconnected-(U1-Pad37)")
(net 5 "unconnected-(U1-Pad36)")
(net 6 "GND")
(net 7 "unconnected-(U1-Pad34)")
(net 8 "unconnected-(U1-Pad32)")
(net 9 "unconnected-(U1-Pad31)")
(net 10 "unconnected-(U1-Pad30)")
(net 11 "unconnected-(U1-Pad29)")
(net 12 "unconnected-(U1-Pad28)")
(net 13 "unconnected-(U1-Pad27)")
(net 14 "unconnected-(U1-Pad26)")
(net 15 "unconnected-(U1-Pad25)")
(net 16 "unconnected-(U1-Pad24)")
(net 17 "unconnected-(U1-Pad23)")
(net 18 "unconnected-(U1-Pad21)")
(net 19 "unconnected-(U1-Pad20)")
(net 20 "unconnected-(U1-Pad19)")
(net 21 "unconnected-(U1-Pad18)")
(net 22 "unconnected-(U1-Pad17)")
(net 23 "unconnected-(U1-Pad15)")
(net 24 "unconnected-(U1-Pad14)")
(net 25 "unconnected-(U1-Pad13)")
(net 26 "unconnected-(U1-Pad12)")
(net 27 "unconnected-(U1-Pad10)")
(net 28 "unconnected-(U1-Pad9)")
(net 29 "unconnected-(U1-Pad8)")
(net 30 "unconnected-(U1-Pad6)")
(net 31 "unconnected-(U1-Pad5)")
(net 32 "unconnected-(U1-Pad4)")
(net 33 "unconnected-(U1-Pad3)")
(net 34 "unconnected-(U1-Pad2)")
(net 35 "/SIDE_A")
(net 36 "/SIDE_B")
(net 37 "Net-(R1-Pad1)")
(net 38 "unconnected-(U1-Pad33)")
(net 39 "unconnected-(U1-Pad1)")
(net 40 "unconnected-(U1-Pad35)")
(footprint "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2-5.08_1x02_P5.08mm_Horizontal" (layer "F.Cu")
(tedit 5B294EBC) (tstamp 402f0e4a-df6e-4245-b885-79d04e804518)
(at 163.48582 95 -90)
(descr "Terminal Block Phoenix MKDS-1,5-2-5.08, 2 pins, pitch 5.08mm, size 10.2x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix")
(tags "THT Terminal Block Phoenix MKDS-1,5-2-5.08 pitch 5.08mm size 10.2x9.8mm^2 drill 1.3mm pad 2.6mm")
(property "Sheetfile" "bed_occupacy_sensor.kicad_sch")
(property "Sheetname" "")
(path "/72934a7e-7839-4166-84a0-84217d0df9d7")
(attr through_hole)
(fp_text reference "J1" (at 2.54 -6.26 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1c0010fa-0c10-4a4f-a2a5-465b91e394b5)
)
(fp_text value "Screw_Terminal_01x02" (at 2.54 5.66 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9e0b74b9-b4ec-424e-a6da-268e0c10b701)
)
(fp_text user "${REFERENCE}" (at 2.54 3.2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp be1997a9-01b4-4f17-b6f7-f35ce3b7a7a0)
)
(fp_line (start -2.84 4.9) (end -2.34 4.9) (layer "F.SilkS") (width 0.12) (tstamp 00fe3b35-a08d-4760-b124-26bb198a2eec))
(fp_line (start 7.68 -5.261) (end 7.68 4.66) (layer "F.SilkS") (width 0.12) (tstamp 1b7ce2a5-0932-4942-a065-2b243613fa81))
(fp_line (start -2.6 2.6) (end 7.68 2.6) (layer "F.SilkS") (width 0.12) (tstamp 1fcf9f3c-6816-4899-bc9f-885c76a5b7f6))
(fp_line (start 3.853 1.023) (end 3.806 1.069) (layer "F.SilkS") (width 0.12) (tstamp 270d781f-02d0-4e79-aa80-7dd8061c6cd0))
(fp_line (start -2.84 4.16) (end -2.84 4.9) (layer "F.SilkS") (width 0.12) (tstamp 43d9d2bf-3364-4ec9-8b91-6cf5bc376ef4))
(fp_line (start -2.6 4.1) (end 7.68 4.1) (layer "F.SilkS") (width 0.12) (tstamp 532b5229-d18e-4a6f-b161-d9623e8b093b))
(fp_line (start -2.6 -2.301) (end 7.68 -2.301) (layer "F.SilkS") (width 0.12) (tstamp 7b7a6d4a-8f8b-41d2-9d75-439f633f0762))
(fp_line (start -2.6 4.66) (end 7.68 4.66) (layer "F.SilkS") (width 0.12) (tstamp 80a2d868-bad9-4786-a7a3-414c5f69d1ee))
(fp_line (start 4.046 1.239) (end 4.011 1.274) (layer "F.SilkS") (width 0.12) (tstamp 96907e41-f442-4512-b361-3926adc8e885))
(fp_line (start 6.355 -1.069) (end 6.308 -1.023) (layer "F.SilkS") (width 0.12) (tstamp b3e28c05-4f11-41ac-9832-595189d76c02))
(fp_line (start -2.6 -5.261) (end 7.68 -5.261) (layer "F.SilkS") (width 0.12) (tstamp ec5bc999-726d-4879-b382-30e0b6dede21))
(fp_line (start 6.15 -1.275) (end 6.115 -1.239) (layer "F.SilkS") (width 0.12) (tstamp f9c0b2f9-dedd-43bc-9780-97c70c4f577d))
(fp_line (start -2.6 -5.261) (end -2.6 4.66) (layer "F.SilkS") (width 0.12) (tstamp fa803a9d-50e6-4b45-a04a-82daf451d71a))
(fp_arc (start 1.535427 -0.683042) (mid 1.680501 0.000524) (end 1.535 0.684) (layer "F.SilkS") (width 0.12) (tstamp 01571e72-6d54-4f5c-98f9-5241fe3f05f9))
(fp_arc (start 0.028805 1.680253) (mid -0.335551 1.646659) (end -0.684 1.535) (layer "F.SilkS") (width 0.12) (tstamp 18113a41-72b0-4ef6-a533-32dc94497ece))
(fp_arc (start -1.535427 0.683042) (mid -1.680501 -0.000524) (end -1.535 -0.684) (layer "F.SilkS") (width 0.12) (tstamp 4f07c914-2d82-4aee-b955-ddc0cebf6139))
(fp_arc (start -0.683042 -1.535427) (mid 0.000524 -1.680501) (end 0.684 -1.535) (layer "F.SilkS") (width 0.12) (tstamp 9d23c526-3c84-40a7-bcf5-954229124ae9))
(fp_arc (start 0.683318 1.534756) (mid 0.349292 1.643288) (end 0 1.68) (layer "F.SilkS") (width 0.12) (tstamp c5d41088-b0ba-44e6-be4d-6fad6beb22b5))
(fp_circle (center 5.08 0) (end 6.76 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 0e3ab0ab-43cd-4e38-b94f-2e541e1b151d))
(fp_line (start 8.13 5.1) (end 8.13 -5.71) (layer "F.CrtYd") (width 0.05) (tstamp 1415b62c-8b6d-4983-b171-44fb9941e626))
(fp_line (start -3.04 5.1) (end 8.13 5.1) (layer "F.CrtYd") (width 0.05) (tstamp cd254c75-67ed-4e63-8245-f6e7d6e66c5a))
(fp_line (start 8.13 -5.71) (end -3.04 -5.71) (layer "F.CrtYd") (width 0.05) (tstamp d154b289-033d-46c9-b261-64784f74bca2))
(fp_line (start -3.04 -5.71) (end -3.04 5.1) (layer "F.CrtYd") (width 0.05) (tstamp ddf36fc6-560c-45ba-bda0-9c0968897bb7))
(fp_line (start 6.035 -1.138) (end 3.943 0.955) (layer "F.Fab") (width 0.1) (tstamp 11ed1d58-932d-4d6a-9633-1b297313b3a5))
(fp_line (start -2.54 4.1) (end 7.62 4.1) (layer "F.Fab") (width 0.1) (tstamp 14024d11-60e1-4f55-b890-2e6348810427))
(fp_line (start -2.54 4.1) (end -2.54 -5.2) (layer "F.Fab") (width 0.1) (tstamp 4dda4765-a169-4e94-be2a-d508b1827df8))
(fp_line (start -2.54 2.6) (end 7.62 2.6) (layer "F.Fab") (width 0.1) (tstamp 527b7938-7372-487b-b18d-056970d30e91))
(fp_line (start 1.138 -0.955) (end -0.955 1.138) (layer "F.Fab") (width 0.1) (tstamp 6aef8dec-e6ac-4d38-9e63-5580529938e5))
(fp_line (start 0.955 -1.138) (end -1.138 0.955) (layer "F.Fab") (width 0.1) (tstamp 6da97375-af77-4d5f-a909-5fb616e917bb))
(fp_line (start -2.04 4.6) (end -2.54 4.1) (layer "F.Fab") (width 0.1) (tstamp 93663426-6251-4612-aa69-2593f6b0f610))
(fp_line (start -2.54 -5.2) (end 7.62 -5.2) (layer "F.Fab") (width 0.1) (tstamp 9a77ec1c-3826-4f11-8226-750421bfecab))
(fp_line (start 6.218 -0.955) (end 4.126 1.138) (layer "F.Fab") (width 0.1) (tstamp 9c6c862e-a0be-4e69-906f-5353e33ae980))
(fp_line (start 7.62 4.6) (end -2.04 4.6) (layer "F.Fab") (width 0.1) (tstamp aaedd54e-a3dc-4c00-918b-cd82383938ea))
(fp_line (start 7.62 -5.2) (end 7.62 4.6) (layer "F.Fab") (width 0.1) (tstamp ac95778e-bf5b-4b34-8b7c-6ebd66d6f290))
(fp_line (start -2.54 -2.3) (end 7.62 -2.3) (layer "F.Fab") (width 0.1) (tstamp f094cf97-b571-4154-90a0-b59229f1ab7b))
(fp_circle (center 0 0) (end 1.5 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp b20fcbf5-7cd1-4dc1-bb44-0a973e4d0961))
(fp_circle (center 5.08 0) (end 6.58 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp bb4b08cd-1371-4866-a65b-94244152313d))
(pad "1" thru_hole rect (at 0 0 270) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 6 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 65a43321-c344-4d9e-9fa9-2dd023100ebe))
(pad "2" thru_hole circle (at 5.08 0 270) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 36 "/SIDE_B") (pinfunction "Pin_2") (pintype "passive") (tstamp dfe38e81-a415-45d0-9f79-6e5f1abdf671))
(model "${KICAD6_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-2-5.08_1x02_P5.08mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 4c9ee4f2-5b1b-44f7-81f2-b491ee2a3751)
(at 195.08 112 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "bed_occupacy_sensor.kicad_sch")
(property "Sheetname" "")
(path "/34513afa-65fd-4100-9268-ca482871ddd0")
(attr through_hole)
(fp_text reference "R1" (at 5.08 2 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f10c5fc2-3f89-4963-a6b1-805633a9a39b)
)
(fp_text value "1MOhm" (at 5.08 2.37 180) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 81994611-a499-4fd7-a53a-19b8d149641b)
)
(fp_text user "${REFERENCE}" (at 5.08 0 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a750ab0e-59a9-4b5b-9b69-4e4a2aee282f)
)
(fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 5b9c112a-a81e-4eca-9071-3945c30307d5))
(fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 89cb6c95-be22-4905-a1a2-c93a17f8410f))
(fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp c3ea4984-0468-45a2-b8aa-dff625e2eeb8))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp ca9d9810-66b0-42bc-97b1-e3f5e297710d))
(fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp d933d241-87a9-4050-b586-62aa4e1ac4ff))
(fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp f864acb3-2017-4b48-9a60-40c3896c3fd7))
(fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 2229a558-1aee-443f-a2fb-06de9fe6ea83))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 2ff52366-d790-4c99-89fd-f82bcc5dc250))
(fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 7827db74-5963-419c-b1e3-779d6fcc410c))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp d610ee25-cd9d-47cc-8d31-5b0961557bc5))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 2e0b3006-8c2e-4e3d-a69c-5452342893cb))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 3864b814-7393-4fd9-b61b-9e11c90750cb))
(fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp a2740559-4df8-4967-812a-e250eb4d7c5f))
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp aa37f07d-0d9d-46ca-a1a1-ba4cc1f837a8))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp f16b8d49-3bfe-49ba-8cc7-8c2022290d78))
(fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp f903b625-e95e-4239-a218-a9b88cf65b16))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 37 "Net-(R1-Pad1)") (pintype "passive") (tstamp c4d8c826-8d6f-4f8c-9d2b-c390369990b9))
(pad "2" thru_hole oval (at 10.16 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 35 "/SIDE_A") (pintype "passive") (tstamp d522f5c9-a569-4b63-91ce-9fc8a7f6054b))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 5a4b8830-10cf-421d-b02c-7177df8af530)
(at 195.08 103 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "bed_occupacy_sensor.kicad_sch")
(property "Sheetname" "")
(path "/3d4cb2b8-b9d4-4f01-8fe6-fc15b4eb5524")
(attr through_hole)
(fp_text reference "R2" (at 5.08 2 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 780bb2d1-fbb0-409b-9e49-5a8fe46d978b)
)
(fp_text value "1MOhm" (at 5.08 2.37 180) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9d639d29-faa0-4f98-aacf-2a78938b315a)
)
(fp_text user "${REFERENCE}" (at 5.08 0 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8571dc5a-31bc-4c9c-8abe-3dfde855b095)
)
(fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 1a3ec199-74d2-4450-9a63-250938332b86))
(fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 705b100f-33f9-45b3-8edc-cfd8783b6016))
(fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 83ac9251-24f2-453b-8de2-fd7d9139f8fc))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 936b5bed-133b-4958-a804-3cb9a64cdda8))
(fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp ca09a246-c9bf-4c21-8ec3-b5afd8b6f20e))
(fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp ce64bf52-87eb-4754-a735-c725117c227b))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 25b3ce44-cf7f-401b-9166-1aa35df2ea42))
(fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 5a17b40c-498d-44f5-a3f3-2464920cdf18))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 6b6f7311-142c-4685-8645-27fd6a9cf65a))
(fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp bd98b626-df0f-4905-b082-3f9c2e1d6f18))
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 1b318f0a-28db-4f7d-8f55-45f6c698d7ad))
(fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 1b66ff08-9c50-4a6d-a993-5ac7c9d956b0))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 52b77099-b0e7-4b5a-945d-a60233667954))
(fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 7161aaf1-65ca-484c-a54c-494ef06bde6c))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp 86eef4c5-3876-4cce-be8f-f0ea0a8ffca6))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp c1ee757a-715f-4fa6-83a4-6e0b737bd67d))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 37 "Net-(R1-Pad1)") (pintype "passive") (tstamp 256d89c8-8d85-4b5a-8677-d22935e7af21))
(pad "2" thru_hole oval (at 10.16 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 36 "/SIDE_B") (pintype "passive") (tstamp 687c59ed-29a2-4a1e-ab31-8534b9d14c72))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2-5.08_1x02_P5.08mm_Horizontal" (layer "F.Cu")
(tedit 5B294EBC) (tstamp 99e37af6-5df4-4e93-8afe-bb13f559e4ed)
(at 163.558481 114.394559 -90)
(descr "Terminal Block Phoenix MKDS-1,5-2-5.08, 2 pins, pitch 5.08mm, size 10.2x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix")
(tags "THT Terminal Block Phoenix MKDS-1,5-2-5.08 pitch 5.08mm size 10.2x9.8mm^2 drill 1.3mm pad 2.6mm")
(property "Sheetfile" "bed_occupacy_sensor.kicad_sch")
(property "Sheetname" "")
(path "/2c3da9a8-4f39-4f21-a1e3-2baebc248751")
(attr through_hole)
(fp_text reference "J2" (at 2.54 -6.26 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f2dc5da2-95d2-4f3d-8024-d074c5e58c53)
)
(fp_text value "Screw_Terminal_01x02" (at 2.54 5.66 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7f504ac6-2c37-4bf3-b1da-239764b2ba27)
)
(fp_text user "${REFERENCE}" (at 2.54 3.2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2949c912-3139-4da8-89aa-255c30e5ee51)
)
(fp_line (start 4.046 1.239) (end 4.011 1.274) (layer "F.SilkS") (width 0.12) (tstamp 1e83e774-aaa3-4f30-8153-61a1ef21b369))
(fp_line (start -2.6 -5.261) (end 7.68 -5.261) (layer "F.SilkS") (width 0.12) (tstamp 280055aa-35bb-4c67-a8ea-e2b4bb1745cb))
(fp_line (start 6.355 -1.069) (end 6.308 -1.023) (layer "F.SilkS") (width 0.12) (tstamp 3e1c5d6e-d440-4552-94fb-add82abdd028))
(fp_line (start -2.84 4.16) (end -2.84 4.9) (layer "F.SilkS") (width 0.12) (tstamp 699fc22f-331d-498e-8e09-b76c2ea163b3))
(fp_line (start -2.6 -5.261) (end -2.6 4.66) (layer "F.SilkS") (width 0.12) (tstamp 73df5b34-9d7e-4a1c-a993-e91967fa743e))
(fp_line (start -2.6 4.66) (end 7.68 4.66) (layer "F.SilkS") (width 0.12) (tstamp 7af879bd-e77c-409c-8f42-b53b749ae81c))
(fp_line (start -2.6 4.1) (end 7.68 4.1) (layer "F.SilkS") (width 0.12) (tstamp 96758d62-4f49-4b7c-b57d-ce0910c050e2))
(fp_line (start -2.6 -2.301) (end 7.68 -2.301) (layer "F.SilkS") (width 0.12) (tstamp a628984e-284a-4c51-a86a-2ff69812941d))
(fp_line (start 6.15 -1.275) (end 6.115 -1.239) (layer "F.SilkS") (width 0.12) (tstamp a8bf4484-7cf6-4c29-9fad-a82b5fbf7414))
(fp_line (start -2.6 2.6) (end 7.68 2.6) (layer "F.SilkS") (width 0.12) (tstamp f6fb531f-f521-4fbc-9e33-4202574c65d0))
(fp_line (start 7.68 -5.261) (end 7.68 4.66) (layer "F.SilkS") (width 0.12) (tstamp f9b14bd9-9aa4-49bf-af75-3812fad762b4))
(fp_line (start -2.84 4.9) (end -2.34 4.9) (layer "F.SilkS") (width 0.12) (tstamp fd4c5d02-6916-4cb7-96ea-f8e79917ad21))
(fp_line (start 3.853 1.023) (end 3.806 1.069) (layer "F.SilkS") (width 0.12) (tstamp fea20c6e-300e-44ec-962e-f9b291ff6082))
(fp_arc (start 0.683318 1.534756) (mid 0.349292 1.643288) (end 0 1.68) (layer "F.SilkS") (width 0.12) (tstamp 330f7bca-a5b7-4591-b05a-50e7b3ce872c))
(fp_arc (start 0.028805 1.680253) (mid -0.335551 1.646659) (end -0.684 1.535) (layer "F.SilkS") (width 0.12) (tstamp 3a1bf4a5-62a6-468c-a1f8-35131f506148))
(fp_arc (start 1.535427 -0.683042) (mid 1.680501 0.000524) (end 1.535 0.684) (layer "F.SilkS") (width 0.12) (tstamp 8e13d37c-3997-47fa-b4c5-b777ef72d7ab))
(fp_arc (start -1.535427 0.683042) (mid -1.680501 -0.000524) (end -1.535 -0.684) (layer "F.SilkS") (width 0.12) (tstamp ae10b8ca-8b4d-48d1-81f7-f29de5ef54de))
(fp_arc (start -0.683042 -1.535427) (mid 0.000524 -1.680501) (end 0.684 -1.535) (layer "F.SilkS") (width 0.12) (tstamp d2147661-cd49-4af2-b46f-0b2ab987bc80))
(fp_circle (center 5.08 0) (end 6.76 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp f78a5348-87dd-4cc1-8324-77dc6486a6e7))
(fp_line (start -3.04 -5.71) (end -3.04 5.1) (layer "F.CrtYd") (width 0.05) (tstamp 0612a05b-30fb-4428-9215-b2bc8c29bca8))
(fp_line (start 8.13 -5.71) (end -3.04 -5.71) (layer "F.CrtYd") (width 0.05) (tstamp 1423ec3d-a669-45d9-8b47-f08c37c7d0cd))
(fp_line (start -3.04 5.1) (end 8.13 5.1) (layer "F.CrtYd") (width 0.05) (tstamp bd70db71-1b33-4e1f-aa33-4a62ba12e8c6))
(fp_line (start 8.13 5.1) (end 8.13 -5.71) (layer "F.CrtYd") (width 0.05) (tstamp ecf06fd8-7a8f-42cd-87ca-aac5cffcd22c))
(fp_line (start -2.54 -5.2) (end 7.62 -5.2) (layer "F.Fab") (width 0.1) (tstamp 04b91f70-c26c-40ba-95f1-29751b8696d1))
(fp_line (start -2.04 4.6) (end -2.54 4.1) (layer "F.Fab") (width 0.1) (tstamp 23fb00cf-39ff-42ca-9941-0a97753b8314))
(fp_line (start -2.54 -2.3) (end 7.62 -2.3) (layer "F.Fab") (width 0.1) (tstamp 31af30f0-4684-48fa-8075-ea8c1fd29327))
(fp_line (start 0.955 -1.138) (end -1.138 0.955) (layer "F.Fab") (width 0.1) (tstamp 38e4dbdb-9e59-4080-aa9f-cd154b75f49d))
(fp_line (start 6.035 -1.138) (end 3.943 0.955) (layer "F.Fab") (width 0.1) (tstamp 4e55e0b6-b58b-488e-93b5-f471216c47ca))
(fp_line (start -2.54 4.1) (end 7.62 4.1) (layer "F.Fab") (width 0.1) (tstamp 85c061ca-a815-4709-9599-07b12cb35acd))
(fp_line (start 1.138 -0.955) (end -0.955 1.138) (layer "F.Fab") (width 0.1) (tstamp 894216e4-0dd6-410e-9207-0056cb838ed5))
(fp_line (start 7.62 -5.2) (end 7.62 4.6) (layer "F.Fab") (width 0.1) (tstamp cf0d0d42-10d4-42f8-8e09-2635fccb086d))
(fp_line (start 6.218 -0.955) (end 4.126 1.138) (layer "F.Fab") (width 0.1) (tstamp e21a829e-55a0-4e37-9643-e8611e7b9b59))
(fp_line (start 7.62 4.6) (end -2.04 4.6) (layer "F.Fab") (width 0.1) (tstamp e31d3ef3-3e88-4567-8ab4-362ef010405f))
(fp_line (start -2.54 2.6) (end 7.62 2.6) (layer "F.Fab") (width 0.1) (tstamp e5d4b199-63c8-4c3b-a6c3-3f603b2cd4b4))
(fp_line (start -2.54 4.1) (end -2.54 -5.2) (layer "F.Fab") (width 0.1) (tstamp e8951236-e4be-4308-b625-739971bde11f))
(fp_circle (center 5.08 0) (end 6.58 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 0773d091-7871-4708-a891-4fd20d7b25ec))
(fp_circle (center 0 0) (end 1.5 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 6b33963b-0286-4fca-aa0f-e09555e72dff))
(pad "1" thru_hole rect (at 0 0 270) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 6 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp e0b8bb52-76f6-46c2-a19b-5e79d9ca8c83))
(pad "2" thru_hole circle (at 5.08 0 270) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 35 "/SIDE_A") (pinfunction "Pin_2") (pintype "passive") (tstamp 6da100ad-cbdf-4d87-9212-3195c854c537))
(model "${KICAD6_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-2-5.08_1x02_P5.08mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "ESP32_mini:ESP32_mini" (layer "F.Cu")
(tedit 5F536902) (tstamp c7141340-6e7e-409b-b632-2e2d74933dde)
(at 187.89 106.97 -90)
(property "Sheetfile" "bed_occupacy_sensor.kicad_sch")
(property "Sheetname" "")
(path "/07c47862-40a1-4c8a-b5c1-af5fb92beb2b")
(attr through_hole)
(fp_text reference "U1" (at -3.81 1.27 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f9feb197-6f5e-4dd7-b0b4-66c2f9807f69)
)
(fp_text value "mini_esp32" (at 0 -1.27 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dc6ca233-9e62-402a-a488-03a6f8f5c26c)
)
(fp_text user "RST" (at -11.43 15.24 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 038b559d-962d-4278-a305-c489743c0cb5)
)
(fp_text user "USB" (at 0 20.32 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9125ab99-b854-405c-94fb-0edc00017e03)
)
(pad "1" thru_hole circle (at -13.97 -11.43 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 39 "unconnected-(U1-Pad1)") (pinfunction "GND") (pintype "power_in+no_connect") (tstamp c412546d-0b1f-414c-b9f8-a16590b5e550))
(pad "2" thru_hole circle (at -11.43 -11.43 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 34 "unconnected-(U1-Pad2)") (pinfunction "RST") (pintype "input+no_connect") (tstamp eadaba0d-c7f9-4354-824f-1f6842d7faa2))
(pad "3" thru_hole circle (at -13.97 -8.89 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 33 "unconnected-(U1-Pad3)") (pinfunction "NC") (pintype "no_connect") (tstamp b72d1564-5fb3-4f09-9d6d-18a347912838))
(pad "4" thru_hole circle (at -11.43 -8.89 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 32 "unconnected-(U1-Pad4)") (pinfunction "IO_36/SVP/A0") (pintype "bidirectional+no_connect") (tstamp 54213edb-8fce-4050-83a3-c04d1b195491))
(pad "5" thru_hole circle (at -13.97 -6.35 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 31 "unconnected-(U1-Pad5)") (pinfunction "IO_39/SVN") (pintype "bidirectional+no_connect") (tstamp 4c3d06d3-4e9a-4ff3-afa2-817b7dddf692))
(pad "6" thru_hole circle (at -11.43 -6.35 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 30 "unconnected-(U1-Pad6)") (pinfunction "IO_26/D0") (pintype "bidirectional+no_connect") (tstamp 80e9c2e7-77e9-4ae8-b4e6-15b09914509a))
(pad "7" thru_hole circle (at -13.97 -3.81 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 35 "/SIDE_A") (pinfunction "IO_35") (pintype "bidirectional") (tstamp 02227fb5-e300-4f8c-94bd-7def22cec318))
(pad "8" thru_hole circle (at -11.43 -3.81 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 29 "unconnected-(U1-Pad8)") (pinfunction "IO_18/D5") (pintype "bidirectional+no_connect") (tstamp fecd8255-45a1-4a11-a61c-eba36203cc02))
(pad "9" thru_hole circle (at -13.97 -1.27 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 28 "unconnected-(U1-Pad9)") (pinfunction "IO_33") (pintype "bidirectional+no_connect") (tstamp a7185552-6ae7-4e46-890f-16a24035d6e0))
(pad "10" thru_hole circle (at -11.43 -1.27 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 27 "unconnected-(U1-Pad10)") (pinfunction "IO_19/D6") (pintype "bidirectional+no_connect") (tstamp 2594af9a-387d-4f2e-937b-0f38bfc2a359))
(pad "11" thru_hole circle (at -13.97 1.27 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 36 "/SIDE_B") (pinfunction "IO_34") (pintype "bidirectional") (tstamp e9a6c272-615d-4828-9adf-99544b2c13ad))
(pad "12" thru_hole circle (at -11.43 1.27 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 26 "unconnected-(U1-Pad12)") (pinfunction "IO_23/D7") (pintype "bidirectional+no_connect") (tstamp bc01a569-f1a5-4268-94a2-14ba3663db22))
(pad "13" thru_hole circle (at -13.97 3.81 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 25 "unconnected-(U1-Pad13)") (pinfunction "IO_14/TMS") (pintype "bidirectional+no_connect") (tstamp 62d86ce5-b687-4107-83a3-745fe65f27fd))
(pad "14" thru_hole circle (at -11.43 3.81 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 24 "unconnected-(U1-Pad14)") (pinfunction "IO_05/D8") (pintype "bidirectional+no_connect") (tstamp b9ad36b9-b074-4f09-b2d9-76e3bc30df5c))
(pad "15" thru_hole circle (at -13.97 6.35 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 23 "unconnected-(U1-Pad15)") (pinfunction "NC") (pintype "no_connect") (tstamp c2c46c94-613f-4bc4-aa8e-c95d6f50ecec))
(pad "16" thru_hole circle (at -11.43 6.35 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 37 "Net-(R1-Pad1)") (pinfunction "3V3") (pintype "power_in") (tstamp 8106f1d3-b354-44bd-a794-7468ff4603a7))
(pad "17" thru_hole circle (at -13.97 8.89 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 22 "unconnected-(U1-Pad17)") (pinfunction "IO_09/SD2") (pintype "bidirectional+no_connect") (tstamp ff1618da-f9de-4868-bcd8-9dd5c0b30bb0))
(pad "18" thru_hole circle (at -11.43 8.89 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 21 "unconnected-(U1-Pad18)") (pinfunction "IO_13/TCK") (pintype "bidirectional+no_connect") (tstamp 08fdd192-ec4c-46a4-b85f-84e00cadfbb6))
(pad "19" thru_hole circle (at -13.97 11.43 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 20 "unconnected-(U1-Pad19)") (pinfunction "CMD") (pintype "passive+no_connect") (tstamp 294f0b48-a6fa-4e45-8205-72b55988fd61))
(pad "20" thru_hole circle (at -11.43 11.43 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "unconnected-(U1-Pad20)") (pinfunction "IO_10/SD3") (pintype "bidirectional+no_connect") (tstamp 08f4e051-9af7-4508-8c92-53fe29871427))
(pad "21" thru_hole circle (at 11.43 -11.43 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 18 "unconnected-(U1-Pad21)") (pinfunction "TXD") (pintype "passive+no_connect") (tstamp 6e2aed9a-512f-443a-93f8-6d022932bd24))
(pad "22" thru_hole circle (at 13.97 -11.43 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 18ca9dcb-8388-461a-a44f-cb2ee044431d))
(pad "23" thru_hole circle (at 11.43 -8.89 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "unconnected-(U1-Pad23)") (pinfunction "RXD") (pintype "passive+no_connect") (tstamp 90a023fe-4081-431d-a82f-000806a219f0))
(pad "24" thru_hole circle (at 13.97 -8.89 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "unconnected-(U1-Pad24)") (pinfunction "IO_27") (pintype "bidirectional+no_connect") (tstamp c9cce101-e37d-46e4-8053-842d480e53a1))
(pad "25" thru_hole circle (at 11.43 -6.35 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "unconnected-(U1-Pad25)") (pinfunction "IO_22/D1/SCL") (pintype "bidirectional+no_connect") (tstamp 1f9ca600-3c55-47ce-af99-346776696d29))
(pad "26" thru_hole circle (at 13.97 -6.35 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 14 "unconnected-(U1-Pad26)") (pinfunction "IO_25") (pintype "bidirectional+no_connect") (tstamp 064dce2c-ca74-45e3-8bb4-e2f86aaabd80))
(pad "27" thru_hole circle (at 11.43 -3.81 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "unconnected-(U1-Pad27)") (pinfunction "IO_21/D2/SDA") (pintype "bidirectional+no_connect") (tstamp 7ec9a562-6fcc-4a5b-b933-46a55c8dab23))
(pad "28" thru_hole circle (at 13.97 -3.81 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "unconnected-(U1-Pad28)") (pinfunction "IO_32") (pintype "bidirectional+no_connect") (tstamp 3b4c651a-f4e9-4c6f-ae1f-6a1902ff86e0))
(pad "29" thru_hole circle (at 11.43 -1.27 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "unconnected-(U1-Pad29)") (pinfunction "IO_17/D3") (pintype "bidirectional+no_connect") (tstamp fc8212ec-5185-4cd2-adab-e2643400bc71))
(pad "30" thru_hole circle (at 13.97 -1.27 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "unconnected-(U1-Pad30)") (pinfunction "IO_12/TDI") (pintype "bidirectional+no_connect") (tstamp 6a096899-721a-4dae-a847-eaad7ae3a5ff))
(pad "31" thru_hole circle (at 11.43 1.27 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "unconnected-(U1-Pad31)") (pinfunction "IO_16/D4") (pintype "bidirectional+no_connect") (tstamp dfef55f7-8281-4d72-81aa-ffbd3d63952d))
(pad "32" thru_hole circle (at 13.97 1.27 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "unconnected-(U1-Pad32)") (pinfunction "IO_04") (pintype "bidirectional+no_connect") (tstamp f49439f1-a264-4cd1-b78a-9d161f78ee9f))
(pad "33" thru_hole circle (at 11.43 3.81 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 38 "unconnected-(U1-Pad33)") (pinfunction "GND") (pintype "power_in+no_connect") (tstamp 0e2d749b-a68b-44ec-8017-33870b12a01f))
(pad "34" thru_hole circle (at 13.97 3.81 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "unconnected-(U1-Pad34)") (pinfunction "IO_00") (pintype "bidirectional+no_connect") (tstamp af00207a-690c-4f1d-abca-e128f20d92e4))
(pad "35" thru_hole circle (at 11.43 6.35 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 40 "unconnected-(U1-Pad35)") (pinfunction "VCC_(USB)") (pintype "power_in+no_connect") (tstamp c0009cd1-ac3b-4598-8ab6-a153a6c651ab))
(pad "36" thru_hole circle (at 13.97 6.35 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "unconnected-(U1-Pad36)") (pinfunction "IO_02") (pintype "bidirectional+no_connect") (tstamp cea36a0c-27c9-40c2-a5b9-75a4453cbdbe))
(pad "37" thru_hole circle (at 11.43 8.89 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "unconnected-(U1-Pad37)") (pinfunction "TD0") (pintype "passive+no_connect") (tstamp d8079c3d-13e4-4819-89d3-472c88abc295))
(pad "38" thru_hole circle (at 13.97 8.89 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "unconnected-(U1-Pad38)") (pinfunction "SD1") (pintype "passive+no_connect") (tstamp 1b4e57c3-8343-4116-ab29-e40ae65ea744))
(pad "39" thru_hole circle (at 11.43 11.43 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "unconnected-(U1-Pad39)") (pinfunction "SD0") (pintype "passive+no_connect") (tstamp 3fdc2d86-84fb-4548-95de-a74e5fa75361))
(pad "40" thru_hole circle (at 13.97 11.43 180) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "unconnected-(U1-Pad40)") (pinfunction "CLK") (pintype "passive+no_connect") (tstamp a3e11238-1f70-47b2-b073-e81171094e3b))
)
(gr_rect (start 201 91) (end 156 123) (layer "Edge.Cuts") (width 0.1) (fill none) (tstamp 91e1ab20-aa1b-4c75-abfb-73042ad8ed49))
(gr_rect (start 152.02 128.525) (end 152.02 128.525) (layer "Edge.Cuts") (width 0.1) (fill none) (tstamp d2d80b8a-92ef-432c-b164-7a24964a6540))
(gr_text "SIDE-B" (at 191.125022 105.664541) (layer "F.SilkS") (tstamp 0715d25d-0572-42ef-ad74-1201d2c0b228)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "USB-side" (at 173 106 270) (layer "F.SilkS") (tstamp 25ea232c-f1ce-48a5-8bc6-c1e69a9b937f)
(effects (font (size 1.3 1.3) (thickness 0.3)))
)
(gr_text "GND" (at 157.48 114 270) (layer "F.SilkS") (tstamp a4d01ac1-f974-4567-b512-a9f10d489d36)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "GND" (at 157.48 95 270) (layer "F.SilkS") (tstamp a96d1168-6297-45cd-b745-d0488cba32d8)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "Bed Occupancy Sensor v3" (at 186 99) (layer "F.SilkS") (tstamp b9b0f255-3e2e-4d1e-8511-df3c6b850e38)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "ESP32 / D1 mini" (at 176 107 270) (layer "F.SilkS") (tstamp c54e6c57-e79f-4386-bdfe-c8fc70a3fd1a)
(effects (font (size 1.3 1.3) (thickness 0.3)))
)
(gr_text "SIDE-B" (at 157.48 100 270) (layer "F.SilkS") (tstamp e6fb4b12-15c5-4482-9429-9b8298f6b5cd)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "SIDE-A" (at 190.871668 114.531946) (layer "F.SilkS") (tstamp eb599876-c2e1-421a-a98c-b9ca855d6bdf)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "SIDE-A" (at 157.48 119 270) (layer "F.SilkS") (tstamp f505af41-e861-44da-a4ea-19983b1d2c00)
(effects (font (size 1 1) (thickness 0.15)))
)
(dimension (type aligned) (layer "F.Cu") (tstamp 367efd1c-bc2f-497f-a2a0-0097120132e0)
(pts (xy 155.46 91) (xy 155.46 123))
(height 3)
(gr_text "32.0000 mm" (at 149.86 106.68 90) (layer "F.Cu") (tstamp 367efd1c-bc2f-497f-a2a0-0097120132e0)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(format (units 2) (units_format 1) (precision 4))
(style (thickness 0.2) (arrow_length 1.27) (text_position_mode 2) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned)
)
(dimension (type aligned) (layer "F.Cu") (tstamp e413e0a8-38ab-43de-81c5-4db4739dd1f5)
(pts (xy 156 91) (xy 201 91))
(height -4)
(gr_text "45.0000 mm" (at 178.5 85.2) (layer "F.Cu") (tstamp e413e0a8-38ab-43de-81c5-4db4739dd1f5)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(format (units 2) (units_format 1) (precision 4))
(style (thickness 0.2) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned)
)
(segment (start 191.7 93) (end 193.215 94.515) (width 0.25) (layer "F.Cu") (net 35) (tstamp 0bfae70c-c6e1-4637-be21-4ce63f77675c))
(segment (start 171.03304 112) (end 163.558481 119.474559) (width 0.25) (layer "F.Cu") (net 35) (tstamp 19e2831b-813b-440d-baf6-a98ac936bc2b))
(segment (start 184.92 112) (end 171.03304 112) (width 0.25) (layer "F.Cu") (net 35) (tstamp 29db812b-7d89-4203-8fde-f650f09f3f58))
(segment (start 187.92 115) (end 184.92 112) (width 0.25) (layer "F.Cu") (net 35) (tstamp 3f60915d-7285-4248-a3d1-9bf2437e0432))
(segment (start 193.215 94.515) (end 194.664569 94.515) (width 0.25) (layer "F.Cu") (net 35) (tstamp 4538a3e2-0ba4-4d55-b9f8-f21dcd0edf2e))
(segment (start 195.755 95.605431) (end 195.755 102.084009) (width 0.25) (layer "F.Cu") (net 35) (tstamp a208386b-b994-44ea-962a-0086e7561337))
(segment (start 197 103.329009) (end 197 115) (width 0.25) (layer "F.Cu") (net 35) (tstamp ac761642-dfd2-4246-9132-1804e65eb16a))
(segment (start 197 115) (end 187.92 115) (width 0.25) (layer "F.Cu") (net 35) (tstamp c360f440-ef03-4f46-8535-40ec9263847c))
(segment (start 194.664569 94.515) (end 195.755 95.605431) (width 0.25) (layer "F.Cu") (net 35) (tstamp c8df4619-f617-426b-9b48-5f3fc4c23a8f))
(segment (start 195.755 102.084009) (end 197 103.329009) (width 0.25) (layer "F.Cu") (net 35) (tstamp d4e834be-97e6-415b-a253-e14912379742))
(segment (start 163.48582 100.08) (end 169.54082 94.025) (width 0.25) (layer "F.Cu") (net 36) (tstamp 034aeecd-0195-46d0-b158-ea3ced36c476))
(segment (start 169.54082 94.025) (end 185.595 94.025) (width 0.25) (layer "F.Cu") (net 36) (tstamp 1e4e2e11-12ea-48b7-9b7e-205e1f496947))
(segment (start 166.40582 103) (end 184.92 103) (width 0.25) (layer "F.Cu") (net 36) (tstamp 34626c6e-810b-47dd-8946-4668f1d0a3f3))
(segment (start 163.48582 100.08) (end 166.40582 103) (width 0.25) (layer "F.Cu") (net 36) (tstamp cb06e9b1-fda7-41f3-9898-c98b664e8626))
(segment (start 185.595 94.025) (end 186.62 93) (width 0.25) (layer "F.Cu") (net 36) (tstamp e539c131-2626-4419-ade7-da392fd76a4a))
(segment (start 195.08 103) (end 195.08 97.08) (width 0.25) (layer "F.Cu") (net 37) (tstamp 3b65af60-7b31-4d93-8b43-67316f069c3a))
(segment (start 195.08 97.08) (end 195 97) (width 0.25) (layer "F.Cu") (net 37) (tstamp 719e624a-7eda-44ea-8b10-294745932b36))
(segment (start 195.08 103) (end 195.08 112) (width 0.25) (layer "F.Cu") (net 37) (tstamp 785e3327-f212-42ee-966a-524326931e44))
(segment (start 183 97) (end 181.54 95.54) (width 0.25) (layer "F.Cu") (net 37) (tstamp 839232c9-1e24-4a38-9428-0e0c3be7ec59))
(segment (start 195 97) (end 183 97) (width 0.25) (layer "F.Cu") (net 37) (tstamp e91df81d-8130-4bbd-8416-c08323d8e5b0))
(zone (net 6) (net_name "GND") (layer "F.Cu") (tstamp 743837c4-3b69-4043-bc20-43143e54c390) (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))
(polygon
(pts
(xy 202 124)
(xy 154.46 124)
(xy 154.46 90)
(xy 202 90)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 200.433621 91.528502)
(xy 200.480114 91.582158)
(xy 200.4915 91.6345)
(xy 200.4915 92.1665)
(xy 200.471498 92.234621)
(xy 200.417842 92.281114)
(xy 200.347568 92.291218)
(xy 200.282988 92.261724)
(xy 200.262287 92.23877)
(xy 200.25246 92.224736)
(xy 200.249301 92.220224)
(xy 200.099776 92.070699)
(xy 199.926558 91.949411)
(xy 199.92158 91.94709)
(xy 199.921577 91.947088)
(xy 199.739892 91.862367)
(xy 199.739891 91.862366)
(xy 199.73491 91.860044)
(xy 199.729602 91.858622)
(xy 199.7296 91.858621)
(xy 199.53597 91.806738)
(xy 199.535968 91.806738)
(xy 199.530655 91.805314)
(xy 199.32 91.786884)
(xy 199.109345 91.805314)
(xy 199.104032 91.806738)
(xy 199.10403 91.806738)
(xy 198.9104 91.858621)
(xy 198.910398 91.858622)
(xy 198.90509 91.860044)
(xy 198.900109 91.862366)
(xy 198.900108 91.862367)
(xy 198.718423 91.947088)
(xy 198.71842 91.94709)
(xy 198.713442 91.949411)
(xy 198.540224 92.070699)
(xy 198.390699 92.220224)
(xy 198.269411 92.393442)
(xy 198.180044 92.58509)
(xy 198.178622 92.590398)
(xy 198.178621 92.5904)
(xy 198.171707 92.616204)
(xy 198.134755 92.676827)
(xy 198.070894 92.707848)
(xy 198.0004 92.69942)
(xy 197.945653 92.654217)
(xy 197.928293 92.616204)
(xy 197.921379 92.5904)
(xy 197.921378 92.590398)
(xy 197.919956 92.58509)
(xy 197.830589 92.393442)
(xy 197.709301 92.220224)
(xy 197.559776 92.070699)
(xy 197.386558 91.949411)
(xy 197.38158 91.94709)
(xy 197.381577 91.947088)
(xy 197.199892 91.862367)
(xy 197.199891 91.862366)
(xy 197.19491 91.860044)
(xy 197.189602 91.858622)
(xy 197.1896 91.858621)
(xy 196.99597 91.806738)
(xy 196.995968 91.806738)
(xy 196.990655 91.805314)
(xy 196.78 91.786884)
(xy 196.569345 91.805314)
(xy 196.564032 91.806738)
(xy 196.56403 91.806738)
(xy 196.3704 91.858621)
(xy 196.370398 91.858622)
(xy 196.36509 91.860044)
(xy 196.360109 91.862366)
(xy 196.360108 91.862367)
(xy 196.178423 91.947088)
(xy 196.17842 91.94709)
(xy 196.173442 91.949411)
(xy 196.000224 92.070699)
(xy 195.850699 92.220224)
(xy 195.729411 92.393442)
(xy 195.640044 92.58509)
(xy 195.638622 92.590398)
(xy 195.638621 92.5904)
(xy 195.631707 92.616204)
(xy 195.594755 92.676827)
(xy 195.530894 92.707848)
(xy 195.4604 92.69942)
(xy 195.405653 92.654217)
(xy 195.388293 92.616204)
(xy 195.381379 92.5904)
(xy 195.381378 92.590398)
(xy 195.379956 92.58509)
(xy 195.290589 92.393442)
(xy 195.169301 92.220224)
(xy 195.019776 92.070699)
(xy 194.846558 91.949411)
(xy 194.84158 91.94709)
(xy 194.841577 91.947088)
(xy 194.659892 91.862367)
(xy 194.659891 91.862366)
(xy 194.65491 91.860044)
(xy 194.649602 91.858622)
(xy 194.6496 91.858621)
(xy 194.45597 91.806738)
(xy 194.455968 91.806738)
(xy 194.450655 91.805314)
(xy 194.24 91.786884)
(xy 194.029345 91.805314)
(xy 194.024032 91.806738)
(xy 194.02403 91.806738)
(xy 193.8304 91.858621)
(xy 193.830398 91.858622)
(xy 193.82509 91.860044)
(xy 193.820109 91.862366)
(xy 193.820108 91.862367)
(xy 193.638423 91.947088)
(xy 193.63842 91.94709)
(xy 193.633442 91.949411)
(xy 193.460224 92.070699)
(xy 193.310699 92.220224)
(xy 193.189411 92.393442)
(xy 193.100044 92.58509)
(xy 193.098622 92.590398)
(xy 193.098621 92.5904)
(xy 193.091707 92.616204)
(xy 193.054755 92.676827)
(xy 192.990894 92.707848)
(xy 192.9204 92.69942)
(xy 192.865653 92.654217)
(xy 192.848293 92.616204)
(xy 192.841379 92.5904)
(xy 192.841378 92.590398)
(xy 192.839956 92.58509)
(xy 192.750589 92.393442)
(xy 192.629301 92.220224)
(xy 192.479776 92.070699)
(xy 192.306558 91.949411)
(xy 192.30158 91.94709)
(xy 192.301577 91.947088)
(xy 192.119892 91.862367)
(xy 192.119891 91.862366)
(xy 192.11491 91.860044)
(xy 192.109602 91.858622)
(xy 192.1096 91.858621)
(xy 191.91597 91.806738)
(xy 191.915968 91.806738)
(xy 191.910655 91.805314)
(xy 191.7 91.786884)
(xy 191.489345 91.805314)
(xy 191.484032 91.806738)
(xy 191.48403 91.806738)
(xy 191.2904 91.858621)
(xy 191.290398 91.858622)
(xy 191.28509 91.860044)
(xy 191.280109 91.862366)
(xy 191.280108 91.862367)
(xy 191.098423 91.947088)
(xy 191.09842 91.94709)
(xy 191.093442 91.949411)
(xy 190.920224 92.070699)
(xy 190.770699 92.220224)
(xy 190.649411 92.393442)
(xy 190.560044 92.58509)
(xy 190.558622 92.590398)
(xy 190.558621 92.5904)
(xy 190.551707 92.616204)
(xy 190.514755 92.676827)
(xy 190.450894 92.707848)
(xy 190.3804 92.69942)
(xy 190.325653 92.654217)
(xy 190.308293 92.616204)
(xy 190.301379 92.5904)
(xy 190.301378 92.590398)
(xy 190.299956 92.58509)
(xy 190.210589 92.393442)
(xy 190.089301 92.220224)
(xy 189.939776 92.070699)
(xy 189.766558 91.949411)
(xy 189.76158 91.94709)
(xy 189.761577 91.947088)
(xy 189.579892 91.862367)
(xy 189.579891 91.862366)
(xy 189.57491 91.860044)
(xy 189.569602 91.858622)
(xy 189.5696 91.858621)
(xy 189.37597 91.806738)
(xy 189.375968 91.806738)
(xy 189.370655 91.805314)
(xy 189.16 91.786884)
(xy 188.949345 91.805314)
(xy 188.944032 91.806738)
(xy 188.94403 91.806738)
(xy 188.7504 91.858621)
(xy 188.750398 91.858622)
(xy 188.74509 91.860044)
(xy 188.740109 91.862366)
(xy 188.740108 91.862367)
(xy 188.558423 91.947088)
(xy 188.55842 91.94709)
(xy 188.553442 91.949411)
(xy 188.380224 92.070699)
(xy 188.230699 92.220224)
(xy 188.109411 92.393442)
(xy 188.020044 92.58509)
(xy 188.018622 92.590398)
(xy 188.018621 92.5904)
(xy 188.011707 92.616204)
(xy 187.974755 92.676827)
(xy 187.910894 92.707848)
(xy 187.8404 92.69942)
(xy 187.785653 92.654217)
(xy 187.768293 92.616204)
(xy 187.761379 92.5904)
(xy 187.761378 92.590398)
(xy 187.759956 92.58509)
(xy 187.670589 92.393442)
(xy 187.549301 92.220224)
(xy 187.399776 92.070699)
(xy 187.226558 91.949411)
(xy 187.22158 91.94709)
(xy 187.221577 91.947088)
(xy 187.039892 91.862367)
(xy 187.039891 91.862366)
(xy 187.03491 91.860044)
(xy 187.029602 91.858622)
(xy 187.0296 91.858621)
(xy 186.83597 91.806738)
(xy 186.835968 91.806738)
(xy 186.830655 91.805314)
(xy 186.62 91.786884)
(xy 186.409345 91.805314)
(xy 186.404032 91.806738)
(xy 186.40403 91.806738)
(xy 186.2104 91.858621)
(xy 186.210398 91.858622)
(xy 186.20509 91.860044)
(xy 186.200109 91.862366)
(xy 186.200108 91.862367)
(xy 186.018423 91.947088)
(xy 186.01842 91.94709)
(xy 186.013442 91.949411)
(xy 185.840224 92.070699)
(xy 185.690699 92.220224)
(xy 185.569411 92.393442)
(xy 185.480044 92.58509)
(xy 185.478622 92.590398)
(xy 185.478621 92.5904)
(xy 185.471707 92.616204)
(xy 185.434755 92.676827)
(xy 185.370894 92.707848)
(xy 185.3004 92.69942)
(xy 185.245653 92.654217)
(xy 185.228293 92.616204)
(xy 185.221379 92.5904)
(xy 185.221378 92.590398)
(xy 185.219956 92.58509)
(xy 185.130589 92.393442)
(xy 185.009301 92.220224)
(xy 184.859776 92.070699)
(xy 184.686558 91.949411)
(xy 184.68158 91.94709)
(xy 184.681577 91.947088)
(xy 184.499892 91.862367)
(xy 184.499891 91.862366)
(xy 184.49491 91.860044)
(xy 184.489602 91.858622)
(xy 184.4896 91.858621)
(xy 184.29597 91.806738)
(xy 184.295968 91.806738)
(xy 184.290655 91.805314)
(xy 184.08 91.786884)
(xy 183.869345 91.805314)
(xy 183.864032 91.806738)
(xy 183.86403 91.806738)
(xy 183.6704 91.858621)
(xy 183.670398 91.858622)
(xy 183.66509 91.860044)
(xy 183.660109 91.862366)
(xy 183.660108 91.862367)
(xy 183.478423 91.947088)
(xy 183.47842 91.94709)
(xy 183.473442 91.949411)
(xy 183.300224 92.070699)
(xy 183.150699 92.220224)
(xy 183.029411 92.393442)
(xy 182.940044 92.58509)
(xy 182.938622 92.590398)
(xy 182.938621 92.5904)
(xy 182.931707 92.616204)
(xy 182.894755 92.676827)
(xy 182.830894 92.707848)
(xy 182.7604 92.69942)
(xy 182.705653 92.654217)
(xy 182.688293 92.616204)
(xy 182.681379 92.5904)
(xy 182.681378 92.590398)
(xy 182.679956 92.58509)
(xy 182.590589 92.393442)
(xy 182.469301 92.220224)
(xy 182.319776 92.070699)
(xy 182.146558 91.949411)
(xy 182.14158 91.94709)
(xy 182.141577 91.947088)
(xy 181.959892 91.862367)
(xy 181.959891 91.862366)
(xy 181.95491 91.860044)
(xy 181.949602 91.858622)
(xy 181.9496 91.858621)
(xy 181.75597 91.806738)
(xy 181.755968 91.806738)
(xy 181.750655 91.805314)
(xy 181.54 91.786884)
(xy 181.329345 91.805314)
(xy 181.324032 91.806738)
(xy 181.32403 91.806738)
(xy 181.1304 91.858621)
(xy 181.130398 91.858622)
(xy 181.12509 91.860044)
(xy 181.120109 91.862366)
(xy 181.120108 91.862367)
(xy 180.938423 91.947088)
(xy 180.93842 91.94709)
(xy 180.933442 91.949411)
(xy 180.760224 92.070699)
(xy 180.610699 92.220224)
(xy 180.489411 92.393442)
(xy 180.400044 92.58509)
(xy 180.398622 92.590398)
(xy 180.398621 92.5904)
(xy 180.391707 92.616204)
(xy 180.354755 92.676827)
(xy 180.290894 92.707848)
(xy 180.2204 92.69942)
(xy 180.165653 92.654217)
(xy 180.148293 92.616204)
(xy 180.141379 92.5904)
(xy 180.141378 92.590398)
(xy 180.139956 92.58509)
(xy 180.050589 92.393442)
(xy 179.929301 92.220224)
(xy 179.779776 92.070699)
(xy 179.606558 91.949411)
(xy 179.60158 91.94709)
(xy 179.601577 91.947088)
(xy 179.419892 91.862367)
(xy 179.419891 91.862366)
(xy 179.41491 91.860044)
(xy 179.409602 91.858622)
(xy 179.4096 91.858621)
(xy 179.21597 91.806738)
(xy 179.215968 91.806738)
(xy 179.210655 91.805314)
(xy 179 91.786884)
(xy 178.789345 91.805314)
(xy 178.784032 91.806738)
(xy 178.78403 91.806738)
(xy 178.5904 91.858621)
(xy 178.590398 91.858622)
(xy 178.58509 91.860044)
(xy 178.580109 91.862366)
(xy 178.580108 91.862367)
(xy 178.398423 91.947088)
(xy 178.39842 91.94709)
(xy 178.393442 91.949411)
(xy 178.220224 92.070699)
(xy 178.070699 92.220224)
(xy 177.949411 92.393442)
(xy 177.860044 92.58509)
(xy 177.858622 92.590398)
(xy 177.858621 92.5904)
(xy 177.851707 92.616204)
(xy 177.814755 92.676827)
(xy 177.750894 92.707848)
(xy 177.6804 92.69942)
(xy 177.625653 92.654217)
(xy 177.608293 92.616204)
(xy 177.601379 92.5904)
(xy 177.601378 92.590398)
(xy 177.599956 92.58509)
(xy 177.510589 92.393442)
(xy 177.389301 92.220224)
(xy 177.239776 92.070699)
(xy 177.066558 91.949411)
(xy 177.06158 91.94709)
(xy 177.061577 91.947088)
(xy 176.879892 91.862367)
(xy 176.879891 91.862366)
(xy 176.87491 91.860044)
(xy 176.869602 91.858622)
(xy 176.8696 91.858621)
(xy 176.67597 91.806738)
(xy 176.675968 91.806738)
(xy 176.670655 91.805314)
(xy 176.46 91.786884)
(xy 176.249345 91.805314)
(xy 176.244032 91.806738)
(xy 176.24403 91.806738)
(xy 176.0504 91.858621)
(xy 176.050398 91.858622)
(xy 176.04509 91.860044)
(xy 176.040109 91.862366)
(xy 176.040108 91.862367)
(xy 175.858423 91.947088)
(xy 175.85842 91.94709)
(xy 175.853442 91.949411)
(xy 175.680224 92.070699)
(xy 175.530699 92.220224)
(xy 175.409411 92.393442)
(xy 175.320044 92.58509)
(xy 175.265314 92.789345)
(xy 175.246884 93)
(xy 175.265314 93.210655)
(xy 175.266739 93.215972)
(xy 175.266739 93.215974)
(xy 175.271271 93.232887)
(xy 175.269583 93.303863)
(xy 175.22979 93.36266)
(xy 175.164526 93.390609)
(xy 175.149565 93.3915)
(xy 169.619587 93.3915)
(xy 169.608404 93.390973)
(xy 169.600911 93.389298)
(xy 169.592985 93.389547)
(xy 169.592984 93.389547)
(xy 169.532834 93.391438)
(xy 169.528875 93.3915)
(xy 169.500964 93.3915)
(xy 169.49703 93.391997)
(xy 169.497029 93.391997)
(xy 169.496964 93.392005)
(xy 169.485127 93.392938)
(xy 169.45331 93.393938)
(xy 169.448849 93.394078)
(xy 169.44093 93.394327)
(xy 169.423274 93.399456)
(xy 169.421478 93.399978)
(xy 169.402126 93.403986)
(xy 169.395055 93.40488)
(xy 169.382023 93.406526)
(xy 169.374654 93.409443)
(xy 169.374652 93.409444)
(xy 169.340917 93.4228)
(xy 169.329689 93.426645)
(xy 169.287227 93.438982)
(xy 169.280404 93.443017)
(xy 169.280402 93.443018)
(xy 169.269792 93.449293)