-
Notifications
You must be signed in to change notification settings - Fork 0
/
a.out
executable file
·5926 lines (5926 loc) · 324 KB
/
a.out
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
#! /opt/homebrew/Cellar/icarus-verilog/11.0/bin/vvp
:ivl_version "11.0 (stable)";
:ivl_delay_selection "TYPICAL";
:vpi_time_precision - 9;
:vpi_module "/opt/homebrew/Cellar/icarus-verilog/11.0/lib/ivl/system.vpi";
:vpi_module "/opt/homebrew/Cellar/icarus-verilog/11.0/lib/ivl/vhdl_sys.vpi";
:vpi_module "/opt/homebrew/Cellar/icarus-verilog/11.0/lib/ivl/vhdl_textio.vpi";
:vpi_module "/opt/homebrew/Cellar/icarus-verilog/11.0/lib/ivl/v2005_math.vpi";
:vpi_module "/opt/homebrew/Cellar/icarus-verilog/11.0/lib/ivl/va_math.vpi";
S_0x131fa4740 .scope module, "CLA16" "CLA16" 2 39;
.timescale -9 -9;
.port_info 0 /INPUT 8 "op1";
.port_info 1 /INPUT 8 "op2";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "cout";
.port_info 4 /OUTPUT 8 "sum";
o0x138050e80 .functor BUFZ 1, C4<z>; HiZ drive
L_0x132912b40 .functor BUF 1, o0x138050e80, C4<0>, C4<0>, C4<0>;
L_0x132916510 .functor BUF 1, L_0x132916580, C4<0>, C4<0>, C4<0>;
v0x131f7e030_0 .net *"_ivl_1", 0 0, L_0x132912b40; 1 drivers
v0x131f79c50_0 .net *"_ivl_26", 0 0, L_0x132916580; 1 drivers
o0x138050df0 .functor BUFZ 3, C4<zzz>; HiZ drive
; Elide local net with no drivers, v0x131ff38c0_0 name=_ivl_29
o0x138050e20 .functor BUFZ 3, C4<zzz>; HiZ drive
; Elide local net with no drivers, v0x131ff3700_0 name=_ivl_31
v0x131ff1870_0 .net "c", 8 0, L_0x132991b60; 1 drivers
v0x131ff0170_0 .net "cin", 0 0, o0x138050e80; 0 drivers
v0x131feffb0_0 .net "cout", 0 0, L_0x132916510; 1 drivers
o0x138050ee0 .functor BUFZ 8, C4<zzzzzzzz>; HiZ drive
v0x131fee210_0 .net "op1", 7 0, o0x138050ee0; 0 drivers
o0x138050f10 .functor BUFZ 8, C4<zzzzzzzz>; HiZ drive
v0x131fecad0_0 .net "op2", 7 0, o0x138050f10; 0 drivers
v0x131fec910_0 .net "sum", 7 0, L_0x1329163f0; 1 drivers
L_0x132914570 .part o0x138050ee0, 0, 4;
L_0x132914610 .part o0x138050f10, 0, 4;
L_0x1329146b0 .part L_0x132991b60, 0, 1;
L_0x132916120 .part o0x138050ee0, 4, 4;
L_0x132916200 .part o0x138050f10, 4, 4;
L_0x1329162d0 .part L_0x132991b60, 4, 1;
L_0x1329163f0 .concat8 [ 4 4 0 0], L_0x132914170, L_0x132915d20;
L_0x132916580 .part L_0x132991b60, 8, 1;
LS_0x132991b60_0_0 .concat [ 1 3 1 3], L_0x132912b40, o0x138050df0, L_0x132914280, o0x138050e20;
LS_0x132991b60_0_4 .concat [ 1 0 0 0], L_0x132915e30;
L_0x132991b60 .concat [ 8 1 0 0], LS_0x132991b60_0_0, LS_0x132991b60_0_4;
S_0x131ff3350 .scope module, "CLA4_dut1a" "CLA4" 2 51, 2 4 0, S_0x131fa4740;
.timescale -9 -9;
.port_info 0 /INPUT 4 "op1";
.port_info 1 /INPUT 4 "op2";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "cout";
.port_info 4 /OUTPUT 4 "sum";
L_0x132912bf0 .functor BUF 1, L_0x1329146b0, C4<0>, C4<0>, C4<0>;
L_0x132912ca0 .functor AND 1, L_0x132912d90, L_0x132912e70, C4<1>, C4<1>;
L_0x132912f50 .functor OR 1, L_0x132912ca0, L_0x132913060, C4<0>, C4<0>;
L_0x132913140 .functor AND 1, L_0x132913210, L_0x132913330, C4<1>, C4<1>;
L_0x132913480 .functor OR 1, L_0x132913520, L_0x132913140, C4<0>, C4<0>;
L_0x132913600 .functor AND 1, L_0x132913690, L_0x1329137b0, C4<1>, C4<1>;
L_0x132913890 .functor OR 1, L_0x132913980, L_0x132913600, C4<0>, C4<0>;
L_0x132913ab0 .functor AND 1, L_0x132913b20, L_0x132913c40, C4<1>, C4<1>;
L_0x132913ea0 .functor OR 1, L_0x132913fe0, L_0x132913ab0, C4<0>, C4<0>;
L_0x132914170 .functor XOR 4, L_0x132914450, L_0x1329141e0, C4<0000>, C4<0000>;
L_0x132914280 .functor BUF 1, L_0x1329142f0, C4<0>, C4<0>, C4<0>;
L_0x132914100 .functor AND 4, L_0x132914570, L_0x132914610, C4<1111>, C4<1111>;
L_0x132914450 .functor XOR 4, L_0x132914570, L_0x132914610, C4<0000>, C4<0000>;
v0x131e277b0_0 .net *"_ivl_1", 0 0, L_0x132912bf0; 1 drivers
v0x131e59060_0 .net *"_ivl_12", 0 0, L_0x132913060; 1 drivers
v0x131e39ca0_0 .net *"_ivl_15", 0 0, L_0x132913210; 1 drivers
v0x131e0b6a0_0 .net *"_ivl_17", 0 0, L_0x132913330; 1 drivers
v0x131fa1e10_0 .net *"_ivl_19", 0 0, L_0x132913480; 1 drivers
v0x131f64f20_0 .net *"_ivl_22", 0 0, L_0x132913520; 1 drivers
v0x132896ff0_0 .net *"_ivl_25", 0 0, L_0x132913690; 1 drivers
v0x132849960_0 .net *"_ivl_27", 0 0, L_0x1329137b0; 1 drivers
v0x132883580_0 .net *"_ivl_29", 0 0, L_0x132913890; 1 drivers
v0x131f537e0_0 .net *"_ivl_32", 0 0, L_0x132913980; 1 drivers
v0x131f36f80_0 .net *"_ivl_35", 0 0, L_0x132913b20; 1 drivers
v0x131e58190_0 .net *"_ivl_37", 0 0, L_0x132913c40; 1 drivers
v0x132889030_0 .net *"_ivl_39", 0 0, L_0x132913ea0; 1 drivers
v0x131e5bf80_0 .net *"_ivl_43", 0 0, L_0x132913fe0; 1 drivers
v0x131f8c470_0 .net *"_ivl_45", 3 0, L_0x1329141e0; 1 drivers
v0x131f8fff0_0 .net *"_ivl_48", 0 0, L_0x1329142f0; 1 drivers
v0x131fc83a0_0 .net *"_ivl_5", 0 0, L_0x132912d90; 1 drivers
v0x131fd1a20_0 .net *"_ivl_7", 0 0, L_0x132912e70; 1 drivers
v0x131fccee0_0 .net *"_ivl_9", 0 0, L_0x132912f50; 1 drivers
v0x131fc9360_0 .net "c", 4 0, L_0x132913dc0; 1 drivers
v0x131fc3840_0 .net "cin", 0 0, L_0x1329146b0; 1 drivers
v0x131f93fe0_0 .net "cout", 0 0, L_0x132914280; 1 drivers
v0x131f90fb0_0 .net "gen", 3 0, L_0x132914100; 1 drivers
v0x131f87910_0 .net "op1", 3 0, L_0x132914570; 1 drivers
v0x131f86950_0 .net "op2", 3 0, L_0x132914610; 1 drivers
v0x131f85e00_0 .net "prop", 3 0, L_0x132914450; 1 drivers
v0x131f1c380_0 .net "sum", 3 0, L_0x132914170; 1 drivers
v0x13287b4e0_0 .net "w1", 0 0, L_0x132912ca0; 1 drivers
v0x13287a530_0 .net "w2", 0 0, L_0x132913140; 1 drivers
v0x132879570_0 .net "w3", 0 0, L_0x132913600; 1 drivers
v0x132878a20_0 .net "w4", 0 0, L_0x132913ab0; 1 drivers
L_0x132912d90 .part L_0x132914450, 0, 1;
L_0x132912e70 .part L_0x132913dc0, 0, 1;
L_0x132913060 .part L_0x132914100, 0, 1;
L_0x132913210 .part L_0x132913dc0, 1, 1;
L_0x132913330 .part L_0x132914450, 1, 1;
L_0x132913520 .part L_0x132914100, 1, 1;
L_0x132913690 .part L_0x132913dc0, 2, 1;
L_0x1329137b0 .part L_0x132914450, 2, 1;
L_0x132913980 .part L_0x132914100, 2, 1;
L_0x132913b20 .part L_0x132913dc0, 3, 1;
L_0x132913c40 .part L_0x132914450, 3, 1;
LS_0x132913dc0_0_0 .concat8 [ 1 1 1 1], L_0x132912bf0, L_0x132912f50, L_0x132913480, L_0x132913890;
LS_0x132913dc0_0_4 .concat8 [ 1 0 0 0], L_0x132913ea0;
L_0x132913dc0 .concat8 [ 4 1 0 0], LS_0x132913dc0_0_0, LS_0x132913dc0_0_4;
L_0x132913fe0 .part L_0x132914100, 3, 1;
L_0x1329141e0 .part L_0x132913dc0, 0, 4;
L_0x1329142f0 .part L_0x132913dc0, 4, 1;
S_0x131fefc00 .scope module, "CLA4_dut1b" "CLA4" 2 52, 2 4 0, S_0x131fa4740;
.timescale -9 -9;
.port_info 0 /INPUT 4 "op1";
.port_info 1 /INPUT 4 "op2";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "cout";
.port_info 4 /OUTPUT 4 "sum";
L_0x132914750 .functor BUF 1, L_0x1329162d0, C4<0>, C4<0>, C4<0>;
L_0x132914800 .functor AND 1, L_0x1329148f0, L_0x1329149d0, C4<1>, C4<1>;
L_0x132914ab0 .functor OR 1, L_0x132914800, L_0x132914bc0, C4<0>, C4<0>;
L_0x132914ca0 .functor AND 1, L_0x132914d90, L_0x132914eb0, C4<1>, C4<1>;
L_0x132914fd0 .functor OR 1, L_0x1329150b0, L_0x132914ca0, C4<0>, C4<0>;
L_0x1329151d0 .functor AND 1, L_0x132915240, L_0x132915320, C4<1>, C4<1>;
L_0x132915400 .functor OR 1, L_0x1329154f0, L_0x1329151d0, C4<0>, C4<0>;
L_0x132915620 .functor AND 1, L_0x132915690, L_0x1329157b0, C4<1>, C4<1>;
L_0x132915a50 .functor OR 1, L_0x132915b90, L_0x132915620, C4<0>, C4<0>;
L_0x132915d20 .functor XOR 4, L_0x132916000, L_0x132915d90, C4<0000>, C4<0000>;
L_0x132915e30 .functor BUF 1, L_0x132915ea0, C4<0>, C4<0>, C4<0>;
L_0x132915cb0 .functor AND 4, L_0x132916120, L_0x132916200, C4<1111>, C4<1111>;
L_0x132916000 .functor XOR 4, L_0x132916120, L_0x132916200, C4<0000>, C4<0000>;
v0x1328769a0_0 .net *"_ivl_1", 0 0, L_0x132914750; 1 drivers
v0x1328759f0_0 .net *"_ivl_12", 0 0, L_0x132914bc0; 1 drivers
v0x132874a30_0 .net *"_ivl_15", 0 0, L_0x132914d90; 1 drivers
v0x132873da0_0 .net *"_ivl_17", 0 0, L_0x132914eb0; 1 drivers
v0x132871e60_0 .net *"_ivl_19", 0 0, L_0x132914fd0; 1 drivers
v0x132870eb0_0 .net *"_ivl_22", 0 0, L_0x1329150b0; 1 drivers
v0x13286fef0_0 .net *"_ivl_25", 0 0, L_0x132915240; 1 drivers
v0x13286f240_0 .net *"_ivl_27", 0 0, L_0x132915320; 1 drivers
v0x13286d300_0 .net *"_ivl_29", 0 0, L_0x132915400; 1 drivers
v0x13286c350_0 .net *"_ivl_32", 0 0, L_0x1329154f0; 1 drivers
v0x13286b390_0 .net *"_ivl_35", 0 0, L_0x132915690; 1 drivers
v0x13286a840_0 .net *"_ivl_37", 0 0, L_0x1329157b0; 1 drivers
v0x131f26c60_0 .net *"_ivl_39", 0 0, L_0x132915a50; 1 drivers
v0x131fda1b0_0 .net *"_ivl_43", 0 0, L_0x132915b90; 1 drivers
v0x131f9d550_0 .net *"_ivl_45", 3 0, L_0x132915d90; 1 drivers
v0x131f9d2c0_0 .net *"_ivl_48", 0 0, L_0x132915ea0; 1 drivers
v0x131fd5c10_0 .net *"_ivl_5", 0 0, L_0x1329148f0; 1 drivers
v0x131fa8d30_0 .net *"_ivl_7", 0 0, L_0x1329149d0; 1 drivers
v0x131fa4a60_0 .net *"_ivl_9", 0 0, L_0x132914ab0; 1 drivers
v0x131fcb920_0 .net "c", 4 0, L_0x132915930; 1 drivers
v0x131fc6dc0_0 .net "cin", 0 0, L_0x1329162d0; 1 drivers
v0x131fbf300_0 .net "cout", 0 0, L_0x132915e30; 1 drivers
v0x131fbaf20_0 .net "gen", 3 0, L_0x132915cb0; 1 drivers
v0x131fb6b40_0 .net "op1", 3 0, L_0x132916120; 1 drivers
v0x131f98d20_0 .net "op2", 3 0, L_0x132916200; 1 drivers
v0x131f6c2d0_0 .net "prop", 3 0, L_0x132916000; 1 drivers
v0x131f6be40_0 .net "sum", 3 0, L_0x132915d20; 1 drivers
v0x131f67b70_0 .net "w1", 0 0, L_0x132914800; 1 drivers
v0x131f8ea30_0 .net "w2", 0 0, L_0x132914ca0; 1 drivers
v0x131f89ed0_0 .net "w3", 0 0, L_0x1329151d0; 1 drivers
v0x131f82410_0 .net "w4", 0 0, L_0x132915620; 1 drivers
L_0x1329148f0 .part L_0x132916000, 0, 1;
L_0x1329149d0 .part L_0x132915930, 0, 1;
L_0x132914bc0 .part L_0x132915cb0, 0, 1;
L_0x132914d90 .part L_0x132915930, 1, 1;
L_0x132914eb0 .part L_0x132916000, 1, 1;
L_0x1329150b0 .part L_0x132915cb0, 1, 1;
L_0x132915240 .part L_0x132915930, 2, 1;
L_0x132915320 .part L_0x132916000, 2, 1;
L_0x1329154f0 .part L_0x132915cb0, 2, 1;
L_0x132915690 .part L_0x132915930, 3, 1;
L_0x1329157b0 .part L_0x132916000, 3, 1;
LS_0x132915930_0_0 .concat8 [ 1 1 1 1], L_0x132914750, L_0x132914ab0, L_0x132914fd0, L_0x132915400;
LS_0x132915930_0_4 .concat8 [ 1 0 0 0], L_0x132915a50;
L_0x132915930 .concat8 [ 4 1 0 0], LS_0x132915930_0_0, LS_0x132915930_0_4;
L_0x132915b90 .part L_0x132915cb0, 3, 1;
L_0x132915d90 .part L_0x132915930, 0, 4;
L_0x132915ea0 .part L_0x132915930, 4, 1;
S_0x131f67850 .scope module, "alu_tb" "alu_tb" 3 3;
.timescale -9 -9;
v0x132911bd0_0 .var "op", 2 0;
v0x132912940_0 .var "x", 11 0;
v0x1329129d0_0 .var "y", 11 0;
v0x132912a80_0 .net "z", 11 0, L_0x132991a70; 1 drivers
S_0x131fec560 .scope module, "u1" "alu" 3 8, 4 3 0, S_0x131f67850;
.timescale -9 -9;
.port_info 0 /INPUT 3 "op";
.port_info 1 /INPUT 12 "op1";
.port_info 2 /INPUT 12 "op2";
.port_info 3 /OUTPUT 12 "out";
L_0x132916660 .functor BUF 12, L_0x1329166d0, C4<000000000000>, C4<000000000000>, C4<000000000000>;
L_0x13291eae0 .functor BUF 4, L_0x13291f1d0, C4<0000>, C4<0000>, C4<0000>;
L_0x132922d00 .functor BUF 4, L_0x132927c50, C4<0000>, C4<0000>, C4<0000>;
L_0x132938c70 .functor BUF 8, L_0x132938ce0, C4<00000000>, C4<00000000>, C4<00000000>;
L_0x132938ed0 .functor BUF 4, L_0x132938f80, C4<0000>, C4<0000>, C4<0000>;
L_0x132938e60 .functor BUF 8, L_0x132949f40, C4<00000000>, C4<00000000>, C4<00000000>;
L_0x13294a100 .functor BUF 4, L_0x13294a1f0, C4<0000>, C4<0000>, C4<0000>;
L_0x132991a70 .functor BUF 12, L_0x1329916a0, C4<000000000000>, C4<000000000000>, C4<000000000000>;
L_0x138088010 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
v0x132910ff0_0 .net/2u *"_ivl_0", 0 0, L_0x138088010; 1 drivers
v0x132911080_0 .net *"_ivl_12", 3 0, L_0x13291eae0; 1 drivers
L_0x1380880a0 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
v0x132911110_0 .net/2u *"_ivl_15", 0 0, L_0x1380880a0; 1 drivers
v0x1329111a0_0 .net *"_ivl_18", 3 0, L_0x13291f1d0; 1 drivers
v0x132911230_0 .net *"_ivl_27", 3 0, L_0x132922d00; 1 drivers
v0x1329112e0_0 .net *"_ivl_3", 11 0, L_0x1329166d0; 1 drivers
L_0x138088130 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
v0x132911390_0 .net/2u *"_ivl_30", 0 0, L_0x138088130; 1 drivers
v0x132911440_0 .net *"_ivl_33", 3 0, L_0x132927c50; 1 drivers
v0x1329114f0_0 .net *"_ivl_38", 7 0, L_0x132938c70; 1 drivers
v0x132911600_0 .net *"_ivl_41", 7 0, L_0x132938ce0; 1 drivers
v0x1329116b0_0 .net *"_ivl_42", 3 0, L_0x132938ed0; 1 drivers
L_0x138088400 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
v0x132911760_0 .net/2u *"_ivl_45", 0 0, L_0x138088400; 1 drivers
v0x132911810_0 .net *"_ivl_48", 3 0, L_0x132938f80; 1 drivers
v0x1329118c0_0 .net *"_ivl_53", 7 0, L_0x132938e60; 1 drivers
v0x132911970_0 .net *"_ivl_56", 7 0, L_0x132949f40; 1 drivers
v0x132911a20_0 .net *"_ivl_57", 3 0, L_0x13294a100; 1 drivers
L_0x1380886d0 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
v0x132911ad0_0 .net/2u *"_ivl_60", 0 0, L_0x1380886d0; 1 drivers
v0x132911c60_0 .net *"_ivl_63", 3 0, L_0x13294a1f0; 1 drivers
RS_0x1380673e0 .resolv tri, L_0x1329378b0, L_0x132948ae0;
v0x132911cf0_0 .net8 "m", 15 0, RS_0x1380673e0; 2 drivers
RS_0x13805f550 .resolv tri, L_0x132938930, L_0x132949bc0, L_0x13297ec70;
v0x132911d90_0 .net8 "of", 0 0, RS_0x13805f550; 3 drivers
v0x132911ea0_0 .net "op", 2 0, v0x132911bd0_0; 1 drivers
v0x132911f30_0 .net "op1", 11 0, v0x132912940_0; 1 drivers
v0x132911fc0_0 .net "op2", 11 0, v0x1329129d0_0; 1 drivers
v0x132912090_0 .net "out", 11 0, L_0x132991a70; alias, 1 drivers
v0x132912120_0 .net "out0", 11 0, L_0x132916660; 1 drivers
v0x1329121d0_0 .net "out1", 11 0, L_0x13291f130; 1 drivers
v0x132912280_0 .net "out2", 11 0, L_0x132927b70; 1 drivers
v0x132912330_0 .net "out3", 11 0, L_0x132938d80; 1 drivers
v0x1329123e0_0 .net "out4", 11 0, L_0x13294a020; 1 drivers
v0x132912490_0 .net "out5", 11 0, L_0x132969ac0; 1 drivers
v0x132912530_0 .net "out6", 11 0, L_0x13297e600; 1 drivers
v0x1329125e0_0 .net "out7", 11 0, L_0x132980a60; 1 drivers
v0x132912690_0 .net "outf", 11 0, L_0x1329916a0; 1 drivers
L_0x1329166d0 .repeat 12, 12, L_0x138088010;
L_0x13291eff0 .part v0x132912940_0, 0, 8;
L_0x13291f090 .part v0x1329129d0_0, 0, 8;
L_0x13291f130 .concat8 [ 8 4 0 0], L_0x13291ebf0, L_0x13291eae0;
L_0x13291f1d0 .repeat 4, 4, L_0x1380880a0;
L_0x132927a30 .part v0x132912940_0, 0, 8;
L_0x132927ad0 .part v0x1329129d0_0, 0, 8;
L_0x132927b70 .concat8 [ 8 4 0 0], L_0x132927630, L_0x132922d00;
L_0x132927c50 .repeat 4, 4, L_0x138088130;
L_0x132938af0 .part v0x132912940_0, 0, 8;
L_0x132938880 .part v0x1329129d0_0, 0, 8;
L_0x132938ce0 .part RS_0x1380673e0, 0, 8;
L_0x132938d80 .concat8 [ 8 4 0 0], L_0x132938c70, L_0x132938ed0;
L_0x132938f80 .repeat 4, 4, L_0x138088400;
L_0x132949d80 .part v0x132912940_0, 0, 8;
L_0x132949e60 .part v0x1329129d0_0, 0, 8;
L_0x132949f40 .part RS_0x1380673e0, 0, 8;
L_0x13294a020 .concat8 [ 8 4 0 0], L_0x132938e60, L_0x13294a100;
L_0x13294a1f0 .repeat 4, 4, L_0x1380886d0;
L_0x132980fe0 .part v0x132912940_0, 0, 8;
L_0x132981080 .part v0x1329129d0_0, 0, 8;
L_0x132981d80 .part L_0x132916660, 0, 1;
L_0x132981ea0 .part L_0x13291f130, 0, 1;
L_0x132982080 .part L_0x132927b70, 0, 1;
L_0x132982160 .part L_0x132938d80, 0, 1;
L_0x132982310 .part L_0x13294a020, 0, 1;
L_0x1329823f0 .part L_0x132969ac0, 0, 1;
L_0x132982570 .part L_0x13297e600, 0, 1;
L_0x132982240 .part L_0x132980a60, 0, 1;
L_0x132982740 .part v0x132911bd0_0, 2, 1;
L_0x132982490 .part v0x132911bd0_0, 1, 1;
L_0x1329828e0 .part v0x132911bd0_0, 0, 1;
L_0x132983470 .part L_0x132916660, 1, 1;
L_0x1329827e0 .part L_0x13291f130, 1, 1;
L_0x132983660 .part L_0x132927b70, 1, 1;
L_0x132983550 .part L_0x132938d80, 1, 1;
L_0x132983860 .part L_0x13294a020, 1, 1;
L_0x132983740 .part L_0x132969ac0, 1, 1;
L_0x132983af0 .part L_0x13297e600, 1, 1;
L_0x132983940 .part L_0x132980a60, 1, 1;
L_0x132983d50 .part v0x132911bd0_0, 2, 1;
L_0x132983c10 .part v0x132911bd0_0, 1, 1;
L_0x132983cb0 .part v0x132911bd0_0, 0, 1;
L_0x132984aa0 .part L_0x132916660, 2, 1;
L_0x132984c00 .part L_0x13291f130, 2, 1;
L_0x132983df0 .part L_0x132927b70, 2, 1;
L_0x132984e90 .part L_0x132938d80, 2, 1;
L_0x132984d20 .part L_0x13294a020, 2, 1;
L_0x132985130 .part L_0x132969ac0, 2, 1;
L_0x132984fb0 .part L_0x13297e600, 2, 1;
L_0x132985050 .part L_0x132980a60, 2, 1;
L_0x132980510 .part v0x132911bd0_0, 2, 1;
L_0x132985700 .part v0x132911bd0_0, 1, 1;
L_0x132985560 .part v0x132911bd0_0, 0, 1;
L_0x132986350 .part L_0x132916660, 3, 1;
L_0x1329857a0 .part L_0x13291f130, 3, 1;
L_0x132985880 .part L_0x132927b70, 3, 1;
L_0x132986430 .part L_0x132938d80, 3, 1;
L_0x132986510 .part L_0x13294a020, 3, 1;
L_0x132986810 .part L_0x132969ac0, 3, 1;
L_0x1329868f0 .part L_0x13297e600, 3, 1;
L_0x132986630 .part L_0x132980a60, 3, 1;
L_0x132986710 .part v0x132911bd0_0, 2, 1;
L_0x132986bd0 .part v0x132911bd0_0, 1, 1;
L_0x132986c70 .part v0x132911bd0_0, 0, 1;
L_0x1329878b0 .part L_0x132916660, 4, 1;
L_0x132987990 .part L_0x13291f130, 4, 1;
L_0x132986d10 .part L_0x132927b70, 4, 1;
L_0x132986df0 .part L_0x132938d80, 4, 1;
L_0x132987ca0 .part L_0x13294a020, 4, 1;
L_0x132987d40 .part L_0x132969ac0, 4, 1;
L_0x132987a70 .part L_0x13297e600, 4, 1;
L_0x132987b50 .part L_0x132980a60, 4, 1;
L_0x132988070 .part v0x132911bd0_0, 2, 1;
L_0x132988110 .part v0x132911bd0_0, 1, 1;
L_0x132987e20 .part v0x132911bd0_0, 0, 1;
L_0x132988f60 .part L_0x132916660, 5, 1;
L_0x1329881b0 .part L_0x13291f130, 5, 1;
L_0x132988290 .part L_0x132927b70, 5, 1;
L_0x132988370 .part L_0x132938d80, 5, 1;
L_0x132989300 .part L_0x13294a020, 5, 1;
L_0x132989040 .part L_0x132969ac0, 5, 1;
L_0x132989220 .part L_0x13297e600, 5, 1;
L_0x132983a50 .part L_0x132980a60, 5, 1;
L_0x132989420 .part v0x132911bd0_0, 2, 1;
L_0x1329894c0 .part v0x132911bd0_0, 1, 1;
L_0x132989560 .part v0x132911bd0_0, 0, 1;
L_0x13298a5d0 .part L_0x132916660, 6, 1;
L_0x13298a7b0 .part L_0x13291f130, 6, 1;
L_0x1329897b0 .part L_0x132927b70, 6, 1;
L_0x132989950 .part L_0x132938d80, 6, 1;
L_0x13298a990 .part L_0x13294a020, 6, 1;
L_0x13298ab30 .part L_0x132969ac0, 6, 1;
L_0x13298b050 .part L_0x13297e600, 6, 1;
L_0x13298b0f0 .part L_0x132980a60, 6, 1;
L_0x13298ad60 .part v0x132911bd0_0, 2, 1;
L_0x13298ae00 .part v0x132911bd0_0, 1, 1;
L_0x13298aea0 .part v0x132911bd0_0, 0, 1;
L_0x13298bdf0 .part L_0x132916660, 7, 1;
L_0x13298b190 .part L_0x13291f130, 7, 1;
L_0x13298b270 .part L_0x132927b70, 7, 1;
L_0x13298b350 .part L_0x132938d80, 7, 1;
L_0x13298c200 .part L_0x13294a020, 7, 1;
L_0x13298bed0 .part L_0x132969ac0, 7, 1;
L_0x13298bfb0 .part L_0x13297e600, 7, 1;
L_0x13298c090 .part L_0x132980a60, 7, 1;
L_0x13298c5f0 .part v0x132911bd0_0, 2, 1;
L_0x13298c2a0 .part v0x132911bd0_0, 1, 1;
L_0x13298c340 .part v0x132911bd0_0, 0, 1;
L_0x13298d380 .part L_0x132916660, 8, 1;
L_0x13298d460 .part L_0x13291f130, 8, 1;
L_0x13298c690 .part L_0x132927b70, 8, 1;
L_0x13298c770 .part L_0x132938d80, 8, 1;
L_0x13298c850 .part L_0x13294a020, 8, 1;
L_0x13298c930 .part L_0x132969ac0, 8, 1;
L_0x13298d540 .part L_0x13297e600, 8, 1;
L_0x13298d620 .part L_0x132980a60, 8, 1;
L_0x13298d700 .part v0x132911bd0_0, 2, 1;
L_0x13298d7a0 .part v0x132911bd0_0, 1, 1;
L_0x13298dcd0 .part v0x132911bd0_0, 0, 1;
L_0x13298e900 .part L_0x132916660, 9, 1;
L_0x13298d910 .part L_0x13291f130, 9, 1;
L_0x13298d9f0 .part L_0x132927b70, 9, 1;
L_0x13298dad0 .part L_0x132938d80, 9, 1;
L_0x13298dbb0 .part L_0x13294a020, 9, 1;
L_0x13298edd0 .part L_0x132969ac0, 9, 1;
L_0x13298ee70 .part L_0x13297e600, 9, 1;
L_0x13298e9e0 .part L_0x132980a60, 9, 1;
L_0x13298eac0 .part v0x132911bd0_0, 2, 1;
L_0x13298eb60 .part v0x132911bd0_0, 1, 1;
L_0x13298ec00 .part v0x132911bd0_0, 0, 1;
L_0x13298fa80 .part L_0x132916660, 10, 1;
L_0x13298fb60 .part L_0x13291f130, 10, 1;
L_0x13298fc40 .part L_0x132927b70, 10, 1;
L_0x13298fd20 .part L_0x132938d80, 10, 1;
L_0x13298fe00 .part L_0x13294a020, 10, 1;
L_0x13298fee0 .part L_0x132969ac0, 10, 1;
L_0x13298ffc0 .part L_0x13297e600, 10, 1;
L_0x1329900a0 .part L_0x132980a60, 10, 1;
L_0x132990180 .part v0x132911bd0_0, 2, 1;
L_0x132988410 .part v0x132911bd0_0, 1, 1;
L_0x1329884b0 .part v0x132911bd0_0, 0, 1;
L_0x132990dc0 .part L_0x132916660, 11, 1;
L_0x132990ea0 .part L_0x13291f130, 11, 1;
L_0x132990f80 .part L_0x132927b70, 11, 1;
L_0x132991060 .part L_0x132938d80, 11, 1;
L_0x132991140 .part L_0x13294a020, 11, 1;
L_0x132991220 .part L_0x132969ac0, 11, 1;
L_0x132991300 .part L_0x13297e600, 11, 1;
L_0x1329913e0 .part L_0x132980a60, 11, 1;
L_0x1329914c0 .part v0x132911bd0_0, 2, 1;
L_0x132991560 .part v0x132911bd0_0, 1, 1;
L_0x132991600 .part v0x132911bd0_0, 0, 1;
LS_0x1329916a0_0_0 .concat8 [ 1 1 1 1], L_0x132981b90, L_0x132983300, L_0x1329848f0, L_0x1329861a0;
LS_0x1329916a0_0_4 .concat8 [ 1 1 1 1], L_0x132987740, L_0x132988db0, L_0x13298a3e0, L_0x13298bc40;
LS_0x1329916a0_0_8 .concat8 [ 1 1 1 1], L_0x13298d1d0, L_0x13298e750, L_0x13298f890, L_0x132990bd0;
L_0x1329916a0 .concat8 [ 4 4 4 0], LS_0x1329916a0_0_0, LS_0x1329916a0_0_4, LS_0x1329916a0_0_8;
S_0x131ffde20 .scope module, "c1" "cla16" 4 9, 2 84 0, S_0x131fec560;
.timescale -9 -9;
.port_info 0 /INPUT 8 "x";
.port_info 1 /INPUT 8 "z";
.port_info 2 /INPUT 1 "control";
.port_info 3 /OUTPUT 8 "s";
L_0x138088058 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
L_0x1329167f0 .functor XOR 1, L_0x1329168a0, L_0x138088058, C4<0>, C4<0>;
L_0x132916980 .functor XOR 1, L_0x1329169f0, L_0x138088058, C4<0>, C4<0>;
L_0x132916b10 .functor XOR 1, L_0x132916c40, L_0x138088058, C4<0>, C4<0>;
L_0x132916ce0 .functor XOR 1, L_0x132916db0, L_0x138088058, C4<0>, C4<0>;
L_0x132916f10 .functor XOR 1, L_0x132916fd0, L_0x138088058, C4<0>, C4<0>;
L_0x1329170e0 .functor XOR 1, L_0x132917150, L_0x138088058, C4<0>, C4<0>;
L_0x132917230 .functor XOR 1, L_0x132917400, L_0x138088058, C4<0>, C4<0>;
L_0x132917710 .functor XOR 1, L_0x1329177c0, L_0x138088058, C4<0>, C4<0>;
v0x131f60b40_0 .net *"_ivl_0", 0 0, L_0x1329167f0; 1 drivers
v0x131fa4500_0 .net *"_ivl_11", 0 0, L_0x132916c40; 1 drivers
v0x131fa4590_0 .net *"_ivl_12", 0 0, L_0x132916ce0; 1 drivers
v0x131fa1ab0_0 .net *"_ivl_15", 0 0, L_0x132916db0; 1 drivers
v0x131fa1b40_0 .net *"_ivl_16", 0 0, L_0x132916f10; 1 drivers
v0x131f67610_0 .net *"_ivl_19", 0 0, L_0x132916fd0; 1 drivers
v0x131f676a0_0 .net *"_ivl_20", 0 0, L_0x1329170e0; 1 drivers
v0x131f64bc0_0 .net *"_ivl_23", 0 0, L_0x132917150; 1 drivers
v0x131f64c50_0 .net *"_ivl_24", 0 0, L_0x132917230; 1 drivers
v0x131f5f810_0 .net *"_ivl_27", 0 0, L_0x132917400; 1 drivers
v0x131f5f8a0_0 .net *"_ivl_28", 0 0, L_0x132917710; 1 drivers
v0x131f539d0_0 .net *"_ivl_3", 0 0, L_0x1329168a0; 1 drivers
v0x131f53a60_0 .net *"_ivl_32", 0 0, L_0x1329177c0; 1 drivers
v0x131f42fb0_0 .net *"_ivl_4", 0 0, L_0x132916980; 1 drivers
v0x131f43040_0 .net *"_ivl_7", 0 0, L_0x1329169f0; 1 drivers
v0x131f37170_0 .net *"_ivl_8", 0 0, L_0x132916b10; 1 drivers
v0x131f37200_0 .net "control", 0 0, L_0x138088058; 1 drivers
v0x132849600_0 .net "cout", 7 0, L_0x13291ed50; 1 drivers
v0x132849690_0 .net "s", 7 0, L_0x13291ebf0; 1 drivers
v0x131f44280_0 .net "x", 7 0, L_0x13291eff0; 1 drivers
v0x131f44310_0 .net "y", 7 0, L_0x1329174a0; 1 drivers
v0x131fa20f0_0 .net "z", 7 0, L_0x13291f090; 1 drivers
L_0x1329168a0 .part L_0x13291f090, 0, 1;
L_0x1329169f0 .part L_0x13291f090, 1, 1;
L_0x132916c40 .part L_0x13291f090, 2, 1;
L_0x132916db0 .part L_0x13291f090, 3, 1;
L_0x132916fd0 .part L_0x13291f090, 4, 1;
L_0x132917150 .part L_0x13291f090, 5, 1;
L_0x132917400 .part L_0x13291f090, 6, 1;
LS_0x1329174a0_0_0 .concat8 [ 1 1 1 1], L_0x1329167f0, L_0x132916980, L_0x132916b10, L_0x132916ce0;
LS_0x1329174a0_0_4 .concat8 [ 1 1 1 1], L_0x132916f10, L_0x1329170e0, L_0x132917230, L_0x132917710;
L_0x1329174a0 .concat8 [ 4 4 0 0], LS_0x1329174a0_0_0, LS_0x1329174a0_0_4;
L_0x1329177c0 .part L_0x13291f090, 7, 1;
L_0x13291b080 .part L_0x13291eff0, 0, 4;
L_0x13291b120 .part L_0x1329174a0, 0, 4;
L_0x13291e9a0 .part L_0x13291eff0, 4, 4;
L_0x13291ea40 .part L_0x1329174a0, 4, 4;
L_0x13291eb50 .part L_0x13291ed50, 3, 1;
L_0x13291ebf0 .concat8 [ 4 4 0 0], L_0x13291a8f0, L_0x13291e1d0;
L_0x13291ed50 .concat8 [ 4 4 0 0], L_0x132919d20, L_0x13291d5e0;
S_0x131ffc460 .scope module, "cla_uut1" "cla4" 2 97, 2 59 0, S_0x131ffde20;
.timescale -9 -9;
.port_info 0 /INPUT 4 "x";
.port_info 1 /INPUT 4 "y";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 4 "S";
.port_info 4 /OUTPUT 4 "cout";
L_0x132916e90 .functor XOR 1, L_0x1329179f0, L_0x132917a90, C4<0>, C4<0>;
L_0x132917b70 .functor AND 1, L_0x132917c00, L_0x132917d20, C4<1>, C4<1>;
L_0x132917e40 .functor XOR 1, L_0x132917ef0, L_0x132918000, C4<0>, C4<0>;
L_0x1329180e0 .functor AND 1, L_0x132918170, L_0x1329182d0, C4<1>, C4<1>;
L_0x132918430 .functor XOR 1, L_0x1329184d0, L_0x132918600, C4<0>, C4<0>;
L_0x1329186a0 .functor AND 1, L_0x132918710, L_0x132918850, C4<1>, C4<1>;
L_0x132918b00 .functor XOR 1, L_0x132918bb0, L_0x132918c90, C4<0>, C4<0>;
L_0x132918f10 .functor AND 1, L_0x132918fc0, L_0x132919230, C4<1>, C4<1>;
L_0x132918d70 .functor AND 1, L_0x1329193d0, L_0x138088058, C4<1>, C4<1>;
L_0x132919510 .functor OR 1, L_0x132918d70, L_0x132919580, C4<0>, C4<0>;
L_0x132919660 .functor AND 1, L_0x1329196d0, L_0x132919470, C4<1>, C4<1>;
L_0x1329198a0 .functor OR 1, L_0x132919660, L_0x132919950, C4<0>, C4<0>;
L_0x132919af0 .functor AND 1, L_0x132919b60, L_0x132919c80, C4<1>, C4<1>;
L_0x132919df0 .functor OR 1, L_0x132919af0, L_0x132919e60, C4<0>, C4<0>;
L_0x132919f80 .functor AND 1, L_0x13291a070, L_0x13291a1f0, C4<1>, C4<1>;
L_0x13291a440 .functor OR 1, L_0x132919f80, L_0x13291a150, C4<0>, C4<0>;
L_0x13291a530 .functor XOR 1, L_0x13291a630, L_0x138088058, C4<0>, C4<0>;
L_0x132919ff0 .functor XOR 1, L_0x13291a350, L_0x13291a810, C4<0>, C4<0>;
L_0x13291a710 .functor XOR 1, L_0x13291aaa0, L_0x13291ac40, C4<0>, C4<0>;
L_0x13291ae00 .functor XOR 1, L_0x13291ae70, L_0x13291ace0, C4<0>, C4<0>;
v0x131fe9160_0 .net "S", 3 0, L_0x13291a8f0; 1 drivers
v0x131fffa90_0 .net *"_ivl_0", 0 0, L_0x132916e90; 1 drivers
v0x131ffe390_0 .net *"_ivl_101", 0 0, L_0x13291ae70; 1 drivers
v0x131ffe1d0_0 .net *"_ivl_103", 0 0, L_0x13291ace0; 1 drivers
v0x131ffcb20_0 .net *"_ivl_11", 0 0, L_0x132917d20; 1 drivers
v0x131ffaa00_0 .net *"_ivl_12", 0 0, L_0x132917e40; 1 drivers
v0x131ffa810_0 .net *"_ivl_15", 0 0, L_0x132917ef0; 1 drivers
v0x131ff9280_0 .net *"_ivl_17", 0 0, L_0x132918000; 1 drivers
v0x131ff87e0_0 .net *"_ivl_18", 0 0, L_0x1329180e0; 1 drivers
v0x131ff70e0_0 .net *"_ivl_21", 0 0, L_0x132918170; 1 drivers
v0x131ff6f20_0 .net *"_ivl_23", 0 0, L_0x1329182d0; 1 drivers
v0x131ff4fc0_0 .net *"_ivl_24", 0 0, L_0x132918430; 1 drivers
v0x131f60260_0 .net *"_ivl_27", 0 0, L_0x1329184d0; 1 drivers
v0x131f60050_0 .net *"_ivl_29", 0 0, L_0x132918600; 1 drivers
v0x131f5fab0_0 .net *"_ivl_3", 0 0, L_0x1329179f0; 1 drivers
v0x131f54150_0 .net *"_ivl_30", 0 0, L_0x1329186a0; 1 drivers
v0x131f43a00_0 .net *"_ivl_33", 0 0, L_0x132918710; 1 drivers
v0x131f435e0_0 .net *"_ivl_35", 0 0, L_0x132918850; 1 drivers
v0x131f43250_0 .net *"_ivl_36", 0 0, L_0x132918b00; 1 drivers
v0x131f378f0_0 .net *"_ivl_40", 0 0, L_0x132918bb0; 1 drivers
v0x131f217e0_0 .net *"_ivl_42", 0 0, L_0x132918c90; 1 drivers
v0x131f21550_0 .net *"_ivl_43", 0 0, L_0x132918f10; 1 drivers
v0x131f27a30_0 .net *"_ivl_47", 0 0, L_0x132918fc0; 1 drivers
v0x131f26f10_0 .net *"_ivl_49", 0 0, L_0x132919230; 1 drivers
v0x131f220c0_0 .net *"_ivl_5", 0 0, L_0x132917a90; 1 drivers
v0x132899cb0_0 .net *"_ivl_51", 0 0, L_0x1329193d0; 1 drivers
v0x132899210_0 .net *"_ivl_52", 0 0, L_0x132919510; 1 drivers
v0x132897230_0 .net *"_ivl_55", 0 0, L_0x132919580; 1 drivers
v0x132896eb0_0 .net *"_ivl_57", 0 0, L_0x1329196d0; 1 drivers
v0x132896b70_0 .net *"_ivl_59", 0 0, L_0x132919470; 1 drivers
v0x132896110_0 .net *"_ivl_6", 0 0, L_0x132917b70; 1 drivers
v0x132895670_0 .net *"_ivl_60", 0 0, L_0x1329198a0; 1 drivers
v0x1328c0010_0 .net *"_ivl_63", 0 0, L_0x132919950; 1 drivers
v0x131f437f0_0 .net *"_ivl_65", 0 0, L_0x132919b60; 1 drivers
v0x1328bf8f0_0 .net *"_ivl_67", 0 0, L_0x132919c80; 1 drivers
v0x1328bf240_0 .net *"_ivl_68", 0 0, L_0x132919df0; 1 drivers
v0x1328be3d0_0 .net *"_ivl_71", 0 0, L_0x132919e60; 1 drivers
v0x1328bcda0_0 .net *"_ivl_73", 0 0, L_0x13291a070; 1 drivers
v0x1328bcb90_0 .net *"_ivl_75", 0 0, L_0x13291a1f0; 1 drivers
v0x1328bc4a0_0 .net *"_ivl_76", 0 0, L_0x13291a440; 1 drivers
v0x1328bbd80_0 .net *"_ivl_80", 0 0, L_0x13291a150; 1 drivers
v0x1328baf60_0 .net *"_ivl_81", 0 0, L_0x13291a530; 1 drivers
v0x1328b9260_0 .net *"_ivl_84", 0 0, L_0x13291a630; 1 drivers
v0x1328b9050_0 .net *"_ivl_85", 0 0, L_0x132919ff0; 1 drivers
v0x1328b8960_0 .net *"_ivl_88", 0 0, L_0x13291a350; 1 drivers
v0x1328b8240_0 .net *"_ivl_9", 0 0, L_0x132917c00; 1 drivers
v0x1328b7b90_0 .net *"_ivl_90", 0 0, L_0x13291a810; 1 drivers
v0x1328b7090_0 .net *"_ivl_91", 0 0, L_0x13291a710; 1 drivers
v0x1328b6d20_0 .net *"_ivl_94", 0 0, L_0x13291aaa0; 1 drivers
v0x1328b5750_0 .net *"_ivl_96", 0 0, L_0x13291ac40; 1 drivers
v0x1328b5540_0 .net *"_ivl_97", 0 0, L_0x13291ae00; 1 drivers
v0x1328b4e50_0 .net "and_a1", 0 0, L_0x132918d70; 1 drivers
v0x1328b4730_0 .net "and_a2", 0 0, L_0x132919660; 1 drivers
v0x1328b4080_0 .net "and_a3", 0 0, L_0x132919af0; 1 drivers
v0x1328b3580_0 .net "and_a4", 0 0, L_0x132919f80; 1 drivers
v0x1328b3210_0 .net "cin", 0 0, L_0x138088058; alias, 1 drivers
v0x1328b15c0_0 .net "cout", 3 0, L_0x132919d20; 1 drivers
v0x1328b0b80_0 .net "g", 3 0, L_0x132918df0; 1 drivers
v0x1328b0120_0 .net "p", 3 0, L_0x132918930; 1 drivers
v0x1328af680_0 .net "x", 3 0, L_0x13291b080; 1 drivers
v0x1328ad000_0 .net "y", 3 0, L_0x13291b120; 1 drivers
L_0x1329179f0 .part L_0x13291b080, 0, 1;
L_0x132917a90 .part L_0x13291b120, 0, 1;
L_0x132917c00 .part L_0x13291b080, 0, 1;
L_0x132917d20 .part L_0x13291b120, 0, 1;
L_0x132917ef0 .part L_0x13291b080, 1, 1;
L_0x132918000 .part L_0x13291b120, 1, 1;
L_0x132918170 .part L_0x13291b080, 1, 1;
L_0x1329182d0 .part L_0x13291b120, 1, 1;
L_0x1329184d0 .part L_0x13291b080, 2, 1;
L_0x132918600 .part L_0x13291b120, 2, 1;
L_0x132918710 .part L_0x13291b080, 2, 1;
L_0x132918850 .part L_0x13291b120, 2, 1;
L_0x132918930 .concat8 [ 1 1 1 1], L_0x132916e90, L_0x132917e40, L_0x132918430, L_0x132918b00;
L_0x132918bb0 .part L_0x13291b080, 3, 1;
L_0x132918c90 .part L_0x13291b120, 3, 1;
L_0x132918df0 .concat8 [ 1 1 1 1], L_0x132917b70, L_0x1329180e0, L_0x1329186a0, L_0x132918f10;
L_0x132918fc0 .part L_0x13291b080, 3, 1;
L_0x132919230 .part L_0x13291b120, 3, 1;
L_0x1329193d0 .part L_0x132918930, 0, 1;
L_0x132919580 .part L_0x132918df0, 0, 1;
L_0x1329196d0 .part L_0x132918930, 1, 1;
L_0x132919470 .part L_0x132919d20, 0, 1;
L_0x132919950 .part L_0x132918df0, 1, 1;
L_0x132919b60 .part L_0x132918930, 2, 1;
L_0x132919c80 .part L_0x132919d20, 1, 1;
L_0x132919e60 .part L_0x132918df0, 2, 1;
L_0x13291a070 .part L_0x132918930, 3, 1;
L_0x13291a1f0 .part L_0x132919d20, 2, 1;
L_0x132919d20 .concat8 [ 1 1 1 1], L_0x132919510, L_0x1329198a0, L_0x132919df0, L_0x13291a440;
L_0x13291a150 .part L_0x132918df0, 3, 1;
L_0x13291a630 .part L_0x132918930, 0, 1;
L_0x13291a350 .part L_0x132918930, 1, 1;
L_0x13291a810 .part L_0x132919d20, 0, 1;
L_0x13291aaa0 .part L_0x132918930, 2, 1;
L_0x13291ac40 .part L_0x132919d20, 1, 1;
L_0x13291a8f0 .concat8 [ 1 1 1 1], L_0x13291a530, L_0x132919ff0, L_0x13291a710, L_0x13291ae00;
L_0x13291ae70 .part L_0x132918930, 3, 1;
L_0x13291ace0 .part L_0x132919d20, 2, 1;
S_0x131ffcec0 .scope module, "cla_uut2" "cla4" 2 98, 2 59 0, S_0x131ffde20;
.timescale -9 -9;
.port_info 0 /INPUT 4 "x";
.port_info 1 /INPUT 4 "y";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 4 "S";
.port_info 4 /OUTPUT 4 "cout";
L_0x13291b220 .functor XOR 1, L_0x13291b290, L_0x13291b330, C4<0>, C4<0>;
L_0x13291b410 .functor AND 1, L_0x13291b4c0, L_0x13291b5e0, C4<1>, C4<1>;
L_0x13291b700 .functor XOR 1, L_0x13291b7b0, L_0x13291b8c0, C4<0>, C4<0>;
L_0x13291b9a0 .functor AND 1, L_0x13291ba30, L_0x13291bb90, C4<1>, C4<1>;
L_0x13291bcf0 .functor XOR 1, L_0x13291bd90, L_0x13291bec0, C4<0>, C4<0>;
L_0x13291bf60 .functor AND 1, L_0x13291bfd0, L_0x13291c110, C4<1>, C4<1>;
L_0x13291c3c0 .functor XOR 1, L_0x13291c470, L_0x13291c550, C4<0>, C4<0>;
L_0x13291c790 .functor AND 1, L_0x13291c840, L_0x13291cab0, C4<1>, C4<1>;
L_0x13291c630 .functor AND 1, L_0x13291cc50, L_0x13291eb50, C4<1>, C4<1>;
L_0x13291cd90 .functor OR 1, L_0x13291c630, L_0x13291ce00, C4<0>, C4<0>;
L_0x13291cee0 .functor AND 1, L_0x13291cfb0, L_0x13291ccf0, C4<1>, C4<1>;
L_0x13291d140 .functor OR 1, L_0x13291cee0, L_0x13291d1b0, C4<0>, C4<0>;
L_0x13291d350 .functor AND 1, L_0x13291d3e0, L_0x13291d540, C4<1>, C4<1>;
L_0x13291d6b0 .functor OR 1, L_0x13291d350, L_0x13291d290, C4<0>, C4<0>;
L_0x13291d7e0 .functor AND 1, L_0x13291d8d0, L_0x13291da90, C4<1>, C4<1>;
L_0x13291dce0 .functor OR 1, L_0x13291d7e0, L_0x13291d9f0, C4<0>, C4<0>;
L_0x13291ddd0 .functor XOR 1, L_0x13291df10, L_0x13291eb50, C4<0>, C4<0>;
L_0x13291d850 .functor XOR 1, L_0x13291dbf0, L_0x13291e0f0, C4<0>, C4<0>;
L_0x13291dff0 .functor XOR 1, L_0x13291e380, L_0x13291e520, C4<0>, C4<0>;
L_0x13291e6e0 .functor XOR 1, L_0x13291e790, L_0x13291e5c0, C4<0>, C4<0>;
v0x1328ac5a0_0 .net "S", 3 0, L_0x13291e1d0; 1 drivers
v0x1328abb00_0 .net *"_ivl_0", 0 0, L_0x13291b220; 1 drivers
v0x1328a9f00_0 .net *"_ivl_101", 0 0, L_0x13291e790; 1 drivers
v0x1328a94c0_0 .net *"_ivl_103", 0 0, L_0x13291e5c0; 1 drivers
v0x1328a8a60_0 .net *"_ivl_11", 0 0, L_0x13291b5e0; 1 drivers
v0x1328a7fc0_0 .net *"_ivl_12", 0 0, L_0x13291b700; 1 drivers
v0x1328a5940_0 .net *"_ivl_15", 0 0, L_0x13291b7b0; 1 drivers
v0x1328a4ee0_0 .net *"_ivl_17", 0 0, L_0x13291b8c0; 1 drivers
v0x1328a4440_0 .net *"_ivl_18", 0 0, L_0x13291b9a0; 1 drivers
v0x1328a2840_0 .net *"_ivl_21", 0 0, L_0x13291ba30; 1 drivers
v0x1328a1e00_0 .net *"_ivl_23", 0 0, L_0x13291bb90; 1 drivers
v0x1328a13a0_0 .net *"_ivl_24", 0 0, L_0x13291bcf0; 1 drivers
v0x1328a0900_0 .net *"_ivl_27", 0 0, L_0x13291bd90; 1 drivers
v0x13289e290_0 .net *"_ivl_29", 0 0, L_0x13291bec0; 1 drivers
v0x13289d830_0 .net *"_ivl_3", 0 0, L_0x13291b290; 1 drivers
v0x13289cd90_0 .net *"_ivl_30", 0 0, L_0x13291bf60; 1 drivers
v0x13289a710_0 .net *"_ivl_33", 0 0, L_0x13291bfd0; 1 drivers
v0x13288bd90_0 .net *"_ivl_35", 0 0, L_0x13291c110; 1 drivers
v0x13288bb00_0 .net *"_ivl_36", 0 0, L_0x13291c3c0; 1 drivers
v0x132889320_0 .net *"_ivl_40", 0 0, L_0x13291c470; 1 drivers
v0x1328887f0_0 .net *"_ivl_42", 0 0, L_0x13291c550; 1 drivers
v0x132883350_0 .net *"_ivl_43", 0 0, L_0x13291c790; 1 drivers
v0x132882d90_0 .net *"_ivl_47", 0 0, L_0x13291c840; 1 drivers
v0x13287d760_0 .net *"_ivl_49", 0 0, L_0x13291cab0; 1 drivers
v0x132850d10_0 .net *"_ivl_5", 0 0, L_0x13291b330; 1 drivers
v0x132850880_0 .net *"_ivl_51", 0 0, L_0x13291cc50; 1 drivers
v0x13284c5b0_0 .net *"_ivl_52", 0 0, L_0x13291cd90; 1 drivers
v0x132873470_0 .net *"_ivl_55", 0 0, L_0x13291ce00; 1 drivers
v0x13286e910_0 .net *"_ivl_57", 0 0, L_0x13291cfb0; 1 drivers
v0x132866e50_0 .net *"_ivl_59", 0 0, L_0x13291ccf0; 1 drivers
v0x132862a70_0 .net *"_ivl_6", 0 0, L_0x13291b410; 1 drivers
v0x13285e690_0 .net *"_ivl_60", 0 0, L_0x13291d140; 1 drivers
v0x132843cd0_0 .net *"_ivl_63", 0 0, L_0x13291d1b0; 1 drivers
v0x13288d060_0 .net *"_ivl_65", 0 0, L_0x13291d3e0; 1 drivers
v0x132843af0_0 .net *"_ivl_67", 0 0, L_0x13291d540; 1 drivers
v0x132841840_0 .net *"_ivl_68", 0 0, L_0x13291d6b0; 1 drivers
v0x132841660_0 .net *"_ivl_71", 0 0, L_0x13291d290; 1 drivers
v0x13283ed40_0 .net *"_ivl_73", 0 0, L_0x13291d8d0; 1 drivers
v0x132832f10_0 .net *"_ivl_75", 0 0, L_0x13291da90; 1 drivers
v0x132832d30_0 .net *"_ivl_76", 0 0, L_0x13291dce0; 1 drivers
v0x132830aa0_0 .net *"_ivl_80", 0 0, L_0x13291d9f0; 1 drivers
v0x1328308c0_0 .net *"_ivl_81", 0 0, L_0x13291ddd0; 1 drivers
v0x13282e610_0 .net *"_ivl_84", 0 0, L_0x13291df10; 1 drivers
v0x13282e430_0 .net *"_ivl_85", 0 0, L_0x13291d850; 1 drivers
v0x13282abe0_0 .net *"_ivl_88", 0 0, L_0x13291dbf0; 1 drivers
v0x13281e420_0 .net *"_ivl_9", 0 0, L_0x13291b4c0; 1 drivers
v0x132811fc0_0 .net *"_ivl_90", 0 0, L_0x13291e0f0; 1 drivers
v0x132810e50_0 .net *"_ivl_91", 0 0, L_0x13291dff0; 1 drivers
v0x13280fce0_0 .net *"_ivl_94", 0 0, L_0x13291e380; 1 drivers
v0x13280eb70_0 .net *"_ivl_96", 0 0, L_0x13291e520; 1 drivers
v0x13280da00_0 .net *"_ivl_97", 0 0, L_0x13291e6e0; 1 drivers
v0x13280c890_0 .net "and_a1", 0 0, L_0x13291c630; 1 drivers
v0x13280b7a0_0 .net "and_a2", 0 0, L_0x13291cee0; 1 drivers
v0x13280b0d0_0 .net "and_a3", 0 0, L_0x13291d350; 1 drivers
v0x132808db0_0 .net "and_a4", 0 0, L_0x13291d7e0; 1 drivers
v0x132808700_0 .net "cin", 0 0, L_0x13291eb50; 1 drivers
v0x1328078e0_0 .net "cout", 3 0, L_0x13291d5e0; 1 drivers
v0x132805f50_0 .net "g", 3 0, L_0x13291c6b0; 1 drivers
v0x132805650_0 .net "p", 3 0, L_0x13291c1f0; 1 drivers
v0x132804930_0 .net "x", 3 0, L_0x13291e9a0; 1 drivers
v0x131f60ab0_0 .net "y", 3 0, L_0x13291ea40; 1 drivers
L_0x13291b290 .part L_0x13291e9a0, 0, 1;
L_0x13291b330 .part L_0x13291ea40, 0, 1;
L_0x13291b4c0 .part L_0x13291e9a0, 0, 1;
L_0x13291b5e0 .part L_0x13291ea40, 0, 1;
L_0x13291b7b0 .part L_0x13291e9a0, 1, 1;
L_0x13291b8c0 .part L_0x13291ea40, 1, 1;
L_0x13291ba30 .part L_0x13291e9a0, 1, 1;
L_0x13291bb90 .part L_0x13291ea40, 1, 1;
L_0x13291bd90 .part L_0x13291e9a0, 2, 1;
L_0x13291bec0 .part L_0x13291ea40, 2, 1;
L_0x13291bfd0 .part L_0x13291e9a0, 2, 1;
L_0x13291c110 .part L_0x13291ea40, 2, 1;
L_0x13291c1f0 .concat8 [ 1 1 1 1], L_0x13291b220, L_0x13291b700, L_0x13291bcf0, L_0x13291c3c0;
L_0x13291c470 .part L_0x13291e9a0, 3, 1;
L_0x13291c550 .part L_0x13291ea40, 3, 1;
L_0x13291c6b0 .concat8 [ 1 1 1 1], L_0x13291b410, L_0x13291b9a0, L_0x13291bf60, L_0x13291c790;
L_0x13291c840 .part L_0x13291e9a0, 3, 1;
L_0x13291cab0 .part L_0x13291ea40, 3, 1;
L_0x13291cc50 .part L_0x13291c1f0, 0, 1;
L_0x13291ce00 .part L_0x13291c6b0, 0, 1;
L_0x13291cfb0 .part L_0x13291c1f0, 1, 1;
L_0x13291ccf0 .part L_0x13291d5e0, 0, 1;
L_0x13291d1b0 .part L_0x13291c6b0, 1, 1;
L_0x13291d3e0 .part L_0x13291c1f0, 2, 1;
L_0x13291d540 .part L_0x13291d5e0, 1, 1;
L_0x13291d290 .part L_0x13291c6b0, 2, 1;
L_0x13291d8d0 .part L_0x13291c1f0, 3, 1;
L_0x13291da90 .part L_0x13291d5e0, 2, 1;
L_0x13291d5e0 .concat8 [ 1 1 1 1], L_0x13291cd90, L_0x13291d140, L_0x13291d6b0, L_0x13291dce0;
L_0x13291d9f0 .part L_0x13291c6b0, 3, 1;
L_0x13291df10 .part L_0x13291c1f0, 0, 1;
L_0x13291dbf0 .part L_0x13291c1f0, 1, 1;
L_0x13291e0f0 .part L_0x13291d5e0, 0, 1;
L_0x13291e380 .part L_0x13291c1f0, 2, 1;
L_0x13291e520 .part L_0x13291d5e0, 1, 1;
L_0x13291e1d0 .concat8 [ 1 1 1 1], L_0x13291ddd0, L_0x13291d850, L_0x13291dff0, L_0x13291e6e0;
L_0x13291e790 .part L_0x13291c1f0, 3, 1;
L_0x13291e5c0 .part L_0x13291d5e0, 2, 1;
S_0x131ffa0b0 .scope module, "c2" "cla16" 4 12, 2 84 0, S_0x131fec560;
.timescale -9 -9;
.port_info 0 /INPUT 8 "x";
.port_info 1 /INPUT 8 "z";
.port_info 2 /INPUT 1 "control";
.port_info 3 /OUTPUT 8 "s";
L_0x1380880e8 .functor BUFT 1, C4<1>, C4<0>, C4<0>, C4<0>;
L_0x13291f2f0 .functor XOR 1, L_0x13291f3a0, L_0x1380880e8, C4<0>, C4<0>;
L_0x13291f480 .functor XOR 1, L_0x13291f510, L_0x1380880e8, C4<0>, C4<0>;
L_0x13291f630 .functor XOR 1, L_0x13291f760, L_0x1380880e8, C4<0>, C4<0>;
L_0x13291f800 .functor XOR 1, L_0x13291f8d0, L_0x1380880e8, C4<0>, C4<0>;
L_0x13291fa30 .functor XOR 1, L_0x13291faf0, L_0x1380880e8, C4<0>, C4<0>;
L_0x13291fc00 .functor XOR 1, L_0x13291fc70, L_0x1380880e8, C4<0>, C4<0>;
L_0x13291fd50 .functor XOR 1, L_0x13291ff20, L_0x1380880e8, C4<0>, C4<0>;
L_0x132920230 .functor XOR 1, L_0x1329202e0, L_0x1380880e8, C4<0>, C4<0>;
v0x1328bfcc0_0 .net *"_ivl_0", 0 0, L_0x13291f2f0; 1 drivers
v0x1328bc0c0_0 .net *"_ivl_11", 0 0, L_0x13291f760; 1 drivers
v0x1328bc150_0 .net *"_ivl_12", 0 0, L_0x13291f800; 1 drivers
v0x1328bb640_0 .net *"_ivl_15", 0 0, L_0x13291f8d0; 1 drivers
v0x1328bb6d0_0 .net *"_ivl_16", 0 0, L_0x13291fa30; 1 drivers
v0x1328bb2b0_0 .net *"_ivl_19", 0 0, L_0x13291faf0; 1 drivers
v0x1328bb340_0 .net *"_ivl_20", 0 0, L_0x13291fc00; 1 drivers
v0x1328bac20_0 .net *"_ivl_23", 0 0, L_0x13291fc70; 1 drivers
v0x1328bacb0_0 .net *"_ivl_24", 0 0, L_0x13291fd50; 1 drivers
v0x1328b8580_0 .net *"_ivl_27", 0 0, L_0x13291ff20; 1 drivers
v0x1328b8610_0 .net *"_ivl_28", 0 0, L_0x132920230; 1 drivers
v0x1328b4a70_0 .net *"_ivl_3", 0 0, L_0x13291f3a0; 1 drivers
v0x1328b4b00_0 .net *"_ivl_32", 0 0, L_0x1329202e0; 1 drivers
v0x1328b0ec0_0 .net *"_ivl_4", 0 0, L_0x13291f480; 1 drivers
v0x1328b0f50_0 .net *"_ivl_7", 0 0, L_0x13291f510; 1 drivers
v0x1328b1240_0 .net *"_ivl_8", 0 0, L_0x13291f630; 1 drivers
v0x1328b12d0_0 .net "control", 0 0, L_0x1380880e8; 1 drivers
v0x1328b04c0_0 .net "cout", 7 0, L_0x132927790; 1 drivers
v0x1328b0550_0 .net "s", 7 0, L_0x132927630; 1 drivers
v0x1328af9c0_0 .net "x", 7 0, L_0x132927a30; 1 drivers
v0x1328afa50_0 .net "y", 7 0, L_0x13291ffc0; 1 drivers
v0x1328ad6c0_0 .net "z", 7 0, L_0x132927ad0; 1 drivers
L_0x13291f3a0 .part L_0x132927ad0, 0, 1;
L_0x13291f510 .part L_0x132927ad0, 1, 1;
L_0x13291f760 .part L_0x132927ad0, 2, 1;
L_0x13291f8d0 .part L_0x132927ad0, 3, 1;
L_0x13291faf0 .part L_0x132927ad0, 4, 1;
L_0x13291fc70 .part L_0x132927ad0, 5, 1;
L_0x13291ff20 .part L_0x132927ad0, 6, 1;
LS_0x13291ffc0_0_0 .concat8 [ 1 1 1 1], L_0x13291f2f0, L_0x13291f480, L_0x13291f630, L_0x13291f800;
LS_0x13291ffc0_0_4 .concat8 [ 1 1 1 1], L_0x13291fa30, L_0x13291fc00, L_0x13291fd50, L_0x132920230;
L_0x13291ffc0 .concat8 [ 4 4 0 0], LS_0x13291ffc0_0_0, LS_0x13291ffc0_0_4;
L_0x1329202e0 .part L_0x132927ad0, 7, 1;
L_0x132923ac0 .part L_0x132927a30, 0, 4;
L_0x132923b60 .part L_0x13291ffc0, 0, 4;
L_0x1329273e0 .part L_0x132927a30, 4, 4;
L_0x132927480 .part L_0x13291ffc0, 4, 4;
L_0x132927590 .part L_0x132927790, 3, 1;
L_0x132927630 .concat8 [ 4 4 0 0], L_0x132923360, L_0x132926c10;
L_0x132927790 .concat8 [ 4 4 0 0], L_0x132922790, L_0x132926020;
S_0x131ff8ed0 .scope module, "cla_uut1" "cla4" 2 97, 2 59 0, S_0x131ffa0b0;
.timescale -9 -9;
.port_info 0 /INPUT 4 "x";
.port_info 1 /INPUT 4 "y";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 4 "S";
.port_info 4 /OUTPUT 4 "cout";
L_0x13291f9b0 .functor XOR 1, L_0x132920510, L_0x1329205b0, C4<0>, C4<0>;
L_0x132920690 .functor AND 1, L_0x132920740, L_0x132920860, C4<1>, C4<1>;
L_0x132920980 .functor XOR 1, L_0x132920a30, L_0x132920b40, C4<0>, C4<0>;
L_0x132920c20 .functor AND 1, L_0x132920c90, L_0x132920df0, C4<1>, C4<1>;
L_0x132920f50 .functor XOR 1, L_0x132920fc0, L_0x1329210f0, C4<0>, C4<0>;
L_0x132921190 .functor AND 1, L_0x132921200, L_0x132921340, C4<1>, C4<1>;
L_0x1329215b0 .functor XOR 1, L_0x132921660, L_0x132921700, C4<0>, C4<0>;
L_0x132921980 .functor AND 1, L_0x132921a30, L_0x132921ca0, C4<1>, C4<1>;
L_0x1329217e0 .functor AND 1, L_0x132921e40, L_0x1380880e8, C4<1>, C4<1>;
L_0x132921f80 .functor OR 1, L_0x1329217e0, L_0x132921ff0, C4<0>, C4<0>;
L_0x1329220d0 .functor AND 1, L_0x132922140, L_0x132921ee0, C4<1>, C4<1>;
L_0x132922310 .functor OR 1, L_0x1329220d0, L_0x1329223c0, C4<0>, C4<0>;
L_0x132922560 .functor AND 1, L_0x1329225d0, L_0x1329226f0, C4<1>, C4<1>;
L_0x132922860 .functor OR 1, L_0x132922560, L_0x1329228d0, C4<0>, C4<0>;
L_0x1329229f0 .functor AND 1, L_0x132922ae0, L_0x132922c60, C4<1>, C4<1>;
L_0x132922eb0 .functor OR 1, L_0x1329229f0, L_0x132922bc0, C4<0>, C4<0>;
L_0x132922fa0 .functor XOR 1, L_0x1329230a0, L_0x1380880e8, C4<0>, C4<0>;
L_0x132922a60 .functor XOR 1, L_0x132922dc0, L_0x132923280, C4<0>, C4<0>;
L_0x132923180 .functor XOR 1, L_0x132923510, L_0x1329236b0, C4<0>, C4<0>;
L_0x132923010 .functor XOR 1, L_0x1329238b0, L_0x132923750, C4<0>, C4<0>;
v0x131fa2180_0 .net "S", 3 0, L_0x132923360; 1 drivers
v0x131fa1cb0_0 .net *"_ivl_0", 0 0, L_0x13291f9b0; 1 drivers
v0x131fa1d40_0 .net *"_ivl_101", 0 0, L_0x1329238b0; 1 drivers
v0x131fd0440_0 .net *"_ivl_103", 0 0, L_0x132923750; 1 drivers
v0x131fd04d0_0 .net *"_ivl_11", 0 0, L_0x132920860; 1 drivers
v0x131fcbbd0_0 .net *"_ivl_12", 0 0, L_0x132920980; 1 drivers
v0x131fcbc60_0 .net *"_ivl_15", 0 0, L_0x132920a30; 1 drivers
v0x131fc7070_0 .net *"_ivl_17", 0 0, L_0x132920b40; 1 drivers
v0x131fc7100_0 .net *"_ivl_18", 0 0, L_0x132920c20; 1 drivers
v0x131fd4f80_0 .net *"_ivl_21", 0 0, L_0x132920c90; 1 drivers
v0x131fd5010_0 .net *"_ivl_23", 0 0, L_0x132920df0; 1 drivers
v0x131f65200_0 .net *"_ivl_24", 0 0, L_0x132920f50; 1 drivers
v0x131f65290_0 .net *"_ivl_27", 0 0, L_0x132920fc0; 1 drivers
v0x131f64dc0_0 .net *"_ivl_29", 0 0, L_0x1329210f0; 1 drivers
v0x131f64e50_0 .net *"_ivl_3", 0 0, L_0x132920510; 1 drivers
v0x131f93550_0 .net *"_ivl_30", 0 0, L_0x132921190; 1 drivers
v0x131f935e0_0 .net *"_ivl_33", 0 0, L_0x132921200; 1 drivers
v0x131f8a180_0 .net *"_ivl_35", 0 0, L_0x132921340; 1 drivers
v0x131f8a210_0 .net *"_ivl_36", 0 0, L_0x1329215b0; 1 drivers
v0x131f98090_0 .net *"_ivl_40", 0 0, L_0x132921660; 1 drivers
v0x131f98120_0 .net *"_ivl_42", 0 0, L_0x132921700; 1 drivers
v0x132882830_0 .net *"_ivl_43", 0 0, L_0x132921980; 1 drivers
v0x1328828c0_0 .net *"_ivl_47", 0 0, L_0x132921a30; 1 drivers
v0x132849c40_0 .net *"_ivl_49", 0 0, L_0x132921ca0; 1 drivers
v0x132849cd0_0 .net *"_ivl_5", 0 0, L_0x1329205b0; 1 drivers
v0x132849800_0 .net *"_ivl_51", 0 0, L_0x132921e40; 1 drivers
v0x132849890_0 .net *"_ivl_52", 0 0, L_0x132921f80; 1 drivers
v0x132877f90_0 .net *"_ivl_55", 0 0, L_0x132921ff0; 1 drivers
v0x132878020_0 .net *"_ivl_57", 0 0, L_0x132922140; 1 drivers
v0x132873720_0 .net *"_ivl_59", 0 0, L_0x132921ee0; 1 drivers
v0x1328737b0_0 .net *"_ivl_6", 0 0, L_0x132920690; 1 drivers
v0x13286ebc0_0 .net *"_ivl_60", 0 0, L_0x132922310; 1 drivers
v0x13286ec50_0 .net *"_ivl_63", 0 0, L_0x1329223c0; 1 drivers
v0x131f8ece0_0 .net *"_ivl_65", 0 0, L_0x1329225d0; 1 drivers
v0x13287cad0_0 .net *"_ivl_67", 0 0, L_0x1329226f0; 1 drivers
v0x13287cb60_0 .net *"_ivl_68", 0 0, L_0x132922860; 1 drivers
v0x13282a5b0_0 .net *"_ivl_71", 0 0, L_0x1329228d0; 1 drivers
v0x13282a640_0 .net *"_ivl_73", 0 0, L_0x132922ae0; 1 drivers
v0x13281db50_0 .net *"_ivl_75", 0 0, L_0x132922c60; 1 drivers
v0x13281dbe0_0 .net *"_ivl_76", 0 0, L_0x132922eb0; 1 drivers
v0x131f60570_0 .net *"_ivl_80", 0 0, L_0x132922bc0; 1 drivers
v0x131f60600_0 .net *"_ivl_81", 0 0, L_0x132922fa0; 1 drivers
v0x131f5fe40_0 .net *"_ivl_84", 0 0, L_0x1329230a0; 1 drivers
v0x131f5fed0_0 .net *"_ivl_85", 0 0, L_0x132922a60; 1 drivers
v0x131fd5e10_0 .net *"_ivl_88", 0 0, L_0x132922dc0; 1 drivers
v0x131fd5ea0_0 .net *"_ivl_9", 0 0, L_0x132920740; 1 drivers
v0x131fa4e70_0 .net *"_ivl_90", 0 0, L_0x132923280; 1 drivers
v0x131fa4f00_0 .net *"_ivl_91", 0 0, L_0x132923180; 1 drivers
v0x131f9fbf0_0 .net *"_ivl_94", 0 0, L_0x132923510; 1 drivers
v0x131f9fc80_0 .net *"_ivl_96", 0 0, L_0x1329236b0; 1 drivers
v0x131fd06f0_0 .net *"_ivl_97", 0 0, L_0x132923010; 1 drivers
v0x131fd0780_0 .net "and_a1", 0 0, L_0x1329217e0; 1 drivers
v0x131fb2740_0 .net "and_a2", 0 0, L_0x1329220d0; 1 drivers
v0x131fb27d0_0 .net "and_a3", 0 0, L_0x132922560; 1 drivers
v0x131fd5230_0 .net "and_a4", 0 0, L_0x1329229f0; 1 drivers
v0x131fd52c0_0 .net "cin", 0 0, L_0x1380880e8; alias, 1 drivers
v0x131f98f20_0 .net "cout", 3 0, L_0x132922790; 1 drivers
v0x131f98fb0_0 .net "g", 3 0, L_0x132921860; 1 drivers
v0x131f67f80_0 .net "p", 3 0, L_0x132921420; 1 drivers
v0x131f68010_0 .net "x", 3 0, L_0x132923ac0; 1 drivers
v0x131f62d00_0 .net "y", 3 0, L_0x132923b60; 1 drivers
L_0x132920510 .part L_0x132923ac0, 0, 1;
L_0x1329205b0 .part L_0x132923b60, 0, 1;
L_0x132920740 .part L_0x132923ac0, 0, 1;
L_0x132920860 .part L_0x132923b60, 0, 1;
L_0x132920a30 .part L_0x132923ac0, 1, 1;
L_0x132920b40 .part L_0x132923b60, 1, 1;
L_0x132920c90 .part L_0x132923ac0, 1, 1;
L_0x132920df0 .part L_0x132923b60, 1, 1;
L_0x132920fc0 .part L_0x132923ac0, 2, 1;
L_0x1329210f0 .part L_0x132923b60, 2, 1;
L_0x132921200 .part L_0x132923ac0, 2, 1;
L_0x132921340 .part L_0x132923b60, 2, 1;
L_0x132921420 .concat8 [ 1 1 1 1], L_0x13291f9b0, L_0x132920980, L_0x132920f50, L_0x1329215b0;
L_0x132921660 .part L_0x132923ac0, 3, 1;
L_0x132921700 .part L_0x132923b60, 3, 1;
L_0x132921860 .concat8 [ 1 1 1 1], L_0x132920690, L_0x132920c20, L_0x132921190, L_0x132921980;
L_0x132921a30 .part L_0x132923ac0, 3, 1;
L_0x132921ca0 .part L_0x132923b60, 3, 1;
L_0x132921e40 .part L_0x132921420, 0, 1;
L_0x132921ff0 .part L_0x132921860, 0, 1;
L_0x132922140 .part L_0x132921420, 1, 1;
L_0x132921ee0 .part L_0x132922790, 0, 1;
L_0x1329223c0 .part L_0x132921860, 1, 1;
L_0x1329225d0 .part L_0x132921420, 2, 1;
L_0x1329226f0 .part L_0x132922790, 1, 1;
L_0x1329228d0 .part L_0x132921860, 2, 1;
L_0x132922ae0 .part L_0x132921420, 3, 1;
L_0x132922c60 .part L_0x132922790, 2, 1;
L_0x132922790 .concat8 [ 1 1 1 1], L_0x132921f80, L_0x132922310, L_0x132922860, L_0x132922eb0;
L_0x132922bc0 .part L_0x132921860, 3, 1;
L_0x1329230a0 .part L_0x132921420, 0, 1;
L_0x132922dc0 .part L_0x132921420, 1, 1;
L_0x132923280 .part L_0x132922790, 0, 1;
L_0x132923510 .part L_0x132921420, 2, 1;
L_0x1329236b0 .part L_0x132922790, 1, 1;
L_0x132923360 .concat8 [ 1 1 1 1], L_0x132922fa0, L_0x132922a60, L_0x132923180, L_0x132923010;
L_0x1329238b0 .part L_0x132921420, 3, 1;
L_0x132923750 .part L_0x132922790, 2, 1;
S_0x131ff6b70 .scope module, "cla_uut2" "cla4" 2 98, 2 59 0, S_0x131ffa0b0;
.timescale -9 -9;
.port_info 0 /INPUT 4 "x";
.port_info 1 /INPUT 4 "y";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 4 "S";
.port_info 4 /OUTPUT 4 "cout";
L_0x132923c60 .functor XOR 1, L_0x132923cd0, L_0x132923d70, C4<0>, C4<0>;
L_0x132923e50 .functor AND 1, L_0x132923ee0, L_0x132924000, C4<1>, C4<1>;
L_0x132924120 .functor XOR 1, L_0x1329241d0, L_0x1329242e0, C4<0>, C4<0>;
L_0x1329243c0 .functor AND 1, L_0x132924450, L_0x1329245b0, C4<1>, C4<1>;
L_0x132924710 .functor XOR 1, L_0x1329247b0, L_0x1329248e0, C4<0>, C4<0>;
L_0x132924980 .functor AND 1, L_0x1329249f0, L_0x132924b30, C4<1>, C4<1>;
L_0x132924de0 .functor XOR 1, L_0x132924e90, L_0x132924f70, C4<0>, C4<0>;
L_0x1329251f0 .functor AND 1, L_0x1329252a0, L_0x132925510, C4<1>, C4<1>;
L_0x132925050 .functor AND 1, L_0x1329256b0, L_0x132927590, C4<1>, C4<1>;
L_0x1329257f0 .functor OR 1, L_0x132925050, L_0x132925860, C4<0>, C4<0>;
L_0x132925940 .functor AND 1, L_0x132925a10, L_0x132925750, C4<1>, C4<1>;
L_0x132925ba0 .functor OR 1, L_0x132925940, L_0x132925c10, C4<0>, C4<0>;
L_0x132925db0 .functor AND 1, L_0x132925e20, L_0x132925f80, C4<1>, C4<1>;
L_0x1329260f0 .functor OR 1, L_0x132925db0, L_0x132925cf0, C4<0>, C4<0>;
L_0x132926220 .functor AND 1, L_0x132926310, L_0x1329264d0, C4<1>, C4<1>;
L_0x132926720 .functor OR 1, L_0x132926220, L_0x132926430, C4<0>, C4<0>;
L_0x132926810 .functor XOR 1, L_0x132926950, L_0x132927590, C4<0>, C4<0>;
L_0x132926290 .functor XOR 1, L_0x132926630, L_0x132926b30, C4<0>, C4<0>;
L_0x132926a30 .functor XOR 1, L_0x132926dc0, L_0x132926f60, C4<0>, C4<0>;
L_0x132927120 .functor XOR 1, L_0x1329271d0, L_0x132927000, C4<0>, C4<0>;
v0x131f62d90_0 .net "S", 3 0, L_0x132926c10; 1 drivers
v0x131f93800_0 .net *"_ivl_0", 0 0, L_0x132923c60; 1 drivers
v0x131f93890_0 .net *"_ivl_101", 0 0, L_0x1329271d0; 1 drivers
v0x131f75850_0 .net *"_ivl_103", 0 0, L_0x132927000; 1 drivers
v0x131f758e0_0 .net *"_ivl_11", 0 0, L_0x132924000; 1 drivers
v0x131f98340_0 .net *"_ivl_12", 0 0, L_0x132924120; 1 drivers
v0x131f983d0_0 .net *"_ivl_15", 0 0, L_0x1329241d0; 1 drivers
v0x131ff3020_0 .net *"_ivl_17", 0 0, L_0x1329242e0; 1 drivers
v0x131ff30b0_0 .net *"_ivl_18", 0 0, L_0x1329243c0; 1 drivers
v0x131ff27e0_0 .net *"_ivl_21", 0 0, L_0x132924450; 1 drivers
v0x131ff2870_0 .net *"_ivl_23", 0 0, L_0x1329245b0; 1 drivers
v0x131ff2570_0 .net *"_ivl_24", 0 0, L_0x132924710; 1 drivers
v0x131ff2600_0 .net *"_ivl_27", 0 0, L_0x1329247b0; 1 drivers
v0x131ff2300_0 .net *"_ivl_29", 0 0, L_0x1329248e0; 1 drivers
v0x131ff2390_0 .net *"_ivl_3", 0 0, L_0x132923cd0; 1 drivers
v0x131ff1bb0_0 .net *"_ivl_30", 0 0, L_0x132924980; 1 drivers
v0x131ff1c40_0 .net *"_ivl_33", 0 0, L_0x1329249f0; 1 drivers
v0x131fef090_0 .net *"_ivl_35", 0 0, L_0x132924b30; 1 drivers
v0x131fef120_0 .net *"_ivl_36", 0 0, L_0x132924de0; 1 drivers
v0x131feee00_0 .net *"_ivl_40", 0 0, L_0x132924e90; 1 drivers
v0x131feee90_0 .net *"_ivl_42", 0 0, L_0x132924f70; 1 drivers
v0x131feeb90_0 .net *"_ivl_43", 0 0, L_0x1329251f0; 1 drivers
v0x131feec20_0 .net *"_ivl_47", 0 0, L_0x1329252a0; 1 drivers
v0x131fee8f0_0 .net *"_ivl_49", 0 0, L_0x132925510; 1 drivers
v0x131fee980_0 .net *"_ivl_5", 0 0, L_0x132923d70; 1 drivers
v0x131fec230_0 .net *"_ivl_51", 0 0, L_0x1329256b0; 1 drivers
v0x131fec2c0_0 .net *"_ivl_52", 0 0, L_0x1329257f0; 1 drivers
v0x131feb9e0_0 .net *"_ivl_55", 0 0, L_0x132925860; 1 drivers
v0x131feba70_0 .net *"_ivl_57", 0 0, L_0x132925a10; 1 drivers
v0x131feb740_0 .net *"_ivl_59", 0 0, L_0x132925750; 1 drivers
v0x131feb7d0_0 .net *"_ivl_6", 0 0, L_0x132923e50; 1 drivers
v0x131feb4b0_0 .net *"_ivl_60", 0 0, L_0x132925ba0; 1 drivers
v0x131feb540_0 .net *"_ivl_63", 0 0, L_0x132925c10; 1 drivers
v0x131fef8d0_0 .net *"_ivl_65", 0 0, L_0x132925e20; 1 drivers
v0x131feb1f0_0 .net *"_ivl_67", 0 0, L_0x132925f80; 1 drivers
v0x131feb280_0 .net *"_ivl_68", 0 0, L_0x1329260f0; 1 drivers
v0x131feaf80_0 .net *"_ivl_71", 0 0, L_0x132925cf0; 1 drivers
v0x131feb010_0 .net *"_ivl_73", 0 0, L_0x132926310; 1 drivers
v0x131ffdaf0_0 .net *"_ivl_75", 0 0, L_0x1329264d0; 1 drivers
v0x131ffdb80_0 .net *"_ivl_76", 0 0, L_0x132926720; 1 drivers
v0x131ffc7a0_0 .net *"_ivl_80", 0 0, L_0x132926430; 1 drivers
v0x131ffc830_0 .net *"_ivl_81", 0 0, L_0x132926810; 1 drivers
v0x131ffa470_0 .net *"_ivl_84", 0 0, L_0x132926950; 1 drivers
v0x131ffa500_0 .net *"_ivl_85", 0 0, L_0x132926290; 1 drivers
v0x131ff9940_0 .net *"_ivl_88", 0 0, L_0x132926630; 1 drivers
v0x131ff99d0_0 .net *"_ivl_9", 0 0, L_0x132923ee0; 1 drivers
v0x131ff6840_0 .net *"_ivl_90", 0 0, L_0x132926b30; 1 drivers
v0x131ff68d0_0 .net *"_ivl_91", 0 0, L_0x132926a30; 1 drivers
v0x131ff6020_0 .net *"_ivl_94", 0 0, L_0x132926dc0; 1 drivers
v0x131ff60b0_0 .net *"_ivl_96", 0 0, L_0x132926f60; 1 drivers
v0x131ff5db0_0 .net *"_ivl_97", 0 0, L_0x132927120; 1 drivers
v0x131ff5e40_0 .net "and_a1", 0 0, L_0x132925050; 1 drivers
v0x132899550_0 .net "and_a2", 0 0, L_0x132925940; 1 drivers
v0x1328995e0_0 .net "and_a3", 0 0, L_0x132925db0; 1 drivers
v0x1328967f0_0 .net "and_a4", 0 0, L_0x132926220; 1 drivers
v0x132896880_0 .net "cin", 0 0, L_0x132927590; 1 drivers
v0x1328964b0_0 .net "cout", 3 0, L_0x132926020; 1 drivers
v0x132896540_0 .net "g", 3 0, L_0x1329250d0; 1 drivers
v0x1328959b0_0 .net "p", 3 0, L_0x132924c10; 1 drivers
v0x132895a40_0 .net "x", 3 0, L_0x1329273e0; 1 drivers
v0x1328bfc30_0 .net "y", 3 0, L_0x132927480; 1 drivers
L_0x132923cd0 .part L_0x1329273e0, 0, 1;
L_0x132923d70 .part L_0x132927480, 0, 1;
L_0x132923ee0 .part L_0x1329273e0, 0, 1;
L_0x132924000 .part L_0x132927480, 0, 1;
L_0x1329241d0 .part L_0x1329273e0, 1, 1;
L_0x1329242e0 .part L_0x132927480, 1, 1;
L_0x132924450 .part L_0x1329273e0, 1, 1;
L_0x1329245b0 .part L_0x132927480, 1, 1;
L_0x1329247b0 .part L_0x1329273e0, 2, 1;
L_0x1329248e0 .part L_0x132927480, 2, 1;
L_0x1329249f0 .part L_0x1329273e0, 2, 1;
L_0x132924b30 .part L_0x132927480, 2, 1;
L_0x132924c10 .concat8 [ 1 1 1 1], L_0x132923c60, L_0x132924120, L_0x132924710, L_0x132924de0;
L_0x132924e90 .part L_0x1329273e0, 3, 1;
L_0x132924f70 .part L_0x132927480, 3, 1;
L_0x1329250d0 .concat8 [ 1 1 1 1], L_0x132923e50, L_0x1329243c0, L_0x132924980, L_0x1329251f0;
L_0x1329252a0 .part L_0x1329273e0, 3, 1;
L_0x132925510 .part L_0x132927480, 3, 1;
L_0x1329256b0 .part L_0x132924c10, 0, 1;
L_0x132925860 .part L_0x1329250d0, 0, 1;
L_0x132925a10 .part L_0x132924c10, 1, 1;
L_0x132925750 .part L_0x132926020, 0, 1;
L_0x132925c10 .part L_0x1329250d0, 1, 1;
L_0x132925e20 .part L_0x132924c10, 2, 1;
L_0x132925f80 .part L_0x132926020, 1, 1;
L_0x132925cf0 .part L_0x1329250d0, 2, 1;
L_0x132926310 .part L_0x132924c10, 3, 1;