aboutsummaryrefslogblamecommitdiffstats
path: root/tests/files/StateTests/Homestead/stCallCodes.json
blob: 197b66736ef68a428f041881da76ea3e7f121ee2 (plain) (tree)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
 






















































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                                                      




                                                                           
                                         







                                                                                               

                                                                                                            





                                                          

                                                                                                            





                                                          

                                                                                                            



                                    

                                                                          



                                                          
                                                        




                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            




                                                          

                                                                                                            




                                                          

                                                                                                            





                                                          
                                                        


























                                                                                             
                                         
























                                                                                                            
                                                                                                          












                                                          
                                       





                                                          
                                                 





                                 
                                                                                             
















                                                                                                            
                                                                                                          

































                                                                                             
                                         























                                                                                                            
                                                                                                          

























                                                          
                                                                                             
















                                                                                                            
                                                                                                          

































                                                                                             
                                         








































































































                                                                                                            
                                         






























                                                                                                            
                                       





                                                          
                                                 





                                 
                                                                                             
















                                                                                                            
                                                                                                                                                      

































                                                                                             
                                         






























































                                                                                                            
                                                                                                                                                      

































                                                                                             
                                         
























                                                                                                              
                                                                                                            




                                                          
                                       





                                                          
                                                 





                                 
                                                                                             
















                                                                                                              
                                                                                                            


























                                                                                             
                                         







                                                                                               

                                                                                                            





                                                          

                                                                                                            



                                    

                                                                          



                                                          
                                                        




                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            




                                                          

                                                                                                            





                                                          
                                                        


























                                                                                             
                                         
















                                                                                                            
                                                                                                          












                                                          
                                     





                                                          
                                                 





                                 
                                                                                             









                                                                                                            
                                                                                                          

































                                                                                             
                                         






















                                                                                                            
                                     





                                                          
                                                 





                                 
                                                                                             









                                                                                                            
                                                                                                                                                      

































                                                                                             
                                         







                                                                                               

                                                                                                            





                                                          

                                                                                                            


                                    
                                   


                                                          

                                                                                                            




                                                          

                                                        


                                    

                                                                          


                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            




                                                          

                                                                                                            




                                                          

                                                                                                            





                                                          
                                                        


























                                                                                             
                                         
















                                                                                                            
                                                                                                            




















                                                                                                          
                                       





                                                          
                                                 





                                 
                                                                                             









                                                                                                            
                                                                                                            








































                                                                                                          
                                         







































































































                                                                                                            
                                         
















                                                                                                            
                                                                                                            



















                                                          
                                     





                                                          
                                                 





                                 
                                                                                             









                                                                                                            
                                                                                                            








































                                                                                             
                                         






























                                                                                                                                                      
                                       





                                                          
                                                 





                                 
                                                                                             









                                                                                                            
                                                                                                            








































                                                                                                                                                      
                                         





























                                                                                                                                                      
                                     





                                                          
                                                 





                                 
                                                                                             









                                                                                                            
                                                                                                            








































                                                                                                                                                      
                                         
















                                                                                                              
                                                                                                            












                                                                                                            
                                       





                                                          
                                                 





                                 
                                                                                             









                                                                                                              
                                                                                                            

































                                                                                                            
                                         







                                                                                               

                                                                                                            





                                                          

                                                                                                            




                                    

                                                                          


                                                          

                                                                                                            





                                                          
                                                        




                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            




                                                          

                                                                                                            




                                                          

                                                                                                            





                                                          
                                                        


























                                                                                             
                                         
















                                                                                                            
                                                                                                            







                                                          
                                                                                                          











                                                          
                                       





                                                          
                                                 





                                 
                                                                                             









                                                                                                            
                                                                                                            





                                                          
                                                                                                          

































                                                                                             
                                         























                                                                                                            
                                                                                                          

























                                                          
                                                                                             
















                                                                                                            
                                                                                                          

































                                                                                             
                                         
















                                                                                                            
                                                                                                            



















                                                          
                                     





                                                          
                                                 





                                 
                                                                                             









                                                                                                            
                                                                                                            








































                                                                                             
                                         
















                                                                                                            
                                                                                                                                                      











                                                          
                                       





                                                          
                                                 





                                 
                                                                                             









                                                                                                            
                                                                                                            





                                                          
                                                                                                                                                      

































                                                                                             
                                         
















                                                                                                            
                                                                                                                                                      











                                                          
                                     





                                                          
                                                 





                                 
                                                                                             









                                                                                                            
                                                                                                            





                                                          
                                                                                                                                                      

































                                                                                             
                                         
















                                                                                                              
                                                                                                            






                                                          
                                                                                                            




                                                          
                                       





                                                          
                                                 





                                 
                                                                                             









                                                                                                              
                                                                                                            





                                                          
                                                                                                            


























                                                                                             
                                         







                                                                                               

                                                                                                            







                                                          
                                                                                                            




                                                          

                                                        


                                    

                                                                          


                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            





                                                          
                                                                                                            





                                                          
                                                        


























                                                                                             
                                         








                                                                                               
                                                                                                            




















                                                                                                          
                                     





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            








































                                                                                                          
                                         






















                                                                                                                                                      
                                     





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            








































                                                                                                                                                      
                                         







                                                                                               

                                                                                                            


                                    
                                   


                                                          

                                                                                                            




                                                          

                                                                                                            





                                                          

                                                        


                                    

                                                                          


                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            




                                                          

                                                                                                            




                                                          

                                                                                                            





                                                          
                                                        


























                                                                                             
                                         








                                                                                               
                                                                                                            




























                                                                                                            
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            















































                                                                                                            
                                         








                                                                                               
                                                                                                            


























                                                                                                          
                                     





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            















































                                                                                                          
                                         








                                                                                               
                                                                                                            



























                                                                                                            
                                     





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            















































                                                                                                            
                                         








                                                                                               
                                                                                                            





















                                                                                                            
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            















































                                                                                                                                                      
                                         








                                                                                               
                                                                                                            




















                                                                                                            
                                     





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            















































                                                                                                                                                      
                                         








                                                                                               
                                                                                                              




















                                                                                                            
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                              








































                                                                                                            
                                         







                                                                                               

                                                                                                            


                                    
                                   


                                                          

                                                                                                            




                                                          

                                                                                                            



                                    

                                                                          



                                                          
                                                        




                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            




                                                          

                                                                                                            




                                                          

                                                                                                            





                                                          
                                                        


























                                                                                             
                                         








                                                                                               
                                                                                                            














                                                                                                            
                                                                                                          












                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            












                                                                                                            
                                                                                                          

































                                                                                             
                                         








                                                                                               
                                                                                                            













                                                          
                                                                                                          











                                                          
                                     





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            












                                                          
                                                                                                          

































                                                                                             
                                         








                                                                                               
                                                                                                            



























                                                                                                            
                                     





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            















































                                                                                                            
                                         








                                                                                               
                                                                                                            




















                                                                                                            
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            












                                                                                                            
                                                                                                                                                      

































                                                                                             
                                         








                                                                                               
                                                                                                            




















                                                                                                            
                                     





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            












                                                                                                            
                                                                                                                                                      

































                                                                                             
                                         








                                                                                               
                                                                                                              














                                                                                                            
                                                                                                            




                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                              












                                                                                                            
                                                                                                            


























                                                                                             
                                         








                                                                                               
                                                                                                            




                                    

                                                                          



                                                          
                                                                                                            





                                                          
                                                        




                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            





                                                          
                                                                                                            





                                                          
                                                        


























                                                                                             
                                         








                                                                                               
                                                                                                            







                                                          
                                                                                                          











                                                          
                                     





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            





                                                          
                                                                                                          

































                                                                                             
                                         








                                                                                               
                                                                                                                                                      











                                                          
                                     





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            





                                                          
                                                                                                                                                      

































                                                                                             
                                         







                                                                                               

                                                                                                            



                                    
                                   


                                                          

                                                                                                            




                                                          

                                                                                                            




                                                          

                                                        


                                    

                                                                          


                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            




                                                          

                                                                                                            




                                                          

                                                                                                            





                                                          
                                                        


























                                                                                             
                                         








                                                                                               
                                                                                                            








                                                          
                                                                                                            


















                                                                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            





                                                          
                                                                                                            








































                                                                                                          
                                         








                                                                                               
                                                                                                            


























                                                                                                          
                                     





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            















































                                                                                                          
                                         








                                                                                               
                                                                                                            







                                                          
                                                                                                            


















                                                          
                                     





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            





                                                          
                                                                                                            








































                                                                                             
                                         








                                                                                               
                                                                                                            



















                                                                                                                                                      
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            





                                                          
                                                                                                            








































                                                                                                                                                      
                                         








                                                                                               
                                                                                                            


















                                                                                                                                                      
                                     





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            





                                                          
                                                                                                            








































                                                                                                                                                      
                                         








                                                                                               
                                                                                                              







                                                          
                                                                                                            











                                                                                                            
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                              





                                                          
                                                                                                            

































                                                                                                            
                                         








                                                                                               
                                                                                                            





                                    

                                                                          


                                                          

                                                                                                            




                                                          

                                                                                                            





                                                          
                                                        




                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            




                                                          

                                                                                                            




                                                          

                                                                                                            





                                                          
                                                        


























                                                                                             
                                         








                                                                                               
                                                                                                            








                                                          
                                                                                                            





                                                          
                                                                                                          











                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            





                                                          
                                                                                                            





                                                          
                                                                                                          

































                                                                                             
                                         








                                                                                               
                                                                                                            













                                                          
                                                                                                          











                                                          
                                     





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            












                                                          
                                                                                                          

































                                                                                             
                                         








                                                                                               
                                                                                                            







                                                          
                                                                                                            


















                                                          
                                     





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            





                                                          
                                                                                                            








































                                                                                             
                                         








                                                                                               
                                                                                                            





                                                          
                                                                                                                                                      











                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            





                                                          
                                                                                                            





                                                          
                                                                                                                                                      

































                                                                                             
                                         








                                                                                               
                                                                                                            





                                                          
                                                                                                                                                      











                                                          
                                     





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            





                                                          
                                                                                                            





                                                          
                                                                                                                                                      

































                                                                                             
                                         








                                                                                               
                                                                                                              







                                                          
                                                                                                            





                                                          
                                                                                                            




                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                              





                                                          
                                                                                                            





                                                          
                                                                                                            






















                                                                                             
{
    "callcall_00" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a763ffff",
                "code" : "0x60406000604060006001731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a763ffff",
                "code" : "0x60406000604060006002731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02",
                "code" : "0x60016002553360045534600555",
                "nonce" : "0x00",
                "storage" : {
                    "0x02" : "0x01",
                    "0x04" : "0x1000000000000000000000000000000000000001",
                    "0x05" : "0x02"
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x020d9c",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a761f264",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "7fdadd651f799f564f7ea8af47dbfee7c1e77e6aec2f84a073d49cddb3b0a186",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006001731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006002731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60016002553360045534600555",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x2dc6c0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcall_00_OOGE" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006001731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006002731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x6001600255346005556001600052",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x02bf62",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a761409e",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "995e31596a4df2226888c3f6c878ae3d382a7af122d522ad7338028a85713b09",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006001731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006002731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x6001600255346005556001600052",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x02bf62",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcall_00_OOGE_valueTransfer" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006014731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600a73100000000000000000000000000000000000000261c350f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x029fe0",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7616020",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "0cb11d4beccda8cdacd00c5c1441647bbb6fc00baa90f40317e21aa06e583c51",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006014731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600a73100000000000000000000000000000000000000261c350f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x029fe0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcall_00_SuicideEnd" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b5fb6fe400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600255",
                "nonce" : "0x00",
                "storage" : {
                    "0x02" : "0x01"
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0xdf3d",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a76320c3",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "6edf980c4ea12c7909b073b2fd8902d00bb24a0b9df2142eb415aa31e4c7edda",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000261c350f1600155731000000000000000000000000000000000000000ff",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x2dc6c0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcallcall_000" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a763ffff",
                "code" : "0x604060006040600060017310000000000000000000000000000000000000016203d090f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a763ffff",
                "code" : "0x60406000604060006002731000000000000000000000000000000000000002620249f0f1600155",
                "nonce" : "0x00",
                "storage" : {
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x0de0b6b3a763ffff",
                "code" : "0x60406000604060006003731000000000000000000000000000000000000003620186a0f1600255",
                "nonce" : "0x00",
                "storage" : {
                    "0x02" : "0x01"
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x03",
                "code" : "0x60016003553360045534600555",
                "nonce" : "0x00",
                "storage" : {
                    "0x03" : "0x01",
                    "0x04" : "0x1000000000000000000000000000000000000002",
                    "0x05" : "0x03"
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x02762e",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a76189d2",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "61965ec330972a2a5874009974c987157249d8e52cc5c4e2a516501affac60d6",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x604060006040600060017310000000000000000000000000000000000000016203d090f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006002731000000000000000000000000000000000000002620249f0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006003731000000000000000000000000000000000000003620186a0f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x60016003553360045534600555",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x2dc6c0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcallcall_000_OOGE" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f1600255",
                "nonce" : "0x00",
                "storage" : {
                    "0x02" : "0x01"
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x013d3a",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762c2c6",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "114dfa58628f348ecb38052e6d912f9abd2705c425a26811c7d571d496210589",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x029fe0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcallcall_000_OOGMAfter" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0xa06e",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7635f92",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "82929fe6196eb5ccc21a2d3eaf392e5ea45bd9654f6f3db27f56e41378b942c1",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x029fe0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcallcall_000_OOGMBefore" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0xeed4",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a763112c",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "db6a8d357e83569b40b2a956ea01857c310290261af6f595e7fc644630806488",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x029fe0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcallcall_000_SuicideEnd" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x04a817c800",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                    "0x03" : "0x01"
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x012da3",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762d25d",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "b2cc70b5c91805a7ba65d849ab2f2977354a5ed97458fa5481daaa78dd01783f",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f1600255731000000000000000000000000000000000000001ff",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x2dc6c0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcallcall_000_SuicideMiddle" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b5fb6fe400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x9117",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7636ee9",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "23f8f86852e3e4a2e279acb10d051dda77dcf6af0c37ce21c97d73ece5af9951",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x731000000000000000000000000000000000000000ff6040600060406000600073100000000000000000000000000000000000000361c350f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x2dc6c0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcallcall_ABCB_RECURSIVE" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0xb2d05e00",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000163017d7840f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620f4240f1600155",
                "nonce" : "0x00",
                "storage" : {
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x604060006040600060007310000000000000000000000000000000000000016207a120f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x08a3c2",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a75b5c3e",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "f9904c46ff09c63f9864b18ef1acc3fa7ddda90e80b87f197500e40be0f61e54",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000163017d7840f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620f4240f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x604060006040600060007310000000000000000000000000000000000000016207a120f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x01c9c380",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcallcallcode_001" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a763ffff",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a763ffff",
                "code" : "0x6040600060406000600273100000000000000000000000000000000000000262030d40f1600155",
                "nonce" : "0x00",
                "storage" : {
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x0de0b6b3a7640002",
                "code" : "0x60406000604060006003731000000000000000000000000000000000000003620249f0f2600255",
                "nonce" : "0x00",
                "storage" : {
                    "0x02" : "0x01",
                    "0x03" : "0x01",
                    "0x04" : "0x1000000000000000000000000000000000000002",
                    "0x05" : "0x03"
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x60016003553360045534600555",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x02762e",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a76189d2",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "058318f0eb45573fa8ca2ac5ff4a4080e92073734757dffd1eda3425665e6c9b",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600273100000000000000000000000000000000000000262030d40f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006003731000000000000000000000000000000000000003620249f0f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x60016003553360045534600555",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x2dc6c0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcallcallcode_001_OOGE" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f2600255",
                "nonce" : "0x00",
                "storage" : {
                    "0x02" : "0x01"
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x013d3a",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762c2c6",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "c81b3f4f15ffbc2ea51439704986ce61933c065b92ef9313f57c11b949856164",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x029fe0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcallcallcode_001_OOGMAfter" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0xa06e",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7635f92",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "cb602245eb68a8e280581c91188049a5349c667fbfe0a636d88603e8821f1191",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x029fe0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcallcallcode_001_OOGMBefore" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0xeed4",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a763112c",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "db6a8d357e83569b40b2a956ea01857c310290261af6f595e7fc644630806488",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x029fe0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcallcallcode_001_SuicideEnd" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x04a817c800",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x012da3",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762d25d",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "5ee6eeb669c1d7a7e71592eb8cb5a34c0375a8996d698e02f565fbf18da69705",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f2600255731000000000000000000000000000000000000001ff",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x2dc6c0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcallcallcode_001_SuicideMiddle" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b5fb6fe400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x9117",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7636ee9",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "23f8f86852e3e4a2e279acb10d051dda77dcf6af0c37ce21c97d73ece5af9951",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x731000000000000000000000000000000000000000ff6040600060406000600073100000000000000000000000000000000000000361c350f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x2dc6c0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcallcallcode_ABCB_RECURSIVE" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0xb2d05e00",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000163017d7840f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620f4240f1600155",
                "nonce" : "0x00",
                "storage" : {
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x604060006040600060007310000000000000000000000000000000000000016207a120f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x08a3c2",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a75b5c3e",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "5cfc164fa79f7a1ed6e4c96e479a96efdb50a7c14eb59af4016b1f0de169504e",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000163017d7840f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620f4240f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x604060006040600060007310000000000000000000000000000000000000016207a120f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x01c9c380",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcallcode_01" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a763ffff",
                "code" : "0x60406000604060006001731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640001",
                "code" : "0x60406000604060006002731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                    "0x01" : "0x01",
                    "0x02" : "0x01",
                    "0x04" : "0x1000000000000000000000000000000000000001",
                    "0x05" : "0x02"
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60016002553360045534600555",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x020d9c",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a761f264",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "64022c5dcd77a8214303a5e86d1fbb01f7308447f477e29091295dff3f29c4c5",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006001731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006002731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60016002553360045534600555",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x2dc6c0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcallcode_01_OOGE" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000261c350f2600155",
                "nonce" : "0x00",
                "storage" : {
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0xeed4",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a763112c",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "4a7005e8db1b88559a801ae1d71fbafcb7382345e0250e12edbf5413a7a4d821",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000261c350f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x029fe0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcallcode_01_SuicideEnd" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b5fb6fe400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0xdf3d",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a76320c3",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "3618f0634e258733a71ad69de3d642b67e8eb7d30ed210514e7fd231c80e7370",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000261c350f2600155731000000000000000000000000000000000000000ff",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x2dc6c0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcallcodecall_010" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a763ffff",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a763fffe",
                "code" : "0x6040600060406000600273100000000000000000000000000000000000000262030d40f2600155",
                "nonce" : "0x00",
                "storage" : {
                    "0x01" : "0x01",
                    "0x02" : "0x01"
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006003731000000000000000000000000000000000000003620249f0f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x03",
                "code" : "0x60016003553360045534600555",
                "nonce" : "0x00",
                "storage" : {
                    "0x03" : "0x01",
                    "0x04" : "0x1000000000000000000000000000000000000001",
                    "0x05" : "0x03"
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x02762e",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a76189d2",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "fb7bf659973698bae4246ad3b35d5f305f99055c023a5aa3736a5e065c220e00",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600273100000000000000000000000000000000000000262030d40f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006003731000000000000000000000000000000000000003620249f0f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x60016003553360045534600555",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x2dc6c0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcallcodecall_010_OOGE" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                    "0x01" : "0x01",
                    "0x02" : "0x01"
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x013d3a",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762c2c6",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "f63a2a1e0064faebba67d53594aa2e588b4735c9b537926a58a5f46df915e933",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x029fe0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcallcodecall_010_OOGMAfter" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0xa06e",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7635f92",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "82929fe6196eb5ccc21a2d3eaf392e5ea45bd9654f6f3db27f56e41378b942c1",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x029fe0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcallcodecall_010_OOGMBefore" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0xeed4",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a763112c",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "c4e47cb0a4fdec76c7e5b8995f705c4eb5981856d4d171f627163471cc20be06",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x029fe0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcallcodecall_010_SuicideEnd" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f1600255731000000000000000000000000000000000000001ff",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                    "0x03" : "0x01"
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x012da3",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762d25d",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "308b378d2e435c0692646066af5f00b554ff5b3a2c9ebfee622d34231ded98fc",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f1600255731000000000000000000000000000000000000001ff",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x2dc6c0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcallcodecall_010_SuicideMiddle" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b5fb6fe400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x731000000000000000000000000000000000000000ff6040600060406000600073100000000000000000000000000000000000000361c350f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x9117",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7636ee9",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "3a27bc9c6ffc87178ee9169ce24b0e291ae54c4e53de670eec5c145008543f0d",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x731000000000000000000000000000000000000000ff6040600060406000600073100000000000000000000000000000000000000361c350f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x2dc6c0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcallcodecall_ABCB_RECURSIVE" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0xb2d05e00",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000163017d7840f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620f4240f2600155",
                "nonce" : "0x00",
                "storage" : {
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x604060006040600060007310000000000000000000000000000000000000016207a120f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x08a3c2",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a75b5c3e",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "28b46965732d9fed6925f56bd10ae0df42205d903c9c0b51f8c6b6295f6ead44",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000163017d7840f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620f4240f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x604060006040600060007310000000000000000000000000000000000000016207a120f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x01c9c380",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcallcodecallcode_011" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a763ffff",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640001",
                "code" : "0x6040600060406000600273100000000000000000000000000000000000000262030d40f2600155",
                "nonce" : "0x00",
                "storage" : {
                    "0x01" : "0x01",
                    "0x02" : "0x01",
                    "0x03" : "0x01",
                    "0x04" : "0x1000000000000000000000000000000000000001",
                    "0x05" : "0x03"
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006003731000000000000000000000000000000000000003620249f0f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x60016003553360045534600555",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x02762e",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a76189d2",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "d3806563a96c22dede1ec02b44b53e436457040b0be16c9a2e0134116a2d5d43",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600273100000000000000000000000000000000000000262030d40f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006003731000000000000000000000000000000000000003620249f0f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x60016003553360045534600555",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x2dc6c0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcallcodecallcode_011_OOGE" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                    "0x01" : "0x01",
                    "0x02" : "0x01"
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x013d3a",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762c2c6",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "91cc2d4dc118bc8d26e330573460197bdbd078e5bf9d193bcecbbdce81c523cf",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x029fe0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcallcodecallcode_011_OOGMAfter" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0xa06e",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7635f92",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "cb602245eb68a8e280581c91188049a5349c667fbfe0a636d88603e8821f1191",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x029fe0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcallcodecallcode_011_OOGMBefore" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0xeed4",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a763112c",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "c4e47cb0a4fdec76c7e5b8995f705c4eb5981856d4d171f627163471cc20be06",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x029fe0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcallcodecallcode_011_SuicideEnd" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f2600255731000000000000000000000000000000000000001ff",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x012da3",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762d25d",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "f43c5e45844f6bbb7b0a55cef021b13121fecab88793bdf5dea426825d17f9e5",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f2600255731000000000000000000000000000000000000001ff",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x2dc6c0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcallcodecallcode_011_SuicideMiddle" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b5fb6fe400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x731000000000000000000000000000000000000000ff6040600060406000600073100000000000000000000000000000000000000361c350f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x9117",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7636ee9",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "5c2affc615e1f96d419f1765f106f5794982ad8c394895709e6192f04a3887f5",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x731000000000000000000000000000000000000000ff6040600060406000600073100000000000000000000000000000000000000361c350f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x2dc6c0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcallcodecallcode_ABCB_RECURSIVE" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0xb2d05e00",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000163017d7840f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620f4240f2600155",
                "nonce" : "0x00",
                "storage" : {
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x604060006040600060007310000000000000000000000000000000000000016207a120f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x08a3c2",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a75b5c3e",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "e3ad647f45f66170708956d7148b3e3b7a092def6a2399d27be7fbfbdea4230f",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000163017d7840f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620f4240f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x604060006040600060007310000000000000000000000000000000000000016207a120f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x01c9c380",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecall_10" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a763fffe",
                "code" : "0x60406000604060006001731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01",
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006002731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02",
                "code" : "0x60016002553360045534600555",
                "nonce" : "0x00",
                "storage" : {
                    "0x02" : "0x01",
                    "0x04" : "0x1000000000000000000000000000000000000000",
                    "0x05" : "0x02"
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x020d9c",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a761f264",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "13029ee58ec61d79d3dbd6645696b265af86730db18644543f952336655b79b4",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006001731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006002731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60016002553360045534600555",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x2dc6c0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecall_10_OOGE" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01",
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000261c350f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0xeed4",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a763112c",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "88f322f71f7e7a5986baec25288251bb47e823b913d370b0ff0037e1c40dac7a",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000261c350f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x029fe0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecall_10_SuicideEnd" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000261c350f1600155731000000000000000000000000000000000000000ff",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600255",
                "nonce" : "0x00",
                "storage" : {
                    "0x02" : "0x01"
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0xdf3d",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a76320c3",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "6232a655eb075819b41b8c54e2c83c8730b5f42ff7f3820a58c13cf9ce1aa981",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000261c350f1600155731000000000000000000000000000000000000000ff",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x2dc6c0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecallcall_100" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a763fffe",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01",
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600273100000000000000000000000000000000000000262030d40f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x0de0b6b3a763ffff",
                "code" : "0x60406000604060006003731000000000000000000000000000000000000003620249f0f1600255",
                "nonce" : "0x00",
                "storage" : {
                    "0x02" : "0x01"
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x03",
                "code" : "0x60016003553360045534600555",
                "nonce" : "0x00",
                "storage" : {
                    "0x03" : "0x01",
                    "0x04" : "0x1000000000000000000000000000000000000002",
                    "0x05" : "0x03"
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x02762e",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a76189d2",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "6f3b65bb0003aa615e5b7f06ac210134a41d99f40594cb14bdb1d283603d893d",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600273100000000000000000000000000000000000000262030d40f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006003731000000000000000000000000000000000000003620249f0f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x60016003553360045534600555",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x2dc6c0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecallcall_100_OOGE" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01",
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f1600255",
                "nonce" : "0x00",
                "storage" : {
                    "0x02" : "0x01"
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x013d3a",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762c2c6",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "09428ab6acb12570eef3dbb5e9649260845a63a7e586b4541de8bc1a5e502ff6",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x029fe0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecallcall_100_OOGMAfter" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0xa06e",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7635f92",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "d5897fcd0a35fa0bbc0371ae19ac6cae85819f8ab8d93e84c9352c344494925d",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x029fe0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecallcall_100_OOGMBefore" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01",
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0xeed4",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a763112c",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "47cf508a818f4c87796040fd503c0362a320c2eca86cc360bd3454511bca60e6",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x029fe0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecallcall_100_SuicideEnd" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01",
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x04a817c800",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                    "0x03" : "0x01"
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x012da3",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762d25d",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "8de9ffdf6b2b0f4048d30b61853c0ef89c4499a1d6a1846251d8d6d7cbddbd88",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f1600255731000000000000000000000000000000000000001ff",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x2dc6c0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecallcall_100_SuicideMiddle" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b5fb6fe400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01",
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x9117",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7636ee9",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "294042dda3ede82ea72313a788267340fcf9aea60f81ca9ee880a2bc7b814d01",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x731000000000000000000000000000000000000000ff6040600060406000600073100000000000000000000000000000000000000361c350f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x2dc6c0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecallcall_ABCB_RECURSIVE" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0xb2d05e00",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000163017d7840f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01",
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620f4240f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x604060006040600060007310000000000000000000000000000000000000016207a120f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x08a3c2",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a75b5c3e",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "a8670ec8bd38fd68db357ce1257b4ba7e9892058ace8f14b056bec60429c24cc",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000163017d7840f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620f4240f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x604060006040600060007310000000000000000000000000000000000000016207a120f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x01c9c380",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecallcallcode_101" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a763fffe",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01",
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600273100000000000000000000000000000000000000262030d40f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x0de0b6b3a7640002",
                "code" : "0x60406000604060006003731000000000000000000000000000000000000003620249f0f2600255",
                "nonce" : "0x00",
                "storage" : {
                    "0x02" : "0x01",
                    "0x03" : "0x01",
                    "0x04" : "0x1000000000000000000000000000000000000002",
                    "0x05" : "0x03"
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x60016003553360045534600555",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x02762e",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a76189d2",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "2825670f27ac810494fab6f34cba0f7cd31bc3c4ed74b7d0fd9674be38d47a88",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600273100000000000000000000000000000000000000262030d40f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006003731000000000000000000000000000000000000003620249f0f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x60016003553360045534600555",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x2dc6c0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecallcallcode_101_OOGE" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01",
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f2600255",
                "nonce" : "0x00",
                "storage" : {
                    "0x02" : "0x01"
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x013d3a",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762c2c6",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "db8607c73cbe254c7e0eebe92e9f603c557b1c2a933360c1198c5268e3492372",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x029fe0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecallcallcode_101_OOGMAfter" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0xa06e",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7635f92",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "f83ae2724136b45495ef4fc740c1e57d24f8a40d8004f74de7354d6f13a1c0b1",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x029fe0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecallcallcode_101_OOGMBefore" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01",
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0xeed4",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a763112c",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "47cf508a818f4c87796040fd503c0362a320c2eca86cc360bd3454511bca60e6",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x029fe0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecallcallcode_101_SuicideEnd" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01",
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x04a817c800",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x012da3",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762d25d",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "36322aecd24ccc418a4542b24ef71f7a067927b59f62e71835e62f984f8a28e9",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f2600255731000000000000000000000000000000000000001ff",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x2dc6c0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecallcallcode_101_SuicideMiddle" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b5fb6fe400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01",
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x9117",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7636ee9",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "294042dda3ede82ea72313a788267340fcf9aea60f81ca9ee880a2bc7b814d01",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x731000000000000000000000000000000000000000ff6040600060406000600073100000000000000000000000000000000000000361c350f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x2dc6c0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecallcallcode_ABCB_RECURSIVE" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0xb2d05e00",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000163017d7840f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01",
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620f4240f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x604060006040600060007310000000000000000000000000000000000000016207a120f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x08a3c2",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a75b5c3e",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "843fc7bc4ac97ee198931f09665467525e5846bf6674622420f0e0173b89bba4",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000163017d7840f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620f4240f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x604060006040600060007310000000000000000000000000000000000000016207a120f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x01c9c380",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecallcode_11" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006001731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01",
                    "0x01" : "0x01",
                    "0x02" : "0x01",
                    "0x04" : "0x1000000000000000000000000000000000000000",
                    "0x05" : "0x02"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006002731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60016002553360045534600555",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x020d9c",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a761f264",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "9f32d54a7aab230e415e28774dc197591a74708d10676c0ceb4bda811c462979",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006001731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006002731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60016002553360045534600555",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x2dc6c0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecallcode_11_OOGE" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01",
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000261c350f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0xeed4",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a763112c",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "d65e968cc3649794d5f50924868a5d1b212401aa0298e7f811fa27d1cd9d44ea",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000261c350f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x029fe0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecallcode_11_SuicideEnd" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000261c350f2600155731000000000000000000000000000000000000000ff",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0xdf3d",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a76320c3",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "77a4a1939bcb8b911d5b69a23096e346391cca0cefd06ef641b170fe26b76a15",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000261c350f2600155731000000000000000000000000000000000000000ff",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x2dc6c0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecallcodecall_110" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a763fffd",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01",
                    "0x01" : "0x01",
                    "0x02" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600273100000000000000000000000000000000000000262030d40f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006003731000000000000000000000000000000000000003620249f0f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x03",
                "code" : "0x60016003553360045534600555",
                "nonce" : "0x00",
                "storage" : {
                    "0x03" : "0x01",
                    "0x04" : "0x1000000000000000000000000000000000000000",
                    "0x05" : "0x03"
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x02762e",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a76189d2",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "86ed27ee1fa6862e3f702df8af84487214c29ff0094d862f6ccf9b4267973903",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600273100000000000000000000000000000000000000262030d40f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006003731000000000000000000000000000000000000003620249f0f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x60016003553360045534600555",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x2dc6c0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecallcodecall_110_OOGE" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01",
                    "0x01" : "0x01",
                    "0x02" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x013d3a",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762c2c6",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "d2abaf24ff786c06d898d9432e7b81a3da4e9c57f15f5f7476e4a97f47f148b5",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x029fe0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecallcodecall_110_OOGMAfter" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0xa06e",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7635f92",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "d5897fcd0a35fa0bbc0371ae19ac6cae85819f8ab8d93e84c9352c344494925d",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x029fe0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecallcodecall_110_OOGMBefore" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01",
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0xeed4",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a763112c",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "e9d6cf67715dfd126cd0b0e2cec6183489a796e6dc48d3e51c2d7337815abdb6",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x029fe0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecallcodecall_110_SuicideEnd" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b5fb6fe400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f1600255731000000000000000000000000000000000000001ff",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                    "0x03" : "0x01"
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x012da3",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762d25d",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "58797699a95dcbbc5692efe394ff177bb2bff2ac3a6846cb9480eeb49a4efaec",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f1600255731000000000000000000000000000000000000001ff",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x2dc6c0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecallcodecall_110_SuicideMiddle" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x731000000000000000000000000000000000000000ff6040600060406000600073100000000000000000000000000000000000000361c350f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x9117",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7636ee9",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "a9f074d01db22b4876c62d5a772b7e92f7f182d8ffff0aec50d664eb589306d8",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x731000000000000000000000000000000000000000ff6040600060406000600073100000000000000000000000000000000000000361c350f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x2dc6c0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecallcodecall_ABCB_RECURSIVE" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0xb2d05e00",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000163017d7840f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01",
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620f4240f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x604060006040600060007310000000000000000000000000000000000000016207a120f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x08a3c2",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a75b5c3e",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "2bba4d9c82761de3e6014ee9ed7d1f97fd6e4c6819034126d611e8a273509a1b",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000163017d7840f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620f4240f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x604060006040600060007310000000000000000000000000000000000000016207a120f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x01c9c380",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecallcodecallcode_111" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01",
                    "0x01" : "0x01",
                    "0x02" : "0x01",
                    "0x03" : "0x01",
                    "0x04" : "0x1000000000000000000000000000000000000000",
                    "0x05" : "0x03"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600273100000000000000000000000000000000000000262030d40f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006003731000000000000000000000000000000000000003620249f0f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x60016003553360045534600555",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x02762e",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a76189d2",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "2996c7e8eadbffbde77566b13a9cbc7cdebeae7833b130a45c72acc99da9c66e",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600273100000000000000000000000000000000000000262030d40f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006003731000000000000000000000000000000000000003620249f0f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x60016003553360045534600555",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x2dc6c0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecallcodecallcode_111_OOGE" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01",
                    "0x01" : "0x01",
                    "0x02" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x013d3a",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762c2c6",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "a2bba64b5d6bf9af2f0b0277999d33cfb2d83586a2b9c5499ff7984b0beb59fc",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x029fe0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecallcodecallcode_111_OOGMAfter" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0xa06e",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7635f92",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "f83ae2724136b45495ef4fc740c1e57d24f8a40d8004f74de7354d6f13a1c0b1",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x029fe0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecallcodecallcode_111_OOGMBefore" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01",
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0xeed4",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a763112c",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "e9d6cf67715dfd126cd0b0e2cec6183489a796e6dc48d3e51c2d7337815abdb6",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x029fe0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecallcodecallcode_111_SuicideEnd" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b5fb6fe400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f2600255731000000000000000000000000000000000000001ff",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x012da3",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762d25d",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "403b618a588daef088c707e25def251aa42c083092904234db5cccfff1689a7e",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000361c350f2600255731000000000000000000000000000000000000001ff",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x2dc6c0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecallcodecallcode_111_SuicideMiddle" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x731000000000000000000000000000000000000000ff6040600060406000600073100000000000000000000000000000000000000361c350f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x9117",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7636ee9",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "3795e19ed3276a737d84a353cbfa755a217005574bd7ee4934f9c1627d8603dd",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x731000000000000000000000000000000000000000ff6040600060406000600073100000000000000000000000000000000000000361c350f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x02540be400",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x2dc6c0",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecallcodecallcode_ABCB_RECURSIVE" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0xb2d05e00",
            "currentNumber" : "0x0f4240",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000163017d7840f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01",
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620f4240f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x604060006040600060007310000000000000000000000000000000000000016207a120f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x08a3c2",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a75b5c3e",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "a62ec476ec7b2c034e5ddb7d512640e509e8f000c306f596881163fb6ac48ad0",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000163017d7840f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x02540be400",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620f4240f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02540be400",
                "code" : "0x604060006040600060007310000000000000000000000000000000000000016207a120f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x01c9c380",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    }
}