-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjig.kicad_pcb-bak
1339 lines (1317 loc) · 118 KB
/
jig.kicad_pcb-bak
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 20171130) (host pcbnew 5.1.5-52549c5~84~ubuntu18.04.1)
(general
(thickness 1.6)
(drawings 1)
(tracks 83)
(zones 0)
(modules 14)
(nets 17)
)
(page A4)
(layers
(0 F.Cu signal)
(31 B.Cu signal hide)
(32 B.Adhes user)
(33 F.Adhes user)
(34 B.Paste user)
(35 F.Paste user)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user)
(40 Dwgs.User user)
(41 Cmts.User user)
(42 Eco1.User user)
(43 Eco2.User user)
(44 Edge.Cuts user)
(45 Margin user)
(46 B.CrtYd user)
(47 F.CrtYd user)
(48 B.Fab user hide)
(49 F.Fab user hide)
)
(setup
(last_trace_width 0.1524)
(user_trace_width 0.1524)
(user_trace_width 0.254)
(user_trace_width 0.508)
(user_trace_width 1.27)
(trace_clearance 0.1524)
(zone_clearance 0.1524)
(zone_45_only yes)
(trace_min 0.1524)
(via_size 0.508)
(via_drill 0.254)
(via_min_size 0.508)
(via_min_drill 0.254)
(user_via 0.508 0.254)
(uvia_size 0.3)
(uvia_drill 0.1)
(uvias_allowed no)
(uvia_min_size 0.2)
(uvia_min_drill 0.1)
(edge_width 0.15)
(segment_width 0.2)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.15)
(mod_text_size 0.762 0.762)
(mod_text_width 0.1524)
(pad_size 1 1)
(pad_drill 0)
(pad_to_mask_clearance 0.0254)
(aux_axis_origin 107.475 123.85)
(grid_origin 107.475 123.85)
(visible_elements 7FFFFF7F)
(pcbplotparams
(layerselection 0x010fc_ffffffff)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerbers/"))
)
(net 0 "")
(net 1 GND)
(net 2 ~RESET)
(net 3 SWCLK)
(net 4 SWDIO)
(net 5 IIC_SCL)
(net 6 IIC_SDA)
(net 7 D-)
(net 8 D+)
(net 9 SYS_3v3)
(net 10 SYS_VBUS)
(net 11 SYS_5v)
(net 12 SYS_BATT)
(net 13 "Net-(J1-Pad14)")
(net 14 "Net-(J1-Pad15)")
(net 15 "Net-(J1-Pad12)")
(net 16 "Net-(J1-Pad13)")
(net_class Default "This is the default net class."
(clearance 0.1524)
(trace_width 0.1524)
(via_dia 0.508)
(via_drill 0.254)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net D+)
(add_net D-)
(add_net GND)
(add_net IIC_SCL)
(add_net IIC_SDA)
(add_net "Net-(J1-Pad12)")
(add_net "Net-(J1-Pad13)")
(add_net "Net-(J1-Pad14)")
(add_net "Net-(J1-Pad15)")
(add_net SWCLK)
(add_net SWDIO)
(add_net SYS_3v3)
(add_net SYS_5v)
(add_net SYS_BATT)
(add_net SYS_VBUS)
(add_net ~RESET)
)
(module Badge-PCB:pcb-top locked (layer F.Cu) (tedit 5E1DD97F) (tstamp 5E18E12F)
(at 96.9848 100.0248)
(fp_text reference Ref** (at -2.54 3.9878) (layer F.SilkS) hide
(effects (font (size 0.762 0.762) (thickness 0.1524)))
)
(fp_text value Val** (at -2.4638 6.223) (layer F.SilkS) hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
)
(fp_line (start 4.777554 -24.018443) (end 4.462648 -24.002646) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.462648 -24.002646) (end 4.157033 -23.95627) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.157033 -23.95627) (end 3.86223 -23.880835) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.86223 -23.880835) (end 3.57976 -23.777861) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.57976 -23.777861) (end 3.311145 -23.648867) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.311145 -23.648867) (end 3.057907 -23.495373) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.057907 -23.495373) (end 2.821565 -23.318899) (layer Edge.Cuts) (width 0.1))
(fp_line (start 2.821565 -23.318899) (end 2.603643 -23.120965) (layer Edge.Cuts) (width 0.1))
(fp_line (start 2.603643 -23.120965) (end 2.405661 -22.903091) (layer Edge.Cuts) (width 0.1))
(fp_line (start 2.405661 -22.903091) (end 2.229141 -22.666797) (layer Edge.Cuts) (width 0.1))
(fp_line (start 2.229141 -22.666797) (end 2.075603 -22.413602) (layer Edge.Cuts) (width 0.1))
(fp_line (start 2.075603 -22.413602) (end 1.94657 -22.145026) (layer Edge.Cuts) (width 0.1))
(fp_line (start 1.94657 -22.145026) (end 1.843563 -21.862589) (layer Edge.Cuts) (width 0.1))
(fp_line (start 1.843563 -21.862589) (end 1.768103 -21.567811) (layer Edge.Cuts) (width 0.1))
(fp_line (start 1.768103 -21.567811) (end 1.721711 -21.262212) (layer Edge.Cuts) (width 0.1))
(fp_line (start 1.721711 -21.262212) (end 1.705909 -20.947311) (layer Edge.Cuts) (width 0.1))
(fp_line (start 1.705909 -20.947311) (end 1.705909 15.90987) (layer Edge.Cuts) (width 0.1))
(fp_line (start 1.705909 15.90987) (end 1.721711 16.224777) (layer Edge.Cuts) (width 0.1))
(fp_line (start 1.721711 16.224777) (end 1.768103 16.530392) (layer Edge.Cuts) (width 0.1))
(fp_line (start 1.768103 16.530392) (end 1.843563 16.825196) (layer Edge.Cuts) (width 0.1))
(fp_line (start 1.843563 16.825196) (end 1.94657 17.107666) (layer Edge.Cuts) (width 0.1))
(fp_line (start 1.94657 17.107666) (end 2.075603 17.376282) (layer Edge.Cuts) (width 0.1))
(fp_line (start 2.075603 17.376282) (end 2.229141 17.629521) (layer Edge.Cuts) (width 0.1))
(fp_line (start 2.229141 17.629521) (end 2.405661 17.865862) (layer Edge.Cuts) (width 0.1))
(fp_line (start 2.405661 17.865862) (end 2.603643 18.083784) (layer Edge.Cuts) (width 0.1))
(fp_line (start 2.603643 18.083784) (end 2.821565 18.281767) (layer Edge.Cuts) (width 0.1))
(fp_line (start 2.821565 18.281767) (end 3.057907 18.458287) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.057907 18.458287) (end 3.311145 18.611824) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.311145 18.611824) (end 3.57976 18.740858) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.57976 18.740858) (end 3.86223 18.843865) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.86223 18.843865) (end 4.157033 18.919325) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.157033 18.919325) (end 4.462648 18.965717) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.462648 18.965717) (end 4.777554 18.981519) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.777554 18.981519) (end 41.634738 18.981519) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.634738 18.981519) (end 41.949638 18.965717) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.949638 18.965717) (end 42.255237 18.919325) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.255237 18.919325) (end 42.550015 18.843865) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.550015 18.843865) (end 42.832452 18.740858) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.832452 18.740858) (end 43.101028 18.611824) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.101028 18.611824) (end 43.354223 18.458287) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.354223 18.458287) (end 43.590518 18.281767) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.590518 18.281767) (end 43.808392 18.083784) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.808392 18.083784) (end 44.006326 17.865862) (layer Edge.Cuts) (width 0.1))
(fp_line (start 44.006326 17.865862) (end 44.182799 17.629521) (layer Edge.Cuts) (width 0.1))
(fp_line (start 44.182799 17.629521) (end 44.336293 17.376282) (layer Edge.Cuts) (width 0.1))
(fp_line (start 44.336293 17.376282) (end 44.465287 17.107666) (layer Edge.Cuts) (width 0.1))
(fp_line (start 44.465287 17.107666) (end 44.568262 16.825196) (layer Edge.Cuts) (width 0.1))
(fp_line (start 44.568262 16.825196) (end 44.643696 16.530392) (layer Edge.Cuts) (width 0.1))
(fp_line (start 44.643696 16.530392) (end 44.690072 16.224777) (layer Edge.Cuts) (width 0.1))
(fp_line (start 44.690072 16.224777) (end 44.705868 15.90987) (layer Edge.Cuts) (width 0.1))
(fp_line (start 44.705868 15.90987) (end 44.705868 -20.947311) (layer Edge.Cuts) (width 0.1))
(fp_line (start 44.705868 -20.947311) (end 44.690072 -21.262212) (layer Edge.Cuts) (width 0.1))
(fp_line (start 44.690072 -21.262212) (end 44.643696 -21.567811) (layer Edge.Cuts) (width 0.1))
(fp_line (start 44.643696 -21.567811) (end 44.568262 -21.862589) (layer Edge.Cuts) (width 0.1))
(fp_line (start 44.568262 -21.862589) (end 44.465287 -22.145026) (layer Edge.Cuts) (width 0.1))
(fp_line (start 44.465287 -22.145026) (end 44.336293 -22.413602) (layer Edge.Cuts) (width 0.1))
(fp_line (start 44.336293 -22.413602) (end 44.182799 -22.666797) (layer Edge.Cuts) (width 0.1))
(fp_line (start 44.182799 -22.666797) (end 44.006326 -22.903092) (layer Edge.Cuts) (width 0.1))
(fp_line (start 44.006326 -22.903092) (end 43.808392 -23.120967) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.808392 -23.120967) (end 43.590518 -23.3189) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.590518 -23.3189) (end 43.354223 -23.495374) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.354223 -23.495374) (end 43.101028 -23.648868) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.101028 -23.648868) (end 42.832452 -23.777862) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.832452 -23.777862) (end 42.550015 -23.880837) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.550015 -23.880837) (end 42.255237 -23.956271) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.255237 -23.956271) (end 41.949638 -24.002647) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.949638 -24.002647) (end 41.634738 -24.018443) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.634738 -24.018443) (end 4.777554 -24.018443) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.456128 -22.76839) (end 4.609482 -22.760664) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.609482 -22.760664) (end 4.758409 -22.737954) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.758409 -22.737954) (end 5.039964 -22.650596) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.039964 -22.650596) (end 5.294762 -22.512346) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.294762 -22.512346) (end 5.516772 -22.329233) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.516772 -22.329233) (end 5.699961 -22.107286) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.699961 -22.107286) (end 5.838299 -21.852536) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.838299 -21.852536) (end 5.925754 -21.57101) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.925754 -21.57101) (end 5.948515 -21.422092) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.948515 -21.422092) (end 5.956294 -21.26874) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.956294 -21.26874) (end 5.92723 -20.974693) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.92723 -20.974693) (end 5.842145 -20.694625) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.842145 -20.694625) (end 5.7043 -20.436408) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.7043 -20.436408) (end 5.516955 -20.207913) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.516955 -20.207913) (end 5.28846 -20.020567) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.28846 -20.020567) (end 5.030243 -19.882722) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.030243 -19.882722) (end 4.750175 -19.797637) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.750175 -19.797637) (end 4.456128 -19.768573) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.456128 -19.768573) (end 4.162081 -19.797637) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.162081 -19.797637) (end 3.882013 -19.882722) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.882013 -19.882722) (end 3.623796 -20.020567) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.623796 -20.020567) (end 3.395301 -20.207913) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.395301 -20.207913) (end 3.207956 -20.436408) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.207956 -20.436408) (end 3.070111 -20.694625) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.070111 -20.694625) (end 2.985026 -20.974693) (layer Edge.Cuts) (width 0.1))
(fp_line (start 2.985026 -20.974693) (end 2.955962 -21.26874) (layer Edge.Cuts) (width 0.1))
(fp_line (start 2.955962 -21.26874) (end 2.963741 -21.422092) (layer Edge.Cuts) (width 0.1))
(fp_line (start 2.963741 -21.422092) (end 2.986502 -21.57101) (layer Edge.Cuts) (width 0.1))
(fp_line (start 2.986502 -21.57101) (end 3.073957 -21.852536) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.073957 -21.852536) (end 3.212295 -22.107286) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.212295 -22.107286) (end 3.395484 -22.329233) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.395484 -22.329233) (end 3.617494 -22.512346) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.617494 -22.512346) (end 3.872292 -22.650596) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.872292 -22.650596) (end 4.153847 -22.737954) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.153847 -22.737954) (end 4.302774 -22.760664) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.302774 -22.760664) (end 4.456128 -22.76839) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.456128 -22.76839) (end 4.456128 -22.76839) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.956168 -22.76839) (end 42.109522 -22.760663) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.109522 -22.760663) (end 42.258448 -22.737953) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.258448 -22.737953) (end 42.540002 -22.650594) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.540002 -22.650594) (end 42.794799 -22.512344) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.794799 -22.512344) (end 43.016808 -22.32923) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.016808 -22.32923) (end 43.199996 -22.107284) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.199996 -22.107284) (end 43.338334 -21.852534) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.338334 -21.852534) (end 43.425788 -21.57101) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.425788 -21.57101) (end 43.448549 -21.422091) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.448549 -21.422091) (end 43.456328 -21.26874) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.456328 -21.26874) (end 43.427264 -20.974694) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.427264 -20.974694) (end 43.34218 -20.694627) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.34218 -20.694627) (end 43.204335 -20.43641) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.204335 -20.43641) (end 43.016991 -20.207915) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.016991 -20.207915) (end 42.788497 -20.02057) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.788497 -20.02057) (end 42.530281 -19.882724) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.530281 -19.882724) (end 42.250214 -19.797638) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.250214 -19.797638) (end 41.956168 -19.768573) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.956168 -19.768573) (end 41.662121 -19.797636) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.662121 -19.797636) (end 41.382052 -19.882721) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.382052 -19.882721) (end 41.123834 -20.020566) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.123834 -20.020566) (end 40.895339 -20.207912) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.895339 -20.207912) (end 40.707993 -20.436407) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.707993 -20.436407) (end 40.570147 -20.694624) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.570147 -20.694624) (end 40.485062 -20.974693) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.485062 -20.974693) (end 40.455998 -21.26874) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.455998 -21.26874) (end 40.463777 -21.422092) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.463777 -21.422092) (end 40.486538 -21.571011) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.486538 -21.571011) (end 40.573993 -21.852537) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.573993 -21.852537) (end 40.712332 -22.107287) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.712332 -22.107287) (end 40.895522 -22.329234) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.895522 -22.329234) (end 41.117532 -22.512347) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.117532 -22.512347) (end 41.372331 -22.650597) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.372331 -22.650597) (end 41.653886 -22.737954) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.653886 -22.737954) (end 41.802814 -22.760664) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.802814 -22.760664) (end 41.956168 -22.76839) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.956168 -22.76839) (end 41.956168 -22.76839) (layer Edge.Cuts) (width 0.1))
(fp_line (start 10.62991 -12.983974) (end 13.858655 -12.983974) (layer Edge.Cuts) (width 0.1))
(fp_line (start 13.858655 -12.983974) (end 13.992288 -12.970582) (layer Edge.Cuts) (width 0.1))
(fp_line (start 13.992288 -12.970582) (end 14.116603 -12.932153) (layer Edge.Cuts) (width 0.1))
(fp_line (start 14.116603 -12.932153) (end 14.228981 -12.871306) (layer Edge.Cuts) (width 0.1))
(fp_line (start 14.228981 -12.871306) (end 14.326802 -12.790663) (layer Edge.Cuts) (width 0.1))
(fp_line (start 14.326802 -12.790663) (end 14.407446 -12.692842) (layer Edge.Cuts) (width 0.1))
(fp_line (start 14.407446 -12.692842) (end 14.468292 -12.580464) (layer Edge.Cuts) (width 0.1))
(fp_line (start 14.468292 -12.580464) (end 14.506721 -12.456148) (layer Edge.Cuts) (width 0.1))
(fp_line (start 14.506721 -12.456148) (end 14.520113 -12.322516) (layer Edge.Cuts) (width 0.1))
(fp_line (start 14.520113 -12.322516) (end 14.520113 7.285073) (layer Edge.Cuts) (width 0.1))
(fp_line (start 14.520113 7.285073) (end 14.506721 7.418706) (layer Edge.Cuts) (width 0.1))
(fp_line (start 14.506721 7.418706) (end 14.468292 7.543021) (layer Edge.Cuts) (width 0.1))
(fp_line (start 14.468292 7.543021) (end 14.407446 7.655399) (layer Edge.Cuts) (width 0.1))
(fp_line (start 14.407446 7.655399) (end 14.326802 7.75322) (layer Edge.Cuts) (width 0.1))
(fp_line (start 14.326802 7.75322) (end 14.228981 7.833864) (layer Edge.Cuts) (width 0.1))
(fp_line (start 14.228981 7.833864) (end 14.116603 7.89471) (layer Edge.Cuts) (width 0.1))
(fp_line (start 14.116603 7.89471) (end 13.992288 7.933139) (layer Edge.Cuts) (width 0.1))
(fp_line (start 13.992288 7.933139) (end 13.858655 7.946531) (layer Edge.Cuts) (width 0.1))
(fp_line (start 13.858655 7.946531) (end 10.62991 7.946531) (layer Edge.Cuts) (width 0.1))
(fp_line (start 10.62991 7.946531) (end 10.496277 7.933139) (layer Edge.Cuts) (width 0.1))
(fp_line (start 10.496277 7.933139) (end 10.371962 7.89471) (layer Edge.Cuts) (width 0.1))
(fp_line (start 10.371962 7.89471) (end 10.259584 7.833864) (layer Edge.Cuts) (width 0.1))
(fp_line (start 10.259584 7.833864) (end 10.161763 7.75322) (layer Edge.Cuts) (width 0.1))
(fp_line (start 10.161763 7.75322) (end 10.081119 7.655399) (layer Edge.Cuts) (width 0.1))
(fp_line (start 10.081119 7.655399) (end 10.020273 7.543021) (layer Edge.Cuts) (width 0.1))
(fp_line (start 10.020273 7.543021) (end 9.981844 7.418706) (layer Edge.Cuts) (width 0.1))
(fp_line (start 9.981844 7.418706) (end 9.968452 7.285073) (layer Edge.Cuts) (width 0.1))
(fp_line (start 9.968452 7.285073) (end 9.968452 -12.322516) (layer Edge.Cuts) (width 0.1))
(fp_line (start 9.968452 -12.322516) (end 9.981844 -12.456148) (layer Edge.Cuts) (width 0.1))
(fp_line (start 9.981844 -12.456148) (end 10.020273 -12.580464) (layer Edge.Cuts) (width 0.1))
(fp_line (start 10.020273 -12.580464) (end 10.081119 -12.692842) (layer Edge.Cuts) (width 0.1))
(fp_line (start 10.081119 -12.692842) (end 10.161763 -12.790663) (layer Edge.Cuts) (width 0.1))
(fp_line (start 10.161763 -12.790663) (end 10.259584 -12.871306) (layer Edge.Cuts) (width 0.1))
(fp_line (start 10.259584 -12.871306) (end 10.371962 -12.932153) (layer Edge.Cuts) (width 0.1))
(fp_line (start 10.371962 -12.932153) (end 10.496277 -12.970582) (layer Edge.Cuts) (width 0.1))
(fp_line (start 10.496277 -12.970582) (end 10.62991 -12.983974) (layer Edge.Cuts) (width 0.1))
(fp_line (start 10.62991 -12.983974) (end 10.62991 -12.983974) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.456128 14.73113) (end 4.750175 14.760194) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.750175 14.760194) (end 5.030243 14.845279) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.030243 14.845279) (end 5.28846 14.983124) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.28846 14.983124) (end 5.516955 15.17047) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.516955 15.17047) (end 5.7043 15.398965) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.7043 15.398965) (end 5.842145 15.657182) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.842145 15.657182) (end 5.92723 15.93725) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.92723 15.93725) (end 5.956294 16.231297) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.956294 16.231297) (end 5.92723 16.525344) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.92723 16.525344) (end 5.842146 16.805412) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.842146 16.805412) (end 5.704301 17.06363) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.704301 17.06363) (end 5.516955 17.292125) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.516955 17.292125) (end 5.288461 17.479471) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.288461 17.479471) (end 5.030243 17.617317) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.030243 17.617317) (end 4.750175 17.702402) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.750175 17.702402) (end 4.456128 17.731466) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.456128 17.731466) (end 4.162081 17.702402) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.162081 17.702402) (end 3.882013 17.617317) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.882013 17.617317) (end 3.623795 17.479471) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.623795 17.479471) (end 3.395301 17.292125) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.395301 17.292125) (end 3.207955 17.06363) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.207955 17.06363) (end 3.07011 16.805412) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.07011 16.805412) (end 2.985026 16.525344) (layer Edge.Cuts) (width 0.1))
(fp_line (start 2.985026 16.525344) (end 2.955962 16.231297) (layer Edge.Cuts) (width 0.1))
(fp_line (start 2.955962 16.231297) (end 2.985026 15.93725) (layer Edge.Cuts) (width 0.1))
(fp_line (start 2.985026 15.93725) (end 3.070111 15.657182) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.070111 15.657182) (end 3.207956 15.398965) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.207956 15.398965) (end 3.395301 15.17047) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.395301 15.17047) (end 3.623796 14.983124) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.623796 14.983124) (end 3.882013 14.845279) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.882013 14.845279) (end 4.162081 14.760194) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.162081 14.760194) (end 4.456128 14.73113) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.456128 14.73113) (end 4.456128 14.73113) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.956168 14.73113) (end 42.250214 14.760195) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.250214 14.760195) (end 42.530281 14.845281) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.530281 14.845281) (end 42.788497 14.983127) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.788497 14.983127) (end 43.016991 15.170472) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.016991 15.170472) (end 43.204335 15.398967) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.204335 15.398967) (end 43.34218 15.657184) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.34218 15.657184) (end 43.427264 15.937251) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.427264 15.937251) (end 43.456328 16.231297) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.456328 16.231297) (end 43.427265 16.525343) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.427265 16.525343) (end 43.342181 16.805411) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.342181 16.805411) (end 43.204336 17.063628) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.204336 17.063628) (end 43.016991 17.292123) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.016991 17.292123) (end 42.788498 17.479469) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.788498 17.479469) (end 42.530281 17.617315) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.530281 17.617315) (end 42.250214 17.702401) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.250214 17.702401) (end 41.956168 17.731466) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.956168 17.731466) (end 41.662121 17.702403) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.662121 17.702403) (end 41.382052 17.617318) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.382052 17.617318) (end 41.123833 17.479473) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.123833 17.479473) (end 40.895338 17.292127) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.895338 17.292127) (end 40.707992 17.063631) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.707992 17.063631) (end 40.570146 16.805413) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.570146 16.805413) (end 40.485062 16.525344) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.485062 16.525344) (end 40.455998 16.231297) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.455998 16.231297) (end 40.485062 15.93725) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.485062 15.93725) (end 40.570147 15.657181) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.570147 15.657181) (end 40.707993 15.398964) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.707993 15.398964) (end 40.895339 15.170469) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.895339 15.170469) (end 41.123834 14.983123) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.123834 14.983123) (end 41.382052 14.845278) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.382052 14.845278) (end 41.662121 14.760193) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.662121 14.760193) (end 41.956168 14.73113) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.956168 14.73113) (end 41.956168 14.73113) (layer Edge.Cuts) (width 0.1))
(model ${KIPRJMOD}/3d_part_models/TFT_LCD_4421.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Footprints:Test_Point_Pad_d1.0mm (layer B.Cu) (tedit 59B53D91) (tstamp 5E2B21ED)
(at 140.241 84.226)
(descr "SMD pad as test Point, diameter 1.0mm")
(tags "test point SMD pad")
(path /5EB8EB53)
(attr virtual)
(fp_text reference TP1 (at -1.524 -1.016) (layer B.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.1524)) (justify mirror))
)
(fp_text value TestPoint (at 0 -1.55) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 1.45) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_circle (center 0 0) (end 1 0) (layer B.CrtYd) (width 0.05))
(fp_circle (center 0 0) (end 0 -0.7) (layer B.SilkS) (width 0.12))
(pad 1 smd circle (at 0 0) (size 1 1) (layers B.Cu B.Mask)
(net 3 SWCLK))
)
(module Footprints:Test_Point_Pad_d1.0mm (layer B.Cu) (tedit 59B53D91) (tstamp 5E2B21F4)
(at 140.241 86.766)
(descr "SMD pad as test Point, diameter 1.0mm")
(tags "test point SMD pad")
(path /5EBAD9AC)
(attr virtual)
(fp_text reference TP2 (at -1.524 -1.016) (layer B.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.1524)) (justify mirror))
)
(fp_text value TestPoint (at 0 -1.55) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 1.45) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_circle (center 0 0) (end 1 0) (layer B.CrtYd) (width 0.05))
(fp_circle (center 0 0) (end 0 -0.7) (layer B.SilkS) (width 0.12))
(pad 1 smd circle (at 0 0) (size 1 1) (layers B.Cu B.Mask)
(net 4 SWDIO))
)
(module Footprints:Test_Point_Pad_d1.0mm (layer B.Cu) (tedit 59B53D91) (tstamp 5E2B21FB)
(at 127.033 86.512 270)
(descr "SMD pad as test Point, diameter 1.0mm")
(tags "test point SMD pad")
(path /5EBADC80)
(attr virtual)
(fp_text reference TP3 (at 1.6256 0.98298 270) (layer B.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.1524)) (justify mirror))
)
(fp_text value TestPoint (at 0 -1.55 270) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_circle (center 0 0) (end 0 -0.7) (layer B.SilkS) (width 0.12))
(fp_circle (center 0 0) (end 1 0) (layer B.CrtYd) (width 0.05))
(fp_text user %R (at 0 1.45 90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(pad 1 smd circle (at 0 0 270) (size 1 1) (layers B.Cu B.Mask)
(net 8 D+))
)
(module Footprints:Test_Point_Pad_d1.0mm (layer B.Cu) (tedit 59B53D91) (tstamp 5E2B2202)
(at 124.493 86.512 270)
(descr "SMD pad as test Point, diameter 1.0mm")
(tags "test point SMD pad")
(path /5EBC0CA5)
(attr virtual)
(fp_text reference TP4 (at 1.45542 1.14554 270) (layer B.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.1524)) (justify mirror))
)
(fp_text value TestPoint (at 0 -1.55 270) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 1.45 90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_circle (center 0 0) (end 1 0) (layer B.CrtYd) (width 0.05))
(fp_circle (center 0 0) (end 0 -0.7) (layer B.SilkS) (width 0.12))
(pad 1 smd circle (at 0 0 270) (size 1 1) (layers B.Cu B.Mask)
(net 7 D-))
)
(module Footprints:Test_Point_Pad_d1.0mm (layer B.Cu) (tedit 59B53D91) (tstamp 5E2B2209)
(at 134.165 111.41)
(descr "SMD pad as test Point, diameter 1.0mm")
(tags "test point SMD pad")
(path /5EBE4091)
(attr virtual)
(fp_text reference TP5 (at 0 1.448) (layer B.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.1524)) (justify mirror))
)
(fp_text value TestPoint (at 0 -1.55) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_circle (center 0 0) (end 0 -0.7) (layer B.SilkS) (width 0.12))
(fp_circle (center 0 0) (end 1 0) (layer B.CrtYd) (width 0.05))
(fp_text user %R (at 0 1.45) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(pad 1 smd circle (at 0 0) (size 1 1) (layers B.Cu B.Mask)
(net 6 IIC_SDA))
)
(module Footprints:Test_Point_Pad_d1.0mm (layer B.Cu) (tedit 59B53D91) (tstamp 5E2B2210)
(at 131.1986 111.440578)
(descr "SMD pad as test Point, diameter 1.0mm")
(tags "test point SMD pad")
(path /5EBE4364)
(attr virtual)
(fp_text reference TP6 (at 0 1.448) (layer B.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.1524)) (justify mirror))
)
(fp_text value TestPoint (at 0 -1.55) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 1.45) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_circle (center 0 0) (end 1 0) (layer B.CrtYd) (width 0.05))
(fp_circle (center 0 0) (end 0 -0.7) (layer B.SilkS) (width 0.12))
(pad 1 smd circle (at 0 0) (size 1 1) (layers B.Cu B.Mask)
(net 5 IIC_SCL))
)
(module Footprints:Test_Point_Pad_d1.0mm (layer B.Cu) (tedit 59B53D91) (tstamp 5E2B2217)
(at 108.5418 84.353)
(descr "SMD pad as test Point, diameter 1.0mm")
(tags "test point SMD pad")
(path /5EBC59AC)
(attr virtual)
(fp_text reference TP7 (at -0.2168 1.597) (layer B.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.1524)) (justify mirror))
)
(fp_text value TestPoint (at 0 -1.55) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_circle (center 0 0) (end 0 -0.7) (layer B.SilkS) (width 0.12))
(fp_circle (center 0 0) (end 1 0) (layer B.CrtYd) (width 0.05))
(fp_text user %R (at 0 1.45) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(pad 1 smd circle (at 0 0) (size 1 1) (layers B.Cu B.Mask)
(net 9 SYS_3v3))
)
(module Footprints:Test_Point_Pad_d1.0mm (layer B.Cu) (tedit 59B53D91) (tstamp 5E2B221E)
(at 121.953 86.512)
(descr "SMD pad as test Point, diameter 1.0mm")
(tags "test point SMD pad")
(path /5EBC77B8)
(attr virtual)
(fp_text reference TP8 (at -1.19888 1.36144 90) (layer B.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.1524)) (justify mirror))
)
(fp_text value TestPoint (at 0 -1.55) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 1.45) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_circle (center 0 0) (end 1 0) (layer B.CrtYd) (width 0.05))
(fp_circle (center 0 0) (end 0 -0.7) (layer B.SilkS) (width 0.12))
(pad 1 smd circle (at 0 0) (size 1 1) (layers B.Cu B.Mask)
(net 10 SYS_VBUS))
)
(module Footprints:Test_Point_Pad_d1.0mm (layer B.Cu) (tedit 59B53D91) (tstamp 5E2B2225)
(at 140.241 89.306)
(descr "SMD pad as test Point, diameter 1.0mm")
(tags "test point SMD pad")
(path /5EC938C7)
(attr virtual)
(fp_text reference TP9 (at -1.524 -1.27) (layer B.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.1524)) (justify mirror))
)
(fp_text value TestPoint (at 0 -1.55) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 1.45) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_circle (center 0 0) (end 1 0) (layer B.CrtYd) (width 0.05))
(fp_circle (center 0 0) (end 0 -0.7) (layer B.SilkS) (width 0.12))
(pad 1 smd circle (at 0 0) (size 1 1) (layers B.Cu B.Mask)
(net 1 GND))
)
(module Footprints:Test_Point_Pad_d1.0mm (layer B.Cu) (tedit 59B53D91) (tstamp 5E2B222C)
(at 115.795 78.34)
(descr "SMD pad as test Point, diameter 1.0mm")
(tags "test point SMD pad")
(path /5EC890F2)
(attr virtual)
(fp_text reference TP10 (at 0.61 2.26 270) (layer B.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.1524)) (justify mirror))
)
(fp_text value TestPoint (at 0 -1.55) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_circle (center 0 0) (end 0 -0.7) (layer B.SilkS) (width 0.12))
(fp_circle (center 0 0) (end 1 0) (layer B.CrtYd) (width 0.05))
(fp_text user %R (at 0 1.45) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(pad 1 smd circle (at 0 0) (size 1 1) (layers B.Cu B.Mask)
(net 11 SYS_5v))
)
(module Footprints:Test_Point_Pad_d1.0mm (layer B.Cu) (tedit 59B53D91) (tstamp 5E2B2233)
(at 138.615 90.48)
(descr "SMD pad as test Point, diameter 1.0mm")
(tags "test point SMD pad")
(path /5EF056EB)
(attr virtual)
(fp_text reference TP11 (at -2.32 0.04) (layer B.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.1524)) (justify mirror))
)
(fp_text value TestPoint (at 0 -1.55) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_circle (center 0 0) (end 0 -0.7) (layer B.SilkS) (width 0.12))
(fp_circle (center 0 0) (end 1 0) (layer B.CrtYd) (width 0.05))
(fp_text user %R (at 0 1.45) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(pad 1 smd circle (at 0 0) (size 1 1) (layers B.Cu B.Mask)
(net 2 ~RESET))
)
(module Footprints:Test_Point_Pad_d1.0mm (layer B.Cu) (tedit 59B53D91) (tstamp 5E2B2241)
(at 107.775 82.15)
(descr "SMD pad as test Point, diameter 1.0mm")
(tags "test point SMD pad")
(path /5E3327D8)
(attr virtual)
(fp_text reference TP12 (at -2.032 -0.762) (layer B.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.1524)) (justify mirror))
)
(fp_text value TestPoint (at 0 -1.55) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_circle (center 0 0) (end 0 -0.7) (layer B.SilkS) (width 0.12))
(fp_circle (center 0 0) (end 1 0) (layer B.CrtYd) (width 0.05))
(fp_text user %R (at 0 1.45) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(pad 1 smd circle (at 0 0) (size 1 1) (layers B.Cu B.Mask)
(net 12 SYS_BATT))
)
(module Connector_PinSocket_2.54mm:PinSocket_2x08_P2.54mm_Vertical (layer F.Cu) (tedit 5A19A42B) (tstamp 5E346441)
(at 106.575 113.875 90)
(descr "Through hole straight socket strip, 2x08, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 2x08 2.54mm double row")
(path /5E3D9C12)
(fp_text reference J1 (at -1.27 -2.77 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Conn_01x16_Female (at -1.27 20.55 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -3.81 -1.27) (end 0.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 0.27 -1.27) (end 1.27 -0.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -0.27) (end 1.27 19.05) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 19.05) (end -3.81 19.05) (layer F.Fab) (width 0.1))
(fp_line (start -3.81 19.05) (end -3.81 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -3.87 -1.33) (end -1.27 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -3.87 -1.33) (end -3.87 19.11) (layer F.SilkS) (width 0.12))
(fp_line (start -3.87 19.11) (end 1.33 19.11) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 1.27) (end 1.33 19.11) (layer F.SilkS) (width 0.12))
(fp_line (start -1.27 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start -1.27 -1.33) (end -1.27 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 -1.33) (end 1.33 0) (layer F.SilkS) (width 0.12))
(fp_line (start 0 -1.33) (end 1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -4.34 -1.8) (end 1.76 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.76 -1.8) (end 1.76 19.55) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.76 19.55) (end -4.34 19.55) (layer F.CrtYd) (width 0.05))
(fp_line (start -4.34 19.55) (end -4.34 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at -1.27 8.89) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 SYS_3v3))
(pad 2 thru_hole oval (at -2.54 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 12 SYS_BATT))
(pad 3 thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 11 SYS_5v))
(pad 4 thru_hole oval (at -2.54 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 SYS_VBUS))
(pad 5 thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 D-))
(pad 6 thru_hole oval (at -2.54 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 D+))
(pad 7 thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 SWCLK))
(pad 8 thru_hole oval (at -2.54 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 SWDIO))
(pad 9 thru_hole oval (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 ~RESET))
(pad 10 thru_hole oval (at -2.54 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 IIC_SCL))
(pad 11 thru_hole oval (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 IIC_SDA))
(pad 12 thru_hole oval (at -2.54 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 15 "Net-(J1-Pad12)"))
(pad 13 thru_hole oval (at 0 15.24 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 16 "Net-(J1-Pad13)"))
(pad 14 thru_hole oval (at -2.54 15.24 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 13 "Net-(J1-Pad14)"))
(pad 15 thru_hole oval (at 0 17.78 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 14 "Net-(J1-Pad15)"))
(pad 16 thru_hole oval (at -2.54 17.78 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 GND))
(model ${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x08_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_circle (center 131.45 90.2) (end 132.65 90.2) (layer F.SilkS) (width 0.15))
(via (at 140.24 89.305) (size 0.9) (drill 0.45) (layers F.Cu B.Cu) (net 1) (tstamp 5E2B13B7))
(via (at 138.615 90.48) (size 0.9) (drill 0.45) (layers F.Cu B.Cu) (net 2))
(segment (start 138.615 91.285) (end 138.615 90.48) (width 0.1524) (layer F.Cu) (net 2))
(segment (start 116.735 113.875) (end 116.735 113.165) (width 0.1524) (layer F.Cu) (net 2))
(segment (start 116.735 113.165) (end 138.615 91.285) (width 0.1524) (layer F.Cu) (net 2))
(via (at 140.24 84.23) (size 0.9) (drill 0.45) (layers F.Cu B.Cu) (net 3) (tstamp 5E2B13B7))
(segment (start 140.24 84.23) (end 136.82 84.23) (width 0.1524) (layer F.Cu) (net 3))
(segment (start 136.82 84.23) (end 129.325 91.725) (width 0.1524) (layer F.Cu) (net 3))
(segment (start 129.325 91.725) (end 129.325 98.25) (width 0.1524) (layer F.Cu) (net 3))
(segment (start 114.195 113.43) (end 114.95 112.675) (width 0.1524) (layer F.Cu) (net 3))
(segment (start 114.195 113.875) (end 114.195 113.43) (width 0.1524) (layer F.Cu) (net 3))
(segment (start 129.325 98.25) (end 114.95 112.675) (width 0.1524) (layer F.Cu) (net 3))
(segment (start 114.95 112.675) (end 114.875 112.7) (width 0.1524) (layer F.Cu) (net 3))
(via (at 140.24 86.78) (size 0.9) (drill 0.45) (layers F.Cu B.Cu) (net 4) (tstamp 5E2B13B7))
(segment (start 140.24 86.78) (end 136.095 86.78) (width 0.1524) (layer F.Cu) (net 4))
(segment (start 136.095 86.78) (end 131.725 91.15) (width 0.1524) (layer F.Cu) (net 4))
(segment (start 131.725 96.925) (end 115.425 113.225) (width 0.1524) (layer F.Cu) (net 4))
(segment (start 131.725 91.15) (end 131.725 96.925) (width 0.1524) (layer F.Cu) (net 4))
(segment (start 115.425 113.225) (end 115.425 115.475) (width 0.1524) (layer F.Cu) (net 4))
(segment (start 114.485 116.415) (end 115.425 115.475) (width 0.1524) (layer F.Cu) (net 4))
(segment (start 114.195 116.415) (end 114.485 116.415) (width 0.1524) (layer F.Cu) (net 4))
(via (at 131.19 111.43) (size 0.9) (drill 0.45) (layers F.Cu B.Cu) (net 5) (tstamp 5E2B13B7))
(segment (start 117.813601 113.740069) (end 120.12367 111.43) (width 0.1524) (layer F.Cu) (net 5))
(segment (start 117.813601 115.186399) (end 117.813601 113.740069) (width 0.1524) (layer F.Cu) (net 5))
(segment (start 116.735 116.415) (end 116.735 116.265) (width 0.1524) (layer F.Cu) (net 5))
(segment (start 120.12367 111.43) (end 131.19 111.43) (width 0.1524) (layer F.Cu) (net 5))
(segment (start 116.735 116.265) (end 117.813601 115.186399) (width 0.1524) (layer F.Cu) (net 5))
(via (at 134.165 111.405) (size 0.9) (drill 0.45) (layers F.Cu B.Cu) (net 6) (tstamp 5E2B13B7))
(segment (start 134.165 112.435) (end 134.165 111.405) (width 0.1524) (layer F.Cu) (net 6))
(segment (start 119.325 113.875) (end 120.8 112.4) (width 0.1524) (layer F.Cu) (net 6))
(segment (start 119.275 113.875) (end 119.325 113.875) (width 0.1524) (layer F.Cu) (net 6))
(segment (start 127.225 113.825) (end 132.775 113.825) (width 0.1524) (layer F.Cu) (net 6))
(segment (start 120.8 112.4) (end 125.8 112.4) (width 0.1524) (layer F.Cu) (net 6))
(segment (start 125.8 112.4) (end 127.225 113.825) (width 0.1524) (layer F.Cu) (net 6))
(segment (start 132.775 113.825) (end 134.165 112.435) (width 0.1524) (layer F.Cu) (net 6))
(via (at 124.49 86.53) (size 0.9) (drill 0.45) (layers F.Cu B.Cu) (net 7) (tstamp 5E2B13B7))
(segment (start 124.493 83.193) (end 124.493 86.512) (width 0.1524) (layer B.Cu) (net 7))
(segment (start 124.475 83.175) (end 124.493 83.193) (width 0.1524) (layer B.Cu) (net 7))
(segment (start 124.475 81.3875) (end 124.475 83.175) (width 0.1524) (layer B.Cu) (net 7))
(segment (start 124.49 86.53) (end 124.49 100.435) (width 0.1524) (layer F.Cu) (net 7))
(segment (start 124.49 100.435) (end 112.45 112.475) (width 0.1524) (layer F.Cu) (net 7))
(segment (start 112.45 113.08) (end 111.655 113.875) (width 0.1524) (layer F.Cu) (net 7))
(segment (start 112.45 112.475) (end 112.45 113.08) (width 0.1524) (layer F.Cu) (net 7))
(via (at 127.04 86.505) (size 0.9) (drill 0.45) (layers F.Cu B.Cu) (net 8) (tstamp 5E2B13B7))
(segment (start 125.125 81.3875) (end 125.125 83.625) (width 0.1524) (layer B.Cu) (net 8))
(segment (start 127.04 85.54) (end 127.04 86.505) (width 0.1524) (layer B.Cu) (net 8))
(segment (start 125.125 83.625) (end 127.04 85.54) (width 0.1524) (layer B.Cu) (net 8))
(segment (start 112.733601 113.357271) (end 112.733601 115.741399) (width 0.1524) (layer F.Cu) (net 8))
(segment (start 127.04 86.505) (end 127.04 99.050872) (width 0.1524) (layer F.Cu) (net 8))
(segment (start 127.04 99.050872) (end 112.733601 113.357271) (width 0.1524) (layer F.Cu) (net 8))
(segment (start 112.733601 115.741399) (end 112.65 115.825) (width 0.1524) (layer F.Cu) (net 8))
(via (at 108.54 84.355) (size 0.9) (drill 0.45) (layers F.Cu B.Cu) (net 9) (tstamp 5E2B13B7))
(segment (start 108.5418 84.353) (end 108.498 84.353) (width 0.1524) (layer B.Cu) (net 9))
(via (at 121.965 86.53) (size 0.9) (drill 0.45) (layers F.Cu B.Cu) (net 10) (tstamp 5E2B13B7))
(via (at 115.79 78.33) (size 0.9) (drill 0.45) (layers F.Cu B.Cu) (net 11) (tstamp 5E347083))
(segment (start 108.54 84.355) (end 103.925 88.97) (width 0.1524) (layer F.Cu) (net 9))
(segment (start 103.925 88.97) (end 103.925 111.55) (width 0.1524) (layer F.Cu) (net 9))
(segment (start 103.925 111.55) (end 104.45 112.075) (width 0.1524) (layer F.Cu) (net 9))
(segment (start 104.775 112.075) (end 106.575 113.875) (width 0.1524) (layer F.Cu) (net 9))
(segment (start 104.45 112.075) (end 104.775 112.075) (width 0.1524) (layer F.Cu) (net 9))
(segment (start 121.965 86.53) (end 121.965 101.06) (width 0.1524) (layer F.Cu) (net 10))
(segment (start 110.193601 112.831399) (end 110.193601 115.581399) (width 0.1524) (layer F.Cu) (net 10))
(segment (start 121.965 101.06) (end 110.193601 112.831399) (width 0.1524) (layer F.Cu) (net 10))
(segment (start 109.335 116.415) (end 110.1 115.65) (width 0.1524) (layer F.Cu) (net 10))
(segment (start 109.115 116.415) (end 109.335 116.415) (width 0.1524) (layer F.Cu) (net 10))
(segment (start 110.193601 115.581399) (end 110.1 115.65) (width 0.1524) (layer F.Cu) (net 10))
(segment (start 110.1 115.65) (end 110.025 115.75) (width 0.1524) (layer F.Cu) (net 10))
(segment (start 123.825 81.861974) (end 121.936974 83.75) (width 0.508) (layer B.Cu) (net 11))
(segment (start 123.825 81.3875) (end 123.825 81.861974) (width 0.508) (layer B.Cu) (net 11))
(segment (start 121.205 83.75) (end 115.795 78.34) (width 0.508) (layer B.Cu) (net 11))
(segment (start 121.936974 83.75) (end 121.205 83.75) (width 0.508) (layer B.Cu) (net 11))
(segment (start 115.28 78.33) (end 114.525 79.085) (width 0.508) (layer F.Cu) (net 11))
(segment (start 115.79 78.33) (end 115.28 78.33) (width 0.508) (layer F.Cu) (net 11))
(segment (start 114.525 79.085) (end 114.525 105.875) (width 0.508) (layer F.Cu) (net 11))
(segment (start 109.115 111.285) (end 109.115 113.875) (width 0.508) (layer F.Cu) (net 11))
(segment (start 114.525 105.875) (end 109.115 111.285) (width 0.508) (layer F.Cu) (net 11))
(via (at 107.765 82.155) (size 0.9) (drill 0.45) (layers F.Cu B.Cu) (net 12) (tstamp 5E2B326B))
(segment (start 107.765 82.155) (end 102.45 87.47) (width 0.1524) (layer F.Cu) (net 12))
(segment (start 102.45 87.47) (end 102.45 113.625) (width 0.1524) (layer F.Cu) (net 12))
(segment (start 106.575 116.415) (end 105.24 116.415) (width 0.1524) (layer F.Cu) (net 12))
(segment (start 105.24 116.415) (end 104.35 115.525) (width 0.1524) (layer F.Cu) (net 12))
(segment (start 102.45 113.625) (end 104.35 115.525) (width 0.1524) (layer F.Cu) (net 12))
(segment (start 104.35 115.525) (end 104.6 115.775) (width 0.1524) (layer F.Cu) (net 12))
(zone (net 1) (net_name GND) (layer B.Cu) (tstamp 0) (hatch edge 0.508)
(connect_pads (clearance 0.1524))
(min_thickness 0.254)
(fill yes (arc_segments 32) (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 148.975 129.2) (xy 89.475 128.35) (xy 97.525 74.3) (xy 147.825 70.85)
)
)
(filled_polygon
(pts
(xy 138.901393 76.350309) (xy 139.174334 76.39173) (xy 139.43733 76.45903) (xy 139.689227 76.550871) (xy 139.92877 76.665921)
(xy 140.154664 76.802865) (xy 140.365539 76.960355) (xy 140.560008 77.137026) (xy 140.736678 77.331494) (xy 140.894163 77.542366)
(xy 141.031106 77.768259) (xy 141.146155 78.007801) (xy 141.237996 78.259701) (xy 141.305296 78.522693) (xy 141.346716 78.795634)
(xy 141.361269 79.085763) (xy 141.361269 89.123445) (xy 141.340577 89.00326) (xy 141.260387 88.79456) (xy 141.232588 88.74255)
(xy 141.019166 88.707439) (xy 140.420605 89.306) (xy 141.019166 89.904561) (xy 141.232588 89.86945) (xy 141.323458 89.665174)
(xy 141.361269 89.497826) (xy 141.361268 115.926416) (xy 141.346716 116.216529) (xy 141.305295 116.489491) (xy 141.237992 116.75252)
(xy 141.146151 117.004449) (xy 141.031091 117.244048) (xy 140.894146 117.469983) (xy 140.736656 117.680902) (xy 140.559982 117.875417)
(xy 140.365511 118.052136) (xy 140.15463 118.209671) (xy 139.928731 118.346656) (xy 139.689193 118.461739) (xy 139.437308 118.553604)
(xy 139.17431 118.620929) (xy 138.901378 118.662362) (xy 138.611288 118.676919) (xy 101.770603 118.676919) (xy 101.480501 118.662362)
(xy 101.207558 118.620929) (xy 100.944539 118.553605) (xy 100.692607 118.461735) (xy 100.453018 118.346643) (xy 100.227075 118.209655)
(xy 100.016157 118.052124) (xy 99.821636 117.875401) (xy 99.644911 117.680878) (xy 99.48737 117.469948) (xy 99.350382 117.244006)
(xy 99.235292 117.004416) (xy 99.143425 116.752492) (xy 99.076099 116.489468) (xy 99.035766 116.223768) (xy 99.611352 116.223768)
(xy 99.611363 116.256097) (xy 99.611352 116.288426) (xy 99.61454 116.304483) (xy 99.640434 116.566457) (xy 99.640441 116.582722)
(xy 99.645101 116.6061) (xy 99.653119 116.646336) (xy 99.659347 116.661358) (xy 99.734987 116.910339) (xy 99.738119 116.926126)
(xy 99.744389 116.941286) (xy 99.744435 116.941437) (xy 99.750699 116.956543) (xy 99.756707 116.971068) (xy 99.756779 116.971202)
(xy 99.763065 116.986361) (xy 99.772015 116.999744) (xy 99.894556 117.229293) (xy 99.900774 117.244324) (xy 99.919358 117.272165)
(xy 99.936784 117.298275) (xy 99.948277 117.30978) (xy 100.115217 117.513387) (xy 100.124336 117.52702) (xy 100.146997 117.549661)
(xy 100.170005 117.57269) (xy 100.183643 117.581812) (xy 100.387246 117.74875) (xy 100.39875 117.760242) (xy 100.419716 117.774235)
(xy 100.452699 117.796251) (xy 100.467728 117.802468) (xy 100.69729 117.925018) (xy 100.710663 117.933961) (xy 100.725809 117.940242)
(xy 100.725955 117.94032) (xy 100.741766 117.946859) (xy 100.755587 117.952591) (xy 100.755726 117.952633) (xy 100.770897 117.958908)
(xy 100.786695 117.962042) (xy 101.035663 118.037679) (xy 101.050689 118.043909) (xy 101.083941 118.050535) (xy 101.114301 118.056587)
(xy 101.130568 118.056594) (xy 101.392543 118.082488) (xy 101.408599 118.085676) (xy 101.440928 118.085665) (xy 101.473257 118.085676)
(xy 101.489314 118.082488) (xy 101.751288 118.056594) (xy 101.767554 118.056587) (xy 101.795538 118.051009) (xy 101.831167 118.043909)
(xy 101.846196 118.037678) (xy 102.095162 117.962041) (xy 102.110958 117.958908) (xy 102.126127 117.952634) (xy 102.126269 117.952591)
(xy 102.140466 117.946703) (xy 102.1559 117.94032) (xy 102.156043 117.940244) (xy 102.171193 117.933961) (xy 102.184569 117.925015)
(xy 102.414124 117.80247) (xy 102.429156 117.796252) (xy 102.454351 117.779433) (xy 102.483106 117.760242) (xy 102.494618 117.748743)
(xy 102.698219 117.581808) (xy 102.711851 117.57269) (xy 102.734313 117.550207) (xy 102.75752 117.527021) (xy 102.766642 117.513383)
(xy 102.933585 117.309773) (xy 102.945072 117.298274) (xy 102.954179 117.284629) (xy 102.981082 117.244326) (xy 102.987302 117.229291)
(xy 103.109844 116.99974) (xy 103.118791 116.986361) (xy 103.125076 116.971207) (xy 103.125149 116.971069) (xy 103.131313 116.956167)
(xy 103.137421 116.941437) (xy 103.137466 116.941289) (xy 103.143737 116.926127) (xy 103.146869 116.910337) (xy 103.22251 116.661355)
(xy 103.228737 116.646336) (xy 103.236755 116.6061) (xy 103.241415 116.582723) (xy 103.241422 116.566457) (xy 103.267316 116.304482)
(xy 103.267458 116.303764) (xy 105.4456 116.303764) (xy 105.4456 116.526236) (xy 105.489002 116.744434) (xy 105.574138 116.949972)
(xy 105.697737 117.134951) (xy 105.855049 117.292263) (xy 106.040028 117.415862) (xy 106.245566 117.500998) (xy 106.463764 117.5444)
(xy 106.686236 117.5444) (xy 106.904434 117.500998) (xy 107.109972 117.415862) (xy 107.294951 117.292263) (xy 107.452263 117.134951)
(xy 107.575862 116.949972) (xy 107.660998 116.744434) (xy 107.7044 116.526236) (xy 107.7044 116.303764) (xy 107.9856 116.303764)
(xy 107.9856 116.526236) (xy 108.029002 116.744434) (xy 108.114138 116.949972) (xy 108.237737 117.134951) (xy 108.395049 117.292263)
(xy 108.580028 117.415862) (xy 108.785566 117.500998) (xy 109.003764 117.5444) (xy 109.226236 117.5444) (xy 109.444434 117.500998)
(xy 109.649972 117.415862) (xy 109.834951 117.292263) (xy 109.992263 117.134951) (xy 110.115862 116.949972) (xy 110.200998 116.744434)
(xy 110.2444 116.526236) (xy 110.2444 116.303764) (xy 110.5256 116.303764) (xy 110.5256 116.526236) (xy 110.569002 116.744434)
(xy 110.654138 116.949972) (xy 110.777737 117.134951) (xy 110.935049 117.292263) (xy 111.120028 117.415862) (xy 111.325566 117.500998)
(xy 111.543764 117.5444) (xy 111.766236 117.5444) (xy 111.984434 117.500998) (xy 112.189972 117.415862) (xy 112.374951 117.292263)
(xy 112.532263 117.134951) (xy 112.655862 116.949972) (xy 112.740998 116.744434) (xy 112.7844 116.526236) (xy 112.7844 116.303764)
(xy 113.0656 116.303764) (xy 113.0656 116.526236) (xy 113.109002 116.744434) (xy 113.194138 116.949972) (xy 113.317737 117.134951)
(xy 113.475049 117.292263) (xy 113.660028 117.415862) (xy 113.865566 117.500998) (xy 114.083764 117.5444) (xy 114.306236 117.5444)
(xy 114.524434 117.500998) (xy 114.729972 117.415862) (xy 114.914951 117.292263) (xy 115.072263 117.134951) (xy 115.195862 116.949972)
(xy 115.280998 116.744434) (xy 115.3244 116.526236) (xy 115.3244 116.303764) (xy 115.6056 116.303764) (xy 115.6056 116.526236)
(xy 115.649002 116.744434) (xy 115.734138 116.949972) (xy 115.857737 117.134951) (xy 116.015049 117.292263) (xy 116.200028 117.415862)
(xy 116.405566 117.500998) (xy 116.623764 117.5444) (xy 116.846236 117.5444) (xy 117.064434 117.500998) (xy 117.269972 117.415862)
(xy 117.454951 117.292263) (xy 117.612263 117.134951) (xy 117.735862 116.949972) (xy 117.820998 116.744434) (xy 117.8644 116.526236)
(xy 117.8644 116.303764) (xy 118.1456 116.303764) (xy 118.1456 116.526236) (xy 118.189002 116.744434) (xy 118.274138 116.949972)
(xy 118.397737 117.134951) (xy 118.555049 117.292263) (xy 118.740028 117.415862) (xy 118.945566 117.500998) (xy 119.163764 117.5444)
(xy 119.386236 117.5444) (xy 119.604434 117.500998) (xy 119.809972 117.415862) (xy 119.994951 117.292263) (xy 120.152263 117.134951)
(xy 120.275862 116.949972) (xy 120.360998 116.744434) (xy 120.4044 116.526236) (xy 120.4044 116.303764) (xy 120.6856 116.303764)
(xy 120.6856 116.526236) (xy 120.729002 116.744434) (xy 120.814138 116.949972) (xy 120.937737 117.134951) (xy 121.095049 117.292263)
(xy 121.280028 117.415862) (xy 121.485566 117.500998) (xy 121.703764 117.5444) (xy 121.926236 117.5444) (xy 122.144434 117.500998)
(xy 122.349972 117.415862) (xy 122.534951 117.292263) (xy 122.692263 117.134951) (xy 122.815862 116.949972) (xy 122.900998 116.744434)
(xy 122.941264 116.542002) (xy 123.034185 116.542002) (xy 122.913519 116.771891) (xy 123.010843 117.046252) (xy 123.159822 117.296355)
(xy 123.354731 117.512588) (xy 123.58808 117.686641) (xy 123.850901 117.811825) (xy 123.99811 117.856476) (xy 124.228 117.735155)
(xy 124.228 116.542) (xy 124.482 116.542) (xy 124.482 117.735155) (xy 124.71189 117.856476) (xy 124.859099 117.811825)
(xy 125.12192 117.686641) (xy 125.355269 117.512588) (xy 125.550178 117.296355) (xy 125.699157 117.046252) (xy 125.796481 116.771891)
(xy 125.675814 116.542) (xy 124.482 116.542) (xy 124.228 116.542) (xy 124.208 116.542) (xy 124.208 116.288)
(xy 124.228 116.288) (xy 124.228 116.268) (xy 124.482 116.268) (xy 124.482 116.288) (xy 125.675814 116.288)
(xy 125.709528 116.223768) (xy 137.111388 116.223768) (xy 137.111399 116.256097) (xy 137.111388 116.288426) (xy 137.114576 116.304483)
(xy 137.14047 116.56646) (xy 137.140477 116.582722) (xy 137.145137 116.6061) (xy 137.153155 116.646336) (xy 137.159384 116.66136)
(xy 137.235023 116.910337) (xy 137.238155 116.926128) (xy 137.244426 116.94129) (xy 137.244471 116.941438) (xy 137.250579 116.956168)
(xy 137.256743 116.97107) (xy 137.256816 116.971208) (xy 137.263101 116.986362) (xy 137.272049 116.999742) (xy 137.394594 117.229296)
(xy 137.400811 117.244325) (xy 137.411999 117.261085) (xy 137.436821 117.298276) (xy 137.448319 117.309786) (xy 137.615251 117.513385)
(xy 137.624373 117.527023) (xy 137.647402 117.55003) (xy 137.670042 117.572691) (xy 137.683676 117.58181) (xy 137.887286 117.748754)
(xy 137.898789 117.760245) (xy 137.918605 117.77347) (xy 137.952737 117.796254) (xy 137.967773 117.802474) (xy 138.197328 117.925018)
(xy 138.210702 117.933962) (xy 138.225848 117.940243) (xy 138.225996 117.940322) (xy 138.241645 117.946794) (xy 138.255626 117.952592)
(xy 138.255769 117.952635) (xy 138.270938 117.958909) (xy 138.286733 117.962042) (xy 138.535704 118.03768) (xy 138.55073 118.04391)
(xy 138.58014 118.04977) (xy 138.614341 118.056588) (xy 138.630611 118.056595) (xy 138.892585 118.082488) (xy 138.90864 118.085676)
(xy 138.940969 118.085665) (xy 138.973298 118.085676) (xy 138.989353 118.082488) (xy 139.251329 118.056593) (xy 139.267595 118.056586)
(xy 139.300578 118.050011) (xy 139.331207 118.043907) (xy 139.34623 118.037678) (xy 139.595206 117.962038) (xy 139.610996 117.958906)
(xy 139.626159 117.952635) (xy 139.626309 117.952589) (xy 139.640961 117.946512) (xy 139.655938 117.940318) (xy 139.656079 117.940243)
(xy 139.671233 117.933958) (xy 139.68461 117.925012) (xy 139.914165 117.802466) (xy 139.929194 117.796249) (xy 139.961418 117.774739)
(xy 139.983143 117.760239) (xy 139.994645 117.748749) (xy 140.198255 117.581805) (xy 140.211888 117.572687) (xy 140.234349 117.550205)
(xy 140.257557 117.527018) (xy 140.26668 117.513378) (xy 140.433614 117.309778) (xy 140.445107 117.298273) (xy 140.462532 117.272165)
(xy 140.481117 117.244323) (xy 140.487336 117.229289) (xy 140.609878 116.99974) (xy 140.618826 116.98636) (xy 140.625111 116.971206)
(xy 140.625184 116.971068) (xy 140.631348 116.956166) (xy 140.637456 116.941436) (xy 140.637501 116.941288) (xy 140.643772 116.926126)
(xy 140.646904 116.910336) (xy 140.722545 116.661353) (xy 140.728772 116.646334) (xy 140.733779 116.621205) (xy 140.74145 116.582722)
(xy 140.741457 116.566454) (xy 140.76735 116.304482) (xy 140.770538 116.288426) (xy 140.770527 116.256097) (xy 140.770538 116.223767)
(xy 140.76735 116.207712) (xy 140.741456 115.945738) (xy 140.741449 115.929472) (xy 140.732872 115.886441) (xy 140.728771 115.865859)
(xy 140.722543 115.850839) (xy 140.646903 115.601859) (xy 140.643771 115.586069) (xy 140.6375 115.570907) (xy 140.637455 115.570759)
(xy 140.631418 115.556201) (xy 140.625183 115.541127) (xy 140.625108 115.540986) (xy 140.618824 115.525834) (xy 140.609877 115.512456)
(xy 140.487337 115.282909) (xy 140.481117 115.267873) (xy 140.458347 115.233762) (xy 140.445106 115.213922) (xy 140.433615 115.202419)
(xy 140.266679 114.998816) (xy 140.257556 114.985176) (xy 140.234349 114.96199) (xy 140.211888 114.939508) (xy 140.198254 114.930389)
(xy 139.994647 114.763449) (xy 139.983143 114.751957) (xy 139.95428 114.732693) (xy 139.929191 114.715946) (xy 139.914166 114.70973)
(xy 139.684613 114.587187) (xy 139.671233 114.578238) (xy 139.656075 114.571952) (xy 139.655939 114.571879) (xy 139.641484 114.5659)
(xy 139.626309 114.559607) (xy 139.626154 114.55956) (xy 139.610997 114.553291) (xy 139.595212 114.55016) (xy 139.34623 114.474518)
(xy 139.331207 114.468289) (xy 139.300578 114.462185) (xy 139.267595 114.45561) (xy 139.251329 114.455603) (xy 139.005596 114.431313)
(xy 139.005542 114.431297) (xy 138.9893 114.429697) (xy 138.973298 114.42652) (xy 138.94469 114.42653) (xy 138.937248 114.42653)
(xy 138.90864 114.42652) (xy 138.892638 114.429697) (xy 138.876394 114.431297) (xy 138.87634 114.431313) (xy 138.630611 114.455601)
(xy 138.614341 114.455608) (xy 138.58014 114.462426) (xy 138.55073 114.468286) (xy 138.535704 114.474516) (xy 138.286733 114.550154)
(xy 138.270937 114.553287) (xy 138.255768 114.559561) (xy 138.255626 114.559604) (xy 138.241429 114.565492) (xy 138.225995 114.571875)
(xy 138.225852 114.571951) (xy 138.210702 114.578234) (xy 138.197325 114.58718) (xy 137.967773 114.709722) (xy 137.952738 114.715942)
(xy 137.912418 114.742856) (xy 137.89879 114.751952) (xy 137.887291 114.763439) (xy 137.683681 114.930382) (xy 137.670043 114.939504)
(xy 137.647219 114.962349) (xy 137.624374 114.985173) (xy 137.615253 114.99881) (xy 137.448312 115.202418) (xy 137.436823 115.213919)
(xy 137.427716 115.227564) (xy 137.400812 115.26787) (xy 137.394594 115.2829) (xy 137.27205 115.512452) (xy 137.263103 115.525831)
(xy 137.25682 115.540981) (xy 137.256744 115.541124) (xy 137.250361 115.556558) (xy 137.244473 115.570755) (xy 137.24443 115.570897)
(xy 137.238156 115.586066) (xy 137.235022 115.601863) (xy 137.159386 115.850829) (xy 137.153155 115.865858) (xy 137.146055 115.901487)
(xy 137.140477 115.929471) (xy 137.14047 115.945737) (xy 137.114576 116.207711) (xy 137.111388 116.223768) (xy 125.709528 116.223768)
(xy 125.796481 116.058109) (xy 125.699157 115.783748) (xy 125.550178 115.533645) (xy 125.355269 115.317412) (xy 125.12192 115.143359)
(xy 124.859099 115.018175) (xy 124.71189 114.973524) (xy 124.482002 115.094844) (xy 124.482002 115.001264) (xy 124.684434 114.960998)
(xy 124.889972 114.875862) (xy 125.074951 114.752263) (xy 125.232263 114.594951) (xy 125.355862 114.409972) (xy 125.440998 114.204434)
(xy 125.4844 113.986236) (xy 125.4844 113.763764) (xy 125.440998 113.545566) (xy 125.355862 113.340028) (xy 125.232263 113.155049)
(xy 125.074951 112.997737) (xy 124.889972 112.874138) (xy 124.684434 112.789002) (xy 124.466236 112.7456) (xy 124.243764 112.7456)
(xy 124.025566 112.789002) (xy 123.820028 112.874138) (xy 123.635049 112.997737) (xy 123.477737 113.155049) (xy 123.354138 113.340028)
(xy 123.269002 113.545566) (xy 123.2256 113.763764) (xy 123.2256 113.986236) (xy 123.269002 114.204434) (xy 123.354138 114.409972)
(xy 123.477737 114.594951) (xy 123.635049 114.752263) (xy 123.820028 114.875862) (xy 124.025566 114.960998) (xy 124.227998 115.001264)
(xy 124.227998 115.094844) (xy 123.99811 114.973524) (xy 123.850901 115.018175) (xy 123.58808 115.143359) (xy 123.354731 115.317412)
(xy 123.159822 115.533645) (xy 123.010843 115.783748) (xy 122.913519 116.058109) (xy 123.034185 116.287998) (xy 122.941264 116.287998)
(xy 122.900998 116.085566) (xy 122.815862 115.880028) (xy 122.692263 115.695049) (xy 122.534951 115.537737) (xy 122.349972 115.414138)
(xy 122.144434 115.329002) (xy 121.926236 115.2856) (xy 121.703764 115.2856) (xy 121.485566 115.329002) (xy 121.280028 115.414138)
(xy 121.095049 115.537737) (xy 120.937737 115.695049) (xy 120.814138 115.880028) (xy 120.729002 116.085566) (xy 120.6856 116.303764)
(xy 120.4044 116.303764) (xy 120.360998 116.085566) (xy 120.275862 115.880028) (xy 120.152263 115.695049) (xy 119.994951 115.537737)
(xy 119.809972 115.414138) (xy 119.604434 115.329002) (xy 119.386236 115.2856) (xy 119.163764 115.2856) (xy 118.945566 115.329002)
(xy 118.740028 115.414138) (xy 118.555049 115.537737) (xy 118.397737 115.695049) (xy 118.274138 115.880028) (xy 118.189002 116.085566)
(xy 118.1456 116.303764) (xy 117.8644 116.303764) (xy 117.820998 116.085566) (xy 117.735862 115.880028) (xy 117.612263 115.695049)
(xy 117.454951 115.537737) (xy 117.269972 115.414138) (xy 117.064434 115.329002) (xy 116.846236 115.2856) (xy 116.623764 115.2856)
(xy 116.405566 115.329002) (xy 116.200028 115.414138) (xy 116.015049 115.537737) (xy 115.857737 115.695049) (xy 115.734138 115.880028)
(xy 115.649002 116.085566) (xy 115.6056 116.303764) (xy 115.3244 116.303764) (xy 115.280998 116.085566) (xy 115.195862 115.880028)
(xy 115.072263 115.695049) (xy 114.914951 115.537737) (xy 114.729972 115.414138) (xy 114.524434 115.329002) (xy 114.306236 115.2856)
(xy 114.083764 115.2856) (xy 113.865566 115.329002) (xy 113.660028 115.414138) (xy 113.475049 115.537737) (xy 113.317737 115.695049)
(xy 113.194138 115.880028) (xy 113.109002 116.085566) (xy 113.0656 116.303764) (xy 112.7844 116.303764) (xy 112.740998 116.085566)
(xy 112.655862 115.880028) (xy 112.532263 115.695049) (xy 112.374951 115.537737) (xy 112.189972 115.414138) (xy 111.984434 115.329002)
(xy 111.766236 115.2856) (xy 111.543764 115.2856) (xy 111.325566 115.329002) (xy 111.120028 115.414138) (xy 110.935049 115.537737)
(xy 110.777737 115.695049) (xy 110.654138 115.880028) (xy 110.569002 116.085566) (xy 110.5256 116.303764) (xy 110.2444 116.303764)
(xy 110.200998 116.085566) (xy 110.115862 115.880028) (xy 109.992263 115.695049) (xy 109.834951 115.537737) (xy 109.649972 115.414138)
(xy 109.444434 115.329002) (xy 109.226236 115.2856) (xy 109.003764 115.2856) (xy 108.785566 115.329002) (xy 108.580028 115.414138)
(xy 108.395049 115.537737) (xy 108.237737 115.695049) (xy 108.114138 115.880028) (xy 108.029002 116.085566) (xy 107.9856 116.303764)
(xy 107.7044 116.303764) (xy 107.660998 116.085566) (xy 107.575862 115.880028) (xy 107.452263 115.695049) (xy 107.294951 115.537737)
(xy 107.109972 115.414138) (xy 106.904434 115.329002) (xy 106.686236 115.2856) (xy 106.463764 115.2856) (xy 106.245566 115.329002)
(xy 106.040028 115.414138) (xy 105.855049 115.537737) (xy 105.697737 115.695049) (xy 105.574138 115.880028) (xy 105.489002 116.085566)
(xy 105.4456 116.303764) (xy 103.267458 116.303764) (xy 103.270504 116.288426) (xy 103.270493 116.256097) (xy 103.270504 116.223768)
(xy 103.267316 116.207712) (xy 103.241422 115.945737) (xy 103.241415 115.92947) (xy 103.235363 115.89911) (xy 103.228737 115.865858)
(xy 103.222507 115.850832) (xy 103.146869 115.601863) (xy 103.143736 115.586067) (xy 103.137462 115.570898) (xy 103.137419 115.570756)
(xy 103.131531 115.556559) (xy 103.125148 115.541125) (xy 103.125072 115.540982) (xy 103.118789 115.525832) (xy 103.109843 115.512456)
(xy 102.9873 115.282904) (xy 102.981081 115.26787) (xy 102.960383 115.236862) (xy 102.945071 115.21392) (xy 102.933578 115.202415)
(xy 102.766642 114.998813) (xy 102.75752 114.985174) (xy 102.734675 114.96235) (xy 102.711852 114.939506) (xy 102.698214 114.930384)
(xy 102.494612 114.763447) (xy 102.483105 114.751953) (xy 102.458444 114.735494) (xy 102.429154 114.715943) (xy 102.414123 114.709725)
(xy 102.184573 114.587183) (xy 102.171193 114.578235) (xy 102.156038 114.57195) (xy 102.155899 114.571876) (xy 102.140842 114.565648)
(xy 102.126269 114.559605) (xy 102.126123 114.559561) (xy 102.110957 114.553288) (xy 102.095164 114.550155) (xy 101.846196 114.474518)
(xy 101.831167 114.468287) (xy 101.795538 114.461187) (xy 101.767554 114.455609) (xy 101.751288 114.455602) (xy 101.505556 114.431313)
(xy 101.505502 114.431297) (xy 101.48926 114.429697) (xy 101.473257 114.42652) (xy 101.444649 114.42653) (xy 101.437207 114.42653)
(xy 101.408599 114.42652) (xy 101.392596 114.429697) (xy 101.376354 114.431297) (xy 101.3763 114.431313) (xy 101.130568 114.455602)
(xy 101.114301 114.455609) (xy 101.083941 114.461661) (xy 101.050689 114.468287) (xy 101.035663 114.474517) (xy 100.786694 114.550155)
(xy 100.770898 114.553288) (xy 100.755729 114.559562) (xy 100.755587 114.559605) (xy 100.74139 114.565493) (xy 100.725956 114.571876)
(xy 100.725813 114.571952) (xy 100.710663 114.578235) (xy 100.697287 114.587181) (xy 100.467739 114.709722) (xy 100.4527 114.715943)
(xy 100.415464 114.740798) (xy 100.398751 114.751953) (xy 100.38725 114.763442) (xy 100.183642 114.930384) (xy 100.170004 114.939506)
(xy 100.147181 114.962351) (xy 100.124336 114.985174) (xy 100.115215 114.998811) (xy 99.948283 115.20241) (xy 99.936785 115.21392)
(xy 99.917316 115.243091) (xy 99.900775 115.267871) (xy 99.894557 115.282901) (xy 99.772015 115.512452) (xy 99.763067 115.525832)
(xy 99.756782 115.540987) (xy 99.756708 115.541126) (xy 99.75048 115.556183) (xy 99.744437 115.570756) (xy 99.744393 115.570902)
(xy 99.73812 115.586068) (xy 99.734987 115.601861) (xy 99.65935 115.850829) (xy 99.653119 115.865858) (xy 99.646019 115.901487)
(xy 99.640441 115.929471) (xy 99.640434 115.945737) (xy 99.61454 116.207711) (xy 99.611352 116.223768) (xy 99.035766 116.223768)
(xy 99.034666 116.216523) (xy 99.020109 115.92642) (xy 99.020109 113.025) (xy 105.444249 113.025) (xy 105.444249 114.725)
(xy 105.449644 114.779772) (xy 105.46562 114.832439) (xy 105.491564 114.880977) (xy 105.526479 114.923521) (xy 105.569023 114.958436)
(xy 105.617561 114.98438) (xy 105.670228 115.000356) (xy 105.725 115.005751) (xy 107.425 115.005751) (xy 107.479772 115.000356)
(xy 107.532439 114.98438) (xy 107.580977 114.958436) (xy 107.623521 114.923521) (xy 107.658436 114.880977) (xy 107.68438 114.832439)
(xy 107.700356 114.779772) (xy 107.705751 114.725) (xy 107.705751 113.763764) (xy 107.9856 113.763764) (xy 107.9856 113.986236)
(xy 108.029002 114.204434) (xy 108.114138 114.409972) (xy 108.237737 114.594951) (xy 108.395049 114.752263) (xy 108.580028 114.875862)
(xy 108.785566 114.960998) (xy 109.003764 115.0044) (xy 109.226236 115.0044) (xy 109.444434 114.960998) (xy 109.649972 114.875862)
(xy 109.834951 114.752263) (xy 109.992263 114.594951) (xy 110.115862 114.409972) (xy 110.200998 114.204434) (xy 110.2444 113.986236)
(xy 110.2444 113.763764) (xy 110.5256 113.763764) (xy 110.5256 113.986236) (xy 110.569002 114.204434) (xy 110.654138 114.409972)
(xy 110.777737 114.594951) (xy 110.935049 114.752263) (xy 111.120028 114.875862) (xy 111.325566 114.960998) (xy 111.543764 115.0044)
(xy 111.766236 115.0044) (xy 111.984434 114.960998) (xy 112.189972 114.875862) (xy 112.374951 114.752263) (xy 112.532263 114.594951)
(xy 112.655862 114.409972) (xy 112.740998 114.204434) (xy 112.7844 113.986236) (xy 112.7844 113.763764) (xy 113.0656 113.763764)
(xy 113.0656 113.986236) (xy 113.109002 114.204434) (xy 113.194138 114.409972) (xy 113.317737 114.594951) (xy 113.475049 114.752263)
(xy 113.660028 114.875862) (xy 113.865566 114.960998) (xy 114.083764 115.0044) (xy 114.306236 115.0044) (xy 114.524434 114.960998)
(xy 114.729972 114.875862) (xy 114.914951 114.752263) (xy 115.072263 114.594951) (xy 115.195862 114.409972) (xy 115.280998 114.204434)
(xy 115.3244 113.986236) (xy 115.3244 113.763764) (xy 115.6056 113.763764) (xy 115.6056 113.986236) (xy 115.649002 114.204434)
(xy 115.734138 114.409972) (xy 115.857737 114.594951) (xy 116.015049 114.752263) (xy 116.200028 114.875862) (xy 116.405566 114.960998)
(xy 116.623764 115.0044) (xy 116.846236 115.0044) (xy 117.064434 114.960998) (xy 117.269972 114.875862) (xy 117.454951 114.752263)
(xy 117.612263 114.594951) (xy 117.735862 114.409972) (xy 117.820998 114.204434) (xy 117.8644 113.986236) (xy 117.8644 113.763764)
(xy 118.1456 113.763764) (xy 118.1456 113.986236) (xy 118.189002 114.204434) (xy 118.274138 114.409972) (xy 118.397737 114.594951)
(xy 118.555049 114.752263) (xy 118.740028 114.875862) (xy 118.945566 114.960998) (xy 119.163764 115.0044) (xy 119.386236 115.0044)
(xy 119.604434 114.960998) (xy 119.809972 114.875862) (xy 119.994951 114.752263) (xy 120.152263 114.594951) (xy 120.275862 114.409972)
(xy 120.360998 114.204434) (xy 120.4044 113.986236) (xy 120.4044 113.763764) (xy 120.6856 113.763764) (xy 120.6856 113.986236)
(xy 120.729002 114.204434) (xy 120.814138 114.409972) (xy 120.937737 114.594951) (xy 121.095049 114.752263) (xy 121.280028 114.875862)
(xy 121.485566 114.960998) (xy 121.703764 115.0044) (xy 121.926236 115.0044) (xy 122.144434 114.960998) (xy 122.349972 114.875862)
(xy 122.534951 114.752263) (xy 122.692263 114.594951) (xy 122.815862 114.409972) (xy 122.900998 114.204434) (xy 122.9444 113.986236)