aboutsummaryrefslogblamecommitdiffstats
path: root/tests/files/StateTests/stCallCodes.json
blob: eec184d35092b71255abd647ccab7281706f37a4 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
6564
6565
6566
6567
6568
6569
6570
6571
6572
6573
6574
6575
6576
6577
6578
6579
6580
6581
6582
6583
6584
6585
6586
6587
6588
6589
6590
6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
6613
6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
6626
6627
6628
6629
6630
6631
6632
6633
6634
6635
6636
6637
6638
6639
6640
6641
6642
6643
6644
6645
6646
6647
6648
6649
6650
6651
6652
6653
6654
6655
6656
6657
6658
6659
6660
6661
6662
6663
6664
6665
6666
6667
6668
6669
6670
6671
6672
6673
6674
6675
6676
6677
6678
6679
6680
6681
6682
6683
6684
6685
6686
6687
6688
6689
6690
6691
6692
6693
6694
6695
6696
6697
6698
6699
6700
6701
6702
6703
6704
6705
6706
6707
6708
6709
6710
6711
6712
6713
6714
6715
6716
6717
6718
6719
6720
6721
6722
6723
6724
6725
6726
6727
6728
6729
6730
6731
6732
6733
6734
6735
6736
6737
6738
6739
6740
6741
6742
6743
6744
6745
6746
6747
6748
6749
6750
6751
6752
6753
6754
6755
6756
6757
6758
6759
6760
6761
6762
6763
6764
6765
6766
6767
6768
6769
6770
6771
6772
6773
6774
6775
6776
6777
6778
6779
6780
6781
6782
6783
6784
6785
6786
6787
6788
6789
6790
6791
6792
6793
6794
6795
6796
6797
6798
6799
6800
6801
6802
6803
6804
6805
6806
6807
7194
7195
7196
7197
7198
7199
7200
7201
7202
7203
7204
7205
7206
7207
7208
7209
7210
7211
7212
7213
7214
7215
7216
7217
7218
7219
7220
7221
7222
7223
7224
7225
7226
7227
7228
7229
7230
7231
7232
7233
7234
7235
7236
7237
7238
7239
7240
7241
7242
7243
7244
7245
7246
7247
7248
7249
7250
7251
7252
7253
7254
7255
7256
7257
7258
7259
7260
7261
7262
7263
7264
7265
7266
7267
7268
7269
7270
7271
7272
7273
7274
7275
7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509














                                                                                               
                                                 
                                                                                                            





                                                          
                                                 
                                                                                                            





                                                          
                                   
                                                                                                

                                 

                                                                          





                                                                          


                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            




                                                          
                                                 
                                                                                                            





                                                          
                                                                                                












































                                                                                                            
                                                                                                          

                                 



                                                          
                                                  




                                                          
                                       





                                                          
                                                 





                                 
                                                                                             









                                                                                                            
                                                                                                          





                                                          
                                                  





















                                                                                             





















                                                                                                            
                                                                                                          





                                                          
                                                  


















                                                          
                                                                                             









                                                                                                            
                                                                                                          





                                                          
                                                  





















                                                                                             


































































































                                                                                                                                                      

                                                                                                            





                                                          
                                                 
                                                                                                            





                                                          
                                                 
                                                                                                            





                                                          
                                   
                                                                                                          

                                 




                                                                            


                                                                          


                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            




                                                          
                                                 
                                                                                                            




                                                          
                                                 
                                                                                                            





                                                          
                                                                                                          




















































                                                                                                            
                                                                                                          

                                 



                                                          
                                                  




                                                          
                                       





                                                          
                                                 





                                 
                                                                                             
















                                                                                                            
                                                                                                          





                                                          
                                                  




































                                                                                               
                                                                                                          

                                 



                                                          
                                                                                                                    





                                                          
                                                                                                          











                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                          





                                                          
                                                                                                                    





                                                          
                                                                                                          



















































                                                                                                            
                                                                                                          

                                 



                                                          
                                                                                                                    











                                                          
                                       





                                                          
                                                 





                                 
                                                                                             









                                                                                                            
                                                                                                          





                                                          
                                                                                                                    













































































































































































































































































































































                                                                                                                                                      

                                                                                                            





                                                          
                                                 
                                                                                                            





                                                          
                                                 
                                                                                                            

                                 




                                                                            
                                    


                                                                          



                                                          
                                                                                                          




                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            




                                                          
                                                 
                                                                                                            




                                                          
                                                 
                                                                                                            





                                                          
                                                                                                          




















































                                                                                                            
                                                                                                          

                                 



                                                          
                                                  




                                                          
                                       





                                                          
                                                 





                                 
                                                                                             
















                                                                                                            
                                                                                                          





                                                          
                                                  




































                                                                                               
                                                                                                          

                                 



                                                          
                                                                                                                    





                                                          
                                                                                                          











                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                          





                                                          
                                                                                                                    





                                                          
                                                                                                          



















































                                                                                                            
                                                                                                          

                                 



                                                          
                                                                                                                    











                                                          
                                       





                                                          
                                                 





                                 
                                                                                             









                                                                                                            
                                                                                                          





                                                          
                                                                                                                    












































































































































































































































































































































                                                                                                                                                      
                                                 
                                                                                                            





                                                          
                                                 
                                                                                                            


                                    

                                                                          





                                                                          



                                                          
                                                                                                




                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            




                                                          
                                                 
                                                                                                            





                                                          
                                                                                                












































                                                                                                            
                                                                                                          

                                 



                                                          
                                                  




                                                          
                                       





                                                          
                                                 





                                 
                                                                                             









                                                                                                            
                                                                                                          





                                                          
                                                  























































































































                                                                                                                                                      

                                                                                                            





                                                          
                                                 
                                                                                                            






                                                          
                                                 
                                                                                                            




                                                          
                                   
                                                                                                          

                                 




                                                                            


                                                                          


                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            




                                                          
                                                 
                                                                                                            




                                                          
                                                 
                                                                                                            





                                                          
                                                                                                          















































                                                                                                            
                                   



                                                          
                                                                                                          





                                                          
                                                  




                                                          
                                       





                                                          
                                                 





                                 
                                                                                             
















                                                                                                            
                                                                                                          





                                                          
                                                  




































                                                                                               
                                                                                                          

                                 



                                                          
                                                                                                                    





                                                          
                                                                                                          











                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                          





                                                          
                                                                                                                    





                                                          
                                                                                                          



















































                                                                                                            
                                                                                                          

                                 



                                                          
                                                                                                                    











                                                          
                                       





                                                          
                                                 





                                 
                                                                                             









                                                                                                            
                                                                                                          





                                                          
                                                                                                                    











































































































































































































































































































































                                                                                                                                                      

                                                                                                            





                                                          
                                                 
                                                                                                            


                                    




                                                                            
                                    


                                                                          


                                                          
                                                 
                                                                                                            





                                                          
                                                                                                          




                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            




                                                          
                                                 
                                                                                                            




                                                          
                                                 
                                                                                                            





                                                          
                                                                                                          















































                                                                                                            
                                   



                                                          
                                                                                                          





                                                          
                                                  




                                                          
                                       





                                                          
                                                 





                                 
                                                                                             
















                                                                                                            
                                                                                                          





                                                          
                                                  




































                                                                                               
                                                                                                          

                                 



                                                          
                                                                                                                    





                                                          
                                                                                                          











                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                          





                                                          
                                                                                                                    





                                                          
                                                                                                          



















































                                                                                                            
                                                                                                          

                                 



                                                          
                                                                                                                    











                                                          
                                       





                                                          
                                                 





                                 
                                                                                             









                                                                                                            
                                                                                                          





                                                          
                                                                                                                    




























































































































































































































































































































                                                                                                                                                      
                             

                                                                           

                                               








                                                                                               


                                                                                                                                                                                                                                                                    
                             


                                                          

                                                              



                                 
                                                          
                                   

                                 
                             



                                                                          


                                                          
                                       





                                                          
                                               



                                 






                                                          

             
                                                                                             

                                                          

                                                                                                                                                                                                                                                                    




                                                          

                                                              




                                                          
                                               







                                 
                                    






                                                                                             
                                      

                                                                           

                                               








                                                                                               


                                                                                                                                                                                            


                             

                                                          


                                 

                                                                         


                                                          
                                       





                                                          
                                               





                                 
                                                                                             

                                                          

                                                                                                                                                                                            




                                                          
                                               







                                 
                                    






                                                                                             
                               

                                                                           

                                               







                                                                                               

















































































































































































































































































































































































































                                                                                                                                                                                            
                                                                                                            







                                                          
                                                                                                            





                                                          
                                                                                                



                                                                          





                                                                          


                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            





                                                          
                                                                                                            





                                                          
                                                                                                







































                                                                                                            
                                   



                                                          
                                                                                                          





                                                          
                                                  




                                                          
                                       





                                                          
                                                 





                                 
                                                                                             









                                                                                                            
                                                                                                          





                                                          
                                                  





































                                                                                                                                                      

















































































                                                                                                                                                      

                                                                                                            






                                                          
                                                 
                                                                                                            




                                                          
                                                 
                                                                                                            





                                                          
                                   
                                                                                                          

                                 




                                                                            


                                                                          


                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            




                                                          
                                                 
                                                                                                            




                                                          
                                                 
                                                                                                            





                                                          
                                                                                                          




















































                                                                                                            
                                                                                                          

                                 



                                                          
                                                  




                                                          
                                       





                                                          
                                                 





                                 
                                                                                             
















                                                                                                            
                                                                                                          





                                                          
                                                  




































                                                                                               
                                                                                                          

                                 



                                                          
                                                                                                                    





                                                          
                                                                                                          











                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                          





                                                          
                                                                                                                    





                                                          
                                                                                                          














































                                                                                                            
                                   



                                                          
                                                                                                          





                                                          
                                                                                                                    











                                                          
                                       





                                                          
                                                 





                                 
                                                                                             









                                                                                                            
                                                                                                          





                                                          
                                                                                                                    













































































































































































































































































































































                                                                                                                                                      

                                                                                                            






                                                          
                                                 
                                                                                                            




                                                          
                                                 
                                                                                                            

                                 




                                                                            
                                    


                                                                          



                                                          
                                                                                                          




                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            




                                                          
                                                 
                                                                                                            




                                                          
                                                 
                                                                                                            





                                                          
                                                                                                          




















































                                                                                                            
                                                                                                          

                                 



                                                          
                                                  




                                                          
                                       





                                                          
                                                 





                                 
                                                                                             
















                                                                                                            
                                                                                                          





                                                          
                                                  




































                                                                                               
                                                                                                          

                                 



                                                          
                                                                                                                    





                                                          
                                                                                                          











                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                          





                                                          
                                                                                                                    





                                                          
                                                                                                          














































                                                                                                            
                                   



                                                          
                                                                                                          





                                                          
                                                                                                                    











                                                          
                                       





                                                          
                                                 





                                 
                                                                                             









                                                                                                            
                                                                                                          





                                                          
                                                                                                                    













































































































































































































































































































































                                                                                                                                                      
                                                                                                            



                                    

                                                                          





                                                                          


                                                          
                                                 
                                                                                                            





                                                          
                                                                                                




                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            




                                                          
                                                 
                                                                                                            





                                                          
                                                                                                







































                                                                                                            
                                   



                                                          
                                                                                                          





                                                          
                                                  




                                                          
                                       





                                                          
                                                 





                                 
                                                                                             









                                                                                                            
                                                                                                          





                                                          
                                                  






















































































































                                                                                                                                                      

                                                                                                            







                                                          
                                                 
                                                                                                            




                                                          
                                                 
                                                                                                            




                                                          
                                   
                                                                                                          

                                 




                                                                            


                                                                          


                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            




                                                          
                                                 
                                                                                                            




                                                          
                                                 
                                                                                                            





                                                          
                                                                                                          








































                                                                                                            
                                   










                                                                                                            
                                                                                                          





                                                          
                                                  




                                                          
                                       





                                                          
                                                 





                                 
                                                                                             
















                                                                                                            
                                                                                                          





                                                          
                                                  




































                                                                                               
                                                                                                          

                                 



                                                          
                                                                                                                    





                                                          
                                                                                                          











                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                          





                                                          
                                                                                                                    





                                                          
                                                                                                          














































                                                                                                            
                                   



                                                          
                                                                                                          





                                                          
                                                                                                                    











                                                          
                                       





                                                          
                                                 





                                 
                                                                                             









                                                                                                            
                                                                                                          





                                                          
                                                                                                                    










































































































































































































































































































































                                                                                                                                                      
                                                                                                            



                                    




                                                                            
                                    


                                                                          


                                                          
                                                 
                                                                                                            




                                                          
                                                 
                                                                                                            





                                                          
                                                                                                          




                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                            




                                                          
                                                 
                                                                                                            




                                                          
                                                 
                                                                                                            





                                                          
                                                                                                          








































                                                                                                            
                                   










                                                                                                            
                                                                                                          





                                                          
                                                  




                                                          
                                       





                                                          
                                                 





                                 
                                                                                             
















                                                                                                            
                                                                                                          





                                                          
                                                  




































                                                                                               
                                                                                                          

                                 



                                                          
                                                                                                                    





                                                          
                                                                                                          











                                                          
                                       





                                                          
                                                 





                                 
                                                                                             


                                                          
                                                                                                          





                                                          
                                                                                                                    





                                                          
                                                                                                          














































                                                                                                            
                                   



                                                          
                                                                                                          





                                                          
                                                                                                                    











                                                          
                                       





                                                          
                                                 





                                 
                                                                                             









                                                                                                            
                                                                                                          





                                                          
                                                                                                                    



























































































































































































































































































































                                                                                                                                                      
{
    "callcall_00" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a763ffff",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a763ffff",
                "code" : "0x604060006040600060027310000000000000000000000000000000000000026203d090f1600155",
                "nonce" : "0x00",
                "storage" : {
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02",
                "code" : "0x600160025533600455346007553060e6553260e8553660ec553860ee553a60f055",
                "nonce" : "0x00",
                "storage" : {
                    "0x02" : "0x01",
                    "0x04" : "0x1000000000000000000000000000000000000001",
                    "0x07" : "0x02",
                    "0xe6" : "0x1000000000000000000000000000000000000002",
                    "0xe8" : "0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b",
                    "0xec" : "0x40",
                    "0xee" : "0x21",
                    "0xf0" : "0x01"
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x039455",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7606bab",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "8f8ed2aed2973e159fa5486f47c6ebf15c5058f8e2350286b84b569bc6ce2d25",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x604060006040600060027310000000000000000000000000000000000000026203d090f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x600160025533600455346007553060e6553260e8553660ec553860ee553a60f055",
                "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" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002614e34f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60016002556001600252",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x010270",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762fd90",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "a66f080864c72c593d874a42aa8c17eff838bf1e45ecb0bbe2bb041a3c235f94",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002614e34f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60016002556001600252",
                "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_OOGE_valueTransfer" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006014731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600a7310000000000000000000000000000000000000026101f4f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60016002556001600252",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x029fe0",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7616020",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "5d3a2cc516df92786543b7cc20df2e4a443cdfa0f0545d1770b25e754e5b7ec3",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006014731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x6040600060406000600a7310000000000000000000000000000000000000026101f4f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60016002556001600252",
                "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" : "0x00",
            "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" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a763ffff",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a763ffff",
                "code" : "0x60406000604060006002731000000000000000000000000000000000000002620493e0f1600155",
                "nonce" : "0x00",
                "storage" : {
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x0de0b6b3a763ffff",
                "code" : "0x604060006040600060037310000000000000000000000000000000000000036203d090f1600255",
                "nonce" : "0x00",
                "storage" : {
                    "0x02" : "0x01"
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x03",
                "code" : "0x600160035533600455346007553061014a553261014c55366101505538610152553a61015455",
                "nonce" : "0x00",
                "storage" : {
                    "0x014a" : "0x1000000000000000000000000000000000000003",
                    "0x014c" : "0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b",
                    "0x0150" : "0x40",
                    "0x0152" : "0x26",
                    "0x0154" : "0x01",
                    "0x03" : "0x01",
                    "0x04" : "0x1000000000000000000000000000000000000002",
                    "0x07" : "0x03"
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x03fce7",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7600319",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "1ed24a8068d61509a3b7b1c30d1311735bba0587f6f6877efd5e74aa2364d382",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006002731000000000000000000000000000000000000002620493e0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x604060006040600060037310000000000000000000000000000000000000036203d090f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x600160035533600455346007553061014a553261014c55366101505538610152553a61015455",
                "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" : "0x00",
            "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" : "0x60406000604060006000731000000000000000000000000000000000000003614e34f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x60016003556001600352",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x0150d6",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762af2a",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "7d58669ba6ac24ea5bb8aae0dd7a7143b069e37b06e31fad81976a51f35a47f4",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000003614e34f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x60016003556001600352",
                "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" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000161eaf6f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002619c90f16001556001600352",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000003614e34f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x0150cc",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762af34",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "a767a97d79ec39107df9149cc68b1199fcdc3fd89a41193dd5c280eeb56ddc42",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000161eaf6f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002619c90f16001556001600352",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000003614e34f1600255",
                "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" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002619c90f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x600160035260406000604060006000731000000000000000000000000000000000000003614e34f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x0150cc",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762af34",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "f46f37e7238438a444d89b8156b5cb11c331f0dafe29aa0c9d1396894b6ddf89",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002619c90f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x600160035260406000604060006000731000000000000000000000000000000000000003614e34f1600255",
                "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" : "0x00",
            "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" : "0x00",
            "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" : "0x00",
            "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" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a763ffff",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a763ffff",
                "code" : "0x60406000604060006002731000000000000000000000000000000000000002620493e0f1600155",
                "nonce" : "0x00",
                "storage" : {
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x0de0b6b3a7640002",
                "code" : "0x604060006040600060037310000000000000000000000000000000000000036203d090f2600255",
                "nonce" : "0x00",
                "storage" : {
                    "0x014a" : "0x1000000000000000000000000000000000000002",
                    "0x014c" : "0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b",
                    "0x0150" : "0x40",
                    "0x0152" : "0x26",
                    "0x0154" : "0x01",
                    "0x02" : "0x01",
                    "0x03" : "0x01",
                    "0x04" : "0x1000000000000000000000000000000000000002",
                    "0x07" : "0x03"
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x600160035533600455346007553061014a553261014c55366101505538610152553a61015455",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x03fce7",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7600319",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "2b22357b48c2d396726a13e3eed3e61a6ee67351051154572f734c4090796124",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006002731000000000000000000000000000000000000002620493e0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x604060006040600060037310000000000000000000000000000000000000036203d090f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x600160035533600455346007553061014a553261014c55366101505538610152553a61015455",
                "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" : "0x00",
            "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" : "0x60406000604060006000731000000000000000000000000000000000000003614e34f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x60016003556001600352",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x0150d6",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762af2a",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "606981436db0f6678cdf2891f26f52bd2659a6649d3c709acda4bf161b59c7c2",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000003614e34f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x60016003556001600352",
                "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" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000161eaf6f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002619c90f16001556001600352",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000003614e34f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x0150cc",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762af34",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "ed050e8941d0530b3fab2fe1307f8b8ebed135ad216d2aa8f52c2d83f22399b0",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000161eaf6f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002619c90f16001556001600352",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000003614e34f2600255",
                "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" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002619c90f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x600160035260406000604060006000731000000000000000000000000000000000000003614e34f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x0150cc",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762af34",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "6e70eb4863af52fd076d45371513ff49043c76b06c11ef2bba4d4ab8edf33aba",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002619c90f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x600160035260406000604060006000731000000000000000000000000000000000000003614e34f2600255",
                "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" : "0x00",
            "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" : "0x00",
            "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" : "0x00",
            "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" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a763ffff",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640001",
                "code" : "0x604060006040600060027310000000000000000000000000000000000000026203d090f2600155",
                "nonce" : "0x00",
                "storage" : {
                    "0x01" : "0x01",
                    "0x02" : "0x01",
                    "0x04" : "0x1000000000000000000000000000000000000001",
                    "0x07" : "0x02",
                    "0xe6" : "0x1000000000000000000000000000000000000001",
                    "0xe8" : "0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b",
                    "0xec" : "0x40",
                    "0xee" : "0x21",
                    "0xf0" : "0x01"
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x600160025533600455346007553060e6553260e8553660ec553860ee553a60f055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x039455",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7606bab",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "54475c6c67f504eace680150ef531ece0daf0181a5b469f8c369a5c74c1ce53c",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x604060006040600060027310000000000000000000000000000000000000026203d090f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x600160025533600455346007553060e6553260e8553660ec553860ee553a60f055",
                "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" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002614e34f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60016002556001600252",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x010270",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762fd90",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "e4209a1b867017e6b14927afeeed7d1129d53ecf7d18a29c7ee4b0ffa2a313a1",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002614e34f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60016002556001600252",
                "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" : "0x00",
            "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" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a763ffff",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a763fffe",
                "code" : "0x60406000604060006002731000000000000000000000000000000000000002620493e0f2600155",
                "nonce" : "0x00",
                "storage" : {
                    "0x01" : "0x01",
                    "0x02" : "0x01"
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x604060006040600060037310000000000000000000000000000000000000036203d090f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x03",
                "code" : "0x600160035533600455346007553061014a553261014c55366101505538610152553a61015455",
                "nonce" : "0x00",
                "storage" : {
                    "0x014a" : "0x1000000000000000000000000000000000000003",
                    "0x014c" : "0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b",
                    "0x0150" : "0x40",
                    "0x0152" : "0x26",
                    "0x0154" : "0x01",
                    "0x03" : "0x01",
                    "0x04" : "0x1000000000000000000000000000000000000001",
                    "0x07" : "0x03"
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x03fce7",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7600319",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "a71dce458a63645998a19a4c2f2c3bf68fb56b070835a91ae29d8ff94eb83d4d",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006002731000000000000000000000000000000000000002620493e0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x604060006040600060037310000000000000000000000000000000000000036203d090f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x600160035533600455346007553061014a553261014c55366101505538610152553a61015455",
                "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" : "0x00",
            "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" : "0x60406000604060006000731000000000000000000000000000000000000003614e34f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x60016003556001600352",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x0150d6",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762af2a",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "4df6a657dc1699015b3105c69f85f344c8f02a0a67c7ea525d04382f4193a24e",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000003614e34f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x60016003556001600352",
                "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" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000161eaf6f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002619c90f26001556001600352",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000003614e34f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x0150cc",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762af34",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "c41a25808023d223b1dc3f3914c233a901168605f5f02a9f15c5fadce6044462",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000161eaf6f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002619c90f26001556001600352",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000003614e34f1600255",
                "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" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002619c90f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x600160035260406000604060006000731000000000000000000000000000000000000003614e34f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x0150cc",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762af34",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "88eb1770368d56d4c62fdef02d85cbe710724cef84e492c5360fe635ff3eedda",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002619c90f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x600160035260406000604060006000731000000000000000000000000000000000000003614e34f1600255",
                "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" : "0x00",
            "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" : "0x00",
            "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" : "0x00",
            "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" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a763ffff",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640001",
                "code" : "0x60406000604060006002731000000000000000000000000000000000000002620493e0f2600155",
                "nonce" : "0x00",
                "storage" : {
                    "0x01" : "0x01",
                    "0x014a" : "0x1000000000000000000000000000000000000001",
                    "0x014c" : "0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b",
                    "0x0150" : "0x40",
                    "0x0152" : "0x26",
                    "0x0154" : "0x01",
                    "0x02" : "0x01",
                    "0x03" : "0x01",
                    "0x04" : "0x1000000000000000000000000000000000000001",
                    "0x07" : "0x03"
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x604060006040600060037310000000000000000000000000000000000000036203d090f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x600160035533600455346007553061014a553261014c55366101505538610152553a61015455",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x03fce7",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7600319",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "4257fafde1d6f617828d567841b0331101f8240fa2a7f4518318c7ee5439e487",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006002731000000000000000000000000000000000000002620493e0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x604060006040600060037310000000000000000000000000000000000000036203d090f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x600160035533600455346007553061014a553261014c55366101505538610152553a61015455",
                "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" : "0x00",
            "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" : "0x60406000604060006000731000000000000000000000000000000000000003614e34f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x60016003556001600352",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x0150d6",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762af2a",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "80287ae33d156b8057b1c5242a8de40c31d2c1a2e79a2939594359ece6055df5",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000003614e34f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x60016003556001600352",
                "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" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000161eaf6f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002619c90f26001556001600352",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000003614e34f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x0150cc",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762af34",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "cd6b0d134a9ebf655f0e1f76cb2d6c8c66a36c478867d3abbb00d7655dbf0911",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000161eaf6f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002619c90f26001556001600352",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000003614e34f2600255",
                "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" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002619c90f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x600160035260406000604060006000731000000000000000000000000000000000000003614e34f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x0150cc",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762af34",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "9584516d9633bace4678666471e26662982dcd9c842c62e00c9c9ff2ada13b15",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f1600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002619c90f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x600160035260406000604060006000731000000000000000000000000000000000000003614e34f2600255",
                "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" : "0x00",
            "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" : "0x00",
            "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" : "0x00",
            "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"
        }
    },
    "callcodeDynamicCode" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x02b8feb0",
            "currentGasLimit" : "0x0f4240",
            "currentNumber" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x270f",
                "code" : "0x7f716860016000553360145560005260096017f36000526012600e6001f0600a556000527f6040600060406000600073ffe4ebd2a68c02d9dcb0a17283d13346beb2d8b6626020527f0186a0f2600b5500000000000000000000000000000000000000000000000000604052606060006001f0",
                "nonce" : "0x01",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x03e8",
                "code" : "0x6460016000556000526005601b6001f0",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "13136008b64ff592819b2fa6d43f2835c452020e" : {
                "balance" : "0x00",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                    "0x00" : "0x01",
                    "0x0a" : "0xffe4ebd2a68c02d9dcb0a17283d13346beb2d8b6",
                    "0x0b" : "0x01",
                    "0x14" : "0x13136008b64ff592819b2fa6d43f2835c452020e"
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x028c35",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x2386f26fbe73cb",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            },
            "ffe4ebd2a68c02d9dcb0a17283d13346beb2d8b6" : {
                "balance" : "0x01",
                "code" : "0x600160005533601455",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "17388b6d68e240d2ac5841e36517ca05e9c61adc44787471fc40e5683f8279c3",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x2710",
                "code" : "0x7f716860016000553360145560005260096017f36000526012600e6001f0600a556000527f6040600060406000600073ffe4ebd2a68c02d9dcb0a17283d13346beb2d8b6626020527f0186a0f2600b5500000000000000000000000000000000000000000000000000604052606060006001f0",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x03e8",
                "code" : "0x6460016000556000526005601b6001f0",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x2386f26fc10000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x06e9d9",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodeDynamicCode2SelfCall" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x02b8feb0",
            "currentGasLimit" : "0x0f4240",
            "currentNumber" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x270f",
                "code" : "0x7f604060006040600060007313136008b64ff592819b2fa6d43f2835c452020e626000527f0186a0f2600b5533600c55000000000000000000000000000000000000000000602052604060006001f0",
                "nonce" : "0x01",
                "storage" : {
                }
            },
            "13136008b64ff592819b2fa6d43f2835c452020e" : {
                "balance" : "0x01",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                    "0x0b" : "0x01",
                    "0x0c" : "0x1000000000000000000000000000000000000000"
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x016bb4",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x2386f26fbf944c",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "53b3500d29c4ac1cc8db0f5403c0c35c256e9bff7ada5a8a35c99f805dc0e72f",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x2710",
                "code" : "0x7f604060006040600060007313136008b64ff592819b2fa6d43f2835c452020e626000527f0186a0f2600b5533600c55000000000000000000000000000000000000000000602052604060006001f0",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x2386f26fc10000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x06e9d9",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodeEmptycontract" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x02b8feb0",
            "currentGasLimit" : "0x0f4240",
            "currentNumber" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x03e8",
                "code" : "0x60406000604060006103e873945304eb96065b2a98b57a48a06ae28d285a71b561c350f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0xba9a",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0e87a6",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "95716e7d0b244da6a57bacc2a981d4777c44a208820153c67224112315fbc985",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x03e8",
                "code" : "0x60406000604060006103e873945304eb96065b2a98b57a48a06ae28d285a71b561c350f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0f4240",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x019a54",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodeInInitcodeToEmptyContract" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x02b8feb0",
            "currentGasLimit" : "0x0f4240",
            "currentNumber" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x270f",
                "code" : "0x7f6040600060406000600073945304eb96065b2a98b57a48a06ae28d285a71b5626000527f0186a0f260005500000000000000000000000000000000000000000000000000602052604060006001f0",
                "nonce" : "0x01",
                "storage" : {
                }
            },
            "13136008b64ff592819b2fa6d43f2835c452020e" : {
                "balance" : "0x01",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x011d8f",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x2386f26fbfe271",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "157885c99eb23c5285e43296833a84e14e978aaa0f4a550b3bd6dde8a0ee734f",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x2710",
                "code" : "0x7f6040600060406000600073945304eb96065b2a98b57a48a06ae28d285a71b5626000527f0186a0f260005500000000000000000000000000000000000000000000000000602052604060006001f0",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x2386f26fc10000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x06e9d9",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodeInInitcodeToExistingContract" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x02b8feb0",
            "currentGasLimit" : "0x0f4240",
            "currentNumber" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x270f",
                "code" : "0x7f6040600060406000600073945304eb96065b2a98b57a48a06ae28d285a71b5626000527f0186a0f260005500000000000000000000000000000000000000000000000000602052604060006001f0",
                "nonce" : "0x01",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x03e8",
                "code" : "0x6460016000556000526005601b6001f0",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "13136008b64ff592819b2fa6d43f2835c452020e" : {
                "balance" : "0x01",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01",
                    "0x02" : "0x01"
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x016bb5",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "945304eb96065b2a98b57a48a06ae28d285a71b5" : {
                "balance" : "0x00",
                "code" : "0x6001600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x2386f26fbf944b",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "7e27ab28a19de7010592bfeb0b95bdc06e207a0ce56388dcf1fc92ade2abeb3c",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x2710",
                "code" : "0x7f6040600060406000600073945304eb96065b2a98b57a48a06ae28d285a71b5626000527f0186a0f260005500000000000000000000000000000000000000000000000000602052604060006001f0",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x03e8",
                "code" : "0x6460016000556000526005601b6001f0",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "945304eb96065b2a98b57a48a06ae28d285a71b5" : {
                "balance" : "0x00",
                "code" : "0x6001600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x2386f26fc10000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x06e9d9",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodeInInitcodeToExistingContractWithValueTransfer" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x02b8feb0",
            "currentGasLimit" : "0x0f4240",
            "currentNumber" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x270b",
                "code" : "0x7f6040600060406000600573945304eb96065b2a98b57a48a06ae28d285a71b5626000527f0186a0f260005500000000000000000000000000000000000000000000000000602052604060006005f0",
                "nonce" : "0x01",
                "storage" : {
                }
            },
            "13136008b64ff592819b2fa6d43f2835c452020e" : {
                "balance" : "0x05",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01",
                    "0x02" : "0x01"
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x0185e1",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "945304eb96065b2a98b57a48a06ae28d285a71b5" : {
                "balance" : "0x00",
                "code" : "0x6001600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x2386f26fbf7a1f",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "51937cc2ddfdd89ecd073f53256f00a7e0497e5a9494d2dac6a63dd6b5bb0548",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x2710",
                "code" : "0x7f6040600060406000600573945304eb96065b2a98b57a48a06ae28d285a71b5626000527f0186a0f260005500000000000000000000000000000000000000000000000000602052604060006005f0",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "945304eb96065b2a98b57a48a06ae28d285a71b5" : {
                "balance" : "0x00",
                "code" : "0x6001600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x2386f26fc10000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x06e9d9",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodeInInitcodeToExistingContractWithValueTransferNotEnoughMoney" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x02b8feb0",
            "currentGasLimit" : "0x0f4240",
            "currentNumber" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x270f",
                "code" : "0x7f6040600060406000600573945304eb96065b2a98b57a48a06ae28d285a71b5626000527f0186a0f260005500000000000000000000000000000000000000000000000000602052604060006001f0",
                "nonce" : "0x01",
                "storage" : {
                }
            },
            "13136008b64ff592819b2fa6d43f2835c452020e" : {
                "balance" : "0x01",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0xfd23",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "945304eb96065b2a98b57a48a06ae28d285a71b5" : {
                "balance" : "0x00",
                "code" : "0x6001600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x2386f26fc002dd",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "a94d8401ace9ce65aa88b52d16096f872a7b3b21b1a3302324ec51de1bb314f7",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x2710",
                "code" : "0x7f6040600060406000600573945304eb96065b2a98b57a48a06ae28d285a71b5626000527f0186a0f260005500000000000000000000000000000000000000000000000000602052604060006001f0",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "945304eb96065b2a98b57a48a06ae28d285a71b5" : {
                "balance" : "0x00",
                "code" : "0x6001600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x2386f26fc10000",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            }
        },
        "transaction" : {
            "data" : "",
            "gasLimit" : "0x06e9d9",
            "gasPrice" : "0x01",
            "nonce" : "0x00",
            "secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
            "to" : "1000000000000000000000000000000000000000",
            "value" : "0x00"
        }
    },
    "callcodecall_10" : {
        "env" : {
            "currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
            "currentDifficulty" : "0x0100",
            "currentGasLimit" : "0x01c9c380",
            "currentNumber" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a763fffe",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01",
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x604060006040600060027310000000000000000000000000000000000000026203d090f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x02",
                "code" : "0x600160025533600455346007553060e6553260e8553660ec553860ee553a60f055",
                "nonce" : "0x00",
                "storage" : {
                    "0x02" : "0x01",
                    "0x04" : "0x1000000000000000000000000000000000000000",
                    "0x07" : "0x02",
                    "0xe6" : "0x1000000000000000000000000000000000000002",
                    "0xe8" : "0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b",
                    "0xec" : "0x40",
                    "0xee" : "0x21",
                    "0xf0" : "0x01"
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x039455",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7606bab",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "266f3efb4679756e79477cfa28d932bc5118d5e95ec131b92ceef8c5e2a54dd5",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x604060006040600060027310000000000000000000000000000000000000026203d090f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x600160025533600455346007553060e6553260e8553660ec553860ee553a60f055",
                "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" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002614e34f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60016002556001600252",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x010270",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762fd90",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "a8759b2e9bc8080233d0170205eae59883131a8d420bc15d4aa04af39d3ad190",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002614e34f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60016002556001600252",
                "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" : "0x00",
            "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" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a763fffe",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01",
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006002731000000000000000000000000000000000000002620493e0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x0de0b6b3a763ffff",
                "code" : "0x604060006040600060037310000000000000000000000000000000000000036203d090f1600255",
                "nonce" : "0x00",
                "storage" : {
                    "0x02" : "0x01"
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x03",
                "code" : "0x600160035533600455346007553061014a553261014c55366101505538610152553a61015455",
                "nonce" : "0x00",
                "storage" : {
                    "0x014a" : "0x1000000000000000000000000000000000000003",
                    "0x014c" : "0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b",
                    "0x0150" : "0x40",
                    "0x0152" : "0x26",
                    "0x0154" : "0x01",
                    "0x03" : "0x01",
                    "0x04" : "0x1000000000000000000000000000000000000002",
                    "0x07" : "0x03"
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x03fce7",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7600319",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "e9985e3c4b096bca71be68fe77a32bcb50eb2e96aaa63108daebefe1145c214f",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006002731000000000000000000000000000000000000002620493e0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x604060006040600060037310000000000000000000000000000000000000036203d090f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x600160035533600455346007553061014a553261014c55366101505538610152553a61015455",
                "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" : "0x00",
            "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" : "0x60406000604060006000731000000000000000000000000000000000000003614e34f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x60016003556001600352",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x0150d6",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762af2a",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "a97379ff11a8f6bd9d3ae4f08d89c39768ce1c9ddd45df89e2c292a7d07d7c7d",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000003614e34f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x60016003556001600352",
                "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" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000161eaf6f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002619c90f16001556001600352",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000003614e34f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x0150cc",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762af34",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "278c6d69454c759028bab28462a540d7f0d8affdf3be9ab83ad873942f4d7169",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000161eaf6f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002619c90f16001556001600352",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000003614e34f1600255",
                "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" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002619c90f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x600160035260406000604060006000731000000000000000000000000000000000000003614e34f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x0150cc",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762af34",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "8902ce31717fb761ac67ebbe8ac240ca6f886a65b2ccbf57e00d9afe10b4d6c8",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002619c90f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x600160035260406000604060006000731000000000000000000000000000000000000003614e34f1600255",
                "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" : "0x00",
            "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" : "0x00",
            "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" : "0x00",
            "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" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a763fffe",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01",
                    "0x01" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006002731000000000000000000000000000000000000002620493e0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x0de0b6b3a7640002",
                "code" : "0x604060006040600060037310000000000000000000000000000000000000036203d090f2600255",
                "nonce" : "0x00",
                "storage" : {
                    "0x014a" : "0x1000000000000000000000000000000000000002",
                    "0x014c" : "0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b",
                    "0x0150" : "0x40",
                    "0x0152" : "0x26",
                    "0x0154" : "0x01",
                    "0x02" : "0x01",
                    "0x03" : "0x01",
                    "0x04" : "0x1000000000000000000000000000000000000002",
                    "0x07" : "0x03"
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x600160035533600455346007553061014a553261014c55366101505538610152553a61015455",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x03fce7",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7600319",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "47f86a353d296fe9530a92d8d937ba8051749ad0093cc65b9909c5bd260ddbef",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006002731000000000000000000000000000000000000002620493e0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x604060006040600060037310000000000000000000000000000000000000036203d090f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x600160035533600455346007553061014a553261014c55366101505538610152553a61015455",
                "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" : "0x00",
            "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" : "0x60406000604060006000731000000000000000000000000000000000000003614e34f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x60016003556001600352",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x0150d6",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762af2a",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "76e969488ba038d1f803ac5bdc231914f22868a7791c19759cef1f98eb616036",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000003614e34f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x60016003556001600352",
                "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" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000161eaf6f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002619c90f16001556001600352",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000003614e34f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x0150cc",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762af34",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "9dadc649bd108ae1326e1f7d8a113435e18e38fa2e345ebbe8e3b6c57d17c0b6",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000161eaf6f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002619c90f16001556001600352",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000003614e34f2600255",
                "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" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002619c90f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x600160035260406000604060006000731000000000000000000000000000000000000003614e34f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x0150cc",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762af34",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "0b2d2acfc533d00543a6357fc5c7719c9ed811cb06c83f14d89479b64f338e3e",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002619c90f1600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x600160035260406000604060006000731000000000000000000000000000000000000003614e34f2600255",
                "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" : "0x00",
            "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" : "0x00",
            "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" : "0x00",
            "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" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01",
                    "0x01" : "0x01",
                    "0x02" : "0x01",
                    "0x04" : "0x1000000000000000000000000000000000000000",
                    "0x07" : "0x02",
                    "0xe6" : "0x1000000000000000000000000000000000000000",
                    "0xe8" : "0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b",
                    "0xec" : "0x40",
                    "0xee" : "0x21",
                    "0xf0" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x604060006040600060027310000000000000000000000000000000000000026203d090f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x600160025533600455346007553060e6553260e8553660ec553860ee553a60f055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x039455",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7606bab",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "1e91f9f6bd10a082c5f0479183a3d41204222a29742643fc84dfa9a2de54aba0",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x604060006040600060027310000000000000000000000000000000000000026203d090f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x600160025533600455346007553060e6553260e8553660ec553860ee553a60f055",
                "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" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002614e34f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60016002556001600252",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x010270",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762fd90",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "db627612dc00ed5e1bebb241a2b7afd3673ced5f63aa54f857dd0019e678be46",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002614e34f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60016002556001600252",
                "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" : "0x00",
            "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" : "0x00",
            "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" : "0x60406000604060006002731000000000000000000000000000000000000002620493e0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x604060006040600060037310000000000000000000000000000000000000036203d090f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x03",
                "code" : "0x600160035533600455346007553061014a553261014c55366101505538610152553a61015455",
                "nonce" : "0x00",
                "storage" : {
                    "0x014a" : "0x1000000000000000000000000000000000000003",
                    "0x014c" : "0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b",
                    "0x0150" : "0x40",
                    "0x0152" : "0x26",
                    "0x0154" : "0x01",
                    "0x03" : "0x01",
                    "0x04" : "0x1000000000000000000000000000000000000000",
                    "0x07" : "0x03"
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x03fce7",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7600319",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "8c09b408926871f45ed297bfcd62b07c7533028974f674f4339db37bd9bb377d",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006002731000000000000000000000000000000000000002620493e0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x604060006040600060037310000000000000000000000000000000000000036203d090f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x600160035533600455346007553061014a553261014c55366101505538610152553a61015455",
                "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" : "0x00",
            "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" : "0x60406000604060006000731000000000000000000000000000000000000003614e34f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x60016003556001600352",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x0150d6",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762af2a",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "b52e03c0be692b82645ba31689fa02476182151b640932e8f1f1542e2effc2df",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000003614e34f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x60016003556001600352",
                "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" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000161eaf6f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002619c90f26001556001600352",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000003614e34f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x0150cc",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762af34",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "961d5c285a8e9cfd352cd1a30ff61cc7afe45d8474265fc2b63c6c9c67296b90",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000161eaf6f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002619c90f26001556001600352",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000003614e34f1600255",
                "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" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002619c90f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x600160035260406000604060006000731000000000000000000000000000000000000003614e34f1600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x0150cc",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762af34",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "0e376cf2634acda351764523c146b31455f32a40abe4ec2218b24b48c730f573",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002619c90f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x600160035260406000604060006000731000000000000000000000000000000000000003614e34f1600255",
                "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" : "0x00",
            "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" : "0x00",
            "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" : "0x00",
            "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" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01",
                    "0x01" : "0x01",
                    "0x014a" : "0x1000000000000000000000000000000000000000",
                    "0x014c" : "0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b",
                    "0x0150" : "0x40",
                    "0x0152" : "0x26",
                    "0x0154" : "0x01",
                    "0x02" : "0x01",
                    "0x03" : "0x01",
                    "0x04" : "0x1000000000000000000000000000000000000000",
                    "0x07" : "0x03"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006002731000000000000000000000000000000000000002620493e0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x604060006040600060037310000000000000000000000000000000000000036203d090f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x600160035533600455346007553061014a553261014c55366101505538610152553a61015455",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x03fce7",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a7600319",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "30318df71268d521be11e6603e58f1895ee8a08ff83fbcffdf7b516bbf603f9a",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600173100000000000000000000000000000000000000162055730f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006002731000000000000000000000000000000000000002620493e0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x604060006040600060037310000000000000000000000000000000000000036203d090f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x600160035533600455346007553061014a553261014c55366101505538610152553a61015455",
                "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" : "0x00",
            "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" : "0x60406000604060006000731000000000000000000000000000000000000003614e34f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x60016003556001600352",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x0150d6",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762af2a",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "3299b2945c527e8915e7cddf86273d80c4fd08b40e6961036d5eb102f5370f1d",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002620186a0f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000003614e34f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x60016003556001600352",
                "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" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000161eaf6f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002619c90f26001556001600352",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000003614e34f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x0150cc",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762af34",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "6b91bfc795dca3991ec5721c8ea8a823e6dd446688e27285d8d0500bba8ab56c",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x6040600060406000600073100000000000000000000000000000000000000161eaf6f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002619c90f26001556001600352",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000003614e34f2600255",
                "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" : "0x00",
            "currentTimestamp" : "0x01",
            "previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
        },
        "logs" : [
        ],
        "out" : "0x",
        "post" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                    "0x00" : "0x01"
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002619c90f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x600160035260406000604060006000731000000000000000000000000000000000000003614e34f2600255",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000003" : {
                "balance" : "0x00",
                "code" : "0x6001600355",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
                "balance" : "0x0150cc",
                "code" : "0x",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
                "balance" : "0x0de0b6b3a762af34",
                "code" : "0x",
                "nonce" : "0x01",
                "storage" : {
                }
            }
        },
        "postStateRoot" : "719bf7118658117cc1ef6d2fc778e3a1257c0c5ce8a260dae629440cf839ad78",
        "pre" : {
            "1000000000000000000000000000000000000000" : {
                "balance" : "0x0de0b6b3a7640000",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000001620249f0f2600055",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000001" : {
                "balance" : "0x00",
                "code" : "0x60406000604060006000731000000000000000000000000000000000000002619c90f2600155",
                "nonce" : "0x00",
                "storage" : {
                }
            },
            "1000000000000000000000000000000000000002" : {
                "balance" : "0x00",
                "code" : "0x600160035260406000604060006000731000000000000000000000000000000000000003614e34f2600255",
                "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" : "0x00",
            "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" : "0x00",
            "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" : "0x00",
            "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"
        }
    }
}