-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsim_fully_assoc_random
More file actions
executable file
·16798 lines (16798 loc) · 910 KB
/
sim_fully_assoc_random
File metadata and controls
executable file
·16798 lines (16798 loc) · 910 KB
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
#! /usr/local/Cellar/icarus-verilog/12.0/bin/vvp
:ivl_version "12.0 (stable)";
:ivl_delay_selection "TYPICAL";
:vpi_time_precision - 12;
:vpi_module "/usr/local/Cellar/icarus-verilog/12.0/lib/ivl/system.vpi";
:vpi_module "/usr/local/Cellar/icarus-verilog/12.0/lib/ivl/vhdl_sys.vpi";
:vpi_module "/usr/local/Cellar/icarus-verilog/12.0/lib/ivl/vhdl_textio.vpi";
:vpi_module "/usr/local/Cellar/icarus-verilog/12.0/lib/ivl/v2005_math.vpi";
:vpi_module "/usr/local/Cellar/icarus-verilog/12.0/lib/ivl/va_math.vpi";
:vpi_module "/usr/local/Cellar/icarus-verilog/12.0/lib/ivl/v2009.vpi";
S_0x7fba07fa3660 .scope package, "$unit" "$unit" 2 1;
.timescale 0 0;
S_0x7fba07fa22b0 .scope module, "addN" "addN" 3 30;
.timescale 0 0;
.port_info 0 /INPUT 32 "a";
.port_info 1 /INPUT 32 "b";
.port_info 2 /OUTPUT 32 "y";
P_0x7fba07fa2a00 .param/l "W" 0 3 30, +C4<00000000000000000000000000100000>;
o0x7fba07e46e38 .functor BUFZ 32, C4<zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz>; HiZ drive
v0x7fba0a828760_0 .net "a", 31 0, o0x7fba07e46e38; 0 drivers
o0x7fba07e46e68 .functor BUFZ 32, C4<zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz>; HiZ drive
v0x7fba0a827190_0 .net "b", 31 0, o0x7fba07e46e68; 0 drivers
v0x7fba0a825c40_0 .net "cout_unused", 0 0, L_0x7fba0aa68a70; 1 drivers
v0x7fba0a8246f0_0 .net "y", 31 0, L_0x7fba0aa61650; 1 drivers
S_0x7fba07fc6320 .scope module, "u_add" "add_rc" 3 36, 4 72 0, S_0x7fba07fa22b0;
.timescale 0 0;
.port_info 0 /INPUT 32 "a";
.port_info 1 /INPUT 32 "b";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 32 "sum";
.port_info 4 /OUTPUT 1 "cout";
P_0x7fba07ffe950 .param/l "N" 0 4 72, +C4<00000000000000000000000000100000>;
L_0x7fba07ea4008 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
L_0x7fba0aa689c0 .functor BUFZ 1, L_0x7fba07ea4008, C4<0>, C4<0>, C4<0>;
v0x7fba0a8567d0_0 .net *"_ivl_229", 0 0, L_0x7fba0aa689c0; 1 drivers
v0x7fba0a8565b0_0 .net "a", 31 0, o0x7fba07e46e38; alias, 0 drivers
v0x7fba0a82f330_0 .net "b", 31 0, o0x7fba07e46e68; alias, 0 drivers
v0x7fba0a82dda0_0 .net "c", 32 0, L_0x7fba0aa677f0; 1 drivers
v0x7fba0a82c810_0 .net "cin", 0 0, L_0x7fba07ea4008; 1 drivers
v0x7fba0a82b280_0 .net "cout", 0 0, L_0x7fba0aa68a70; alias, 1 drivers
v0x7fba0a829cf0_0 .net "sum", 31 0, L_0x7fba0aa61650; alias, 1 drivers
L_0x7fba0aa5ae10 .part o0x7fba07e46e38, 0, 1;
L_0x7fba0aa5aef0 .part o0x7fba07e46e68, 0, 1;
L_0x7fba0aa5afd0 .part L_0x7fba0aa677f0, 0, 1;
L_0x7fba0aa5b4e0 .part o0x7fba07e46e38, 1, 1;
L_0x7fba0aa5b580 .part o0x7fba07e46e68, 1, 1;
L_0x7fba0aa5b650 .part L_0x7fba0aa677f0, 1, 1;
L_0x7fba0aa5bbd0 .part o0x7fba07e46e38, 2, 1;
L_0x7fba0aa5bcf0 .part o0x7fba07e46e68, 2, 1;
L_0x7fba0aa5be10 .part L_0x7fba0aa677f0, 2, 1;
L_0x7fba0aa5c2e0 .part o0x7fba07e46e38, 3, 1;
L_0x7fba0aa5c380 .part o0x7fba07e46e68, 3, 1;
L_0x7fba0aa5c480 .part L_0x7fba0aa677f0, 3, 1;
L_0x7fba0aa5c950 .part o0x7fba07e46e38, 4, 1;
L_0x7fba0aa5ca60 .part o0x7fba07e46e68, 4, 1;
L_0x7fba0aa5cb00 .part L_0x7fba0aa677f0, 4, 1;
L_0x7fba0aa5cff0 .part o0x7fba07e46e38, 5, 1;
L_0x7fba0aa5d090 .part o0x7fba07e46e68, 5, 1;
L_0x7fba0aa5d1c0 .part L_0x7fba0aa677f0, 5, 1;
L_0x7fba0aa5d640 .part o0x7fba07e46e38, 6, 1;
L_0x7fba0aa5d880 .part o0x7fba07e46e68, 6, 1;
L_0x7fba0aa5da20 .part L_0x7fba0aa677f0, 6, 1;
L_0x7fba0aa5ddb0 .part o0x7fba07e46e38, 7, 1;
L_0x7fba0aa5de50 .part o0x7fba07e46e68, 7, 1;
L_0x7fba0aa5dfb0 .part L_0x7fba0aa677f0, 7, 1;
L_0x7fba0aa5e4d0 .part o0x7fba07e46e38, 8, 1;
L_0x7fba0aa5e640 .part o0x7fba07e46e68, 8, 1;
L_0x7fba0aa5e6e0 .part L_0x7fba0aa677f0, 8, 1;
L_0x7fba0aa5eb10 .part o0x7fba07e46e38, 9, 1;
L_0x7fba0aa5ebb0 .part o0x7fba07e46e68, 9, 1;
L_0x7fba0aa5ed40 .part L_0x7fba0aa677f0, 9, 1;
L_0x7fba0aa5f160 .part o0x7fba07e46e38, 10, 1;
L_0x7fba0aa5f300 .part o0x7fba07e46e68, 10, 1;
L_0x7fba0aa5f3a0 .part L_0x7fba0aa677f0, 10, 1;
L_0x7fba0aa5f810 .part o0x7fba07e46e38, 11, 1;
L_0x7fba0aa5f8b0 .part o0x7fba07e46e68, 11, 1;
L_0x7fba0aa5f440 .part L_0x7fba0aa677f0, 11, 1;
L_0x7fba0aa5fe30 .part o0x7fba07e46e38, 12, 1;
L_0x7fba0aa5f950 .part o0x7fba07e46e68, 12, 1;
L_0x7fba0aa60000 .part L_0x7fba0aa677f0, 12, 1;
L_0x7fba0aa60490 .part o0x7fba07e46e38, 13, 1;
L_0x7fba0aa60530 .part o0x7fba07e46e68, 13, 1;
L_0x7fba0aa600a0 .part L_0x7fba0aa677f0, 13, 1;
L_0x7fba0aa60b30 .part o0x7fba07e46e38, 14, 1;
L_0x7fba0aa5d6e0 .part o0x7fba07e46e68, 14, 1;
L_0x7fba0aa5d920 .part L_0x7fba0aa677f0, 14, 1;
L_0x7fba0aa61390 .part o0x7fba07e46e38, 15, 1;
L_0x7fba0aa61430 .part o0x7fba07e46e68, 15, 1;
L_0x7fba0aa61130 .part L_0x7fba0aa677f0, 15, 1;
L_0x7fba0aa61ae0 .part o0x7fba07e46e38, 16, 1;
L_0x7fba0aa614d0 .part o0x7fba07e46e68, 16, 1;
L_0x7fba0aa61570 .part L_0x7fba0aa677f0, 16, 1;
L_0x7fba0aa62110 .part o0x7fba07e46e38, 17, 1;
L_0x7fba0aa621b0 .part o0x7fba07e46e68, 17, 1;
L_0x7fba0aa61b80 .part L_0x7fba0aa677f0, 17, 1;
L_0x7fba0aa62780 .part o0x7fba07e46e38, 18, 1;
L_0x7fba0aa62250 .part o0x7fba07e46e68, 18, 1;
L_0x7fba0aa622f0 .part L_0x7fba0aa677f0, 18, 1;
L_0x7fba0aa62db0 .part o0x7fba07e46e38, 19, 1;
L_0x7fba0aa62e50 .part o0x7fba07e46e68, 19, 1;
L_0x7fba0aa62820 .part L_0x7fba0aa677f0, 19, 1;
L_0x7fba0aa63420 .part o0x7fba07e46e38, 20, 1;
L_0x7fba0aa62ef0 .part o0x7fba07e46e68, 20, 1;
L_0x7fba0aa62f90 .part L_0x7fba0aa677f0, 20, 1;
L_0x7fba0aa63ab0 .part o0x7fba07e46e38, 21, 1;
L_0x7fba0aa63b50 .part o0x7fba07e46e68, 21, 1;
L_0x7fba0aa634c0 .part L_0x7fba0aa677f0, 21, 1;
L_0x7fba0aa640d0 .part o0x7fba07e46e38, 22, 1;
L_0x7fba0aa63bf0 .part o0x7fba07e46e68, 22, 1;
L_0x7fba0aa63c90 .part L_0x7fba0aa677f0, 22, 1;
L_0x7fba0aa64740 .part o0x7fba07e46e38, 23, 1;
L_0x7fba0aa647e0 .part o0x7fba07e46e68, 23, 1;
L_0x7fba0aa64170 .part L_0x7fba0aa677f0, 23, 1;
L_0x7fba0aa64dc0 .part o0x7fba07e46e38, 24, 1;
L_0x7fba0aa64880 .part o0x7fba07e46e68, 24, 1;
L_0x7fba0aa64920 .part L_0x7fba0aa677f0, 24, 1;
L_0x7fba0aa653f0 .part o0x7fba07e46e38, 25, 1;
L_0x7fba0aa65490 .part o0x7fba07e46e68, 25, 1;
L_0x7fba0aa64e60 .part L_0x7fba0aa677f0, 25, 1;
L_0x7fba0aa65a50 .part o0x7fba07e46e38, 26, 1;
L_0x7fba0aa65530 .part o0x7fba07e46e68, 26, 1;
L_0x7fba0aa655d0 .part L_0x7fba0aa677f0, 26, 1;
L_0x7fba0aa660e0 .part o0x7fba07e46e38, 27, 1;
L_0x7fba0aa66180 .part o0x7fba07e46e68, 27, 1;
L_0x7fba0aa65af0 .part L_0x7fba0aa677f0, 27, 1;
L_0x7fba0aa66700 .part o0x7fba07e46e38, 28, 1;
L_0x7fba0aa66220 .part o0x7fba07e46e68, 28, 1;
L_0x7fba0aa662c0 .part L_0x7fba0aa677f0, 28, 1;
L_0x7fba0aa66d70 .part o0x7fba07e46e38, 29, 1;
L_0x7fba0aa66e10 .part o0x7fba07e46e68, 29, 1;
L_0x7fba0aa667a0 .part L_0x7fba0aa677f0, 29, 1;
L_0x7fba0aa673c0 .part o0x7fba07e46e38, 30, 1;
L_0x7fba0aa60bd0 .part o0x7fba07e46e68, 30, 1;
L_0x7fba0aa60c70 .part L_0x7fba0aa677f0, 30, 1;
L_0x7fba0aa67050 .part o0x7fba07e46e38, 31, 1;
L_0x7fba0aa67750 .part o0x7fba07e46e68, 31, 1;
L_0x7fba0aa67460 .part L_0x7fba0aa677f0, 31, 1;
LS_0x7fba0aa61650_0_0 .concat8 [ 1 1 1 1], L_0x7fba0aa5aa00, L_0x7fba0aa5b0e0, L_0x7fba0aa5b7a0, L_0x7fba0aa5bf70;
LS_0x7fba0aa61650_0_4 .concat8 [ 1 1 1 1], L_0x7fba0aa5c610, L_0x7fba0aa5cc20, L_0x7fba0aa5cba0, L_0x7fba0aa5d130;
LS_0x7fba0aa61650_0_8 .concat8 [ 1 1 1 1], L_0x7fba0aa5c520, L_0x7fba0aa5e570, L_0x7fba0aa5e7a0, L_0x7fba0aa5ec50;
LS_0x7fba0aa61650_0_12 .concat8 [ 1 1 1 1], L_0x7fba0aa5fa70, L_0x7fba0aa5fef0, L_0x7fba0aa60740, L_0x7fba0aa60640;
LS_0x7fba0aa61650_0_16 .concat8 [ 1 1 1 1], L_0x7fba0aa5e050, L_0x7fba0aa61d90, L_0x7fba0aa61cb0, L_0x7fba0aa629f0;
LS_0x7fba0aa61650_0_20 .concat8 [ 1 1 1 1], L_0x7fba0aa62970, L_0x7fba0aa636c0, L_0x7fba0aa635d0, L_0x7fba0aa643a0;
LS_0x7fba0aa61650_0_24 .concat8 [ 1 1 1 1], L_0x7fba0aa642a0, L_0x7fba0aa64a30, L_0x7fba0aa64fb0, L_0x7fba0aa65700;
LS_0x7fba0aa61650_0_28 .concat8 [ 1 1 1 1], L_0x7fba0aa65c00, L_0x7fba0aa66410, L_0x7fba0aa668d0, L_0x7fba0aa60f30;
LS_0x7fba0aa61650_1_0 .concat8 [ 4 4 4 4], LS_0x7fba0aa61650_0_0, LS_0x7fba0aa61650_0_4, LS_0x7fba0aa61650_0_8, LS_0x7fba0aa61650_0_12;
LS_0x7fba0aa61650_1_4 .concat8 [ 4 4 4 4], LS_0x7fba0aa61650_0_16, LS_0x7fba0aa61650_0_20, LS_0x7fba0aa61650_0_24, LS_0x7fba0aa61650_0_28;
L_0x7fba0aa61650 .concat8 [ 16 16 0 0], LS_0x7fba0aa61650_1_0, LS_0x7fba0aa61650_1_4;
LS_0x7fba0aa677f0_0_0 .concat8 [ 1 1 1 1], L_0x7fba0aa689c0, L_0x7fba0aa5acd0, L_0x7fba0aa5b3d0, L_0x7fba0aa5ba90;
LS_0x7fba0aa677f0_0_4 .concat8 [ 1 1 1 1], L_0x7fba0aa5c1c0, L_0x7fba0aa5c840, L_0x7fba0aa5ced0, L_0x7fba0aa5d530;
LS_0x7fba0aa677f0_0_8 .concat8 [ 1 1 1 1], L_0x7fba0aa5dca0, L_0x7fba0aa5e390, L_0x7fba0aa5ea20, L_0x7fba0aa5f050;
LS_0x7fba0aa677f0_0_12 .concat8 [ 1 1 1 1], L_0x7fba0aa5f6f0, L_0x7fba0aa5fd40, L_0x7fba0aa60380, L_0x7fba0aa609f0;
LS_0x7fba0aa677f0_0_16 .concat8 [ 1 1 1 1], L_0x7fba0aa612a0, L_0x7fba0aa619f0, L_0x7fba0aa62020, L_0x7fba0aa62640;
LS_0x7fba0aa677f0_0_20 .concat8 [ 1 1 1 1], L_0x7fba0aa62ca0, L_0x7fba0aa63330, L_0x7fba0aa63970, L_0x7fba0aa63fc0;
LS_0x7fba0aa677f0_0_24 .concat8 [ 1 1 1 1], L_0x7fba0aa64650, L_0x7fba0aa64c80, L_0x7fba0aa652e0, L_0x7fba0aa65960;
LS_0x7fba0aa677f0_0_28 .concat8 [ 1 1 1 1], L_0x7fba0aa65fa0, L_0x7fba0aa665f0, L_0x7fba0aa66c80, L_0x7fba0aa672b0;
LS_0x7fba0aa677f0_0_32 .concat8 [ 1 0 0 0], L_0x7fba0aa66f60;
LS_0x7fba0aa677f0_1_0 .concat8 [ 4 4 4 4], LS_0x7fba0aa677f0_0_0, LS_0x7fba0aa677f0_0_4, LS_0x7fba0aa677f0_0_8, LS_0x7fba0aa677f0_0_12;
LS_0x7fba0aa677f0_1_4 .concat8 [ 4 4 4 4], LS_0x7fba0aa677f0_0_16, LS_0x7fba0aa677f0_0_20, LS_0x7fba0aa677f0_0_24, LS_0x7fba0aa677f0_0_28;
LS_0x7fba0aa677f0_1_8 .concat8 [ 1 0 0 0], LS_0x7fba0aa677f0_0_32;
L_0x7fba0aa677f0 .concat8 [ 16 16 1 0], LS_0x7fba0aa677f0_1_0, LS_0x7fba0aa677f0_1_4, LS_0x7fba0aa677f0_1_8;
L_0x7fba0aa68a70 .part L_0x7fba0aa677f0, 32, 1;
S_0x7fba07fbd7b0 .scope generate, "G[0]" "G[0]" 4 80, 4 80 0, S_0x7fba07fc6320;
.timescale 0 0;
P_0x7fba07fd81d0 .param/l "i" 1 4 80, +C4<00>;
S_0x7fba07ffde40 .scope module, "u_fa" "fa1" 4 81, 4 62 0, S_0x7fba07fbd7b0;
.timescale 0 0;
.port_info 0 /INPUT 1 "a";
.port_info 1 /INPUT 1 "b";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "sum";
.port_info 4 /OUTPUT 1 "cout";
L_0x7fba0aa5a930 .functor XOR 1, L_0x7fba0aa5ae10, L_0x7fba0aa5aef0, C4<0>, C4<0>;
L_0x7fba0aa5aa00 .functor XOR 1, L_0x7fba0aa5a930, L_0x7fba0aa5afd0, C4<0>, C4<0>;
L_0x7fba0aa5aaf0 .functor AND 1, L_0x7fba0aa5ae10, L_0x7fba0aa5aef0, C4<1>, C4<1>;
L_0x7fba0aa5ac20 .functor AND 1, L_0x7fba0aa5a930, L_0x7fba0aa5afd0, C4<1>, C4<1>;
L_0x7fba0aa5acd0 .functor OR 1, L_0x7fba0aa5aaf0, L_0x7fba0aa5ac20, C4<0>, C4<0>;
v0x7fba07fa5fd0_0 .net "a", 0 0, L_0x7fba0aa5ae10; 1 drivers
v0x7fba0a8e67f0_0 .net "ab", 0 0, L_0x7fba0aa5aaf0; 1 drivers
v0x7fba0a871ee0_0 .net "axb", 0 0, L_0x7fba0aa5a930; 1 drivers
v0x7fba0a886230_0 .net "axb_cin", 0 0, L_0x7fba0aa5ac20; 1 drivers
v0x7fba0a9221a0_0 .net "b", 0 0, L_0x7fba0aa5aef0; 1 drivers
v0x7fba0a90cc30_0 .net "cin", 0 0, L_0x7fba0aa5afd0; 1 drivers
v0x7fba0a90b050_0 .net "cout", 0 0, L_0x7fba0aa5acd0; 1 drivers
v0x7fba0a909470_0 .net "sum", 0 0, L_0x7fba0aa5aa00; 1 drivers
S_0x7fba07ffc8d0 .scope generate, "G[1]" "G[1]" 4 80, 4 80 0, S_0x7fba07fc6320;
.timescale 0 0;
P_0x7fba07fc6c70 .param/l "i" 1 4 80, +C4<01>;
S_0x7fba07fff060 .scope module, "u_fa" "fa1" 4 81, 4 62 0, S_0x7fba07ffc8d0;
.timescale 0 0;
.port_info 0 /INPUT 1 "a";
.port_info 1 /INPUT 1 "b";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "sum";
.port_info 4 /OUTPUT 1 "cout";
L_0x7fba0aa5b070 .functor XOR 1, L_0x7fba0aa5b4e0, L_0x7fba0aa5b580, C4<0>, C4<0>;
L_0x7fba0aa5b0e0 .functor XOR 1, L_0x7fba0aa5b070, L_0x7fba0aa5b650, C4<0>, C4<0>;
L_0x7fba0aa5b1d0 .functor AND 1, L_0x7fba0aa5b4e0, L_0x7fba0aa5b580, C4<1>, C4<1>;
L_0x7fba0aa5b300 .functor AND 1, L_0x7fba0aa5b070, L_0x7fba0aa5b650, C4<1>, C4<1>;
L_0x7fba0aa5b3d0 .functor OR 1, L_0x7fba0aa5b1d0, L_0x7fba0aa5b300, C4<0>, C4<0>;
v0x7fba07feff00_0 .net "a", 0 0, L_0x7fba0aa5b4e0; 1 drivers
v0x7fba0a8db8e0_0 .net "ab", 0 0, L_0x7fba0aa5b1d0; 1 drivers
v0x7fba0a8dcc70_0 .net "axb", 0 0, L_0x7fba0aa5b070; 1 drivers
v0x7fba0a8dcfa0_0 .net "axb_cin", 0 0, L_0x7fba0aa5b300; 1 drivers
v0x7fba0a8ddd00_0 .net "b", 0 0, L_0x7fba0aa5b580; 1 drivers
v0x7fba0a8ddf70_0 .net "cin", 0 0, L_0x7fba0aa5b650; 1 drivers
v0x7fba0a8de480_0 .net "cout", 0 0, L_0x7fba0aa5b3d0; 1 drivers
v0x7fba0a8deb70_0 .net "sum", 0 0, L_0x7fba0aa5b0e0; 1 drivers
S_0x7fba07ffdaf0 .scope generate, "G[2]" "G[2]" 4 80, 4 80 0, S_0x7fba07fc6320;
.timescale 0 0;
P_0x7fba07fe83d0 .param/l "i" 1 4 80, +C4<010>;
S_0x7fba07ffc580 .scope module, "u_fa" "fa1" 4 81, 4 62 0, S_0x7fba07ffdaf0;
.timescale 0 0;
.port_info 0 /INPUT 1 "a";
.port_info 1 /INPUT 1 "b";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "sum";
.port_info 4 /OUTPUT 1 "cout";
L_0x7fba0aa5b730 .functor XOR 1, L_0x7fba0aa5bbd0, L_0x7fba0aa5bcf0, C4<0>, C4<0>;
L_0x7fba0aa5b7a0 .functor XOR 1, L_0x7fba0aa5b730, L_0x7fba0aa5be10, C4<0>, C4<0>;
L_0x7fba0aa5b890 .functor AND 1, L_0x7fba0aa5bbd0, L_0x7fba0aa5bcf0, C4<1>, C4<1>;
L_0x7fba0aa5b9c0 .functor AND 1, L_0x7fba0aa5b730, L_0x7fba0aa5be10, C4<1>, C4<1>;
L_0x7fba0aa5ba90 .functor OR 1, L_0x7fba0aa5b890, L_0x7fba0aa5b9c0, C4<0>, C4<0>;
v0x7fba0a8def50_0 .net "a", 0 0, L_0x7fba0aa5bbd0; 1 drivers
v0x7fba0a8df460_0 .net "ab", 0 0, L_0x7fba0aa5b890; 1 drivers
v0x7fba0a8e0040_0 .net "axb", 0 0, L_0x7fba0aa5b730; 1 drivers
v0x7fba0a8e05b0_0 .net "axb_cin", 0 0, L_0x7fba0aa5b9c0; 1 drivers
v0x7fba0a8cbc40_0 .net "b", 0 0, L_0x7fba0aa5bcf0; 1 drivers
v0x7fba0a8da7e0_0 .net "cin", 0 0, L_0x7fba0aa5be10; 1 drivers
v0x7fba0a8cd1d0_0 .net "cout", 0 0, L_0x7fba0aa5ba90; 1 drivers
v0x7fba0a8bba80_0 .net "sum", 0 0, L_0x7fba0aa5b7a0; 1 drivers
S_0x7fba07ffb010 .scope generate, "G[3]" "G[3]" 4 80, 4 80 0, S_0x7fba07fc6320;
.timescale 0 0;
P_0x7fba07fe02d0 .param/l "i" 1 4 80, +C4<011>;
S_0x7fba07ff9d30 .scope module, "u_fa" "fa1" 4 81, 4 62 0, S_0x7fba07ffb010;
.timescale 0 0;
.port_info 0 /INPUT 1 "a";
.port_info 1 /INPUT 1 "b";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "sum";
.port_info 4 /OUTPUT 1 "cout";
L_0x7fba0aa5bf00 .functor XOR 1, L_0x7fba0aa5c2e0, L_0x7fba0aa5c380, C4<0>, C4<0>;
L_0x7fba0aa5bf70 .functor XOR 1, L_0x7fba0aa5bf00, L_0x7fba0aa5c480, C4<0>, C4<0>;
L_0x7fba0aa5bfe0 .functor AND 1, L_0x7fba0aa5c2e0, L_0x7fba0aa5c380, C4<1>, C4<1>;
L_0x7fba0aa5c110 .functor AND 1, L_0x7fba0aa5bf00, L_0x7fba0aa5c480, C4<1>, C4<1>;
L_0x7fba0aa5c1c0 .functor OR 1, L_0x7fba0aa5bfe0, L_0x7fba0aa5c110, C4<0>, C4<0>;
v0x7fba0a846560_0 .net "a", 0 0, L_0x7fba0aa5c2e0; 1 drivers
v0x7fba07fa16b0_0 .net "ab", 0 0, L_0x7fba0aa5bfe0; 1 drivers
v0x7fba07fa1390_0 .net "axb", 0 0, L_0x7fba0aa5bf00; 1 drivers
v0x7fba07fa0300_0 .net "axb_cin", 0 0, L_0x7fba0aa5c110; 1 drivers
v0x7fba07f9ef50_0 .net "b", 0 0, L_0x7fba0aa5c380; 1 drivers
v0x7fba07f9c7f0_0 .net "cin", 0 0, L_0x7fba0aa5c480; 1 drivers
v0x7fba07f9c4d0_0 .net "cout", 0 0, L_0x7fba0aa5c1c0; 1 drivers
v0x7fba07f9a090_0 .net "sum", 0 0, L_0x7fba0aa5bf70; 1 drivers
S_0x7fba07ff87e0 .scope generate, "G[4]" "G[4]" 4 80, 4 80 0, S_0x7fba07fc6320;
.timescale 0 0;
P_0x7fba07fa45e0 .param/l "i" 1 4 80, +C4<0100>;
S_0x7fba07ff7290 .scope module, "u_fa" "fa1" 4 81, 4 62 0, S_0x7fba07ff87e0;
.timescale 0 0;
.port_info 0 /INPUT 1 "a";
.port_info 1 /INPUT 1 "b";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "sum";
.port_info 4 /OUTPUT 1 "cout";
L_0x7fba0aa5c5a0 .functor XOR 1, L_0x7fba0aa5c950, L_0x7fba0aa5ca60, C4<0>, C4<0>;
L_0x7fba0aa5c610 .functor XOR 1, L_0x7fba0aa5c5a0, L_0x7fba0aa5cb00, C4<0>, C4<0>;
L_0x7fba0aa5c680 .functor AND 1, L_0x7fba0aa5c950, L_0x7fba0aa5ca60, C4<1>, C4<1>;
L_0x7fba0aa5c790 .functor AND 1, L_0x7fba0aa5c5a0, L_0x7fba0aa5cb00, C4<1>, C4<1>;
L_0x7fba0aa5c840 .functor OR 1, L_0x7fba0aa5c680, L_0x7fba0aa5c790, C4<0>, C4<0>;
v0x7fba07f9acf0_0 .net "a", 0 0, L_0x7fba0aa5c950; 1 drivers
v0x7fba07fc5450_0 .net "ab", 0 0, L_0x7fba0aa5c680; 1 drivers
v0x7fba07fc4f00_0 .net "axb", 0 0, L_0x7fba0aa5c5a0; 1 drivers
v0x7fba07fff7a0_0 .net "axb_cin", 0 0, L_0x7fba0aa5c790; 1 drivers
v0x7fba07ffe230_0 .net "b", 0 0, L_0x7fba0aa5ca60; 1 drivers
v0x7fba07ffdfd0_0 .net "cin", 0 0, L_0x7fba0aa5cb00; 1 drivers
v0x7fba07ffca60_0 .net "cout", 0 0, L_0x7fba0aa5c840; 1 drivers
v0x7fba07ffb4f0_0 .net "sum", 0 0, L_0x7fba0aa5c610; 1 drivers
S_0x7fba07fd2270 .scope generate, "G[5]" "G[5]" 4 80, 4 80 0, S_0x7fba07fc6320;
.timescale 0 0;
P_0x7fba07fbb630 .param/l "i" 1 4 80, +C4<0101>;
S_0x7fba07fd4bc0 .scope module, "u_fa" "fa1" 4 81, 4 62 0, S_0x7fba07fd2270;
.timescale 0 0;
.port_info 0 /INPUT 1 "a";
.port_info 1 /INPUT 1 "b";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "sum";
.port_info 4 /OUTPUT 1 "cout";
L_0x7fba0aa5c9f0 .functor XOR 1, L_0x7fba0aa5cff0, L_0x7fba0aa5d090, C4<0>, C4<0>;
L_0x7fba0aa5cc20 .functor XOR 1, L_0x7fba0aa5c9f0, L_0x7fba0aa5d1c0, C4<0>, C4<0>;
L_0x7fba0aa5ccf0 .functor AND 1, L_0x7fba0aa5cff0, L_0x7fba0aa5d090, C4<1>, C4<1>;
L_0x7fba0aa5ce20 .functor AND 1, L_0x7fba0aa5c9f0, L_0x7fba0aa5d1c0, C4<1>, C4<1>;
L_0x7fba0aa5ced0 .functor OR 1, L_0x7fba0aa5ccf0, L_0x7fba0aa5ce20, C4<0>, C4<0>;
v0x7fba07ff9f20_0 .net "a", 0 0, L_0x7fba0aa5cff0; 1 drivers
v0x7fba07ff89d0_0 .net "ab", 0 0, L_0x7fba0aa5ccf0; 1 drivers
v0x7fba07ff7480_0 .net "axb", 0 0, L_0x7fba0aa5c9f0; 1 drivers
v0x7fba07ff61a0_0 .net "axb_cin", 0 0, L_0x7fba0aa5ce20; 1 drivers
v0x7fba07ff5f40_0 .net "b", 0 0, L_0x7fba0aa5d090; 1 drivers
v0x7fba07ff4d40_0 .net "cin", 0 0, L_0x7fba0aa5d1c0; 1 drivers
v0x7fba07ff49f0_0 .net "cout", 0 0, L_0x7fba0aa5ced0; 1 drivers
v0x7fba07ff37f0_0 .net "sum", 0 0, L_0x7fba0aa5cc20; 1 drivers
S_0x7fba07fd76c0 .scope generate, "G[6]" "G[6]" 4 80, 4 80 0, S_0x7fba07fc6320;
.timescale 0 0;
P_0x7fba07fb3530 .param/l "i" 1 4 80, +C4<0110>;
S_0x7fba07fd8c30 .scope module, "u_fa" "fa1" 4 81, 4 62 0, S_0x7fba07fd76c0;
.timescale 0 0;
.port_info 0 /INPUT 1 "a";
.port_info 1 /INPUT 1 "b";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "sum";
.port_info 4 /OUTPUT 1 "cout";
L_0x7fba0aa5d260 .functor XOR 1, L_0x7fba0aa5d640, L_0x7fba0aa5d880, C4<0>, C4<0>;
L_0x7fba0aa5cba0 .functor XOR 1, L_0x7fba0aa5d260, L_0x7fba0aa5da20, C4<0>, C4<0>;
L_0x7fba0aa5d330 .functor AND 1, L_0x7fba0aa5d640, L_0x7fba0aa5d880, C4<1>, C4<1>;
L_0x7fba0aa5d460 .functor AND 1, L_0x7fba0aa5d260, L_0x7fba0aa5da20, C4<1>, C4<1>;
L_0x7fba0aa5d530 .functor OR 1, L_0x7fba0aa5d330, L_0x7fba0aa5d460, C4<0>, C4<0>;
v0x7fba07ff34a0_0 .net "a", 0 0, L_0x7fba0aa5d640; 1 drivers
v0x7fba07ff6ce0_0 .net "ab", 0 0, L_0x7fba0aa5d330; 1 drivers
v0x7fba07ff5db0_0 .net "axb", 0 0, L_0x7fba0aa5d260; 1 drivers
v0x7fba07ff5770_0 .net "axb_cin", 0 0, L_0x7fba0aa5d460; 1 drivers
v0x7fba07ff4860_0 .net "b", 0 0, L_0x7fba0aa5d880; 1 drivers
v0x7fba07ff4220_0 .net "cin", 0 0, L_0x7fba0aa5da20; 1 drivers
v0x7fba07ff3310_0 .net "cout", 0 0, L_0x7fba0aa5d530; 1 drivers
v0x7fba07ff2cd0_0 .net "sum", 0 0, L_0x7fba0aa5cba0; 1 drivers
S_0x7fba07fdf7c0 .scope generate, "G[7]" "G[7]" 4 80, 4 80 0, S_0x7fba07fc6320;
.timescale 0 0;
P_0x7fba07fab420 .param/l "i" 1 4 80, +C4<0111>;
S_0x7fba07fea3c0 .scope module, "u_fa" "fa1" 4 81, 4 62 0, S_0x7fba07fdf7c0;
.timescale 0 0;
.port_info 0 /INPUT 1 "a";
.port_info 1 /INPUT 1 "b";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "sum";
.port_info 4 /OUTPUT 1 "cout";
L_0x7fba0aa5bd90 .functor XOR 1, L_0x7fba0aa5ddb0, L_0x7fba0aa5de50, C4<0>, C4<0>;
L_0x7fba0aa5d130 .functor XOR 1, L_0x7fba0aa5bd90, L_0x7fba0aa5dfb0, C4<0>, C4<0>;
L_0x7fba0aa5d7e0 .functor AND 1, L_0x7fba0aa5ddb0, L_0x7fba0aa5de50, C4<1>, C4<1>;
L_0x7fba0aa5dbf0 .functor AND 1, L_0x7fba0aa5bd90, L_0x7fba0aa5dfb0, C4<1>, C4<1>;
L_0x7fba0aa5dca0 .functor OR 1, L_0x7fba0aa5d7e0, L_0x7fba0aa5dbf0, C4<0>, C4<0>;
v0x7fba07fd8dc0_0 .net "a", 0 0, L_0x7fba0aa5ddb0; 1 drivers
v0x7fba07fd62c0_0 .net "ab", 0 0, L_0x7fba0aa5d7e0; 1 drivers
v0x7fba07fd4d50_0 .net "axb", 0 0, L_0x7fba0aa5bd90; 1 drivers
v0x7fba07fd0ca0_0 .net "axb_cin", 0 0, L_0x7fba0aa5dbf0; 1 drivers
v0x7fba07fcf750_0 .net "b", 0 0, L_0x7fba0aa5de50; 1 drivers
v0x7fba07fce200_0 .net "cin", 0 0, L_0x7fba0aa5dfb0; 1 drivers
v0x7fba07fccf20_0 .net "cout", 0 0, L_0x7fba0aa5dca0; 1 drivers
v0x7fba07fcccc0_0 .net "sum", 0 0, L_0x7fba0aa5d130; 1 drivers
S_0x7fba07fe6330 .scope generate, "G[8]" "G[8]" 4 80, 4 80 0, S_0x7fba07fc6320;
.timescale 0 0;
P_0x7fba07faa220 .param/l "i" 1 4 80, +C4<01000>;
S_0x7fba07ff0f30 .scope module, "u_fa" "fa1" 4 81, 4 62 0, S_0x7fba07fe6330;
.timescale 0 0;
.port_info 0 /INPUT 1 "a";
.port_info 1 /INPUT 1 "b";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "sum";
.port_info 4 /OUTPUT 1 "cout";
L_0x7fba0aa5dac0 .functor XOR 1, L_0x7fba0aa5e4d0, L_0x7fba0aa5e640, C4<0>, C4<0>;
L_0x7fba0aa5c520 .functor XOR 1, L_0x7fba0aa5dac0, L_0x7fba0aa5e6e0, C4<0>, C4<0>;
L_0x7fba0aa5e1b0 .functor AND 1, L_0x7fba0aa5e4d0, L_0x7fba0aa5e640, C4<1>, C4<1>;
L_0x7fba0aa5e2e0 .functor AND 1, L_0x7fba0aa5dac0, L_0x7fba0aa5e6e0, C4<1>, C4<1>;
L_0x7fba0aa5e390 .functor OR 1, L_0x7fba0aa5e1b0, L_0x7fba0aa5e2e0, C4<0>, C4<0>;
v0x7fba07fc7760_0 .net "a", 0 0, L_0x7fba0aa5e4d0; 1 drivers
v0x7fba07fcbac0_0 .net "ab", 0 0, L_0x7fba0aa5e1b0; 1 drivers
v0x7fba07fcb770_0 .net "axb", 0 0, L_0x7fba0aa5dac0; 1 drivers
v0x7fba07ff10c0_0 .net "axb_cin", 0 0, L_0x7fba0aa5e2e0; 1 drivers
v0x7fba07fefdb0_0 .net "b", 0 0, L_0x7fba0aa5e640; 1 drivers
v0x7fba07fefb50_0 .net "cin", 0 0, L_0x7fba0aa5e6e0; 1 drivers
v0x7fba07fee5c0_0 .net "cout", 0 0, L_0x7fba0aa5e390; 1 drivers
v0x7fba07fed050_0 .net "sum", 0 0, L_0x7fba0aa5c520; 1 drivers
S_0x7fba07fef9c0 .scope generate, "G[9]" "G[9]" 4 80, 4 80 0, S_0x7fba07fc6320;
.timescale 0 0;
P_0x7fba0a8bbb10 .param/l "i" 1 4 80, +C4<01001>;
S_0x7fba07fc8800 .scope module, "u_fa" "fa1" 4 81, 4 62 0, S_0x7fba07fef9c0;
.timescale 0 0;
.port_info 0 /INPUT 1 "a";
.port_info 1 /INPUT 1 "b";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "sum";
.port_info 4 /OUTPUT 1 "cout";
L_0x7fba0aa5def0 .functor XOR 1, L_0x7fba0aa5eb10, L_0x7fba0aa5ebb0, C4<0>, C4<0>;
L_0x7fba0aa5e570 .functor XOR 1, L_0x7fba0aa5def0, L_0x7fba0aa5ed40, C4<0>, C4<0>;
L_0x7fba0aa5e860 .functor AND 1, L_0x7fba0aa5eb10, L_0x7fba0aa5ebb0, C4<1>, C4<1>;
L_0x7fba0aa5e970 .functor AND 1, L_0x7fba0aa5def0, L_0x7fba0aa5ed40, C4<1>, C4<1>;
L_0x7fba0aa5ea20 .functor OR 1, L_0x7fba0aa5e860, L_0x7fba0aa5e970, C4<0>, C4<0>;
v0x7fba07febac0_0 .net "a", 0 0, L_0x7fba0aa5eb10; 1 drivers
v0x7fba07fca570_0 .net "ab", 0 0, L_0x7fba0aa5e860; 1 drivers
v0x7fba07fea550_0 .net "axb", 0 0, L_0x7fba0aa5def0; 1 drivers
v0x7fba07fe8fc0_0 .net "axb_cin", 0 0, L_0x7fba0aa5e970; 1 drivers
v0x7fba07fe7a50_0 .net "b", 0 0, L_0x7fba0aa5ebb0; 1 drivers
v0x7fba07fca220_0 .net "cin", 0 0, L_0x7fba0aa5ed40; 1 drivers
v0x7fba07fe64c0_0 .net "cout", 0 0, L_0x7fba0aa5ea20; 1 drivers
v0x7fba07fe39c0_0 .net "sum", 0 0, L_0x7fba0aa5e570; 1 drivers
S_0x7fba07ff0be0 .scope generate, "G[10]" "G[10]" 4 80, 4 80 0, S_0x7fba07fc6320;
.timescale 0 0;
P_0x7fba0a8f8d10 .param/l "i" 1 4 80, +C4<01010>;
S_0x7fba07fef670 .scope module, "u_fa" "fa1" 4 81, 4 62 0, S_0x7fba07ff0be0;
.timescale 0 0;
.port_info 0 /INPUT 1 "a";
.port_info 1 /INPUT 1 "b";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "sum";
.port_info 4 /OUTPUT 1 "cout";
L_0x7fba0aa5ede0 .functor XOR 1, L_0x7fba0aa5f160, L_0x7fba0aa5f300, C4<0>, C4<0>;
L_0x7fba0aa5e7a0 .functor XOR 1, L_0x7fba0aa5ede0, L_0x7fba0aa5f3a0, C4<0>, C4<0>;
L_0x7fba0aa5ee90 .functor AND 1, L_0x7fba0aa5f160, L_0x7fba0aa5f300, C4<1>, C4<1>;
L_0x7fba0aa5efa0 .functor AND 1, L_0x7fba0aa5ede0, L_0x7fba0aa5f3a0, C4<1>, C4<1>;
L_0x7fba0aa5f050 .functor OR 1, L_0x7fba0aa5ee90, L_0x7fba0aa5efa0, C4<0>, C4<0>;
v0x7fba07fe2450_0 .net "a", 0 0, L_0x7fba0aa5f160; 1 drivers
v0x7fba07fe0ec0_0 .net "ab", 0 0, L_0x7fba0aa5ee90; 1 drivers
v0x7fba07fdf950_0 .net "axb", 0 0, L_0x7fba0aa5ede0; 1 drivers
v0x7fba07fc9010_0 .net "axb_cin", 0 0, L_0x7fba0aa5efa0; 1 drivers
v0x7fba07fcda60_0 .net "b", 0 0, L_0x7fba0aa5f300; 1 drivers
v0x7fba07fccb30_0 .net "cin", 0 0, L_0x7fba0aa5f3a0; 1 drivers
v0x7fba07fcc4f0_0 .net "cout", 0 0, L_0x7fba0aa5f050; 1 drivers
v0x7fba07fcb5e0_0 .net "sum", 0 0, L_0x7fba0aa5e7a0; 1 drivers
S_0x7fba07fee0e0 .scope generate, "G[11]" "G[11]" 4 80, 4 80 0, S_0x7fba07fc6320;
.timescale 0 0;
P_0x7fba0a8efed0 .param/l "i" 1 4 80, +C4<01011>;
S_0x7fba07fecb70 .scope module, "u_fa" "fa1" 4 81, 4 62 0, S_0x7fba07fee0e0;
.timescale 0 0;
.port_info 0 /INPUT 1 "a";
.port_info 1 /INPUT 1 "b";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "sum";
.port_info 4 /OUTPUT 1 "cout";
L_0x7fba0aa5f200 .functor XOR 1, L_0x7fba0aa5f810, L_0x7fba0aa5f8b0, C4<0>, C4<0>;
L_0x7fba0aa5ec50 .functor XOR 1, L_0x7fba0aa5f200, L_0x7fba0aa5f440, C4<0>, C4<0>;
L_0x7fba0aa5f550 .functor AND 1, L_0x7fba0aa5f810, L_0x7fba0aa5f8b0, C4<1>, C4<1>;
L_0x7fba0aa5f640 .functor AND 1, L_0x7fba0aa5f200, L_0x7fba0aa5f440, C4<1>, C4<1>;
L_0x7fba0aa5f6f0 .functor OR 1, L_0x7fba0aa5f550, L_0x7fba0aa5f640, C4<0>, C4<0>;
v0x7fba07fcafa0_0 .net "a", 0 0, L_0x7fba0aa5f810; 1 drivers
v0x7fba07fca090_0 .net "ab", 0 0, L_0x7fba0aa5f550; 1 drivers
v0x7fba07fc9a50_0 .net "axb", 0 0, L_0x7fba0aa5f200; 1 drivers
v0x7fba07fc8520_0 .net "axb_cin", 0 0, L_0x7fba0aa5f640; 1 drivers
v0x7fba07fc6f50_0 .net "b", 0 0, L_0x7fba0aa5f8b0; 1 drivers
v0x7fba07fc49b0_0 .net "cin", 0 0, L_0x7fba0aa5f440; 1 drivers
v0x7fba07fac830_0 .net "cout", 0 0, L_0x7fba0aa5f6f0; 1 drivers
v0x7fba07fac510_0 .net "sum", 0 0, L_0x7fba0aa5ec50; 1 drivers
S_0x7fba07feb5e0 .scope generate, "G[12]" "G[12]" 4 80, 4 80 0, S_0x7fba07fc6320;
.timescale 0 0;
P_0x7fba0a8f6cc0 .param/l "i" 1 4 80, +C4<01100>;
S_0x7fba07fea070 .scope module, "u_fa" "fa1" 4 81, 4 62 0, S_0x7fba07feb5e0;
.timescale 0 0;
.port_info 0 /INPUT 1 "a";
.port_info 1 /INPUT 1 "b";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "sum";
.port_info 4 /OUTPUT 1 "cout";
L_0x7fba0aa5f4e0 .functor XOR 1, L_0x7fba0aa5fe30, L_0x7fba0aa5f950, C4<0>, C4<0>;
L_0x7fba0aa5fa70 .functor XOR 1, L_0x7fba0aa5f4e0, L_0x7fba0aa60000, C4<0>, C4<0>;
L_0x7fba0aa5fb60 .functor AND 1, L_0x7fba0aa5fe30, L_0x7fba0aa5f950, C4<1>, C4<1>;
L_0x7fba0aa5fc90 .functor AND 1, L_0x7fba0aa5f4e0, L_0x7fba0aa60000, C4<1>, C4<1>;
L_0x7fba0aa5fd40 .functor OR 1, L_0x7fba0aa5fb60, L_0x7fba0aa5fc90, C4<0>, C4<0>;
v0x7fba07fab480_0 .net "a", 0 0, L_0x7fba0aa5fe30; 1 drivers
v0x7fba07fab160_0 .net "ab", 0 0, L_0x7fba0aa5fb60; 1 drivers
v0x7fba07faa0d0_0 .net "axb", 0 0, L_0x7fba0aa5f4e0; 1 drivers
v0x7fba07fa9db0_0 .net "axb_cin", 0 0, L_0x7fba0aa5fc90; 1 drivers
v0x7fba07fa8d20_0 .net "b", 0 0, L_0x7fba0aa5f950; 1 drivers
v0x7fba07fa8a00_0 .net "cin", 0 0, L_0x7fba0aa60000; 1 drivers
v0x7fba07fa7970_0 .net "cout", 0 0, L_0x7fba0aa5fd40; 1 drivers
v0x7fba07fa7650_0 .net "sum", 0 0, L_0x7fba0aa5fa70; 1 drivers
S_0x7fba07fe8ae0 .scope generate, "G[13]" "G[13]" 4 80, 4 80 0, S_0x7fba07fc6320;
.timescale 0 0;
P_0x7fba0a8f7510 .param/l "i" 1 4 80, +C4<01101>;
S_0x7fba07fe7570 .scope module, "u_fa" "fa1" 4 81, 4 62 0, S_0x7fba07fe8ae0;
.timescale 0 0;
.port_info 0 /INPUT 1 "a";
.port_info 1 /INPUT 1 "b";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "sum";
.port_info 4 /OUTPUT 1 "cout";
L_0x7fba0aa5f9f0 .functor XOR 1, L_0x7fba0aa60490, L_0x7fba0aa60530, C4<0>, C4<0>;
L_0x7fba0aa5fef0 .functor XOR 1, L_0x7fba0aa5f9f0, L_0x7fba0aa600a0, C4<0>, C4<0>;
L_0x7fba0aa601e0 .functor AND 1, L_0x7fba0aa60490, L_0x7fba0aa60530, C4<1>, C4<1>;
L_0x7fba0aa602d0 .functor AND 1, L_0x7fba0aa5f9f0, L_0x7fba0aa600a0, C4<1>, C4<1>;
L_0x7fba0aa60380 .functor OR 1, L_0x7fba0aa601e0, L_0x7fba0aa602d0, C4<0>, C4<0>;
v0x7fba07fa62b0_0 .net "a", 0 0, L_0x7fba0aa60490; 1 drivers
v0x7fba07fa41d0_0 .net "ab", 0 0, L_0x7fba0aa601e0; 1 drivers
v0x7fba07fc4320_0 .net "axb", 0 0, L_0x7fba0aa5f9f0; 1 drivers
v0x7fba07fc3010_0 .net "axb_cin", 0 0, L_0x7fba0aa602d0; 1 drivers
v0x7fba07fc2db0_0 .net "b", 0 0, L_0x7fba0aa60530; 1 drivers
v0x7fba07fc1820_0 .net "cin", 0 0, L_0x7fba0aa600a0; 1 drivers
v0x7fba07fc02b0_0 .net "cout", 0 0, L_0x7fba0aa60380; 1 drivers
v0x7fba07fbed20_0 .net "sum", 0 0, L_0x7fba0aa5fef0; 1 drivers
S_0x7fba07fe5fe0 .scope generate, "G[14]" "G[14]" 4 80, 4 80 0, S_0x7fba07fc6320;
.timescale 0 0;
P_0x7fba0a8f07e0 .param/l "i" 1 4 80, +C4<01110>;
S_0x7fba07fe4a70 .scope module, "u_fa" "fa1" 4 81, 4 62 0, S_0x7fba07fe5fe0;
.timescale 0 0;
.port_info 0 /INPUT 1 "a";
.port_info 1 /INPUT 1 "b";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "sum";
.port_info 4 /OUTPUT 1 "cout";
L_0x7fba0aa60140 .functor XOR 1, L_0x7fba0aa60b30, L_0x7fba0aa5d6e0, C4<0>, C4<0>;
L_0x7fba0aa60740 .functor XOR 1, L_0x7fba0aa60140, L_0x7fba0aa5d920, C4<0>, C4<0>;
L_0x7fba0aa60810 .functor AND 1, L_0x7fba0aa60b30, L_0x7fba0aa5d6e0, C4<1>, C4<1>;
L_0x7fba0aa60940 .functor AND 1, L_0x7fba0aa60140, L_0x7fba0aa5d920, C4<1>, C4<1>;
L_0x7fba0aa609f0 .functor OR 1, L_0x7fba0aa60810, L_0x7fba0aa60940, C4<0>, C4<0>;
v0x7fba07fbc220_0 .net "a", 0 0, L_0x7fba0aa60b30; 1 drivers
v0x7fba07fb9720_0 .net "ab", 0 0, L_0x7fba0aa60810; 1 drivers
v0x7fba07fb81b0_0 .net "axb", 0 0, L_0x7fba0aa60140; 1 drivers
v0x7fba07fb6c20_0 .net "axb_cin", 0 0, L_0x7fba0aa60940; 1 drivers
v0x7fba07fb56b0_0 .net "b", 0 0, L_0x7fba0aa5d6e0; 1 drivers
v0x7fba07fb4120_0 .net "cin", 0 0, L_0x7fba0aa5d920; 1 drivers
v0x7fba07fb2bb0_0 .net "cout", 0 0, L_0x7fba0aa609f0; 1 drivers
v0x7fba07fb1620_0 .net "sum", 0 0, L_0x7fba0aa60740; 1 drivers
S_0x7fba07fe34e0 .scope generate, "G[15]" "G[15]" 4 80, 4 80 0, S_0x7fba07fc6320;
.timescale 0 0;
P_0x7fba0a8ecb80 .param/l "i" 1 4 80, +C4<01111>;
S_0x7fba07fe1f70 .scope module, "u_fa" "fa1" 4 81, 4 62 0, S_0x7fba07fe34e0;
.timescale 0 0;
.port_info 0 /INPUT 1 "a";
.port_info 1 /INPUT 1 "b";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "sum";
.port_info 4 /OUTPUT 1 "cout";
L_0x7fba0aa605d0 .functor XOR 1, L_0x7fba0aa61390, L_0x7fba0aa61430, C4<0>, C4<0>;
L_0x7fba0aa60640 .functor XOR 1, L_0x7fba0aa605d0, L_0x7fba0aa61130, C4<0>, C4<0>;
L_0x7fba0aa606b0 .functor AND 1, L_0x7fba0aa61390, L_0x7fba0aa61430, C4<1>, C4<1>;
L_0x7fba0aa60e50 .functor AND 1, L_0x7fba0aa605d0, L_0x7fba0aa61130, C4<1>, C4<1>;
L_0x7fba0aa612a0 .functor OR 1, L_0x7fba0aa606b0, L_0x7fba0aa60e50, C4<0>, C4<0>;
v0x7fba07fb0070_0 .net "a", 0 0, L_0x7fba0aa61390; 1 drivers
v0x7fba07faef90_0 .net "ab", 0 0, L_0x7fba0aa606b0; 1 drivers
v0x7fba07faec70_0 .net "axb", 0 0, L_0x7fba0aa605d0; 1 drivers
v0x7fba07fadbe0_0 .net "axb_cin", 0 0, L_0x7fba0aa60e50; 1 drivers
v0x7fba07fad8c0_0 .net "b", 0 0, L_0x7fba0aa61430; 1 drivers
v0x7fba07faf8d0_0 .net "cin", 0 0, L_0x7fba0aa61130; 1 drivers
v0x7fba07fa5e70_0 .net "cout", 0 0, L_0x7fba0aa612a0; 1 drivers
v0x7fba0a8ffd10_0 .net "sum", 0 0, L_0x7fba0aa60640; 1 drivers
S_0x7fba07fe09e0 .scope generate, "G[16]" "G[16]" 4 80, 4 80 0, S_0x7fba07fc6320;
.timescale 0 0;
P_0x7fba0a8e7680 .param/l "i" 1 4 80, +C4<010000>;
S_0x7fba07fdf470 .scope module, "u_fa" "fa1" 4 81, 4 62 0, S_0x7fba07fe09e0;
.timescale 0 0;
.port_info 0 /INPUT 1 "a";
.port_info 1 /INPUT 1 "b";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "sum";
.port_info 4 /OUTPUT 1 "cout";
L_0x7fba0aa611d0 .functor XOR 1, L_0x7fba0aa61ae0, L_0x7fba0aa614d0, C4<0>, C4<0>;
L_0x7fba0aa5e050 .functor XOR 1, L_0x7fba0aa611d0, L_0x7fba0aa61570, C4<0>, C4<0>;
L_0x7fba0aa61850 .functor AND 1, L_0x7fba0aa61ae0, L_0x7fba0aa614d0, C4<1>, C4<1>;
L_0x7fba0aa61940 .functor AND 1, L_0x7fba0aa611d0, L_0x7fba0aa61570, C4<1>, C4<1>;
L_0x7fba0aa619f0 .functor OR 1, L_0x7fba0aa61850, L_0x7fba0aa61940, C4<0>, C4<0>;
v0x7fba0a8feeb0_0 .net "a", 0 0, L_0x7fba0aa61ae0; 1 drivers
v0x7fba0a8fe760_0 .net "ab", 0 0, L_0x7fba0aa61850; 1 drivers
v0x7fba0a8fe050_0 .net "axb", 0 0, L_0x7fba0aa611d0; 1 drivers
v0x7fba0a8fd900_0 .net "axb_cin", 0 0, L_0x7fba0aa61940; 1 drivers
v0x7fba0a8fd1f0_0 .net "b", 0 0, L_0x7fba0aa614d0; 1 drivers
v0x7fba0a8fcaa0_0 .net "cin", 0 0, L_0x7fba0aa61570; 1 drivers
v0x7fba0a8fc390_0 .net "cout", 0 0, L_0x7fba0aa619f0; 1 drivers
v0x7fba0a8fbc40_0 .net "sum", 0 0, L_0x7fba0aa5e050; 1 drivers
S_0x7fba07fddee0 .scope generate, "G[17]" "G[17]" 4 80, 4 80 0, S_0x7fba07fc6320;
.timescale 0 0;
P_0x7fba0a8c3920 .param/l "i" 1 4 80, +C4<010001>;
S_0x7fba07fdc970 .scope module, "u_fa" "fa1" 4 81, 4 62 0, S_0x7fba07fddee0;
.timescale 0 0;
.port_info 0 /INPUT 1 "a";
.port_info 1 /INPUT 1 "b";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "sum";
.port_info 4 /OUTPUT 1 "cout";
L_0x7fba0aa61d20 .functor XOR 1, L_0x7fba0aa62110, L_0x7fba0aa621b0, C4<0>, C4<0>;
L_0x7fba0aa61d90 .functor XOR 1, L_0x7fba0aa61d20, L_0x7fba0aa61b80, C4<0>, C4<0>;
L_0x7fba0aa61e40 .functor AND 1, L_0x7fba0aa62110, L_0x7fba0aa621b0, C4<1>, C4<1>;
L_0x7fba0aa61f70 .functor AND 1, L_0x7fba0aa61d20, L_0x7fba0aa61b80, C4<1>, C4<1>;
L_0x7fba0aa62020 .functor OR 1, L_0x7fba0aa61e40, L_0x7fba0aa61f70, C4<0>, C4<0>;
v0x7fba0a8fb530_0 .net "a", 0 0, L_0x7fba0aa62110; 1 drivers
v0x7fba0a8fade0_0 .net "ab", 0 0, L_0x7fba0aa61e40; 1 drivers
v0x7fba0a8fa6d0_0 .net "axb", 0 0, L_0x7fba0aa61d20; 1 drivers
v0x7fba0a8f9f80_0 .net "axb_cin", 0 0, L_0x7fba0aa61f70; 1 drivers
v0x7fba0a8f98c0_0 .net "b", 0 0, L_0x7fba0aa621b0; 1 drivers
v0x7fba0a8f2880_0 .net "cin", 0 0, L_0x7fba0aa61b80; 1 drivers
v0x7fba0a8f12b0_0 .net "cout", 0 0, L_0x7fba0aa62020; 1 drivers
v0x7fba0a8f0840_0 .net "sum", 0 0, L_0x7fba0aa61d90; 1 drivers
S_0x7fba07fdb3e0 .scope generate, "G[18]" "G[18]" 4 80, 4 80 0, S_0x7fba07fc6320;
.timescale 0 0;
P_0x7fba0a8ad6c0 .param/l "i" 1 4 80, +C4<010010>;
S_0x7fba07fd9e70 .scope module, "u_fa" "fa1" 4 81, 4 62 0, S_0x7fba07fdb3e0;
.timescale 0 0;
.port_info 0 /INPUT 1 "a";
.port_info 1 /INPUT 1 "b";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "sum";
.port_info 4 /OUTPUT 1 "cout";
L_0x7fba0aa61c20 .functor XOR 1, L_0x7fba0aa62780, L_0x7fba0aa62250, C4<0>, C4<0>;
L_0x7fba0aa61cb0 .functor XOR 1, L_0x7fba0aa61c20, L_0x7fba0aa622f0, C4<0>, C4<0>;
L_0x7fba0aa62460 .functor AND 1, L_0x7fba0aa62780, L_0x7fba0aa62250, C4<1>, C4<1>;
L_0x7fba0aa62590 .functor AND 1, L_0x7fba0aa61c20, L_0x7fba0aa622f0, C4<1>, C4<1>;
L_0x7fba0aa62640 .functor OR 1, L_0x7fba0aa62460, L_0x7fba0aa62590, C4<0>, C4<0>;
v0x7fba0a8efd70_0 .net "a", 0 0, L_0x7fba0aa62780; 1 drivers
v0x7fba0a8ef270_0 .net "ab", 0 0, L_0x7fba0aa62460; 1 drivers
v0x7fba0a8ed230_0 .net "axb", 0 0, L_0x7fba0aa61c20; 1 drivers
v0x7fba0a8ec7c0_0 .net "axb_cin", 0 0, L_0x7fba0aa62590; 1 drivers
v0x7fba0a8ebcf0_0 .net "b", 0 0, L_0x7fba0aa62250; 1 drivers
v0x7fba0a8e9cb0_0 .net "cin", 0 0, L_0x7fba0aa622f0; 1 drivers
v0x7fba0a8e8740_0 .net "cout", 0 0, L_0x7fba0aa62640; 1 drivers
v0x7fba0a8e7150_0 .net "sum", 0 0, L_0x7fba0aa61cb0; 1 drivers
S_0x7fba07fd88e0 .scope generate, "G[19]" "G[19]" 4 80, 4 80 0, S_0x7fba07fc6320;
.timescale 0 0;
P_0x7fba0a838bb0 .param/l "i" 1 4 80, +C4<010011>;
S_0x7fba07fd7370 .scope module, "u_fa" "fa1" 4 81, 4 62 0, S_0x7fba07fd88e0;
.timescale 0 0;
.port_info 0 /INPUT 1 "a";
.port_info 1 /INPUT 1 "b";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "sum";
.port_info 4 /OUTPUT 1 "cout";
L_0x7fba0aa62390 .functor XOR 1, L_0x7fba0aa62db0, L_0x7fba0aa62e50, C4<0>, C4<0>;
L_0x7fba0aa629f0 .functor XOR 1, L_0x7fba0aa62390, L_0x7fba0aa62820, C4<0>, C4<0>;
L_0x7fba0aa62ac0 .functor AND 1, L_0x7fba0aa62db0, L_0x7fba0aa62e50, C4<1>, C4<1>;
L_0x7fba0aa62bf0 .functor AND 1, L_0x7fba0aa62390, L_0x7fba0aa62820, C4<1>, C4<1>;
L_0x7fba0aa62ca0 .functor OR 1, L_0x7fba0aa62ac0, L_0x7fba0aa62bf0, C4<0>, C4<0>;
v0x7fba0a8e66b0_0 .net "a", 0 0, L_0x7fba0aa62db0; 1 drivers
v0x7fba0a8e5170_0 .net "ab", 0 0, L_0x7fba0aa62ac0; 1 drivers
v0x7fba0a8e46d0_0 .net "axb", 0 0, L_0x7fba0aa62390; 1 drivers
v0x7fba0a8f7370_0 .net "axb_cin", 0 0, L_0x7fba0aa62bf0; 1 drivers
v0x7fba0a8f6900_0 .net "b", 0 0, L_0x7fba0aa62e50; 1 drivers
v0x7fba0a8f5330_0 .net "cin", 0 0, L_0x7fba0aa62820; 1 drivers
v0x7fba0a8f48c0_0 .net "cout", 0 0, L_0x7fba0aa62ca0; 1 drivers
v0x7fba0a8f3df0_0 .net "sum", 0 0, L_0x7fba0aa629f0; 1 drivers
S_0x7fba07fd5de0 .scope generate, "G[20]" "G[20]" 4 80, 4 80 0, S_0x7fba07fc6320;
.timescale 0 0;
P_0x7fba0a865b20 .param/l "i" 1 4 80, +C4<010100>;
S_0x7fba07fd4870 .scope module, "u_fa" "fa1" 4 81, 4 62 0, S_0x7fba07fd5de0;
.timescale 0 0;
.port_info 0 /INPUT 1 "a";
.port_info 1 /INPUT 1 "b";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "sum";
.port_info 4 /OUTPUT 1 "cout";
L_0x7fba0aa628c0 .functor XOR 1, L_0x7fba0aa63420, L_0x7fba0aa62ef0, C4<0>, C4<0>;
L_0x7fba0aa62970 .functor XOR 1, L_0x7fba0aa628c0, L_0x7fba0aa62f90, C4<0>, C4<0>;
L_0x7fba0aa63150 .functor AND 1, L_0x7fba0aa63420, L_0x7fba0aa62ef0, C4<1>, C4<1>;
L_0x7fba0aa63280 .functor AND 1, L_0x7fba0aa628c0, L_0x7fba0aa62f90, C4<1>, C4<1>;
L_0x7fba0aa63330 .functor OR 1, L_0x7fba0aa63150, L_0x7fba0aa63280, C4<0>, C4<0>;
v0x7fba0a8f32f0_0 .net "a", 0 0, L_0x7fba0aa63420; 1 drivers
v0x7fba0a8e7ac0_0 .net "ab", 0 0, L_0x7fba0aa63150; 1 drivers
v0x7fba0a8b6090_0 .net "axb", 0 0, L_0x7fba0aa628c0; 1 drivers
v0x7fba0a8b4b20_0 .net "axb_cin", 0 0, L_0x7fba0aa63280; 1 drivers
v0x7fba0a8b3590_0 .net "b", 0 0, L_0x7fba0aa62ef0; 1 drivers
v0x7fba0a8b2020_0 .net "cin", 0 0, L_0x7fba0aa62f90; 1 drivers
v0x7fba0a8b0ab0_0 .net "cout", 0 0, L_0x7fba0aa63330; 1 drivers
v0x7fba0a8af540_0 .net "sum", 0 0, L_0x7fba0aa62970; 1 drivers
S_0x7fba07fd3300 .scope generate, "G[21]" "G[21]" 4 80, 4 80 0, S_0x7fba07fc6320;
.timescale 0 0;
P_0x7fba0a8c56a0 .param/l "i" 1 4 80, +C4<010101>;
S_0x7fba07fd1d90 .scope module, "u_fa" "fa1" 4 81, 4 62 0, S_0x7fba07fd3300;
.timescale 0 0;
.port_info 0 /INPUT 1 "a";
.port_info 1 /INPUT 1 "b";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "sum";
.port_info 4 /OUTPUT 1 "cout";
L_0x7fba0aa63030 .functor XOR 1, L_0x7fba0aa63ab0, L_0x7fba0aa63b50, C4<0>, C4<0>;
L_0x7fba0aa636c0 .functor XOR 1, L_0x7fba0aa63030, L_0x7fba0aa634c0, C4<0>, C4<0>;
L_0x7fba0aa63790 .functor AND 1, L_0x7fba0aa63ab0, L_0x7fba0aa63b50, C4<1>, C4<1>;
L_0x7fba0aa638c0 .functor AND 1, L_0x7fba0aa63030, L_0x7fba0aa634c0, C4<1>, C4<1>;
L_0x7fba0aa63970 .functor OR 1, L_0x7fba0aa63790, L_0x7fba0aa638c0, C4<0>, C4<0>;
v0x7fba0a8adf70_0 .net "a", 0 0, L_0x7fba0aa63ab0; 1 drivers
v0x7fba0a8aca30_0 .net "ab", 0 0, L_0x7fba0aa63790; 1 drivers
v0x7fba0a8ce390_0 .net "axb", 0 0, L_0x7fba0aa63030; 1 drivers
v0x7fba0a8cd080_0 .net "axb_cin", 0 0, L_0x7fba0aa638c0; 1 drivers
v0x7fba0a8cce20_0 .net "b", 0 0, L_0x7fba0aa63b50; 1 drivers
v0x7fba0a8cb890_0 .net "cin", 0 0, L_0x7fba0aa634c0; 1 drivers
v0x7fba0a8ca320_0 .net "cout", 0 0, L_0x7fba0aa63970; 1 drivers
v0x7fba0a8c8d90_0 .net "sum", 0 0, L_0x7fba0aa636c0; 1 drivers
S_0x7fba07fd0ab0 .scope generate, "G[22]" "G[22]" 4 80, 4 80 0, S_0x7fba07fc6320;
.timescale 0 0;
P_0x7fba0a8bd5a0 .param/l "i" 1 4 80, +C4<010110>;
S_0x7fba07fcf560 .scope module, "u_fa" "fa1" 4 81, 4 62 0, S_0x7fba07fd0ab0;
.timescale 0 0;
.port_info 0 /INPUT 1 "a";
.port_info 1 /INPUT 1 "b";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "sum";
.port_info 4 /OUTPUT 1 "cout";
L_0x7fba0aa63560 .functor XOR 1, L_0x7fba0aa640d0, L_0x7fba0aa63bf0, C4<0>, C4<0>;
L_0x7fba0aa635d0 .functor XOR 1, L_0x7fba0aa63560, L_0x7fba0aa63c90, C4<0>, C4<0>;
L_0x7fba0aa63e00 .functor AND 1, L_0x7fba0aa640d0, L_0x7fba0aa63bf0, C4<1>, C4<1>;
L_0x7fba0aa63f10 .functor AND 1, L_0x7fba0aa63560, L_0x7fba0aa63c90, C4<1>, C4<1>;
L_0x7fba0aa63fc0 .functor OR 1, L_0x7fba0aa63e00, L_0x7fba0aa63f10, C4<0>, C4<0>;
v0x7fba0a8c7820_0 .net "a", 0 0, L_0x7fba0aa640d0; 1 drivers
v0x7fba0a8c6290_0 .net "ab", 0 0, L_0x7fba0aa63e00; 1 drivers
v0x7fba0a8c4d20_0 .net "axb", 0 0, L_0x7fba0aa63560; 1 drivers
v0x7fba0a8c3790_0 .net "axb_cin", 0 0, L_0x7fba0aa63f10; 1 drivers
v0x7fba0a8c0c90_0 .net "b", 0 0, L_0x7fba0aa63bf0; 1 drivers
v0x7fba0a8bf720_0 .net "cin", 0 0, L_0x7fba0aa63c90; 1 drivers
v0x7fba0a8be190_0 .net "cout", 0 0, L_0x7fba0aa63fc0; 1 drivers
v0x7fba0a8bcc20_0 .net "sum", 0 0, L_0x7fba0aa635d0; 1 drivers
S_0x7fba07fce010 .scope generate, "G[23]" "G[23]" 4 80, 4 80 0, S_0x7fba07fc6320;
.timescale 0 0;
P_0x7fba0a86b430 .param/l "i" 1 4 80, +C4<010111>;
S_0x7fba07fc8ad0 .scope module, "u_fa" "fa1" 4 81, 4 62 0, S_0x7fba07fce010;
.timescale 0 0;
.port_info 0 /INPUT 1 "a";
.port_info 1 /INPUT 1 "b";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "sum";
.port_info 4 /OUTPUT 1 "cout";
L_0x7fba0aa63d30 .functor XOR 1, L_0x7fba0aa64740, L_0x7fba0aa647e0, C4<0>, C4<0>;
L_0x7fba0aa643a0 .functor XOR 1, L_0x7fba0aa63d30, L_0x7fba0aa64170, C4<0>, C4<0>;
L_0x7fba0aa64470 .functor AND 1, L_0x7fba0aa64740, L_0x7fba0aa647e0, C4<1>, C4<1>;
L_0x7fba0aa645a0 .functor AND 1, L_0x7fba0aa63d30, L_0x7fba0aa64170, C4<1>, C4<1>;
L_0x7fba0aa64650 .functor OR 1, L_0x7fba0aa64470, L_0x7fba0aa645a0, C4<0>, C4<0>;
v0x7fba0a8adde0_0 .net "a", 0 0, L_0x7fba0aa64740; 1 drivers
v0x7fba0a8ac580_0 .net "ab", 0 0, L_0x7fba0aa64470; 1 drivers
v0x7fba0a81e500_0 .net "axb", 0 0, L_0x7fba0aa63d30; 1 drivers
v0x7fba0a81cf70_0 .net "axb_cin", 0 0, L_0x7fba0aa645a0; 1 drivers
v0x7fba0a81b9e0_0 .net "b", 0 0, L_0x7fba0aa647e0; 1 drivers
v0x7fba0a817930_0 .net "cin", 0 0, L_0x7fba0aa64170; 1 drivers
v0x7fba0a8163a0_0 .net "cout", 0 0, L_0x7fba0aa64650; 1 drivers
v0x7fba0a814e10_0 .net "sum", 0 0, L_0x7fba0aa643a0; 1 drivers
S_0x7fba07fb6a90 .scope generate, "G[24]" "G[24]" 4 80, 4 80 0, S_0x7fba07fc6320;
.timescale 0 0;
P_0x7fba0a879da0 .param/l "i" 1 4 80, +C4<011000>;
S_0x7fba07fac080 .scope module, "u_fa" "fa1" 4 81, 4 62 0, S_0x7fba07fb6a90;
.timescale 0 0;
.port_info 0 /INPUT 1 "a";
.port_info 1 /INPUT 1 "b";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "sum";
.port_info 4 /OUTPUT 1 "cout";
L_0x7fba0aa64210 .functor XOR 1, L_0x7fba0aa64dc0, L_0x7fba0aa64880, C4<0>, C4<0>;
L_0x7fba0aa642a0 .functor XOR 1, L_0x7fba0aa64210, L_0x7fba0aa64920, C4<0>, C4<0>;
L_0x7fba0aa64ac0 .functor AND 1, L_0x7fba0aa64dc0, L_0x7fba0aa64880, C4<1>, C4<1>;
L_0x7fba0aa64bd0 .functor AND 1, L_0x7fba0aa64210, L_0x7fba0aa64920, C4<1>, C4<1>;
L_0x7fba0aa64c80 .functor OR 1, L_0x7fba0aa64ac0, L_0x7fba0aa64bd0, C4<0>, C4<0>;
v0x7fba0a813880_0 .net "a", 0 0, L_0x7fba0aa64dc0; 1 drivers
v0x7fba0a8122f0_0 .net "ab", 0 0, L_0x7fba0aa64ac0; 1 drivers
v0x7fba0a810d60_0 .net "axb", 0 0, L_0x7fba0aa64210; 1 drivers
v0x7fba0a80f7d0_0 .net "axb_cin", 0 0, L_0x7fba0aa64bd0; 1 drivers
v0x7fba0a80e240_0 .net "b", 0 0, L_0x7fba0aa64880; 1 drivers
v0x7fba0a80a190_0 .net "cin", 0 0, L_0x7fba0aa64920; 1 drivers
v0x7fba0a8046a0_0 .net "cout", 0 0, L_0x7fba0aa64c80; 1 drivers
v0x7fba0a865990_0 .net "sum", 0 0, L_0x7fba0aa642a0; 1 drivers
S_0x7fba07faacd0 .scope generate, "G[25]" "G[25]" 4 80, 4 80 0, S_0x7fba07fc6320;
.timescale 0 0;
P_0x7fba0a81bb70 .param/l "i" 1 4 80, +C4<011001>;
S_0x7fba07fa9920 .scope module, "u_fa" "fa1" 4 81, 4 62 0, S_0x7fba07faacd0;
.timescale 0 0;
.port_info 0 /INPUT 1 "a";
.port_info 1 /INPUT 1 "b";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "sum";
.port_info 4 /OUTPUT 1 "cout";
L_0x7fba0aa649c0 .functor XOR 1, L_0x7fba0aa653f0, L_0x7fba0aa65490, C4<0>, C4<0>;
L_0x7fba0aa64a30 .functor XOR 1, L_0x7fba0aa649c0, L_0x7fba0aa64e60, C4<0>, C4<0>;
L_0x7fba0aa65100 .functor AND 1, L_0x7fba0aa653f0, L_0x7fba0aa65490, C4<1>, C4<1>;
L_0x7fba0aa65230 .functor AND 1, L_0x7fba0aa649c0, L_0x7fba0aa64e60, C4<1>, C4<1>;
L_0x7fba0aa652e0 .functor OR 1, L_0x7fba0aa65100, L_0x7fba0aa65230, C4<0>, C4<0>;
v0x7fba0a861910_0 .net "a", 0 0, L_0x7fba0aa653f0; 1 drivers
v0x7fba0a860390_0 .net "ab", 0 0, L_0x7fba0aa65100; 1 drivers
v0x7fba0a85ee00_0 .net "axb", 0 0, L_0x7fba0aa649c0; 1 drivers
v0x7fba0a85d870_0 .net "axb_cin", 0 0, L_0x7fba0aa65230; 1 drivers
v0x7fba0a8a92e0_0 .net "b", 0 0, L_0x7fba0aa65490; 1 drivers
v0x7fba0a85c320_0 .net "cin", 0 0, L_0x7fba0aa64e60; 1 drivers
v0x7fba0a8a8e80_0 .net "cout", 0 0, L_0x7fba0aa652e0; 1 drivers
v0x7fba0a8a78f0_0 .net "sum", 0 0, L_0x7fba0aa64a30; 1 drivers
S_0x7fba07fa8570 .scope generate, "G[26]" "G[26]" 4 80, 4 80 0, S_0x7fba07fc6320;
.timescale 0 0;
P_0x7fba0a81bd80 .param/l "i" 1 4 80, +C4<011010>;
S_0x7fba07fa71c0 .scope module, "u_fa" "fa1" 4 81, 4 62 0, S_0x7fba07fa8570;
.timescale 0 0;
.port_info 0 /INPUT 1 "a";
.port_info 1 /INPUT 1 "b";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "sum";
.port_info 4 /OUTPUT 1 "cout";
L_0x7fba0aa64f00 .functor XOR 1, L_0x7fba0aa65a50, L_0x7fba0aa65530, C4<0>, C4<0>;
L_0x7fba0aa64fb0 .functor XOR 1, L_0x7fba0aa64f00, L_0x7fba0aa655d0, C4<0>, C4<0>;
L_0x7fba0aa657a0 .functor AND 1, L_0x7fba0aa65a50, L_0x7fba0aa65530, C4<1>, C4<1>;
L_0x7fba0aa658b0 .functor AND 1, L_0x7fba0aa64f00, L_0x7fba0aa655d0, C4<1>, C4<1>;
L_0x7fba0aa65960 .functor OR 1, L_0x7fba0aa657a0, L_0x7fba0aa658b0, C4<0>, C4<0>;
v0x7fba0a8a4dd0_0 .net "a", 0 0, L_0x7fba0aa65a50; 1 drivers
v0x7fba0a8a3840_0 .net "ab", 0 0, L_0x7fba0aa657a0; 1 drivers
v0x7fba0a8a22b0_0 .net "axb", 0 0, L_0x7fba0aa64f00; 1 drivers
v0x7fba0a8a0d20_0 .net "axb_cin", 0 0, L_0x7fba0aa658b0; 1 drivers
v0x7fba0a89e200_0 .net "b", 0 0, L_0x7fba0aa65530; 1 drivers
v0x7fba0a89cc70_0 .net "cin", 0 0, L_0x7fba0aa655d0; 1 drivers
v0x7fba0a85add0_0 .net "cout", 0 0, L_0x7fba0aa65960; 1 drivers
v0x7fba0a89b6e0_0 .net "sum", 0 0, L_0x7fba0aa64fb0; 1 drivers
S_0x7fba07fa4a60 .scope generate, "G[27]" "G[27]" 4 80, 4 80 0, S_0x7fba07fc6320;
.timescale 0 0;
P_0x7fba0a851f00 .param/l "i" 1 4 80, +C4<011011>;
S_0x7fba07fbd620 .scope module, "u_fa" "fa1" 4 81, 4 62 0, S_0x7fba07fa4a60;
.timescale 0 0;
.port_info 0 /INPUT 1 "a";
.port_info 1 /INPUT 1 "b";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "sum";
.port_info 4 /OUTPUT 1 "cout";
L_0x7fba0aa65670 .functor XOR 1, L_0x7fba0aa660e0, L_0x7fba0aa66180, C4<0>, C4<0>;
L_0x7fba0aa65700 .functor XOR 1, L_0x7fba0aa65670, L_0x7fba0aa65af0, C4<0>, C4<0>;
L_0x7fba0aa65dc0 .functor AND 1, L_0x7fba0aa660e0, L_0x7fba0aa66180, C4<1>, C4<1>;
L_0x7fba0aa65ef0 .functor AND 1, L_0x7fba0aa65670, L_0x7fba0aa65af0, C4<1>, C4<1>;
L_0x7fba0aa65fa0 .functor OR 1, L_0x7fba0aa65dc0, L_0x7fba0aa65ef0, C4<0>, C4<0>;
v0x7fba0a89a150_0 .net "a", 0 0, L_0x7fba0aa660e0; 1 drivers
v0x7fba0a897630_0 .net "ab", 0 0, L_0x7fba0aa65dc0; 1 drivers
v0x7fba0a8960a0_0 .net "axb", 0 0, L_0x7fba0aa65670; 1 drivers
v0x7fba0a894b10_0 .net "axb_cin", 0 0, L_0x7fba0aa65ef0; 1 drivers
v0x7fba0a891ff0_0 .net "b", 0 0, L_0x7fba0aa66180; 1 drivers
v0x7fba0a890a60_0 .net "cin", 0 0, L_0x7fba0aa65af0; 1 drivers
v0x7fba0a88f4d0_0 .net "cout", 0 0, L_0x7fba0aa65fa0; 1 drivers
v0x7fba0a859880_0 .net "sum", 0 0, L_0x7fba0aa65700; 1 drivers
S_0x7fba07fb9590 .scope generate, "G[28]" "G[28]" 4 80, 4 80 0, S_0x7fba07fc6320;
.timescale 0 0;
P_0x7fba0a843ab0 .param/l "i" 1 4 80, +C4<011100>;
S_0x7fba07fc4190 .scope module, "u_fa" "fa1" 4 81, 4 62 0, S_0x7fba07fb9590;
.timescale 0 0;
.port_info 0 /INPUT 1 "a";
.port_info 1 /INPUT 1 "b";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "sum";
.port_info 4 /OUTPUT 1 "cout";
L_0x7fba0aa65b90 .functor XOR 1, L_0x7fba0aa66700, L_0x7fba0aa66220, C4<0>, C4<0>;
L_0x7fba0aa65c00 .functor XOR 1, L_0x7fba0aa65b90, L_0x7fba0aa662c0, C4<0>, C4<0>;
L_0x7fba0aa65cd0 .functor AND 1, L_0x7fba0aa66700, L_0x7fba0aa66220, C4<1>, C4<1>;
L_0x7fba0aa66540 .functor AND 1, L_0x7fba0aa65b90, L_0x7fba0aa662c0, C4<1>, C4<1>;
L_0x7fba0aa665f0 .functor OR 1, L_0x7fba0aa65cd0, L_0x7fba0aa66540, C4<0>, C4<0>;
v0x7fba0a88b420_0 .net "a", 0 0, L_0x7fba0aa66700; 1 drivers
v0x7fba0a888900_0 .net "ab", 0 0, L_0x7fba0aa65cd0; 1 drivers
v0x7fba0a858700_0 .net "axb", 0 0, L_0x7fba0aa65b90; 1 drivers
v0x7fba0a884850_0 .net "axb_cin", 0 0, L_0x7fba0aa66540; 1 drivers
v0x7fba0a8832c0_0 .net "b", 0 0, L_0x7fba0aa66220; 1 drivers
v0x7fba0a858330_0 .net "cin", 0 0, L_0x7fba0aa662c0; 1 drivers
v0x7fba0a87f210_0 .net "cout", 0 0, L_0x7fba0aa665f0; 1 drivers
v0x7fba0a87dc90_0 .net "sum", 0 0, L_0x7fba0aa65c00; 1 drivers
S_0x7fba07fc2c20 .scope generate, "G[29]" "G[29]" 4 80, 4 80 0, S_0x7fba07fc6320;
.timescale 0 0;
P_0x7fba0a84fd80 .param/l "i" 1 4 80, +C4<011101>;
S_0x7fba07fae7e0 .scope module, "u_fa" "fa1" 4 81, 4 62 0, S_0x7fba07fc2c20;
.timescale 0 0;
.port_info 0 /INPUT 1 "a";
.port_info 1 /INPUT 1 "b";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "sum";
.port_info 4 /OUTPUT 1 "cout";
L_0x7fba0aa66360 .functor XOR 1, L_0x7fba0aa66d70, L_0x7fba0aa66e10, C4<0>, C4<0>;
L_0x7fba0aa66410 .functor XOR 1, L_0x7fba0aa66360, L_0x7fba0aa667a0, C4<0>, C4<0>;
L_0x7fba0aa66aa0 .functor AND 1, L_0x7fba0aa66d70, L_0x7fba0aa66e10, C4<1>, C4<1>;
L_0x7fba0aa66bd0 .functor AND 1, L_0x7fba0aa66360, L_0x7fba0aa667a0, C4<1>, C4<1>;
L_0x7fba0aa66c80 .functor OR 1, L_0x7fba0aa66aa0, L_0x7fba0aa66bd0, C4<0>, C4<0>;
v0x7fba0a87c710_0 .net "a", 0 0, L_0x7fba0aa66d70; 1 drivers
v0x7fba0a87b190_0 .net "ab", 0 0, L_0x7fba0aa66aa0; 1 drivers
v0x7fba0a879c10_0 .net "axb", 0 0, L_0x7fba0aa66360; 1 drivers
v0x7fba0a878690_0 .net "axb_cin", 0 0, L_0x7fba0aa66bd0; 1 drivers
v0x7fba0a877110_0 .net "b", 0 0, L_0x7fba0aa66e10; 1 drivers
v0x7fba0a875b90_0 .net "cin", 0 0, L_0x7fba0aa667a0; 1 drivers
v0x7fba0a874610_0 .net "cout", 0 0, L_0x7fba0aa66c80; 1 drivers
v0x7fba0a873090_0 .net "sum", 0 0, L_0x7fba0aa66410; 1 drivers
S_0x7fba07fad430 .scope generate, "G[30]" "G[30]" 4 80, 4 80 0, S_0x7fba07fc6320;
.timescale 0 0;
P_0x7fba0a8228f0 .param/l "i" 1 4 80, +C4<011110>;
S_0x7fba07fc3e40 .scope module, "u_fa" "fa1" 4 81, 4 62 0, S_0x7fba07fad430;
.timescale 0 0;
.port_info 0 /INPUT 1 "a";
.port_info 1 /INPUT 1 "b";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "sum";
.port_info 4 /OUTPUT 1 "cout";
L_0x7fba0aa66840 .functor XOR 1, L_0x7fba0aa673c0, L_0x7fba0aa60bd0, C4<0>, C4<0>;
L_0x7fba0aa668d0 .functor XOR 1, L_0x7fba0aa66840, L_0x7fba0aa60c70, C4<0>, C4<0>;
L_0x7fba0aa669a0 .functor AND 1, L_0x7fba0aa673c0, L_0x7fba0aa60bd0, C4<1>, C4<1>;
L_0x7fba0aa67200 .functor AND 1, L_0x7fba0aa66840, L_0x7fba0aa60c70, C4<1>, C4<1>;
L_0x7fba0aa672b0 .functor OR 1, L_0x7fba0aa669a0, L_0x7fba0aa67200, C4<0>, C4<0>;
v0x7fba0a870590_0 .net "a", 0 0, L_0x7fba0aa673c0; 1 drivers
v0x7fba0a86f010_0 .net "ab", 0 0, L_0x7fba0aa669a0; 1 drivers
v0x7fba0a86da90_0 .net "axb", 0 0, L_0x7fba0aa66840; 1 drivers
v0x7fba0a86c510_0 .net "axb_cin", 0 0, L_0x7fba0aa67200; 1 drivers
v0x7fba0a86af90_0 .net "b", 0 0, L_0x7fba0aa60bd0; 1 drivers
v0x7fba0a869a10_0 .net "cin", 0 0, L_0x7fba0aa60c70; 1 drivers
v0x7fba0a866f10_0 .net "cout", 0 0, L_0x7fba0aa672b0; 1 drivers
v0x7fba0a85d6e0_0 .net "sum", 0 0, L_0x7fba0aa668d0; 1 drivers
S_0x7fba07fc28d0 .scope generate, "G[31]" "G[31]" 4 80, 4 80 0, S_0x7fba07fc6320;
.timescale 0 0;
P_0x7fba0a820490 .param/l "i" 1 4 80, +C4<011111>;
S_0x7fba07fc1340 .scope module, "u_fa" "fa1" 4 81, 4 62 0, S_0x7fba07fc28d0;
.timescale 0 0;
.port_info 0 /INPUT 1 "a";
.port_info 1 /INPUT 1 "b";
.port_info 2 /INPUT 1 "cin";
.port_info 3 /OUTPUT 1 "sum";
.port_info 4 /OUTPUT 1 "cout";
L_0x7fba0aa60d10 .functor XOR 1, L_0x7fba0aa67050, L_0x7fba0aa67750, C4<0>, C4<0>;
L_0x7fba0aa60f30 .functor XOR 1, L_0x7fba0aa60d10, L_0x7fba0aa67460, C4<0>, C4<0>;
L_0x7fba0aa60fe0 .functor AND 1, L_0x7fba0aa67050, L_0x7fba0aa67750, C4<1>, C4<1>;
L_0x7fba0aa66eb0 .functor AND 1, L_0x7fba0aa60d10, L_0x7fba0aa67460, C4<1>, C4<1>;
L_0x7fba0aa66f60 .functor OR 1, L_0x7fba0aa60fe0, L_0x7fba0aa66eb0, C4<0>, C4<0>;
v0x7fba0a85d0a0_0 .net "a", 0 0, L_0x7fba0aa67050; 1 drivers
v0x7fba0a85c190_0 .net "ab", 0 0, L_0x7fba0aa60fe0; 1 drivers
v0x7fba0a85bb50_0 .net "axb", 0 0, L_0x7fba0aa60d10; 1 drivers
v0x7fba0a85ac40_0 .net "axb_cin", 0 0, L_0x7fba0aa66eb0; 1 drivers
v0x7fba0a85a600_0 .net "b", 0 0, L_0x7fba0aa67750; 1 drivers
v0x7fba0a8596f0_0 .net "cin", 0 0, L_0x7fba0aa67460; 1 drivers
v0x7fba0a8590b0_0 .net "cout", 0 0, L_0x7fba0aa66f60; 1 drivers
v0x7fba0a857b40_0 .net "sum", 0 0, L_0x7fba0aa60f30; 1 drivers
S_0x7fba07fa0f00 .scope module, "align_low" "align_low" 3 6;
.timescale 0 0;
.port_info 0 /INPUT 32 "a";
.port_info 1 /OUTPUT 32 "y";
P_0x7fba0a859ce0 .param/l "N" 0 3 6, +C4<00000000000000000000000000000110>;
P_0x7fba0a859d20 .param/l "W" 0 3 6, +C4<00000000000000000000000000100000>;
v0x7fba0a8231a0_0 .net *"_ivl_1", 25 0, L_0x7fba0aa68030; 1 drivers
L_0x7fba07ea4050 .functor BUFT 1, C4<000000>, C4<0>, C4<0>, C4<0>;
v0x7fba0a821fb0_0 .net/2u *"_ivl_2", 5 0, L_0x7fba07ea4050; 1 drivers
o0x7fba07e47138 .functor BUFZ 32, C4<zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz>; HiZ drive
v0x7fba0a821c60_0 .net "a", 31 0, o0x7fba07e47138; 0 drivers
v0x7fba0a847750_0 .net "y", 31 0, L_0x7fba0aa680d0; 1 drivers
L_0x7fba0aa68030 .part o0x7fba07e47138, 6, 26;
L_0x7fba0aa680d0 .concat [ 6 26 0 0], L_0x7fba07ea4050, L_0x7fba0aa68030;
S_0x7fba07f9fb50 .scope module, "inc_const" "inc_const" 4 87;
.timescale 0 0;
.port_info 0 /INPUT 32 "a";
.port_info 1 /OUTPUT 32 "y";
P_0x7fba0a8877d0 .param/l "K" 0 4 87, +C4<00000000000000000000000000000001>;
P_0x7fba0a887810 .param/l "N" 0 4 87, +C4<00000000000000000000000000100000>;
o0x7fba07e4c628 .functor BUFZ 32, C4<zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz>; HiZ drive
v0x7fba0a875de0_0 .net "a", 31 0, o0x7fba07e4c628; 0 drivers
v0x7fba0a875e70_0 .net "b", 31 0, L_0x7fba0aa68e70; 1 drivers
v0x7fba0a874860_0 .net "dummy_cout", 0 0, L_0x7fba0aa771a0; 1 drivers
v0x7fba0a8748f0_0 .net "y", 31 0, L_0x7fba0aa6fcb0; 1 drivers
L_0x7fba07ea4098 .functor BUFT 1, C4<1>, C4<0>, C4<0>, C4<0>;
L_0x7fba07ea40e0 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
L_0x7fba07ea4128 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
L_0x7fba07ea4170 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
LS_0x7fba0aa68e70_0_0 .concat8 [ 1 1 1 1], L_0x7fba07ea4098, L_0x7fba07ea40e0, L_0x7fba07ea4128, L_0x7fba07ea4170;
L_0x7fba07ea41b8 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
L_0x7fba07ea4200 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
L_0x7fba07ea4248 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
L_0x7fba07ea4290 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
LS_0x7fba0aa68e70_0_4 .concat8 [ 1 1 1 1], L_0x7fba07ea41b8, L_0x7fba07ea4200, L_0x7fba07ea4248, L_0x7fba07ea4290;
L_0x7fba07ea42d8 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
L_0x7fba07ea4320 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
L_0x7fba07ea4368 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
L_0x7fba07ea43b0 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
LS_0x7fba0aa68e70_0_8 .concat8 [ 1 1 1 1], L_0x7fba07ea42d8, L_0x7fba07ea4320, L_0x7fba07ea4368, L_0x7fba07ea43b0;
L_0x7fba07ea43f8 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
L_0x7fba07ea4440 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
L_0x7fba07ea4488 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
L_0x7fba07ea44d0 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
LS_0x7fba0aa68e70_0_12 .concat8 [ 1 1 1 1], L_0x7fba07ea43f8, L_0x7fba07ea4440, L_0x7fba07ea4488, L_0x7fba07ea44d0;
L_0x7fba07ea4518 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
L_0x7fba07ea4560 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
L_0x7fba07ea45a8 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
L_0x7fba07ea45f0 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
LS_0x7fba0aa68e70_0_16 .concat8 [ 1 1 1 1], L_0x7fba07ea4518, L_0x7fba07ea4560, L_0x7fba07ea45a8, L_0x7fba07ea45f0;
L_0x7fba07ea4638 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
L_0x7fba07ea4680 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
L_0x7fba07ea46c8 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
L_0x7fba07ea4710 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
LS_0x7fba0aa68e70_0_20 .concat8 [ 1 1 1 1], L_0x7fba07ea4638, L_0x7fba07ea4680, L_0x7fba07ea46c8, L_0x7fba07ea4710;
L_0x7fba07ea4758 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
L_0x7fba07ea47a0 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
L_0x7fba07ea47e8 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
L_0x7fba07ea4830 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
LS_0x7fba0aa68e70_0_24 .concat8 [ 1 1 1 1], L_0x7fba07ea4758, L_0x7fba07ea47a0, L_0x7fba07ea47e8, L_0x7fba07ea4830;
L_0x7fba07ea4878 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
L_0x7fba07ea48c0 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
L_0x7fba07ea4908 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
L_0x7fba07ea4950 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
LS_0x7fba0aa68e70_0_28 .concat8 [ 1 1 1 1], L_0x7fba07ea4878, L_0x7fba07ea48c0, L_0x7fba07ea4908, L_0x7fba07ea4950;
LS_0x7fba0aa68e70_1_0 .concat8 [ 4 4 4 4], LS_0x7fba0aa68e70_0_0, LS_0x7fba0aa68e70_0_4, LS_0x7fba0aa68e70_0_8, LS_0x7fba0aa68e70_0_12;
LS_0x7fba0aa68e70_1_4 .concat8 [ 4 4 4 4], LS_0x7fba0aa68e70_0_16, LS_0x7fba0aa68e70_0_20, LS_0x7fba0aa68e70_0_24, LS_0x7fba0aa68e70_0_28;
L_0x7fba0aa68e70 .concat8 [ 16 16 0 0], LS_0x7fba0aa68e70_1_0, LS_0x7fba0aa68e70_1_4;
S_0x7fba07fbfdd0 .scope generate, "G[0]" "G[0]" 4 93, 4 93 0, S_0x7fba07f9fb50;
.timescale 0 0;
P_0x7fba0a92b850 .param/l "i" 1 4 93, +C4<00>;
v0x7fba0a8461c0_0 .net/2u *"_ivl_0", 0 0, L_0x7fba07ea4098; 1 drivers
S_0x7fba07fbe840 .scope generate, "G[1]" "G[1]" 4 93, 4 93 0, S_0x7fba07f9fb50;
.timescale 0 0;
P_0x7fba0a9277d0 .param/l "i" 1 4 93, +C4<01>;
v0x7fba0a844c30_0 .net/2u *"_ivl_0", 0 0, L_0x7fba07ea40e0; 1 drivers
S_0x7fba07fbd2d0 .scope generate, "G[2]" "G[2]" 4 93, 4 93 0, S_0x7fba07f9fb50;
.timescale 0 0;
P_0x7fba0a91d010 .param/l "i" 1 4 93, +C4<010>;
v0x7fba0a8436a0_0 .net/2u *"_ivl_0", 0 0, L_0x7fba07ea4128; 1 drivers
S_0x7fba07fbbd40 .scope generate, "G[3]" "G[3]" 4 93, 4 93 0, S_0x7fba07f9fb50;
.timescale 0 0;
P_0x7fba0a933950 .param/l "i" 1 4 93, +C4<011>;
v0x7fba0a842110_0 .net/2u *"_ivl_0", 0 0, L_0x7fba07ea4170; 1 drivers
S_0x7fba07fba7d0 .scope generate, "G[4]" "G[4]" 4 93, 4 93 0, S_0x7fba07f9fb50;
.timescale 0 0;
P_0x7fba0a9257b0 .param/l "i" 1 4 93, +C4<0100>;
v0x7fba0a820a60_0 .net/2u *"_ivl_0", 0 0, L_0x7fba07ea41b8; 1 drivers
S_0x7fba07fb9240 .scope generate, "G[5]" "G[5]" 4 93, 4 93 0, S_0x7fba07f9fb50;
.timescale 0 0;
P_0x7fba0a924270 .param/l "i" 1 4 93, +C4<0101>;
v0x7fba0a83f5f0_0 .net/2u *"_ivl_0", 0 0, L_0x7fba07ea4200; 1 drivers
S_0x7fba07fb7cd0 .scope generate, "G[6]" "G[6]" 4 93, 4 93 0, S_0x7fba07f9fb50;
.timescale 0 0;
P_0x7fba0a915f90 .param/l "i" 1 4 93, +C4<0110>;
v0x7fba0a83e060_0 .net/2u *"_ivl_0", 0 0, L_0x7fba07ea4248; 1 drivers
S_0x7fba07fb6740 .scope generate, "G[7]" "G[7]" 4 93, 4 93 0, S_0x7fba07f9fb50;
.timescale 0 0;
P_0x7fba0a904d60 .param/l "i" 1 4 93, +C4<0111>;
v0x7fba0a83b540_0 .net/2u *"_ivl_0", 0 0, L_0x7fba07ea4290; 1 drivers
S_0x7fba07fb51d0 .scope generate, "G[8]" "G[8]" 4 93, 4 93 0, S_0x7fba07f9fb50;
.timescale 0 0;