-
Notifications
You must be signed in to change notification settings - Fork 0
/
ZX Interface 1 ROM Adapter.kicad_sch
1284 lines (1272 loc) · 51.4 KB
/
ZX Interface 1 ROM Adapter.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 20230121) (generator eeschema)
(uuid 8751c651-26dc-4d30-8f2d-d9f24098bdc5)
(paper "A4")
(lib_symbols
(symbol "Connector:Conn_01x08_Socket" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 0 10.16 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x08_Socket" (at 0 -12.7 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_keywords" "connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x08, script generated" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x08_Socket_1_1"
(arc (start 0 -9.652) (mid -0.5058 -10.16) (end 0 -10.668)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(arc (start 0 -7.112) (mid -0.5058 -7.62) (end 0 -8.128)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(arc (start 0 -4.572) (mid -0.5058 -5.08) (end 0 -5.588)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(arc (start 0 -2.032) (mid -0.5058 -2.54) (end 0 -3.048)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 -10.16)
(xy -0.508 -10.16)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 -7.62)
(xy -0.508 -7.62)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 -5.08)
(xy -0.508 -5.08)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 -2.54)
(xy -0.508 -2.54)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0)
(xy -0.508 0)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 2.54)
(xy -0.508 2.54)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 5.08)
(xy -0.508 5.08)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 7.62)
(xy -0.508 7.62)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(arc (start 0 0.508) (mid -0.5058 0) (end 0 -0.508)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(arc (start 0 3.048) (mid -0.5058 2.54) (end 0 2.032)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(arc (start 0 5.588) (mid -0.5058 5.08) (end 0 4.572)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(arc (start 0 8.128) (mid -0.5058 7.62) (end 0 7.112)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(pin passive line (at -5.08 7.62 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 5.08 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -5.08 0) (length 3.81)
(name "Pin_6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -7.62 0) (length 3.81)
(name "Pin_7" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -10.16 0) (length 3.81)
(name "Pin_8" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_01x16" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 0 20.32 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x16" (at 0 -22.86 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x16, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x16_1_1"
(rectangle (start -1.27 -20.193) (end 0 -20.447)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -17.653) (end 0 -17.907)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -15.113) (end 0 -15.367)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -12.573) (end 0 -12.827)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -10.033) (end 0 -10.287)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -7.493) (end 0 -7.747)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 5.207) (end 0 4.953)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 7.747) (end 0 7.493)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 10.287) (end 0 10.033)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 12.827) (end 0 12.573)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 15.367) (end 0 15.113)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 17.907) (end 0 17.653)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 19.05) (end 1.27 -21.59)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin passive line (at -5.08 17.78 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -5.08 0) (length 3.81)
(name "Pin_10" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -7.62 0) (length 3.81)
(name "Pin_11" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -10.16 0) (length 3.81)
(name "Pin_12" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -12.7 0) (length 3.81)
(name "Pin_13" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -15.24 0) (length 3.81)
(name "Pin_14" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -17.78 0) (length 3.81)
(name "Pin_15" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -20.32 0) (length 3.81)
(name "Pin_16" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 15.24 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 12.7 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 10.16 0) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 7.62 0) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 5.08 0) (length 3.81)
(name "Pin_6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_7" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_8" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_9" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "DIL24:DILB24P-224TLF" (in_bom yes) (on_board yes)
(property "Reference" "J" (at 19.05 7.62 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(property "Value" "DILB24P-224TLF" (at 19.05 5.08 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(property "Footprint" "DIPS762W60P254L3048H525Q24N" (at 19.05 -94.92 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn.amphenol-cs.com/media/wysiwyg/files/drawing/10052485.pdf" (at 19.05 -194.92 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Height" "5.25" (at 19.05 -394.92 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Mouser Part Number" "649-DILB24P-224TLF" (at 19.05 -494.92 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Amphenol-FCI/DILB24P-224TLF?qs=cTNRJjk9LRekdjb2T7GbOg%3D%3D" (at 19.05 -594.92 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Manufacturer_Name" "Amphenol Communications Solutions" (at 19.05 -694.92 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Manufacturer_Part_Number" "DILB24P-224TLF" (at 19.05 -794.92 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "ki_description" "DIP Socket, Stamped and Formed" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "DILB24P-224TLF_1_1"
(rectangle (start 5.08 2.54) (end 17.78 -30.48)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin passive line (at 0 0 0) (length 5.08)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -22.86 0) (length 5.08)
(name "10" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -25.4 0) (length 5.08)
(name "11" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -27.94 0) (length 5.08)
(name "12" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 22.86 -27.94 180) (length 5.08)
(name "13" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 22.86 -25.4 180) (length 5.08)
(name "14" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 22.86 -22.86 180) (length 5.08)
(name "15" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 22.86 -20.32 180) (length 5.08)
(name "16" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 22.86 -17.78 180) (length 5.08)
(name "17" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 22.86 -15.24 180) (length 5.08)
(name "18" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 22.86 -12.7 180) (length 5.08)
(name "19" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 0) (length 5.08)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 22.86 -10.16 180) (length 5.08)
(name "20" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 22.86 -7.62 180) (length 5.08)
(name "21" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 22.86 -5.08 180) (length 5.08)
(name "22" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 22.86 -2.54 180) (length 5.08)
(name "23" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 22.86 0 180) (length 5.08)
(name "24" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -5.08 0) (length 5.08)
(name "3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -7.62 0) (length 5.08)
(name "4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -10.16 0) (length 5.08)
(name "5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -12.7 0) (length 5.08)
(name "6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -15.24 0) (length 5.08)
(name "7" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -17.78 0) (length 5.08)
(name "8" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -20.32 0) (length 5.08)
(name "9" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
)
(wire (pts (xy 175.26 129.54) (xy 153.416 129.54))
(stroke (width 0) (type default))
(uuid 0329be1b-0013-47c9-84ca-1817b9213ba3)
)
(wire (pts (xy 165.862 139.7) (xy 165.862 88.138))
(stroke (width 0) (type default))
(uuid 041f317e-0171-4c8f-bc13-3adca6cc7101)
)
(wire (pts (xy 201.676 62.738) (xy 198.12 62.738))
(stroke (width 0) (type default))
(uuid 066a8226-a2c6-4977-801e-6202b088676a)
)
(wire (pts (xy 124.968 55.118) (xy 179.578 55.118))
(stroke (width 0) (type default))
(uuid 08ccbf54-a0f8-46b2-97b6-66a74dd989e6)
)
(wire (pts (xy 201.93 70.358) (xy 224.79 70.358))
(stroke (width 0) (type default))
(uuid 0a0f592c-9d15-4be8-9421-781a2b3b34ba)
)
(wire (pts (xy 179.578 37.338) (xy 191.77 37.338))
(stroke (width 0) (type default))
(uuid 0aab4fb5-9ad7-4e3f-8495-79af2697cef7)
)
(wire (pts (xy 175.26 109.22) (xy 128.27 109.22))
(stroke (width 0) (type default))
(uuid 0e5b7830-fbbc-43db-bced-3dc6421e2df7)
)
(wire (pts (xy 201.93 70.358) (xy 201.93 77.978))
(stroke (width 0) (type default))
(uuid 0f86b479-7009-4c55-bc10-6623356b494a)
)
(wire (pts (xy 200.406 142.24) (xy 198.12 142.24))
(stroke (width 0) (type default))
(uuid 16fd25d8-2993-47cf-9d11-6bf2ec542a87)
)
(wire (pts (xy 228.6 67.818) (xy 228.6 119.38))
(stroke (width 0) (type default))
(uuid 183a56b0-40f2-4b4f-94bb-4a15a3f2776a)
)
(wire (pts (xy 238.506 60.198) (xy 238.506 111.76))
(stroke (width 0) (type default))
(uuid 1b5aba87-11b1-42df-b789-63008ffbd585)
)
(wire (pts (xy 241.808 109.22) (xy 198.12 109.22))
(stroke (width 0) (type default))
(uuid 1ee2609b-e428-418d-bd86-be22b546cf85)
)
(wire (pts (xy 150.622 127) (xy 150.622 75.438))
(stroke (width 0) (type default))
(uuid 206fa2ad-0231-4133-bc67-2a7a065b114f)
)
(wire (pts (xy 212.09 132.08) (xy 198.12 132.08))
(stroke (width 0) (type default))
(uuid 21cc6904-dbcc-4d63-b195-d58a84149e24)
)
(wire (pts (xy 198.12 88.138) (xy 203.454 88.138))
(stroke (width 0) (type default))
(uuid 255cd5e3-c4a0-4369-832f-45eaee9854d9)
)
(wire (pts (xy 153.416 129.54) (xy 153.416 77.978))
(stroke (width 0) (type default))
(uuid 25a48007-3827-4af9-993b-8ca6a92aaa7d)
)
(wire (pts (xy 204.978 37.084) (xy 204.978 62.738))
(stroke (width 0) (type default))
(uuid 262a258a-63ba-4adb-8c2e-e9607cdd7e51)
)
(wire (pts (xy 169.672 90.678) (xy 169.672 142.24))
(stroke (width 0) (type default))
(uuid 2710045a-4897-49bf-b887-9d6f4041a231)
)
(wire (pts (xy 169.672 90.678) (xy 175.26 90.678))
(stroke (width 0) (type default))
(uuid 2791c849-2f47-4ca7-ae3a-2581baf6b74f)
)
(wire (pts (xy 218.186 75.438) (xy 218.186 127))
(stroke (width 0) (type default))
(uuid 2a2108d2-022e-448c-a863-7ecc78d57b4b)
)
(wire (pts (xy 199.39 70.358) (xy 198.12 70.358))
(stroke (width 0) (type default))
(uuid 2bc6dbe3-86aa-4faf-a858-21e5be2a7e77)
)
(wire (pts (xy 232.156 65.278) (xy 232.156 116.84))
(stroke (width 0) (type default))
(uuid 2d45894e-c626-4c47-8a11-980857035b65)
)
(wire (pts (xy 175.26 104.14) (xy 121.92 104.14))
(stroke (width 0) (type default))
(uuid 2dc8eed2-ca6a-494e-b3f8-6b9347cb7b59)
)
(wire (pts (xy 128.27 57.658) (xy 182.118 57.658))
(stroke (width 0) (type default))
(uuid 2f23965c-11d4-482d-8801-70b75c158d58)
)
(wire (pts (xy 175.26 114.3) (xy 134.62 114.3))
(stroke (width 0) (type default))
(uuid 30222f23-024a-4325-8486-c9be072a02a3)
)
(wire (pts (xy 144.526 121.92) (xy 144.526 70.358))
(stroke (width 0) (type default))
(uuid 30849b60-d175-420c-86ab-95eec7e64286)
)
(wire (pts (xy 209.296 83.058) (xy 209.296 134.62))
(stroke (width 0) (type default))
(uuid 38915735-fed9-4181-b104-a697edcc2c11)
)
(wire (pts (xy 203.708 39.116) (xy 203.708 77.978))
(stroke (width 0) (type default))
(uuid 3b3d9414-2407-4f82-90ac-75459d3d5593)
)
(wire (pts (xy 198.12 85.598) (xy 206.248 85.598))
(stroke (width 0) (type default))
(uuid 3c0eb18a-a54a-4e9f-ad95-49d26066d481)
)
(wire (pts (xy 134.62 114.3) (xy 134.62 62.738))
(stroke (width 0) (type default))
(uuid 3dab7f6d-9a82-4361-9853-e384f18d2c8b)
)
(wire (pts (xy 144.526 70.358) (xy 175.26 70.358))
(stroke (width 0) (type default))
(uuid 3ed869c6-9f1d-4dcc-983e-6a8ba2bd4fa4)
)
(wire (pts (xy 206.248 137.16) (xy 198.12 137.16))
(stroke (width 0) (type default))
(uuid 412887a9-c58b-4cb1-8de8-72052b3de46c)
)
(wire (pts (xy 196.85 34.798) (xy 207.01 34.798))
(stroke (width 0) (type default))
(uuid 413dd030-379a-47c7-a097-1df55185bce6)
)
(wire (pts (xy 184.15 32.512) (xy 184.15 43.688))
(stroke (width 0) (type default))
(uuid 41aa1b01-2bff-417b-9670-6ee9819d16a7)
)
(wire (pts (xy 175.26 127) (xy 150.622 127))
(stroke (width 0) (type default))
(uuid 41b15d49-9527-4c38-b613-2b8a93c1cdf0)
)
(wire (pts (xy 198.12 80.518) (xy 212.09 80.518))
(stroke (width 0) (type default))
(uuid 420f6e16-effa-44e1-9e51-592616449894)
)
(wire (pts (xy 203.454 139.7) (xy 198.12 139.7))
(stroke (width 0) (type default))
(uuid 4212f008-c5c0-4cfa-b382-5e1c8d2cc14d)
)
(wire (pts (xy 156.464 132.08) (xy 156.464 80.518))
(stroke (width 0) (type default))
(uuid 44cb0767-0bab-467f-92e0-06f69ae27341)
)
(wire (pts (xy 141.478 67.818) (xy 175.26 67.818))
(stroke (width 0) (type default))
(uuid 44ce052a-de2c-4c2a-b575-f43ffeddb087)
)
(wire (pts (xy 182.118 39.37) (xy 194.31 39.37))
(stroke (width 0) (type default))
(uuid 451a5462-0b49-4e2c-be77-6bba45f5f4aa)
)
(wire (pts (xy 232.156 116.84) (xy 198.12 116.84))
(stroke (width 0) (type default))
(uuid 485025c9-6564-4fd3-9849-d18b235534ec)
)
(wire (pts (xy 203.454 88.138) (xy 203.454 139.7))
(stroke (width 0) (type default))
(uuid 4d393443-0b23-4068-abe3-36843c552b4c)
)
(wire (pts (xy 201.676 52.578) (xy 201.676 62.738))
(stroke (width 0) (type default))
(uuid 4db5d0f8-9275-4e22-9d88-ae87267d5ab7)
)
(wire (pts (xy 208.534 32.512) (xy 208.534 55.118))
(stroke (width 0) (type default))
(uuid 4ff5c333-fc01-4de6-a7ad-f9df3a75c406)
)
(wire (pts (xy 194.31 39.37) (xy 194.31 43.688))
(stroke (width 0) (type default))
(uuid 502155e7-ad7f-4892-a67b-2f14991dfe19)
)
(wire (pts (xy 221.488 124.46) (xy 198.12 124.46))
(stroke (width 0) (type default))
(uuid 514b7492-834d-4cc8-9c08-8e74bae68a87)
)
(wire (pts (xy 214.63 77.978) (xy 214.63 129.54))
(stroke (width 0) (type default))
(uuid 52dbafbf-b774-4e78-85b2-f671b9b7c807)
)
(wire (pts (xy 199.39 70.358) (xy 199.39 59.182))
(stroke (width 0) (type default))
(uuid 57fc336c-9463-46bd-8bba-8dc86dd0401d)
)
(wire (pts (xy 199.39 37.084) (xy 199.39 43.688))
(stroke (width 0) (type default))
(uuid 59966bf2-f7b2-441d-b00f-6c4a72ed7841)
)
(wire (pts (xy 204.978 62.738) (xy 235.458 62.738))
(stroke (width 0) (type default))
(uuid 5c574aa5-9d37-428b-aabb-4c1a0be91371)
)
(wire (pts (xy 121.92 52.578) (xy 176.784 52.578))
(stroke (width 0) (type default))
(uuid 5c7e445e-3c6e-4c71-ab7f-553555c5c824)
)
(wire (pts (xy 176.784 52.578) (xy 176.784 34.798))
(stroke (width 0) (type default))
(uuid 5cac2c36-d99c-4fe3-b0d6-e4a9d9835487)
)
(wire (pts (xy 137.922 116.84) (xy 137.922 65.278))
(stroke (width 0) (type default))
(uuid 5dec5432-a118-443b-b387-ecc2e2aa685a)
)
(wire (pts (xy 245.11 55.118) (xy 245.11 106.68))
(stroke (width 0) (type default))
(uuid 5f1f80f3-1c16-452b-b13e-bb79c08a42aa)
)
(wire (pts (xy 175.26 139.7) (xy 165.862 139.7))
(stroke (width 0) (type default))
(uuid 6272a6bc-09ec-4a80-a3db-ec35fc015156)
)
(wire (pts (xy 162.814 85.598) (xy 175.26 85.598))
(stroke (width 0) (type default))
(uuid 65614a54-24f5-4e9c-a1dd-390bf43efeda)
)
(wire (pts (xy 248.412 104.14) (xy 198.12 104.14))
(stroke (width 0) (type default))
(uuid 71af0884-4937-4a3c-993a-d7cda58829e9)
)
(wire (pts (xy 165.862 88.138) (xy 175.26 88.138))
(stroke (width 0) (type default))
(uuid 74d0c131-d574-42b9-919a-0106e108fa01)
)
(wire (pts (xy 245.11 106.68) (xy 198.12 106.68))
(stroke (width 0) (type default))
(uuid 74eb6ee2-26f2-470f-8140-dbb91029b66b)
)
(wire (pts (xy 175.26 134.62) (xy 159.512 134.62))
(stroke (width 0) (type default))
(uuid 78309c9e-3c80-4785-bd4e-9ac98f9ddbe7)
)
(wire (pts (xy 210.82 29.972) (xy 189.23 29.972))
(stroke (width 0) (type default))
(uuid 7947237e-fc9f-4a9a-8ba5-a24056254da3)
)
(wire (pts (xy 153.416 77.978) (xy 175.26 77.978))
(stroke (width 0) (type default))
(uuid 7c8cb76a-59c7-45a4-8a37-5de48b8acbb8)
)
(wire (pts (xy 189.23 29.972) (xy 189.23 43.688))
(stroke (width 0) (type default))
(uuid 7d6fbcd2-329d-4481-a4ad-3a298ede9aa9)
)
(wire (pts (xy 124.968 106.68) (xy 124.968 55.118))
(stroke (width 0) (type default))
(uuid 87b3af4a-bbd0-4f14-a410-08f1c11f3f8d)
)
(wire (pts (xy 179.578 37.338) (xy 179.578 55.118))
(stroke (width 0) (type default))
(uuid 8977ee29-ed1d-41d2-81ed-c49831f69916)
)
(wire (pts (xy 176.784 34.798) (xy 186.69 34.798))
(stroke (width 0) (type default))
(uuid 8c1b781c-9768-4512-bb6e-6b64127a5a34)
)
(wire (pts (xy 175.26 121.92) (xy 144.526 121.92))
(stroke (width 0) (type default))
(uuid 8d1835d0-5675-4b02-abf7-b989c6201d1b)
)
(wire (pts (xy 200.406 90.678) (xy 200.406 142.24))
(stroke (width 0) (type default))
(uuid 8e147d1d-7f06-478b-9f08-d82a02b73194)
)
(wire (pts (xy 147.574 72.898) (xy 175.26 72.898))
(stroke (width 0) (type default))
(uuid 8e3cc360-797b-4f85-8f01-8718d426f925)
)
(wire (pts (xy 207.01 34.798) (xy 207.01 60.198))
(stroke (width 0) (type default))
(uuid 8efd883c-5ab9-4b4a-bebd-c102a74bf9e7)
)
(wire (pts (xy 224.79 70.358) (xy 224.79 121.92))
(stroke (width 0) (type default))
(uuid 917239f8-0380-4c89-bba2-fb6aa7367909)
)
(wire (pts (xy 175.26 116.84) (xy 137.922 116.84))
(stroke (width 0) (type default))
(uuid 922f6cbc-4112-4755-a8a5-5bb70ed3e960)
)
(wire (pts (xy 228.6 119.38) (xy 198.12 119.38))
(stroke (width 0) (type default))
(uuid 92e77d35-790c-4e73-b2b1-24c67f16a32f)
)
(wire (pts (xy 206.248 85.598) (xy 206.248 137.16))
(stroke (width 0) (type default))
(uuid 936fb593-8bcf-4aa7-adf7-3bd0b7057fbc)
)
(wire (pts (xy 221.488 72.898) (xy 221.488 124.46))
(stroke (width 0) (type default))
(uuid 93b1afd8-86f0-4e78-a867-58f927c7a9a2)
)
(wire (pts (xy 201.93 39.116) (xy 201.93 43.688))
(stroke (width 0) (type default))
(uuid 942baa97-48a5-4f98-8da4-1bf84f0181f0)
)
(wire (pts (xy 201.676 52.578) (xy 248.412 52.578))
(stroke (width 0) (type default))
(uuid 94e73d29-d1da-4c0e-8d7a-229f85646deb)
)
(wire (pts (xy 210.82 57.658) (xy 210.82 29.972))
(stroke (width 0) (type default))
(uuid 975c9883-5f60-4ab4-9a95-c5d2a4bf4b30)
)
(wire (pts (xy 182.118 39.37) (xy 182.118 57.658))
(stroke (width 0) (type default))
(uuid 984389bb-838c-43ed-a210-e5ee911a7686)
)
(wire (pts (xy 198.12 72.898) (xy 221.488 72.898))
(stroke (width 0) (type default))
(uuid 994e4571-17f9-4dcc-a534-b2e0bec87c24)
)
(wire (pts (xy 198.12 77.978) (xy 201.93 77.978))
(stroke (width 0) (type default))
(uuid 9c346754-19c2-4bfd-8296-793f574e1ef5)
)
(wire (pts (xy 241.808 57.658) (xy 241.808 109.22))
(stroke (width 0) (type default))
(uuid a55d1e74-3319-470b-b250-ebc611467c75)
)
(wire (pts (xy 175.26 137.16) (xy 162.814 137.16))
(stroke (width 0) (type default))
(uuid a5719c71-d634-4fb1-9532-06360499648c)
)
(wire (pts (xy 186.69 34.798) (xy 186.69 43.688))
(stroke (width 0) (type default))
(uuid a7b8e573-3878-4a7c-903a-f677efb16d7f)
)
(wire (pts (xy 184.15 32.512) (xy 208.534 32.512))
(stroke (width 0) (type default))
(uuid a7d4138b-a513-44a4-842c-9830fcadce2e)
)
(wire (pts (xy 131.318 111.76) (xy 131.318 60.198))
(stroke (width 0) (type default))
(uuid a98f6014-4892-402a-950f-0f9440a2c93c)
)
(wire (pts (xy 214.63 129.54) (xy 198.12 129.54))
(stroke (width 0) (type default))
(uuid ad9ffbfb-20e5-4d0b-aa57-6f1b92c05e95)
)
(wire (pts (xy 198.12 65.278) (xy 232.156 65.278))
(stroke (width 0) (type default))
(uuid af0f3c58-346c-4a99-8944-ac4e7d22656b)
)
(wire (pts (xy 248.412 52.578) (xy 248.412 104.14))
(stroke (width 0) (type default))
(uuid af8f7d3b-eb3c-435e-8b5d-a670130c50db)
)
(wire (pts (xy 198.12 67.818) (xy 228.6 67.818))
(stroke (width 0) (type default))
(uuid b6ccee1e-8aac-4844-a6a3-a206d764e210)
)
(wire (pts (xy 150.622 75.438) (xy 175.26 75.438))
(stroke (width 0) (type default))
(uuid b6f17b66-d795-4088-a2c5-cfefcfa0eca2)
)
(wire (pts (xy 207.01 60.198) (xy 238.506 60.198))
(stroke (width 0) (type default))
(uuid b74500b2-85a8-4e83-a9f9-87e8dbdbe3aa)
)
(wire (pts (xy 198.12 83.058) (xy 209.296 83.058))
(stroke (width 0) (type default))
(uuid b8140c9e-2881-4a32-a0c5-6dfa7805906f)
)
(wire (pts (xy 162.814 137.16) (xy 162.814 85.598))
(stroke (width 0) (type default))
(uuid b9b0a361-c3bb-45bf-949c-5d7ee7c4f787)
)
(wire (pts (xy 159.512 134.62) (xy 159.512 83.058))
(stroke (width 0) (type default))
(uuid ba2b30c6-9b3f-4064-8e31-b14b78360f89)
)
(wire (pts (xy 177.038 59.182) (xy 199.39 59.182))
(stroke (width 0) (type default))
(uuid bb5237ec-8e2a-43fc-9f30-2e270cb382be)
)
(wire (pts (xy 209.296 134.62) (xy 198.12 134.62))
(stroke (width 0) (type default))
(uuid bdd33ec0-9f70-4183-90c3-9df61189a8c2)
)
(wire (pts (xy 175.26 124.46) (xy 147.574 124.46))
(stroke (width 0) (type default))
(uuid bddbb533-52c1-41c5-82f0-ec9b498ff578)
)
(wire (pts (xy 175.26 111.76) (xy 131.318 111.76))
(stroke (width 0) (type default))
(uuid bea06c4f-a2f0-4880-ad2b-102ebc01d833)
)
(wire (pts (xy 218.186 127) (xy 198.12 127))
(stroke (width 0) (type default))
(uuid bfe9a646-ca9e-40d9-abf4-b79e272ff869)
)
(wire (pts (xy 159.512 83.058) (xy 175.26 83.058))
(stroke (width 0) (type default))
(uuid c4e3d299-698a-454b-b5ed-7b4761ff46b6)
)
(wire (pts (xy 128.27 109.22) (xy 128.27 57.658))
(stroke (width 0) (type default))
(uuid ca0f1078-4058-49b8-b7a0-203ce1a607a0)
)
(wire (pts (xy 235.458 62.738) (xy 235.458 114.3))
(stroke (width 0) (type default))
(uuid cbd41603-ef84-4c39-8c5a-953b498a2e39)
)
(wire (pts (xy 238.506 111.76) (xy 198.12 111.76))
(stroke (width 0) (type default))
(uuid cd7278dc-fc33-4b57-a80c-d80ad07857fe)
)
(wire (pts (xy 175.26 119.38) (xy 141.478 119.38))
(stroke (width 0) (type default))
(uuid cf012eb0-d435-4a5c-9c44-2501c11b7bc1)
)
(wire (pts (xy 198.12 75.438) (xy 218.186 75.438))
(stroke (width 0) (type default))
(uuid d0dce6b4-7ac9-4c08-9fd5-83eedcb58959)
)
(wire (pts (xy 198.12 90.678) (xy 200.406 90.678))
(stroke (width 0) (type default))
(uuid d112da2a-613b-4a16-9df0-37550cf7a3a7)
)
(wire (pts (xy 212.09 80.518) (xy 212.09 132.08))
(stroke (width 0) (type default))
(uuid d2608c29-960e-4a2b-a301-6502552b4307)
)
(wire (pts (xy 156.464 80.518) (xy 175.26 80.518))
(stroke (width 0) (type default))
(uuid d44a5241-e8da-4127-85a5-27209a2ba100)
)
(wire (pts (xy 235.458 114.3) (xy 198.12 114.3))
(stroke (width 0) (type default))
(uuid d52ca067-c5f8-4a11-b7ad-ccf24f1cc54a)
)
(wire (pts (xy 208.534 55.118) (xy 245.11 55.118))
(stroke (width 0) (type default))
(uuid d793e752-d532-4638-9eb5-3bd03a6b504f)
)
(wire (pts (xy 210.82 57.658) (xy 241.808 57.658))
(stroke (width 0) (type default))
(uuid db4e951d-2af3-4f73-bd7d-980e90e96ade)
)
(wire (pts (xy 177.038 59.182) (xy 177.038 60.198))
(stroke (width 0) (type default))
(uuid deecfa85-2e47-418c-85e5-de0235cc1c64)
)
(wire (pts (xy 131.318 60.198) (xy 177.038 60.198))
(stroke (width 0) (type default))
(uuid df750252-a967-4b67-8905-116df81c6be5)
)
(wire (pts (xy 224.79 121.92) (xy 198.12 121.92))
(stroke (width 0) (type default))
(uuid e08b3812-60d2-44c9-9383-8f632a60114d)
)
(wire (pts (xy 196.85 34.798) (xy 196.85 43.688))
(stroke (width 0) (type default))
(uuid e12e71e0-9141-4b15-8d17-55c53af9e322)
)
(wire (pts (xy 203.708 77.978) (xy 214.63 77.978))
(stroke (width 0) (type default))
(uuid e330f462-fc4c-41ef-9532-897a8669c6b4)
)
(wire (pts (xy 191.77 37.338) (xy 191.77 43.688))
(stroke (width 0) (type default))
(uuid e71e788b-ab80-48e7-a8e3-53365f97ca02)
)
(wire (pts (xy 175.26 106.68) (xy 124.968 106.68))
(stroke (width 0) (type default))
(uuid e7d8ef96-885f-4b99-bac4-fbeffd75e9dc)
)
(wire (pts (xy 199.39 37.084) (xy 204.978 37.084))
(stroke (width 0) (type default))
(uuid e90ffe83-bedb-4327-9f62-32b8b95f757e)
)
(wire (pts (xy 137.922 65.278) (xy 175.26 65.278))
(stroke (width 0) (type default))
(uuid eb08006b-8ead-4b99-a8cd-4c838a202e68)
)
(wire (pts (xy 134.62 62.738) (xy 175.26 62.738))
(stroke (width 0) (type default))
(uuid ec222d4b-4442-4053-8000-f0db9d74a3a4)
)
(wire (pts (xy 147.574 124.46) (xy 147.574 72.898))
(stroke (width 0) (type default))
(uuid ed88e7c5-05fd-4ce4-b67b-71566e8d0008)
)
(wire (pts (xy 121.92 104.14) (xy 121.92 52.578))
(stroke (width 0) (type default))
(uuid eed52a67-e28f-4407-8718-fcf55f1dbb76)
)
(wire (pts (xy 169.672 142.24) (xy 175.26 142.24))
(stroke (width 0) (type default))
(uuid fa9fbdf9-4694-4a11-8c5d-4f290feb5499)
)
(wire (pts (xy 201.93 39.116) (xy 203.708 39.116))
(stroke (width 0) (type default))
(uuid fb218f0b-7788-43ff-b429-b2f9ac967956)
)
(wire (pts (xy 175.26 132.08) (xy 156.464 132.08))
(stroke (width 0) (type default))
(uuid fd04c0f3-6c4a-417c-b673-de2dd614b5c7)
)
(wire (pts (xy 141.478 119.38) (xy 141.478 67.818))
(stroke (width 0) (type default))
(uuid fd986fe8-d191-44f1-9933-5ebc614289a5)
)
(text "J1 Pin 1 ~WE pulled high in operation by 10K resistor R1 on ROM board.\nJ1 pin 2 A18 pulled high in operation by 10K resistor R8 on ROM board.\nJ1 pin 3 A17 pulled high in operation by 10K resistor R7 on ROM board.\nJ1 pin 4 A16 internally selects ROM to use, pulled high or low in operation by switch and 10K resistor R2 on ROM board.\nJ1 pin 5 A15 pulled high in operation by 10K resistor R5 on ROM board.\nJ1 pin 6 A14 pulled high in operation by 10K resistor R4 on ROM board.\nJ1 pin 7 A13 pulled high in operation by 10K resistor R3 on ROM board. \n If connected with a wire link to address A13 on IF1 PCB allows use of 16K ROM (Ian Collier).\nJ1 pin 8 CE pulled low in operation by 10K resistor R6 on ROM board.\n\nTo program,\n1 - Connect wire links between Adapter PCB J1 Pins 1-8 to ROM PCB J1 Pins 1-8 \n2 - Erase EEPROM.\n3 - To only use default internally switched A16 load 1st ROM into programmer at offset 0x00000\n4 - To only use default internally switched A16 load 2nd ROM into programmer at offset 0x10000\n without clearing previous ROM.\n5 - Load other ROM's into programmer as required based on position of\n external switches\n A18 switches 0x40000 (SST39SF040 Only)\n A17 switches 0x20000 (SST39SF020 and 040 Only)\n A16 switches 0x10000 if internal switch set to position B.\n A15 switches 0x08000\n A14 switches 0x04000\n A13 (DO NOT USE. Decoded by IF1 ULA)\n A mix of switches is allowed and will increase the number of ROM positions\n available, up to a maximum of 32.\n6 - program.\n\n"
(at 16.002 76.2 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 988e7bf9-5002-4041-8d58-1b243a28feda)
)
(label "A8" (at 217.932 65.278 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 024fcfc6-9e77-487e-98fb-9eb40f63ee87)
)
(label "A6" (at 169.418 65.278 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 0306c79e-a6a0-4b61-ba70-c8dcecbc6b23)
)
(label "A0" (at 169.672 80.518 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 03af4195-8456-4f0d-a565-b0bf86281ee7)
)
(label "A12" (at 169.672 60.198 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 0c544f73-5c22-41c5-9c08-82d3a124990e)
)
(label "A4" (at 169.672 70.358 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 0f45bfae-6bdb-45bb-b5f3-8e57eaf571db)
)
(label "A15" (at 169.672 57.658 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 18f09cdd-2c0a-4194-b0da-371c4aec8e5a)
)