-
Notifications
You must be signed in to change notification settings - Fork 4
/
unisplit_orthosteno.kicad_sch
2535 lines (2464 loc) · 99.1 KB
/
unisplit_orthosteno.kicad_sch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_sch (version 20211123) (generator eeschema)
(uuid 70ebe477-1e0a-4b89-81cc-39182c34e443)
(paper "A4")
(lib_symbols
(symbol "MX_Alps_Hybrid:MX-NoLED" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "MX" (id 0) (at -0.635 3.81 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "MX-NoLED" (id 1) (at -0.635 1.27 0)
(effects (font (size 0.508 0.508)))
)
(property "Footprint" "" (id 2) (at -15.875 -0.635 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (id 3) (at -15.875 -0.635 0)
(effects (font (size 1.524 1.524)) hide)
)
(symbol "MX-NoLED_0_0"
(rectangle (start -2.54 2.54) (end 1.27 -1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 -1.27)
(xy -1.27 1.27)
)
(stroke (width 0.127) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 1.27)
(xy 0 1.27)
(xy -1.27 1.905)
)
(stroke (width 0.127) (type default) (color 0 0 0 0))
(fill (type none))
)
(text "COL" (at 3.175 0 0)
(effects (font (size 0.762 0.762)))
)
(text "ROW" (at 0 -1.905 900)
(effects (font (size 0.762 0.762)) (justify right))
)
)
(symbol "MX-NoLED_1_1"
(pin passive line (at 3.81 1.27 180) (length 2.54)
(name "COL" (effects (font (size 0 0))))
(number "1" (effects (font (size 0 0))))
)
(pin passive line (at -1.27 -3.81 90) (length 2.54)
(name "ROW" (effects (font (size 0 0))))
(number "2" (effects (font (size 0 0))))
)
)
)
(symbol "Switch:SW_SPST" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "SW" (id 0) (at 0 3.175 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SW_SPST" (id 1) (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "switch lever" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Single Pole Single Throw (SPST) switch" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SW_SPST_0_0"
(circle (center -2.032 0) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.254)
(xy 1.524 1.778)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 2.032 0) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "SW_SPST_1_1"
(pin passive line (at -5.08 0 0) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 2.54)
(name "B" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "keebio:ProMicro" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "ProMicro" (id 1) (at 0 -19.05 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "" (id 2) (at 26.67 -63.5 90)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (id 3) (at 26.67 -63.5 90)
(effects (font (size 1.524 1.524)) hide)
)
(symbol "ProMicro_0_1"
(rectangle (start -12.7 -16.51) (end 12.7 16.51)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "ProMicro_1_1"
(pin input line (at -17.78 13.97 0) (length 5.08)
(name "TX0/PD3" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 -8.89 0) (length 5.08)
(name "7/PE6" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 -11.43 0) (length 5.08)
(name "8/PB4" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 -13.97 0) (length 5.08)
(name "9/PB5" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 -13.97 180) (length 5.08)
(name "10/PB6" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 -11.43 180) (length 5.08)
(name "16/PB2" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 -8.89 180) (length 5.08)
(name "14/PB3" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 -6.35 180) (length 5.08)
(name "15/PB1" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 -3.81 180) (length 5.08)
(name "A0/PF7" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 -1.27 180) (length 5.08)
(name "A1/PF6" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 1.27 180) (length 5.08)
(name "A2/PF5" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 11.43 0) (length 5.08)
(name "RX1/PD2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 3.81 180) (length 5.08)
(name "A3/PF4" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 6.35 180) (length 5.08)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 8.89 180) (length 5.08)
(name "RST" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 11.43 180) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 13.97 180) (length 5.08)
(name "RAW" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 8.89 0) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 6.35 0) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 3.81 0) (length 5.08)
(name "2/PD1" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 1.27 0) (length 5.08)
(name "3/PD0" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 -1.27 0) (length 5.08)
(name "4/PD4" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 -3.81 0) (length 5.08)
(name "5/PC6" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 -6.35 0) (length 5.08)
(name "6/PD7" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "unisplit_orthosteno-rescue:+5V-power" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V-power" (id 1) (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+5V-power_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+5V-power_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+5V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "unisplit_orthosteno-rescue:D_Small-Device" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at -1.27 2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "D_Small-Device" (id 1) (at -3.81 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "D_Small-Device_0_1"
(polyline
(pts
(xy -0.762 -1.016)
(xy -0.762 1.016)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.762 0)
(xy 0.762 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.016)
(xy -0.762 0)
(xy 0.762 1.016)
(xy 0.762 -1.016)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "D_Small-Device_1_1"
(pin passive line (at -2.54 0 0) (length 1.778)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 0 180) (length 1.778)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "unisplit_orthosteno-rescue:GND-power" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND-power" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND-power_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GND-power_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 201.93 62.23) (diameter 1.016) (color 0 0 0 0)
(uuid 0eaa98f0-9565-4637-ace3-42a5231b07f7)
)
(junction (at 62.23 62.23) (diameter 1.016) (color 0 0 0 0)
(uuid 10109f84-4940-47f8-8640-91f185ac9bc1)
)
(junction (at 176.53 74.93) (diameter 1.016) (color 0 0 0 0)
(uuid 127679a9-3981-4934-815e-896a4e3ff56e)
)
(junction (at 201.93 74.93) (diameter 1.016) (color 0 0 0 0)
(uuid 181abe7a-f941-42b6-bd46-aaa3131f90fb)
)
(junction (at 107.95 64.77) (diameter 1.016) (color 0 0 0 0)
(uuid 1e1b062d-fad0-427c-a622-c5b8a80b5268)
)
(junction (at 120.65 52.07) (diameter 1.016) (color 0 0 0 0)
(uuid 2e642b3e-a476-4c54-9a52-dcea955640cd)
)
(junction (at 113.03 74.93) (diameter 1.016) (color 0 0 0 0)
(uuid 30f15357-ce1d-48b9-93dc-7d9b1b2aa048)
)
(junction (at 100.33 93.98) (diameter 1.016) (color 0 0 0 0)
(uuid 3b838d52-596d-4e4d-a6ac-e4c8e7621137)
)
(junction (at 95.25 52.07) (diameter 1.016) (color 0 0 0 0)
(uuid 44d8279a-9cd1-4db6-856f-0363131605fc)
)
(junction (at 74.93 74.93) (diameter 1.016) (color 0 0 0 0)
(uuid 47baf4b1-0938-497d-88f9-671136aa8be7)
)
(junction (at 184.15 52.07) (diameter 1.016) (color 0 0 0 0)
(uuid 48ab88d7-7084-4d02-b109-3ad55a30bb11)
)
(junction (at 87.63 74.93) (diameter 1.016) (color 0 0 0 0)
(uuid 4fb02e58-160a-4a39-9f22-d0c75e82ee72)
)
(junction (at 120.65 64.77) (diameter 1.016) (color 0 0 0 0)
(uuid 5038e144-5119-49db-b6cf-f7c345f1cf03)
)
(junction (at 151.13 74.93) (diameter 1.016) (color 0 0 0 0)
(uuid 54365317-1355-4216-bb75-829375abc4ec)
)
(junction (at 62.23 74.93) (diameter 1.016) (color 0 0 0 0)
(uuid 55e740a3-0735-4744-896e-2bf5437093b9)
)
(junction (at 163.83 74.93) (diameter 1.016) (color 0 0 0 0)
(uuid 5fc27c35-3e1c-4f96-817c-93b5570858a6)
)
(junction (at 100.33 62.23) (diameter 1.016) (color 0 0 0 0)
(uuid 66116376-6967-4178-9f23-a26cdeafc400)
)
(junction (at 171.45 52.07) (diameter 1.016) (color 0 0 0 0)
(uuid 6a45789b-3855-401f-8139-3c734f7f52f9)
)
(junction (at 163.83 93.98) (diameter 1.016) (color 0 0 0 0)
(uuid 6c9b793c-e74d-4754-a2c0-901e73b26f1c)
)
(junction (at 196.85 52.07) (diameter 1.016) (color 0 0 0 0)
(uuid 704d6d51-bb34-4cbf-83d8-841e208048d8)
)
(junction (at 176.53 62.23) (diameter 1.016) (color 0 0 0 0)
(uuid 716e31c5-485f-40b5-88e3-a75900da9811)
)
(junction (at 100.33 74.93) (diameter 1.016) (color 0 0 0 0)
(uuid 749dfe75-c0d6-4872-9330-29c5bbcb8ff8)
)
(junction (at 82.55 52.07) (diameter 1.016) (color 0 0 0 0)
(uuid 77ed3941-d133-4aef-a9af-5a39322d14eb)
)
(junction (at 189.23 74.93) (diameter 1.016) (color 0 0 0 0)
(uuid 8174b4de-74b1-48db-ab8e-c8432251095b)
)
(junction (at 113.03 93.98) (diameter 1.016) (color 0 0 0 0)
(uuid 87371631-aa02-498a-998a-09bdb74784c1)
)
(junction (at 151.13 93.98) (diameter 1.016) (color 0 0 0 0)
(uuid a3e4f0ae-9f86-49e9-b386-ed8b42e012fb)
)
(junction (at 158.75 52.07) (diameter 1.016) (color 0 0 0 0)
(uuid a690fc6c-55d9-47e6-b533-faa4b67e20f3)
)
(junction (at 151.13 62.23) (diameter 1.016) (color 0 0 0 0)
(uuid ac264c30-3e9a-4be2-b97a-9949b68bd497)
)
(junction (at 171.45 64.77) (diameter 1.016) (color 0 0 0 0)
(uuid b1086f75-01ba-4188-8d36-75a9e2828ca9)
)
(junction (at 74.93 62.23) (diameter 1.016) (color 0 0 0 0)
(uuid c022004a-c968-410e-b59e-fbab0e561e9d)
)
(junction (at 158.75 64.77) (diameter 1.016) (color 0 0 0 0)
(uuid c144caa5-b0d4-4cef-840a-d4ad178a2102)
)
(junction (at 222.25 52.07) (diameter 1.016) (color 0 0 0 0)
(uuid c41b3c8b-634e-435a-b582-96b83bbd4032)
)
(junction (at 107.95 52.07) (diameter 1.016) (color 0 0 0 0)
(uuid cbdcaa78-3bbc-413f-91bf-2709119373ce)
)
(junction (at 209.55 52.07) (diameter 1.016) (color 0 0 0 0)
(uuid ce83728b-bebd-48c2-8734-b6a50d837931)
)
(junction (at 113.03 62.23) (diameter 1.016) (color 0 0 0 0)
(uuid d8603679-3e7b-4337-8dbc-1827f5f54d8a)
)
(junction (at 87.63 62.23) (diameter 1.016) (color 0 0 0 0)
(uuid e615f7aa-337e-474d-9615-2ad82b1c44ca)
)
(junction (at 95.25 64.77) (diameter 1.016) (color 0 0 0 0)
(uuid eb667eea-300e-4ca7-8a6f-4b00de80cd45)
)
(junction (at 87.63 93.98) (diameter 1.016) (color 0 0 0 0)
(uuid ef8fe2ac-6a7f-4682-9418-b801a1b10a3b)
)
(junction (at 163.83 62.23) (diameter 1.016) (color 0 0 0 0)
(uuid efeac2a2-7682-4dc7-83ee-f6f1b23da506)
)
(junction (at 69.85 52.07) (diameter 1.016) (color 0 0 0 0)
(uuid f4f99e3d-7269-4f6a-a759-16ad2a258779)
)
(junction (at 184.15 64.77) (diameter 1.016) (color 0 0 0 0)
(uuid f71da641-16e6-4257-80c3-0b9d804fee4f)
)
(junction (at 189.23 62.23) (diameter 1.016) (color 0 0 0 0)
(uuid fd470e95-4861-44fe-b1e4-6d8a7c66e144)
)
(wire (pts (xy 100.33 74.93) (xy 113.03 74.93))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 1a0dab24-7070-4f28-84d4-382223caaf2e)
)
(wire (pts (xy 158.75 52.07) (xy 158.75 38.1))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 1d63a13b-2ed3-4049-9143-e03248637ac0)
)
(wire (pts (xy 74.93 62.23) (xy 62.23 62.23))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 1db4cc04-f245-47df-a1d1-20524c72453e)
)
(wire (pts (xy 107.95 64.77) (xy 107.95 83.82))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 1e279ccc-995a-4719-8c9c-2a689d1fa075)
)
(wire (pts (xy 113.03 93.98) (xy 151.13 93.98))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 203ad707-0ff6-4c8b-abb3-90c439ea763d)
)
(wire (pts (xy 222.25 64.77) (xy 222.25 52.07))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 22a157b7-a5e0-4d69-87c8-0d80faa2a730)
)
(wire (pts (xy 107.95 52.07) (xy 107.95 38.1))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 249a2edc-53ea-4690-b89b-dd078621e8d7)
)
(wire (pts (xy 120.65 64.77) (xy 120.65 52.07))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 28646a57-bdee-413b-8924-c1cb20365851)
)
(wire (pts (xy 151.13 62.23) (xy 113.03 62.23))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 2997a860-81ea-4a06-b7dd-b7e3d141adf6)
)
(wire (pts (xy 69.85 64.77) (xy 69.85 52.07))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 29ae6f65-6dc3-487f-96b6-5c0261867a22)
)
(wire (pts (xy 151.13 88.9) (xy 153.67 88.9))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 2a0f7cf2-b247-44b4-ac12-469d9ee53291)
)
(wire (pts (xy 189.23 57.15) (xy 191.77 57.15))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 2b672fdc-bc95-41a1-a189-94536a4950cc)
)
(wire (pts (xy 214.63 57.15) (xy 217.17 57.15))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 368e4e46-54ad-4f91-9e2c-9d7d0bf3d2e3)
)
(wire (pts (xy 163.83 69.85) (xy 166.37 69.85))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 3881cf6b-d66e-4c8d-b36e-b3e58b4a214b)
)
(wire (pts (xy 176.53 62.23) (xy 163.83 62.23))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 38bfc7a7-c858-482d-8a11-6672cab1fab7)
)
(wire (pts (xy 176.53 93.98) (xy 163.83 93.98))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 448ec3b1-8166-4bf0-a3ee-5a0700c7a730)
)
(wire (pts (xy 120.65 52.07) (xy 120.65 38.1))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 46739307-e9f7-41c8-8cd1-cd5588eaad9d)
)
(wire (pts (xy 100.33 62.23) (xy 87.63 62.23))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 46af92f0-5b9e-4081-952f-17d1dfcd50f2)
)
(wire (pts (xy 100.33 57.15) (xy 102.87 57.15))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 4cd3f73c-d721-4340-b983-85746b655e11)
)
(wire (pts (xy 151.13 74.93) (xy 163.83 74.93))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 4db1a65a-cf0b-4141-94f5-52e457f93a27)
)
(wire (pts (xy 87.63 88.9) (xy 90.17 88.9))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 53639a33-f172-4215-8b19-34ee133a83ac)
)
(wire (pts (xy 151.13 57.15) (xy 153.67 57.15))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 56071b74-f460-4e3c-baaa-ef9d6d88a0b1)
)
(wire (pts (xy 214.63 69.85) (xy 217.17 69.85))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 57240fd6-a68c-479b-a98f-0d97f49ea3ca)
)
(wire (pts (xy 87.63 74.93) (xy 100.33 74.93))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 5933aea8-a1a2-4957-9f9d-f3dc1e972d17)
)
(wire (pts (xy 201.93 74.93) (xy 214.63 74.93))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 59f72e6f-768b-45f6-ab1f-87719df93130)
)
(wire (pts (xy 176.53 88.9) (xy 179.07 88.9))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 5ae29666-1dab-460d-8613-924e0ee1476f)
)
(wire (pts (xy 201.93 62.23) (xy 189.23 62.23))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 5c4685cc-e0b9-4ebb-9269-9ed39e399a34)
)
(wire (pts (xy 113.03 69.85) (xy 115.57 69.85))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 5e6627be-398b-4b2b-ab16-fa23c4828553)
)
(wire (pts (xy 222.25 52.07) (xy 222.25 38.1))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 60b8e8ba-d26e-4337-9ad0-4a762e61f5ce)
)
(wire (pts (xy 87.63 62.23) (xy 74.93 62.23))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 624fb5b0-ae25-4018-9ef0-429aa4e18ee3)
)
(wire (pts (xy 87.63 57.15) (xy 90.17 57.15))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 64578a1f-9ab4-4aa4-a30c-a11abfa38cc6)
)
(wire (pts (xy 100.33 69.85) (xy 102.87 69.85))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 67c57a7a-915c-4bf2-b756-d51304371d05)
)
(wire (pts (xy 184.15 52.07) (xy 184.15 38.1))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6b157ae0-f887-4abb-b34f-69b8ce0d1246)
)
(wire (pts (xy 189.23 69.85) (xy 191.77 69.85))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6be8ce36-ec78-49a3-8dbd-1af7ba6776cb)
)
(wire (pts (xy 113.03 62.23) (xy 100.33 62.23))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 72055c99-5873-4729-8977-5af7167bca0c)
)
(wire (pts (xy 163.83 115.57) (xy 157.48 115.57))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 73d6d674-489e-4710-b46d-a573c86e7a3d)
)
(wire (pts (xy 62.23 69.85) (xy 64.77 69.85))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 75e7b2e3-c702-40a5-b3ec-aa6b5b1e13c8)
)
(wire (pts (xy 157.48 113.03) (xy 167.64 113.03))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 75f0789b-030c-4a48-a1b8-84d19a7bffb4)
)
(wire (pts (xy 100.33 93.98) (xy 113.03 93.98))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 779a5527-d0e1-4b4b-b32f-0fb1a7d8c229)
)
(wire (pts (xy 95.25 64.77) (xy 95.25 83.82))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7b6c8a92-07d8-4f91-8908-039a9a68f781)
)
(wire (pts (xy 74.93 69.85) (xy 77.47 69.85))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7efdbde7-7bc3-4ab0-a696-0b695878f52f)
)
(wire (pts (xy 50.8 93.98) (xy 87.63 93.98))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7f5553f1-7469-49b3-a730-a65e1588e18b)
)
(wire (pts (xy 82.55 64.77) (xy 82.55 52.07))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 80e63e59-6295-42e4-87f6-bf870b0ae9c6)
)
(wire (pts (xy 163.83 74.93) (xy 176.53 74.93))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 87b4e2b0-b3b2-4f18-bdc6-3981b9f9128e)
)
(wire (pts (xy 100.33 88.9) (xy 102.87 88.9))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8a8b65a7-9229-46d9-ab4c-09a4f593e4e7)
)
(wire (pts (xy 62.23 62.23) (xy 50.8 62.23))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8acbcfae-953a-4b67-bdc7-96198ed729dd)
)
(wire (pts (xy 87.63 69.85) (xy 90.17 69.85))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8b28d604-1e63-4ba5-b901-6922d65a3ed8)
)
(wire (pts (xy 50.8 74.93) (xy 62.23 74.93))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8d0cd476-34a7-4e27-a1b6-f61fe3fcc6ac)
)
(wire (pts (xy 171.45 83.82) (xy 171.45 64.77))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 908c87bf-a4d5-4c0e-826b-18e856259458)
)
(wire (pts (xy 82.55 52.07) (xy 82.55 38.1))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 92c41b19-ca3c-4f46-858f-a8b99e0c42c6)
)
(wire (pts (xy 209.55 64.77) (xy 209.55 52.07))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 952998e5-d6a2-4f30-9cd9-21d9e4e82f03)
)
(wire (pts (xy 196.85 52.07) (xy 196.85 38.1))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 95691b4b-13ba-436a-85fa-55f269963a88)
)
(wire (pts (xy 95.25 124.46) (xy 99.06 124.46))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 96aeb29c-21cb-4d32-86b9-ad3fcd5b9551)
)
(wire (pts (xy 100.33 115.57) (xy 121.92 115.57))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 9bc7ef47-f8a0-4cb1-8d20-85827a75b2e5)
)
(wire (pts (xy 74.93 74.93) (xy 87.63 74.93))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 9c44ac01-b23b-4bed-bc3f-ea064c7bbc0c)
)
(wire (pts (xy 62.23 74.93) (xy 74.93 74.93))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 9c845007-1418-4630-8207-83db070bf698)
)
(wire (pts (xy 189.23 74.93) (xy 201.93 74.93))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a1a956f0-2eaf-4fd4-8f5b-48cfba363db0)
)
(wire (pts (xy 171.45 52.07) (xy 171.45 38.1))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a3801fdd-c75c-4471-ae29-b4f982bd8265)
)
(wire (pts (xy 176.53 69.85) (xy 179.07 69.85))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a5a3229e-14ea-4003-a23c-84c74789e798)
)
(wire (pts (xy 107.95 110.49) (xy 121.92 110.49))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a625e134-4324-40b2-b210-9890b1601a8b)
)
(wire (pts (xy 158.75 64.77) (xy 158.75 52.07))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a837fb83-9e1d-464a-a734-445fd347a463)
)
(wire (pts (xy 163.83 62.23) (xy 151.13 62.23))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a8454265-121e-489d-94f5-dbf05acee79d)
)
(wire (pts (xy 69.85 52.07) (xy 69.85 38.1))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ae166048-7203-40b9-9802-85e61d4a6880)
)
(wire (pts (xy 171.45 64.77) (xy 171.45 52.07))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid aed56039-086c-4920-95c9-6fe872e6463f)
)
(wire (pts (xy 95.25 52.07) (xy 95.25 38.1))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid afb714ee-1fb5-494c-971a-7b6cd96ada1c)
)
(wire (pts (xy 163.83 88.9) (xy 166.37 88.9))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid b12e0f9f-d42e-4a8c-bb56-9b60832be74e)
)
(wire (pts (xy 176.53 57.15) (xy 179.07 57.15))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid b74e6cc8-6c29-4414-9e3d-e66f5fe7c882)
)
(wire (pts (xy 163.83 93.98) (xy 151.13 93.98))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid bdfd6c1a-76cb-4eba-8339-9ba189f5f1a7)
)
(wire (pts (xy 196.85 64.77) (xy 196.85 52.07))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid bfcf7653-f524-4c54-b2c8-71ee91c068c1)
)
(wire (pts (xy 201.93 57.15) (xy 204.47 57.15))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid c2652747-a115-4e2d-bed2-46ce73cd6758)
)
(wire (pts (xy 201.93 69.85) (xy 204.47 69.85))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid c90e4a24-5586-4de3-8be0-5a71290e8eed)
)
(wire (pts (xy 209.55 52.07) (xy 209.55 38.1))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid cab9b15c-ce63-4b0d-9e24-11c787be95a5)
)
(wire (pts (xy 214.63 62.23) (xy 201.93 62.23))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid cc860fe3-b95e-4970-a0fa-f76e8bb7b699)
)
(wire (pts (xy 151.13 69.85) (xy 153.67 69.85))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid cdd20d26-a33d-4acd-a058-862a895ae0c6)
)
(wire (pts (xy 158.75 83.82) (xy 158.75 64.77))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ceb408b2-3d4f-4923-9f82-94a871bc821a)
)
(wire (pts (xy 189.23 62.23) (xy 176.53 62.23))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid cfb9702b-fddd-4c88-9735-b2c548ad89ed)
)
(wire (pts (xy 184.15 64.77) (xy 184.15 52.07))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d80f2d84-3990-4a99-8e8b-df77c5213a69)
)
(wire (pts (xy 100.33 93.98) (xy 87.63 93.98))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid da726648-f2c4-4912-ab89-3685e110ce0f)
)
(wire (pts (xy 163.83 57.15) (xy 166.37 57.15))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e2e07cdc-6998-43f1-9436-c4e2dd371f58)
)
(wire (pts (xy 120.65 64.77) (xy 120.65 83.82))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e4021c02-edf0-43b8-a125-228277c3e769)
)
(wire (pts (xy 113.03 88.9) (xy 115.57 88.9))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e5575e20-633f-40ed-aebd-a2172c5e7787)
)
(wire (pts (xy 113.03 57.15) (xy 115.57 57.15))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e818472f-a853-4b3f-b8a8-a467b3447346)
)
(wire (pts (xy 74.93 57.15) (xy 77.47 57.15))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ea69bf1b-1155-4588-b2cb-87d26d5f8d09)
)
(wire (pts (xy 95.25 64.77) (xy 95.25 52.07))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ed0b66bb-b1ba-466c-82b7-74262f8b3bf6)
)
(wire (pts (xy 184.15 64.77) (xy 184.15 83.82))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ed8be9ad-d2d8-4f62-aeec-6e4a4022004d)
)
(wire (pts (xy 62.23 57.15) (xy 64.77 57.15))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ee574408-f3cf-48fa-a904-9d60e321525c)
)
(wire (pts (xy 107.95 64.77) (xy 107.95 52.07))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f5957045-390d-49a8-9605-351c1359e96f)
)
(wire (pts (xy 176.53 74.93) (xy 189.23 74.93))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f7dc9ddf-bc9f-4d82-a616-75e387523d62)
)
(wire (pts (xy 113.03 74.93) (xy 151.13 74.93))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ffdecd6c-5dc7-4c4e-92e9-645ca436295e)
)
(global_label "col6" (shape input) (at 171.45 38.1 90)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 038667e5-dd8c-41b7-b610-50adbfceec30)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "col0" (shape input) (at 69.85 38.1 90)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 14bf44e2-6cf5-4be7-a636-d04815733990)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "col2" (shape input) (at 121.92 125.73 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1acf4565-6491-4758-b8d1-3f55d1f65919)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "col9" (shape input) (at 209.55 38.1 90)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 1dffd885-8056-4501-bdd8-d7cb6da4800f)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "col3" (shape input) (at 121.92 128.27 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 30661e44-54f1-4815-b812-0185e4b924a0)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "reset" (shape input) (at 85.09 124.46 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4a68b50f-84a1-460e-8e81-11a37247c2f7)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 77.9598 124.3806 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "row1" (shape input) (at 121.92 133.35 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4c2e351f-44fe-405c-a755-25bb79a29105)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "col5" (shape input) (at 157.48 135.89 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 5c3dced7-0ffb-4344-b0e0-48fe48589953)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "col5" (shape input) (at 158.75 38.1 90)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 610498b3-f0c3-4ad2-95a5-066d48a4f380)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "col4" (shape input) (at 121.92 130.81 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 68211ab7-1205-40d4-8d2e-e16ddfd7d70c)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "col0" (shape input) (at 121.92 120.65 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 77c9f7ad-dd18-4a0b-9890-df1553233121)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "col2" (shape input) (at 95.25 38.1 90)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 79a406d1-1a95-4995-95cf-8a197a9914e3)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "row0" (shape input) (at 121.92 118.11 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 7afc9d75-1f68-4014-ae79-567920e4c8b8)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "col7" (shape input) (at 184.15 38.1 90)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 8a28d4aa-134d-4159-93aa-c24221133ba9)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "col1" (shape input) (at 121.92 123.19 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 9108a173-1b4c-42a0-9634-59a2b5c32567)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "col8" (shape input) (at 157.48 128.27 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9b0b090c-976f-46b8-bf0e-f925760ba9a6)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "reset" (shape input) (at 121.92 113.03 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 9d52bc4e-298a-4f10-84e8-5509b084b668)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 114.7898 112.9506 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "col6" (shape input) (at 157.48 133.35 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9f8ce581-483d-4061-a2f7-dd8c02c61a71)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "col10" (shape input) (at 157.48 123.19 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid af9f55ec-1026-47c6-8336-4aa8df549618)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "col10" (shape input) (at 222.25 38.1 90)
(effects (font (size 1.27 1.27)) (justify left))
(uuid c445ecbd-c586-43a2-ac28-e1e929bf2bb8)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "row0" (shape input) (at 50.8 62.23 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid c47da52a-2b88-42e3-baed-82924f604c57)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "row2" (shape input) (at 50.8 93.98 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid cba8bd7a-f12a-4cc3-aa76-dfd59a6295b0)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)