-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtranslators.kicad_sch
6022 lines (5903 loc) · 327 KB
/
translators.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 3f3828db-7fd6-4701-a627-7c718b294168)
(paper "A3")
(title_block
(title "LPDDR5 Testbed")
(date "2023-12-19")
(rev "1.0.0")
)
(lib_symbols
(symbol "lpddr5-testbed:GND" (power) (pin_numbers hide) (pin_names hide) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 8.89 -2.54 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Value" "GND" (id 1) (at 8.89 -5.08 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Footprint" "" (id 2) (at 8.89 -7.62 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Datasheet" "" (id 3) (at 8.89 -12.7 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Author" "Antmicro" (id 4) (at 8.89 -7.62 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "License" "Apache-2.0" (id 5) (at 8.89 -10.16 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(symbol "GND_1_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))
)
(pin power_in line (at 0 0 270) (length 0)
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "lpddr5-testbed:R_100R_0402" (pin_numbers hide) (pin_names hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 20.32 -5.08 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Value" "R_100R_0402" (id 1) (at 20.32 -12.7 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Footprint" "lpddr5-testbed-footprints:R_0402_1005Metric" (id 2) (at 20.32 -15.24 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Datasheet" "https://www.bourns.com/docs/product-datasheets/cr.pdf" (id 3) (at 20.32 -17.78 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "MPN" "CR0402-FX-1000GLF" (id 4) (at 20.32 -20.32 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Manufacturer" "Bourns" (id 5) (at 20.32 -22.86 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "License" "Apache-2.0" (id 6) (at 20.32 -25.4 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Author" "Antmicro" (id 7) (at 20.32 -27.94 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Val" "100R" (id 8) (at 20.32 -7.62 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Tolerance" "1%" (id 9) (at 20.32 -10.16 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "ki_keywords" "0402, SMT, RESISTOR, PASSIVE" (id 10) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "SMD Chip Resistor, 100 ohm, ± 1%, 62.5 mW, 0402 [1005 Metric], Thick Film, General Purpose" (id 11) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_100R_0402_0_1"
(rectangle (start 0.635 0.889) (end 4.445 -0.889)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_100R_0402_1_1"
(pin passive line (at 0 0 0) (length 0.635)
(name "~" (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 0.635)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "lpddr5-testbed:R_4x100R_0402_array" (pin_names hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 26.67 -2.54 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Value" "R_4x100R_0402_array" (id 1) (at 26.67 -5.08 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Footprint" "lpddr5-testbed-footprints:R_Array_4x0402_Panasonic_EXB28V" (id 2) (at 26.67 -10.16 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Datasheet" "http://industrial.panasonic.com/cdbs/www-data/pdf/AOC0000/AOC0000C14.pdf" (id 3) (at 26.67 -12.7 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "MPN" "EXB-28V101JX" (id 4) (at 26.67 -15.24 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Manufacturer" "Panasonic" (id 5) (at 26.67 -17.78 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Author" "Antmicro" (id 6) (at 26.67 -20.32 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "License" "Apache-2.0" (id 7) (at 26.67 -22.86 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Val" "R_4x100R_0402" (id 8) (at 26.67 -7.62 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "ki_keywords" "0402, SMT, RESISTOR, PASSIVE" (id 9) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Fixed Network Resistor, 100 ohm, Isolated, 4 Resistors, 0804 [2010 Metric], Convex, ± 5%" (id 10) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_4x100R_0402_array_0_1"
(polyline
(pts
(xy 2.54 -7.62)
(xy 3.175 -7.62)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 -5.08)
(xy 3.175 -5.08)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 -2.54)
(xy 3.175 -2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 0)
(xy 3.175 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 6.985 -7.62)
(xy 7.62 -7.62)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 6.985 -5.08)
(xy 7.62 -5.08)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 6.985 -2.54)
(xy 7.62 -2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 6.985 0)
(xy 7.62 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 2.667 1.27) (end 7.493 -8.89)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(rectangle (start 6.985 -6.985) (end 3.175 -8.255)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 6.985 -4.445) (end 3.175 -5.715)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 6.985 -1.905) (end 3.175 -3.175)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 6.985 0.635) (end 3.175 -0.635)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_4x100R_0402_array_1_1"
(pin passive line (at 0 0 0) (length 2.54)
(name "R1.1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 0) (length 2.54)
(name "R2.1" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -5.08 0) (length 2.54)
(name "R3.1" (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 2.54)
(name "R4.1" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 -7.62 180) (length 2.54)
(name "R4.2" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 -5.08 180) (length 2.54)
(name "R3.2" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 -2.54 180) (length 2.54)
(name "R2.2" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 0 180) (length 2.54)
(name "R1.2" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 279.4 132.08) (diameter 0) (color 0 0 0 0)
(uuid 18fbe4ea-e5cf-4bf4-a075-9c1b34491bfc)
)
(junction (at 279.4 146.05) (diameter 0) (color 0 0 0 0)
(uuid 1faf6278-1b39-4257-9d9d-5c46b7609085)
)
(junction (at 279.4 95.25) (diameter 0) (color 0 0 0 0)
(uuid 238aa7e3-c0eb-4ef1-b38a-d542993f8704)
)
(junction (at 279.4 87.63) (diameter 0) (color 0 0 0 0)
(uuid 27a34e03-a23a-49a2-bdcc-fcf7bd4eec8a)
)
(junction (at 279.4 173.99) (diameter 0) (color 0 0 0 0)
(uuid 2dbd9eb7-a821-481a-8c22-91562a8cc674)
)
(junction (at 279.4 129.54) (diameter 0) (color 0 0 0 0)
(uuid 37561b53-8f1e-440a-9f30-7d9a52ccced2)
)
(junction (at 279.4 137.16) (diameter 0) (color 0 0 0 0)
(uuid 37b97373-6c7c-49fc-acd2-39a54bd747cd)
)
(junction (at 279.4 134.62) (diameter 0) (color 0 0 0 0)
(uuid 424de350-b3ec-40af-b1ba-cc9092209805)
)
(junction (at 279.4 59.69) (diameter 0) (color 0 0 0 0)
(uuid 43da9ad6-a0e6-4f08-b710-992a0781a3c3)
)
(junction (at 279.4 101.6) (diameter 0) (color 0 0 0 0)
(uuid 4e12c500-d6d2-41e4-84c2-7a74f073561d)
)
(junction (at 279.4 48.26) (diameter 0) (color 0 0 0 0)
(uuid 6985eb83-536c-46f4-ae9c-a4e4bd9567ea)
)
(junction (at 279.4 118.11) (diameter 0) (color 0 0 0 0)
(uuid 71c8a933-3278-4bd9-a4b7-afebc516631b)
)
(junction (at 279.4 120.65) (diameter 0) (color 0 0 0 0)
(uuid 738fcaa1-f4cc-4baa-bea4-c75e50e53e85)
)
(junction (at 279.4 109.22) (diameter 0) (color 0 0 0 0)
(uuid 7e734c02-4fc2-452f-a778-0a04d4b7e302)
)
(junction (at 279.4 115.57) (diameter 0) (color 0 0 0 0)
(uuid 8ecd2533-9fb7-4d11-bbd7-5926bf770688)
)
(junction (at 279.4 50.8) (diameter 0) (color 0 0 0 0)
(uuid 8f50cb41-dba6-4c14-bb7d-46e4edefe955)
)
(junction (at 279.4 53.34) (diameter 0) (color 0 0 0 0)
(uuid 8f671de4-31a3-4901-8db0-891b3a06be6d)
)
(junction (at 279.4 104.14) (diameter 0) (color 0 0 0 0)
(uuid 95b0688a-24f1-4427-9ace-cdf4d0c5d373)
)
(junction (at 279.4 64.77) (diameter 0) (color 0 0 0 0)
(uuid 98dfaf1c-eddf-43e8-9e07-6e9ac5c58479)
)
(junction (at 279.4 123.19) (diameter 0) (color 0 0 0 0)
(uuid 9a033f00-daf0-4938-bd2a-2bbf61b2c57f)
)
(junction (at 279.4 106.68) (diameter 0) (color 0 0 0 0)
(uuid a68b4d5c-1576-4182-aba4-ae60fb9c2b09)
)
(junction (at 279.4 160.02) (diameter 0) (color 0 0 0 0)
(uuid aea4a0e6-b7f4-41d1-82a7-28c5ba9d08d4)
)
(junction (at 279.4 176.53) (diameter 0) (color 0 0 0 0)
(uuid b1c96ce8-b694-40e5-935f-60eab2c0d813)
)
(junction (at 279.4 81.28) (diameter 0) (color 0 0 0 0)
(uuid b5c4d79f-4584-40ec-98bd-65fb1c278743)
)
(junction (at 279.4 67.31) (diameter 0) (color 0 0 0 0)
(uuid b69a6900-3c76-408e-8262-188880924342)
)
(junction (at 279.4 78.74) (diameter 0) (color 0 0 0 0)
(uuid bebf0e11-f123-4aeb-91da-00a761e94777)
)
(junction (at 279.4 148.59) (diameter 0) (color 0 0 0 0)
(uuid d5724bc4-6065-45ad-86f3-e8686d637043)
)
(junction (at 279.4 92.71) (diameter 0) (color 0 0 0 0)
(uuid d7b33a7f-f6a2-4a8b-9f77-496570124839)
)
(junction (at 279.4 62.23) (diameter 0) (color 0 0 0 0)
(uuid d9ec9e85-d540-4e4f-9d56-e0b3a7be12e7)
)
(junction (at 279.4 162.56) (diameter 0) (color 0 0 0 0)
(uuid e934d71b-074b-41db-ae77-6df6dc185088)
)
(junction (at 279.4 76.2) (diameter 0) (color 0 0 0 0)
(uuid f3cc51ca-a77f-4584-b156-416dfa7e938e)
)
(junction (at 279.4 90.17) (diameter 0) (color 0 0 0 0)
(uuid f9fcc4f5-c3f2-47c4-9bd4-f4da566955c1)
)
(no_connect (at 577.85 162.56) (uuid 56d095ef-69fd-4d8e-88b5-914769010ad1))
(bus_entry (at 224.79 172.72) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 02f5b164-cd05-4e22-82f1-cb32f903f1c5)
)
(bus_entry (at 148.59 238.76) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 04102f2b-e468-4635-8a35-8ec405bfad53)
)
(bus_entry (at 148.59 218.44) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 09efabf7-4a92-4770-97e1-6f46f28eb4e6)
)
(bus_entry (at 224.79 116.84) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0a266a9d-ba36-45da-a99e-9b530d7dc8fe)
)
(bus_entry (at 224.79 195.58) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0a4fb472-e3e0-4604-a7e2-d161dfc17b96)
)
(bus_entry (at 148.59 256.54) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0b635308-c30e-41d7-900c-46f14d05720f)
)
(bus_entry (at 224.79 240.03) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0cd03406-1615-4bc3-a8c1-ea2a163549f2)
)
(bus_entry (at 148.59 199.39) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0cde889b-8b9e-4cda-9abc-a1f9e1fd438c)
)
(bus_entry (at 224.79 135.89) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0d84cd9d-d784-4f09-96de-ed3bf9173367)
)
(bus_entry (at 147.32 74.93) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0f2a5444-29c6-4dda-b0fd-07475ee1d920)
)
(bus_entry (at 147.32 88.9) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 10cb17d3-0133-4bba-bdae-601fb687946d)
)
(bus_entry (at 224.79 231.14) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 166f67f0-45c1-49d0-ae43-d318ea3bb7c4)
)
(bus_entry (at 224.79 91.44) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1aeb53bb-e3c7-4996-b2ac-d50ae512b0f6)
)
(bus_entry (at 224.79 58.42) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1b9480c4-b2e1-44a3-94ab-9eb688dd5466)
)
(bus_entry (at 148.59 261.62) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1cf2a9f1-0fc9-483e-9293-605a54926f9a)
)
(bus_entry (at 147.32 91.44) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 21d8c31c-a13c-4414-b436-413eb0c3dd80)
)
(bus_entry (at 147.32 86.36) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 222c30c3-19dc-4451-b49f-5186c7a86bd5)
)
(bus_entry (at 148.59 224.79) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 230208f0-d5cb-474c-ab2a-83fbd9be3e8c)
)
(bus_entry (at 224.79 144.78) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 242f44a6-875b-4fc3-8699-0a1ff22eb9e3)
)
(bus_entry (at 224.79 66.04) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2802a427-bd7e-4c65-9923-a80053687eea)
)
(bus_entry (at 148.59 241.3) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 29bde9bf-ca0b-4590-9aee-d3935f0d60b8)
)
(bus_entry (at 147.32 121.92) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2b90318a-820f-4de2-ab13-eabf2206e58a)
)
(bus_entry (at 224.79 252.73) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2d9d8e3f-c31c-4ecb-a573-a9427af783e3)
)
(bus_entry (at 224.79 49.53) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2e951dc5-1e0d-4be8-a1f0-35873d665fad)
)
(bus_entry (at 224.79 86.36) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2ee3eebe-1c87-4450-a36d-d1e36770eead)
)
(bus_entry (at 224.79 105.41) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 317d9a3b-472e-4129-b33a-001d0e291bee)
)
(bus_entry (at 148.59 204.47) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3403ecee-c41b-445f-ab0c-e4ae82ce3198)
)
(bus_entry (at 224.79 237.49) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 358e6685-9ab9-4b7c-be2f-ff3cb5a0f53e)
)
(bus_entry (at 224.79 114.3) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 36695131-bdc4-465e-9578-dab21d4f0c9b)
)
(bus_entry (at 224.79 128.27) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 36936286-47cf-41ea-a887-ea5c94d98447)
)
(bus_entry (at 147.32 58.42) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3cacea9a-39a2-42ea-b3e7-a872f93e41cc)
)
(bus_entry (at 224.79 172.72) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3d47aada-dc12-4fec-b576-f67ceb40f833)
)
(bus_entry (at 224.79 91.44) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3e40092c-60a3-40b9-aa7b-643f5729d7fb)
)
(bus_entry (at 147.32 52.07) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f0f9a84-d96e-46ae-a6a3-b1ded1b1f065)
)
(bus_entry (at 224.79 116.84) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f1f716e-67e6-4287-babc-b4fa4bfce620)
)
(bus_entry (at 224.79 86.36) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f81c9d5-daf9-4a30-8d88-4a244ad83b0c)
)
(bus_entry (at 224.79 100.33) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3ffa158d-57f5-4166-89a7-feb50fb6442d)
)
(bus_entry (at 147.32 46.99) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 40b09486-ff41-4b8a-826b-1d9edc7152ac)
)
(bus_entry (at 224.79 242.57) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 41cd231d-6f56-423c-ae3b-7bf778f8d6bb)
)
(bus_entry (at 224.79 121.92) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 456f440b-e088-4a0e-80bd-36d0cd90f439)
)
(bus_entry (at 147.32 44.45) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 476d2616-5256-4a9d-8748-081c7f2e31e3)
)
(bus_entry (at 224.79 260.35) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 48d955e1-a798-44fb-ae61-d9a009a69c65)
)
(bus_entry (at 224.79 147.32) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 497a51d1-9b89-4bef-ba7b-f60b53bde7ef)
)
(bus_entry (at 224.79 105.41) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4b4c1393-08e5-4fce-8bb7-56847213e77f)
)
(bus_entry (at 147.32 144.78) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4fcd41b1-4bf5-4e21-904e-19970e1d5b89)
)
(bus_entry (at 224.79 66.04) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 535537ff-9707-44fd-8265-d915cbaab212)
)
(bus_entry (at 147.32 80.01) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 55eac336-febb-4ed8-b375-4dc8e492f337)
)
(bus_entry (at 224.79 133.35) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 56d73cfb-470b-44b9-8cce-bf50e3fbb577)
)
(bus_entry (at 224.79 161.29) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 56f837e5-9ae6-4102-af6b-dc263fbd51dc)
)
(bus_entry (at 224.79 74.93) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5bdc3283-cfea-49ce-82bb-e228298ad48f)
)
(bus_entry (at 224.79 63.5) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5cca5175-9a2d-4315-bd8f-1e67ace59bef)
)
(bus_entry (at 147.32 107.95) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5cd72bf1-bd85-4d0b-aed5-35f30f4efa8d)
)
(bus_entry (at 148.59 194.31) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 66943c8b-7300-48e5-9533-f56787f3abae)
)
(bus_entry (at 148.59 246.38) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 66bfb243-ea87-4c9b-b7c9-83b47a8cbece)
)
(bus_entry (at 224.79 46.99) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6c4d6dff-4b1b-44d6-9fcb-ba92de3a1b4a)
)
(bus_entry (at 224.79 52.07) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 719ab774-1f26-4391-9ac2-3026f81d949f)
)
(bus_entry (at 148.59 238.76) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7311f8b3-ecea-4e5b-9a61-bfb533f67d43)
)
(bus_entry (at 224.79 60.96) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 73d1fb1b-9662-44c9-8d20-b8b683cd0e42)
)
(bus_entry (at 147.32 158.75) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 780480ca-ac6f-46c5-a797-add6ef3b97af)
)
(bus_entry (at 147.32 105.41) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7c238ace-f0ab-4763-9f98-a2a5afbe6288)
)
(bus_entry (at 224.79 212.09) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7e0e34cd-5429-4b57-a949-ab166a9ecf02)
)
(bus_entry (at 148.59 254) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7e9b52e7-e4bf-4c5e-9d5a-56f301d69196)
)
(bus_entry (at 224.79 60.96) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 80d8672b-0acb-41cc-b7b7-d11ea27cd20b)
)
(bus_entry (at 224.79 93.98) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 81301a27-4207-488b-bc3e-771ef915b902)
)
(bus_entry (at 224.79 245.11) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 820fd29b-ee5a-44d1-8569-51f2633aa38b)
)
(bus_entry (at 148.59 213.36) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 83e519c1-4542-4d58-8b79-f259d1062f48)
)
(bus_entry (at 147.32 93.98) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 86c8fd80-17a0-4574-9e69-41715524aa8d)
)
(bus_entry (at 224.79 214.63) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 86ff1758-4262-418b-8a73-2f63ee99f840)
)
(bus_entry (at 224.79 80.01) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 87aefae0-e879-4305-852d-3db63303d2f8)
)
(bus_entry (at 147.32 135.89) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8817c556-6976-4f9e-9c79-eba1d54bd75e)
)
(bus_entry (at 148.59 201.93) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8920a316-d203-40bb-b894-0bbec47c5112)
)
(bus_entry (at 147.32 77.47) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8b17fa1f-11ea-45b1-acc5-92c471ef32c6)
)
(bus_entry (at 148.59 243.84) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8fd433c1-6be4-4afa-9df1-a25ff296df3f)
)
(bus_entry (at 224.79 190.5) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 90b41c72-7161-4486-acfb-9ca731b8f73f)
)
(bus_entry (at 224.79 133.35) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9239576d-82d7-42de-925b-08a9297d661d)
)
(bus_entry (at 224.79 193.04) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 94e15c8b-4c1e-4171-874e-7c8dcb13b01f)
)
(bus_entry (at 224.79 223.52) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 95075465-93bb-42da-8365-3d4ea30d9668)
)
(bus_entry (at 147.32 116.84) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9539e28b-8afc-4fbd-827c-9fb89cd65d6d)
)
(bus_entry (at 147.32 175.26) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 98e7befd-175a-4d28-bce8-6f2f1e204de5)
)
(bus_entry (at 147.32 100.33) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a1593efe-52a9-4a0a-bae0-e44bf42c15cd)
)
(bus_entry (at 224.79 255.27) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a160a568-84bb-4d3d-97f8-584ba8108404)
)
(bus_entry (at 224.79 107.95) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a8aa6def-86a2-4879-8a60-a922469ccc39)
)
(bus_entry (at 224.79 63.5) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a91061a5-8b0b-4438-9fb1-7f8887b16a44)
)
(bus_entry (at 147.32 130.81) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aac40e81-da98-4141-b8ad-782cd43d5f21)
)
(bus_entry (at 224.79 44.45) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid addf4124-1daa-45a9-aaad-e019b573cfe1)
)
(bus_entry (at 147.32 133.35) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ae959b6a-f8e4-4e0f-9303-80b93bbc6af7)
)
(bus_entry (at 147.32 66.04) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b061b05d-3a4e-41e3-9fd2-0f1bca60a172)
)
(bus_entry (at 224.79 128.27) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b44c64a0-1d88-47c4-9232-0602532c3f83)
)
(bus_entry (at 224.79 100.33) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b6fc7b0e-9832-432d-a016-e92b26e78fe4)
)
(bus_entry (at 224.79 228.6) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b7a256b0-efd9-446d-9a77-c57bb4f94b71)
)
(bus_entry (at 147.32 147.32) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b820ecea-81b8-4141-b78a-a0fae62fd3ec)
)
(bus_entry (at 224.79 77.47) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b8afb85b-364a-4d3e-892d-8703ab3cd036)
)
(bus_entry (at 224.79 80.01) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b989bae4-8400-4d5d-a81e-ddaed644068c)
)
(bus_entry (at 224.79 161.29) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b9f4485f-dc46-41f7-b30e-3d740854ba9a)
)
(bus_entry (at 224.79 88.9) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ba90e0c0-a974-472c-b7bd-59e812d0de32)
)
(bus_entry (at 224.79 135.89) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bc51094f-98a6-4a5d-a341-f3242884b2b6)
)
(bus_entry (at 148.59 196.85) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bea65061-5276-4fe0-9027-5b560849c013)
)
(bus_entry (at 148.59 229.87) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c31b9ce7-92a4-409b-9ec9-974a4f646559)
)
(bus_entry (at 147.32 161.29) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c3c610e0-e56a-43da-9cee-6399d9a270ab)
)
(bus_entry (at 224.79 44.45) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c5d12224-96f0-4ede-96e0-e9e7031d1367)
)
(bus_entry (at 224.79 144.78) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c7f9ceec-2102-467f-9f4e-324edc4f4a81)
)
(bus_entry (at 224.79 93.98) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cadd1d4f-6b98-4302-83ce-aebe247272f0)
)
(bus_entry (at 224.79 158.75) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cb79e949-ed01-4869-98ef-018041d00e03)
)
(bus_entry (at 224.79 147.32) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cced65b9-0eaa-4b95-87a2-b9645a3e2df4)
)
(bus_entry (at 224.79 200.66) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cd03d288-05b3-4737-85d9-e54270ee144d)
)
(bus_entry (at 224.79 46.99) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cd1895f1-52ee-4074-bc81-2cb1b577dd61)
)
(bus_entry (at 147.32 172.72) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cd88d722-efdc-4fa4-9790-284af936edac)
)
(bus_entry (at 147.32 119.38) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cefaeb57-3ffd-4fb1-a958-f5ed0533eae7)
)
(bus_entry (at 148.59 259.08) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cf1c2c6d-c37a-49b4-b32b-fcc799eb26a4)
)
(bus_entry (at 224.79 130.81) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cfea6bdd-c57d-40e1-88ad-392a3883c055)
)
(bus_entry (at 224.79 74.93) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d014852f-5fcd-40fa-9047-ffac0d8ca96a)
)
(bus_entry (at 224.79 114.3) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d1a14115-00b9-471c-93a3-552ffda4fd14)
)
(bus_entry (at 147.32 128.27) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d5769d2a-efc1-466d-847b-cbef0800b14a)
)
(bus_entry (at 224.79 119.38) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d577ecf7-f26f-423c-b1a6-4ba8f45f2343)
)
(bus_entry (at 148.59 224.79) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d681d7dc-10c6-4dc9-8ca0-331a2c85cdb2)
)
(bus_entry (at 224.79 52.07) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid daa19e50-8129-4541-bb80-0b9e8f035532)
)
(bus_entry (at 224.79 203.2) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dcb988ce-ab45-4c86-b176-2aab0326d5b5)
)
(bus_entry (at 148.59 210.82) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e04d5f49-38fd-43de-b887-b5d4e28af0ea)
)
(bus_entry (at 224.79 257.81) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e09024f8-3f36-4ae9-876c-4ba6b51c18db)
)
(bus_entry (at 224.79 226.06) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e20a5c20-449c-4a9a-bc38-ea3e444d1187)
)
(bus_entry (at 147.32 102.87) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e2213e1c-b4e2-4b40-9267-de82288ee382)
)
(bus_entry (at 224.79 217.17) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e2a83f2f-2893-4065-96e8-6035bf13b1e4)
)
(bus_entry (at 147.32 60.96) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e394d863-38a4-47c6-88a2-ea7b50e0e679)
)
(bus_entry (at 147.32 49.53) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e4b891d6-bb0a-4925-ab20-064e467b038a)
)
(bus_entry (at 224.79 130.81) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e77ea697-3746-405f-ae8b-20f07becd2ef)
)
(bus_entry (at 147.32 63.5) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e87a8cd7-f0f3-490a-8a42-4cc398505d8e)
)
(bus_entry (at 224.79 175.26) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid eb0d55df-22ba-4534-a4d5-d889f3a0afb8)
)
(bus_entry (at 148.59 232.41) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ebe46e2a-1bad-42f8-93e9-b964cadd7d17)
)
(bus_entry (at 224.79 49.53) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ec3e9c0a-a5f2-434d-a4ae-231988ade532)
)
(bus_entry (at 148.59 191.77) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid eca813ed-51ae-45d9-954b-e6074bc569d6)
)
(bus_entry (at 224.79 102.87) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ecbecc70-2d24-4103-a69f-5be2f0da0aa8)
)
(bus_entry (at 224.79 119.38) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid edc04d3f-530d-4bbb-927f-e9f19d1ae19a)
)
(bus_entry (at 147.32 114.3) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid eed06376-c163-4c9a-9e1b-609b5f07fb52)
)
(bus_entry (at 224.79 175.26) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ef203f8d-3c74-416b-a668-7b273cfbe44b)
)
(bus_entry (at 224.79 88.9) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f00aa930-d6f4-4596-8060-1bf2e6bb5479)
)
(bus_entry (at 224.79 209.55) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f25d9cbe-8783-4f31-bbc6-d27f9d72207d)
)
(bus_entry (at 224.79 198.12) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f4713bba-7e1a-45ca-a1c7-c1153d1155c6)
)
(bus_entry (at 224.79 77.47) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f528082f-14e9-47d2-9505-31f90cc1d032)
)
(bus_entry (at 148.59 215.9) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f68a03cf-604c-4ba7-b7ae-d23b203989e0)
)
(bus_entry (at 224.79 58.42) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f696e2f8-faf6-49e8-b4f0-382e3aa84bd9)
)
(bus_entry (at 224.79 102.87) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fd15b447-1ab0-456a-887f-1f52886776c2)
)
(bus_entry (at 224.79 158.75) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fdac2c8a-3a0d-49e1-bf83-25a2bb623c8d)
)
(bus_entry (at 148.59 227.33) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fe7b851b-a3d1-40cf-9bea-7b481e93f024)
)
(bus_entry (at 224.79 107.95) (size 1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ff6057ce-b602-44a5-b079-9ad773fe4671)
)
(bus_entry (at 224.79 121.92) (size -1.27 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ffb347ec-1e1d-4269-8c2b-c2b5dbca4bfa)
)
(bus (pts (xy 224.79 212.09) (xy 224.79 214.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0006bfc0-13cb-401c-b705-16102dded171)
)
(wire (pts (xy 189.23 120.65) (xy 223.52 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 04461d3c-2114-4a8d-855c-97d48faeb29e)
)
(wire (pts (xy 270.51 129.54) (xy 279.4 129.54))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 04558c6f-9305-4ab7-8e40-c8f2a8237fb9)
)
(bus (pts (xy 147.32 114.3) (xy 147.32 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 045a2b72-674a-4f8a-b4e8-b456db86ba68)
)
(wire (pts (xy 279.4 148.59) (xy 279.4 160.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 058990eb-5f40-4f76-813b-aa0fcf06bea6)
)
(wire (pts (xy 148.59 224.79) (xy 223.52 224.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 07572c29-5b0e-43e8-b5f9-e20c094b881e)
)
(wire (pts (xy 148.59 106.68) (xy 179.07 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 07646f6f-87f4-4999-bd70-a4e39bc51b74)
)
(wire (pts (xy 279.4 87.63) (xy 279.4 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 08fa1484-4ef7-421e-8757-ceb705436787)
)
(wire (pts (xy 226.06 137.16) (xy 260.35 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0912a0a7-5f95-44a4-89bd-8ff4930cbf4c)
)
(wire (pts (xy 148.59 173.99) (xy 181.61 173.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0959f949-0a89-445f-8537-6fe7f820c7b6)
)
(bus (pts (xy 147.32 245.11) (xy 147.32 247.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 09fa273d-abf5-4fb8-b3e7-27686898c8f5)
)
(wire (pts (xy 279.4 62.23) (xy 279.4 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0b44d07b-411c-4145-9d33-46edc2b18a89)
)
(wire (pts (xy 226.06 148.59) (xy 262.89 148.59))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0d7e3daf-b258-44ed-9035-a541d7fb4c2a)
)
(bus (pts (xy 147.32 80.01) (xy 147.32 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0e718e96-286f-4fa2-a143-14d3aa747696)