forked from ethereum/tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdifficultyEIP2384.json
18034 lines (18034 loc) · 719 KB
/
difficultyEIP2384.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"DifficultyTest1": {
"parentTimestamp": "0x63ed689e8",
"parentDifficulty": "0x56bba5a95b3dff04",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x63ed689e8",
"currentBlockNumber": "0x186a0",
"currentDifficulty": "0x56c67d1e106966c3"
},
"DifficultyTest10": {
"parentTimestamp": "0x37614bdc8",
"parentDifficulty": "0x61f014c863b8b083",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x37614bdc8",
"currentBlockNumber": "0xf4240",
"currentDifficulty": "0x61fc52cafcc52799"
},
"DifficultyTest100": {
"parentTimestamp": "0x6e12d93a",
"parentDifficulty": "0x6815914841fe5625",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x6e12d93c",
"currentBlockNumber": "0x30d40",
"currentDifficulty": "0x682293fa6b0695ef"
},
"DifficultyTest1000": {
"parentTimestamp": "0x6c0e4cb57",
"parentDifficulty": "0x5540f93a4f1693ea",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x6c0e4cb6b",
"currentBlockNumber": "0x1e8480",
"currentDifficulty": "0x5536511b27ccb118"
},
"DifficultyTest1001": {
"parentTimestamp": "0x59d53c8e1",
"parentDifficulty": "0x12ddd0998db7411c",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x59d53c8f5",
"currentBlockNumber": "0x200b20",
"currentDifficulty": "0x12db74df7a858a34"
},
"DifficultyTest1002": {
"parentTimestamp": "0x49ba2f9d",
"parentDifficulty": "0x5d7cb6a5dd325132",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x49ba2fb1",
"currentBlockNumber": "0x2191c0",
"currentDifficulty": "0x5d71070f0876aae8"
},
"DifficultyTest1003": {
"parentTimestamp": "0xe484df4a",
"parentDifficulty": "0xc4c47a5d93cbb86",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0xe484df5e",
"currentBlockNumber": "0x231860",
"currentDifficulty": "0xc4abe1ce48193ef"
},
"DifficultyTest1004": {
"parentTimestamp": "0x69fbb6b52",
"parentDifficulty": "0x3f21d26dd3075e6c",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x69fbb6b66",
"currentBlockNumber": "0x249f00",
"currentDifficulty": "0x3f19ee33854cfd81"
},
"DifficultyTest1005": {
"parentTimestamp": "0x42228af00",
"parentDifficulty": "0x1b466d6f8d3e4145",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x42228af14",
"currentBlockNumber": "0x2625a0",
"currentDifficulty": "0x1b4304a1df4c997d"
},
"DifficultyTest1006": {
"parentTimestamp": "0x56b6c2701",
"parentDifficulty": "0x31371aad7359d0a9",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x56b6c2715",
"currentBlockNumber": "0x27ac40",
"currentDifficulty": "0x3130f3ca1dab656f"
},
"DifficultyTest1007": {
"parentTimestamp": "0x3ef653a81",
"parentDifficulty": "0x744376a17444e2aa",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x3ef653a95",
"currentBlockNumber": "0x2932e0",
"currentDifficulty": "0x7434ee32a0165a0e"
},
"DifficultyTest1008": {
"parentTimestamp": "0x292bce544",
"parentDifficulty": "0xa38a8b5ea6cc334",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x292bce558",
"currentBlockNumber": "0x2ab980",
"currentDifficulty": "0xa3761a0d3af759c"
},
"DifficultyTest1009": {
"parentTimestamp": "0x47e1b9b6",
"parentDifficulty": "0x68edb952e56f1d6a",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x47e1b9ca",
"currentBlockNumber": "0x2c4020",
"currentDifficulty": "0x68e09b9bbb126f87"
},
"DifficultyTest101": {
"parentTimestamp": "0x3ad1d2971",
"parentDifficulty": "0x6c9cf5aa0fe94214",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x3ad1d2973",
"currentBlockNumber": "0x493e0",
"currentDifficulty": "0x6caa8948c52b3f3c"
},
"DifficultyTest1010": {
"parentTimestamp": "0x11bd84569",
"parentDifficulty": "0x112df5bb27a10087",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x11bd8457d",
"currentBlockNumber": "0x2dc6c0",
"currentDifficulty": "0x112bcffc703c0c67"
},
"DifficultyTest1011": {
"parentTimestamp": "0x246278af2",
"parentDifficulty": "0x6c7c1757bec550",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x246278b06",
"currentBlockNumber": "0x2f4d60",
"currentDifficulty": "0x6c6e87d4d3cd78"
},
"DifficultyTest1012": {
"parentTimestamp": "0x4b1628606",
"parentDifficulty": "0x4aba18f8e5a995ff",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x4b162861a",
"currentBlockNumber": "0x30d400",
"currentDifficulty": "0x4ab0c1b5c68ce0cd"
},
"DifficultyTest1013": {
"parentTimestamp": "0x475fef7dd",
"parentDifficulty": "0x70c6a39b0ae2d378",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x475fef7f1",
"currentBlockNumber": "0x325aa0",
"currentDifficulty": "0x70b88ac69781771e"
},
"DifficultyTest1014": {
"parentTimestamp": "0x10eb9cc29",
"parentDifficulty": "0x2b2f101cdabeea32",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x10eb9cc3d",
"currentBlockNumber": "0x33e140",
"currentDifficulty": "0x2b29aa3ad7239255"
},
"DifficultyTest1015": {
"parentTimestamp": "0x5aea63cf",
"parentDifficulty": "0xea443203a816d27",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x5aea63e3",
"currentBlockNumber": "0x3567e0",
"currentDifficulty": "0xea26e97d67a1cfa"
},
"DifficultyTest1016": {
"parentTimestamp": "0x522aaf1d4",
"parentDifficulty": "0x6a067f4425c3abd3",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x522aaf1e8",
"currentBlockNumber": "0x36ee80",
"currentDifficulty": "0x69f93e743d3ef35e"
},
"DifficultyTest1017": {
"parentTimestamp": "0x2c87d2f48",
"parentDifficulty": "0x7b085ee6dbc6a777",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x2c87d2f5c",
"currentBlockNumber": "0x387520",
"currentDifficulty": "0x7af8fddafeeb2ea3"
},
"DifficultyTest1018": {
"parentTimestamp": "0x742c2fe7e",
"parentDifficulty": "0x4dd13d3d4d6c5261",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x742c2fe92",
"currentBlockNumber": "0x39fbc0",
"currentDifficulty": "0x4dc78315a5c2a4d7"
},
"DifficultyTest1019": {
"parentTimestamp": "0x4686daa14",
"parentDifficulty": "0x57f17c42ac38d705",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x4686daa28",
"currentBlockNumber": "0x3b8260",
"currentDifficulty": "0x57e67e1323e34feb"
},
"DifficultyTest102": {
"parentTimestamp": "0xc9a1b806",
"parentDifficulty": "0x44515203d8a1fdb4",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0xc9a1b808",
"currentBlockNumber": "0x61a80",
"currentDifficulty": "0x4459dc2e191d11f3"
},
"DifficultyTest1020": {
"parentTimestamp": "0x3013c75f0",
"parentDifficulty": "0x8a538b9cd61d78a",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x3013c7604",
"currentBlockNumber": "0x3d0900",
"currentDifficulty": "0x8a42412b6282b50"
},
"DifficultyTest1021": {
"parentTimestamp": "0x503908a0d",
"parentDifficulty": "0x37bb240b348e15c2",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x503908a21",
"currentBlockNumber": "0x3e8fa0",
"currentDifficulty": "0x37b42ca6b3278400"
},
"DifficultyTest1022": {
"parentTimestamp": "0x49130f76c",
"parentDifficulty": "0x60dc91f078228db3",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x49130f780",
"currentBlockNumber": "0x401640",
"currentDifficulty": "0x60d0765e3a138962"
},
"DifficultyTest1023": {
"parentTimestamp": "0x6a73548af",
"parentDifficulty": "0x785083c3e55e91c",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x6a73548c3",
"currentBlockNumber": "0x419ce0",
"currentDifficulty": "0x784179b36ce1e5f"
},
"DifficultyTest1024": {
"parentTimestamp": "0x2926298dc",
"parentDifficulty": "0x3fa005f773d4cfb2",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x2926298f0",
"currentBlockNumber": "0x432380",
"currentDifficulty": "0x3f9811f6b4e65519"
},
"DifficultyTest1025": {
"parentTimestamp": "0x501d4b72",
"parentDifficulty": "0x3fbf7b47efb8fc96",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x501d4b86",
"currentBlockNumber": "0x44aa20",
"currentDifficulty": "0x3fb7835886bb0577"
},
"DifficultyTest1026": {
"parentTimestamp": "0x84b3a7e8",
"parentDifficulty": "0x2c0c322cbb198cce",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x84b3a7fc",
"currentBlockNumber": "0x4630c0",
"currentDifficulty": "0x2c06b0a67582299d"
},
"DifficultyTest1027": {
"parentTimestamp": "0x7d893bb99",
"parentDifficulty": "0x2000f76aa14f2655",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x7d893bbad",
"currentBlockNumber": "0x47b760",
"currentDifficulty": "0x1ffcf74bb3fafc71"
},
"DifficultyTest1028": {
"parentTimestamp": "0x59a01a35b",
"parentDifficulty": "0x14ddc3b877c6ee39",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x59a01a36f",
"currentBlockNumber": "0x493e00",
"currentDifficulty": "0x14db280000b7f55c"
},
"DifficultyTest1029": {
"parentTimestamp": "0x284519d44",
"parentDifficulty": "0x3fb64e092c00db60",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x284519d58",
"currentBlockNumber": "0x4ac4a0",
"currentDifficulty": "0x3fae573f6adb5b45"
},
"DifficultyTest103": {
"parentTimestamp": "0x2948b5b83",
"parentDifficulty": "0x436da26746dc768c",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x2948b5b85",
"currentBlockNumber": "0x7a120",
"currentDifficulty": "0x4376101b93c5521a"
},
"DifficultyTest1030": {
"parentTimestamp": "0x737a3e7b1",
"parentDifficulty": "0x38698bd3384bdef3",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x737a3e7c5",
"currentBlockNumber": "0x186a0",
"currentDifficulty": "0x38698bd3384bdef3"
},
"DifficultyTest1031": {
"parentTimestamp": "0x3e557c1fd",
"parentDifficulty": "0x48deff67ba1d1916",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x3e557c211",
"currentBlockNumber": "0x30d40",
"currentDifficulty": "0x48deff67ba1d1916"
},
"DifficultyTest1032": {
"parentTimestamp": "0x708598e91",
"parentDifficulty": "0x7177352a046c30df",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x708598ea5",
"currentBlockNumber": "0x493e0",
"currentDifficulty": "0x7177352a046c30df"
},
"DifficultyTest1033": {
"parentTimestamp": "0x779d396a",
"parentDifficulty": "0x1bc01e0170c97d9f",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x779d397e",
"currentBlockNumber": "0x61a80",
"currentDifficulty": "0x1bc01e0170c97d9f"
},
"DifficultyTest1034": {
"parentTimestamp": "0x72406c388",
"parentDifficulty": "0x39c783bcb67bb617",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x72406c39c",
"currentBlockNumber": "0x7a120",
"currentDifficulty": "0x39c783bcb67bb617"
},
"DifficultyTest1035": {
"parentTimestamp": "0x718e94b30",
"parentDifficulty": "0x5a782883f3221ad9",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x718e94b44",
"currentBlockNumber": "0x927c0",
"currentDifficulty": "0x5a782883f3221ad9"
},
"DifficultyTest1036": {
"parentTimestamp": "0x40e27fe5c",
"parentDifficulty": "0x4eef966904e2a709",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x40e27fe70",
"currentBlockNumber": "0xaae60",
"currentDifficulty": "0x4eef966904e2a709"
},
"DifficultyTest1037": {
"parentTimestamp": "0x6afed0ee",
"parentDifficulty": "0x3aa80c104ccb94e2",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x6afed102",
"currentBlockNumber": "0xc3500",
"currentDifficulty": "0x3aa80c104ccb94e2"
},
"DifficultyTest1038": {
"parentTimestamp": "0x51b0c1758",
"parentDifficulty": "0x7361d7781f2c122f",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x51b0c176c",
"currentBlockNumber": "0xdbba0",
"currentDifficulty": "0x7361d7781f2c122f"
},
"DifficultyTest1039": {
"parentTimestamp": "0x6b409b0da",
"parentDifficulty": "0x71bed7b936917060",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x6b409b0ee",
"currentBlockNumber": "0xf4240",
"currentDifficulty": "0x71bed7b936917060"
},
"DifficultyTest104": {
"parentTimestamp": "0x5c2aa5518",
"parentDifficulty": "0x49f2c8974fb6c4a",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x5c2aa551a",
"currentBlockNumber": "0x927c0",
"currentDifficulty": "0x49fc06f062a0bb7"
},
"DifficultyTest1040": {
"parentTimestamp": "0x617ec9fb8",
"parentDifficulty": "0x68f7512123928555",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x617ec9fcc",
"currentBlockNumber": "0x10c8e0",
"currentDifficulty": "0x68f7512123928555"
},
"DifficultyTest1041": {
"parentTimestamp": "0x7a9c349e8",
"parentDifficulty": "0x7570ecf37f5dd6fd",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x7a9c349fc",
"currentBlockNumber": "0x124f80",
"currentDifficulty": "0x7570ecf37f5dd6fd"
},
"DifficultyTest1042": {
"parentTimestamp": "0x4eb030b1c",
"parentDifficulty": "0x544ca3991a4297f6",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x4eb030b30",
"currentBlockNumber": "0x13d620",
"currentDifficulty": "0x544ca3991a4297f6"
},
"DifficultyTest1043": {
"parentTimestamp": "0x31d8353ba",
"parentDifficulty": "0x3d704807d51b4676",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x31d8353ce",
"currentBlockNumber": "0x155cc0",
"currentDifficulty": "0x3d704807d51b4676"
},
"DifficultyTest1044": {
"parentTimestamp": "0x51818a848",
"parentDifficulty": "0x296ad0792c5fcc05",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x51818a85c",
"currentBlockNumber": "0x16e360",
"currentDifficulty": "0x296ad0792c5fcc05"
},
"DifficultyTest1045": {
"parentTimestamp": "0x76097a932",
"parentDifficulty": "0x37a5d34b4427e68c",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x76097a946",
"currentBlockNumber": "0x186a00",
"currentDifficulty": "0x37a5d34b4427e68c"
},
"DifficultyTest1046": {
"parentTimestamp": "0x1225177f7",
"parentDifficulty": "0x698032a11a1d3831",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x12251780b",
"currentBlockNumber": "0x19f0a0",
"currentDifficulty": "0x698032a11a1d3831"
},
"DifficultyTest1047": {
"parentTimestamp": "0x22e74da4a",
"parentDifficulty": "0x3b25d96434d515ef",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x22e74da5e",
"currentBlockNumber": "0x1b7740",
"currentDifficulty": "0x3b25d96434d515ef"
},
"DifficultyTest1048": {
"parentTimestamp": "0x3ec73037f",
"parentDifficulty": "0x302ed356b545f651",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x3ec730393",
"currentBlockNumber": "0x1cfde0",
"currentDifficulty": "0x302ed356b545f651"
},
"DifficultyTest1049": {
"parentTimestamp": "0x3ef65e06c",
"parentDifficulty": "0xa5f304a89365ec2",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x3ef65e080",
"currentBlockNumber": "0x1e8480",
"currentDifficulty": "0xa5f304a89365ec2"
},
"DifficultyTest105": {
"parentTimestamp": "0x59f8dd66c",
"parentDifficulty": "0x4391796dbbd55645",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x59f8dd66e",
"currentBlockNumber": "0xaae60",
"currentDifficulty": "0x4399eb9ce98cd0ef"
},
"DifficultyTest1050": {
"parentTimestamp": "0x218b5d25c",
"parentDifficulty": "0x4266e9c6831b8bc4",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x218b5d270",
"currentBlockNumber": "0x200b20",
"currentDifficulty": "0x4266e9c6831b8bc4"
},
"DifficultyTest1051": {
"parentTimestamp": "0x4e90ffe83",
"parentDifficulty": "0x4d246310b7d76c51",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x4e90ffe97",
"currentBlockNumber": "0x2191c0",
"currentDifficulty": "0x4d246310b7d76c51"
},
"DifficultyTest1052": {
"parentTimestamp": "0x37e4fec26",
"parentDifficulty": "0x8f8edcf7777ef3d",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x37e4fec3a",
"currentBlockNumber": "0x231860",
"currentDifficulty": "0x8f8edcf7777ef3d"
},
"DifficultyTest1053": {
"parentTimestamp": "0x1c8d56812",
"parentDifficulty": "0x4a8833a818cbfab6",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x1c8d56826",
"currentBlockNumber": "0x249f00",
"currentDifficulty": "0x4a8833a818cbfab6"
},
"DifficultyTest1054": {
"parentTimestamp": "0x33d0ce60e",
"parentDifficulty": "0x27d7de38e28ce85b",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x33d0ce622",
"currentBlockNumber": "0x2625a0",
"currentDifficulty": "0x27d7de38e28ce85b"
},
"DifficultyTest1055": {
"parentTimestamp": "0x4e51a2e79",
"parentDifficulty": "0x17ebf47898c55028",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x4e51a2e8d",
"currentBlockNumber": "0x27ac40",
"currentDifficulty": "0x17ebf47898c55028"
},
"DifficultyTest1056": {
"parentTimestamp": "0x5fbe41a68",
"parentDifficulty": "0x1259f52f8f556aad",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x5fbe41a7c",
"currentBlockNumber": "0x2932e0",
"currentDifficulty": "0x1259f52f8f556aad"
},
"DifficultyTest1057": {
"parentTimestamp": "0x51adf271e",
"parentDifficulty": "0x64c15530b5609416",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x51adf2732",
"currentBlockNumber": "0x2ab980",
"currentDifficulty": "0x64c15530b5609416"
},
"DifficultyTest1058": {
"parentTimestamp": "0x732b1219a",
"parentDifficulty": "0x2540897b3d19e74b",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x732b121ae",
"currentBlockNumber": "0x2c4020",
"currentDifficulty": "0x2540897b3d19e74b"
},
"DifficultyTest1059": {
"parentTimestamp": "0x7da836772",
"parentDifficulty": "0x22f1033c0c4c0d3b",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x7da836786",
"currentBlockNumber": "0x2dc6c0",
"currentDifficulty": "0x22f1033c0c4c0d3b"
},
"DifficultyTest106": {
"parentTimestamp": "0x6aa168fd7",
"parentDifficulty": "0x178c9665ab6a772a",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x6aa168fd9",
"currentBlockNumber": "0xc3500",
"currentDifficulty": "0x178f87f8781fe478"
},
"DifficultyTest1060": {
"parentTimestamp": "0x2a07026dc",
"parentDifficulty": "0x3b75df954c226d9d",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x2a07026f0",
"currentBlockNumber": "0x2f4d60",
"currentDifficulty": "0x3b75df954c226d9d"
},
"DifficultyTest1061": {
"parentTimestamp": "0x59eb67e5c",
"parentDifficulty": "0xb338076ff92c1f0",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x59eb67e70",
"currentBlockNumber": "0x30d400",
"currentDifficulty": "0xb338076ff92c1f0"
},
"DifficultyTest1062": {
"parentTimestamp": "0x1bab149b3",
"parentDifficulty": "0x48ec5abd2be67b36",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x1bab149c7",
"currentBlockNumber": "0x325aa0",
"currentDifficulty": "0x48ec5abd2be67b36"
},
"DifficultyTest1063": {
"parentTimestamp": "0x30a494496",
"parentDifficulty": "0x6e33c9591f9d3189",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x30a4944aa",
"currentBlockNumber": "0x33e140",
"currentDifficulty": "0x6e33c9591f9d3189"
},
"DifficultyTest1064": {
"parentTimestamp": "0x2152db969",
"parentDifficulty": "0x18139549a46b6bb1",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x2152db97d",
"currentBlockNumber": "0x3567e0",
"currentDifficulty": "0x18139549a46b6bb1"
},
"DifficultyTest1065": {
"parentTimestamp": "0x2bbdb9cef",
"parentDifficulty": "0x6f2802f72650d483",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x2bbdb9d03",
"currentBlockNumber": "0x36ee80",
"currentDifficulty": "0x6f2802f72650d483"
},
"DifficultyTest1066": {
"parentTimestamp": "0x4e5738bb7",
"parentDifficulty": "0x22bb36a49bcc3cc9",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x4e5738bcb",
"currentBlockNumber": "0x387520",
"currentDifficulty": "0x22bb36a49bcc3cc9"
},
"DifficultyTest1067": {
"parentTimestamp": "0x35f79be59",
"parentDifficulty": "0x5066524706ad23fd",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x35f79be6d",
"currentBlockNumber": "0x39fbc0",
"currentDifficulty": "0x5066524706ad23fd"
},
"DifficultyTest1068": {
"parentTimestamp": "0x286dc071e",
"parentDifficulty": "0x41030f5c852f10d3",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x286dc0732",
"currentBlockNumber": "0x3b8260",
"currentDifficulty": "0x41030f5c852f10d3"
},
"DifficultyTest1069": {
"parentTimestamp": "0x4381c9ae7",
"parentDifficulty": "0x162d02a6b13d0414",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x4381c9afb",
"currentBlockNumber": "0x3d0900",
"currentDifficulty": "0x162d02a6b13d0414"
},
"DifficultyTest107": {
"parentTimestamp": "0x1099ec7ef",
"parentDifficulty": "0x44af078433989346",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x1099ec7f1",
"currentBlockNumber": "0xdbba0",
"currentDifficulty": "0x44b79d65241f0658"
},
"DifficultyTest1070": {
"parentTimestamp": "0xd9aff475",
"parentDifficulty": "0x6e3fae5bfac86def",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0xd9aff489",
"currentBlockNumber": "0x3e8fa0",
"currentDifficulty": "0x6e3fae5bfac86def"
},
"DifficultyTest1071": {
"parentTimestamp": "0x1e3c9515e",
"parentDifficulty": "0x187982d525848e0b",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x1e3c95172",
"currentBlockNumber": "0x401640",
"currentDifficulty": "0x187982d525848e0b"
},
"DifficultyTest1072": {
"parentTimestamp": "0x57c909d62",
"parentDifficulty": "0x5b0d499f27ebd97",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x57c909d76",
"currentBlockNumber": "0x419ce0",
"currentDifficulty": "0x5b0d499f27ebd97"
},
"DifficultyTest1073": {
"parentTimestamp": "0x20a37daa5",
"parentDifficulty": "0x5871dcfc7eef1d9f",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x20a37dab9",
"currentBlockNumber": "0x432380",
"currentDifficulty": "0x5871dcfc7eef1d9f"
},
"DifficultyTest1074": {
"parentTimestamp": "0x680d619d7",
"parentDifficulty": "0x6d44f616e3666121",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x680d619eb",
"currentBlockNumber": "0x44aa20",
"currentDifficulty": "0x6d44f616e3666121"
},
"DifficultyTest1075": {
"parentTimestamp": "0x780093c1d",
"parentDifficulty": "0x38717e2e5a67529b",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x780093c31",
"currentBlockNumber": "0x4630c0",
"currentDifficulty": "0x38717e2e5a67529b"
},
"DifficultyTest1076": {
"parentTimestamp": "0x273605106",
"parentDifficulty": "0x6182bdb94e29818f",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x27360511a",
"currentBlockNumber": "0x47b760",
"currentDifficulty": "0x6182bdb94e29818f"
},
"DifficultyTest1077": {
"parentTimestamp": "0x778ed662f",
"parentDifficulty": "0x653711173dc8b70f",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x778ed6643",
"currentBlockNumber": "0x493e00",
"currentDifficulty": "0x653711173dc8b70f"
},
"DifficultyTest1078": {
"parentTimestamp": "0x5c9530736",
"parentDifficulty": "0x4449f1398bcd7dd5",
"parentUncles": "0xb474a45ef82026d18138c2f23fee5586c9c7449f33f865e8838572ae06ffc7e9",
"currentTimestamp": "0x5c953074a",
"currentBlockNumber": "0x4ac4a0",
"currentDifficulty": "0x4449f1398bcd7dd5"
},
"DifficultyTest1079": {
"parentTimestamp": "0x299b200f1",
"parentDifficulty": "0x5d07e44bd60e85a5",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x299b20107",
"currentBlockNumber": "0x186a0",
"currentDifficulty": "0x5cfc434f4c93c3d5"
},
"DifficultyTest108": {
"parentTimestamp": "0x39f3b8ce4",
"parentDifficulty": "0x38ac2310a23853a2",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x39f3b8ce6",
"currentBlockNumber": "0xf4240",
"currentDifficulty": "0x38b33895044c9aac"
},
"DifficultyTest1080": {
"parentTimestamp": "0x4323835fa",
"parentDifficulty": "0x111ebc724a195dee",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x432383610",
"currentBlockNumber": "0x30d40",
"currentDifficulty": "0x111c989abbd01ac3"
},
"DifficultyTest1081": {
"parentTimestamp": "0x53d8efdab",
"parentDifficulty": "0x60560499d0234151",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x53d8efdc1",
"currentBlockNumber": "0x493e0",
"currentDifficulty": "0x6049f9d93ce93ce9"
},
"DifficultyTest1082": {
"parentTimestamp": "0x55cc98a89",
"parentDifficulty": "0x4e6ff6bc02e2b07d",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x55cc98a9f",
"currentBlockNumber": "0x61a80",
"currentDifficulty": "0x4e6628bd2b625427"
},
"DifficultyTest1083": {
"parentTimestamp": "0x5dff8dda2",
"parentDifficulty": "0x56fa1d9fd59a839a",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x5dff8ddb8",
"currentBlockNumber": "0x7a120",
"currentDifficulty": "0x56ef3e5c219fd04a"
},
"DifficultyTest1084": {
"parentTimestamp": "0x5e3003eb2",
"parentDifficulty": "0x6cc1e0eb45f846fd",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x5e3003ec8",
"currentBlockNumber": "0x927c0",
"currentDifficulty": "0x6cb448af288f87f5"
},
"DifficultyTest1085": {
"parentTimestamp": "0x184c0facd",
"parentDifficulty": "0x4e5794a558af86d2",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x184c0fae3",
"currentBlockNumber": "0xaae60",
"currentDifficulty": "0x4e4dc9b2c40470e2"
},
"DifficultyTest1086": {
"parentTimestamp": "0x36b070ff8",
"parentDifficulty": "0xd822b2d877e5ca7",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x36b07100e",
"currentBlockNumber": "0xc3500",
"currentDifficulty": "0xd807ae821cd6cdc"
},
"DifficultyTest1087": {
"parentTimestamp": "0x57f536f02",
"parentDifficulty": "0xa85ae830a2bc35b",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x57f536f18",
"currentBlockNumber": "0xdbba0",
"currentDifficulty": "0xa845dcd39ca7de3"
},
"DifficultyTest1088": {
"parentTimestamp": "0x1eea8f1b9",
"parentDifficulty": "0x2151a6c3265e7dba",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x1eea8f1cf",
"currentBlockNumber": "0xf4240",
"currentDifficulty": "0x214d7c8e4df9b1eb"
},
"DifficultyTest1089": {
"parentTimestamp": "0x48f7f0bb9",
"parentDifficulty": "0x20c231cc31786c8a",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x48f7f0bcf",
"currentBlockNumber": "0x10c8e0",
"currentDifficulty": "0x20be1985f7f23d7d"
},
"DifficultyTest109": {
"parentTimestamp": "0x4aa90c5c0",
"parentDifficulty": "0x14802b5dd076b0b3",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x4aa90c5c2",
"currentBlockNumber": "0x10c8e0",
"currentDifficulty": "0x1482bb633c30bf89"
},
"DifficultyTest1090": {
"parentTimestamp": "0x5e976301a",
"parentDifficulty": "0x1c06a63fc4c45550",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x5e9763030",
"currentBlockNumber": "0x124f80",
"currentDifficulty": "0x1c03256afccbbcc6"
},
"DifficultyTest1091": {
"parentTimestamp": "0x66f332edc",
"parentDifficulty": "0x440379b62cc14923",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x66f332ef2",
"currentBlockNumber": "0x13d620",
"currentDifficulty": "0x43faf946f5fbb0fa"
},
"DifficultyTest1092": {
"parentTimestamp": "0x339a49546",
"parentDifficulty": "0x854dda238b59ef6",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x339a4955c",
"currentBlockNumber": "0x155cc0",
"currentDifficulty": "0x853d306846e8843"
},
"DifficultyTest1093": {
"parentTimestamp": "0x7a98a5c0e",
"parentDifficulty": "0x17adb69ab7a4359a",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x7a98a5c24",
"currentBlockNumber": "0x16e360",
"currentDifficulty": "0x17aac0e3e44d4114"
},
"DifficultyTest1094": {
"parentTimestamp": "0x2354398ec",
"parentDifficulty": "0x40bc1430d7a9df3e",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x235439902",
"currentBlockNumber": "0x186a00",
"currentDifficulty": "0x40b3fcae518eea03"
},
"DifficultyTest1095": {
"parentTimestamp": "0x14f059eab",
"parentDifficulty": "0x1beb30a94255914f",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x14f059ec1",
"currentBlockNumber": "0x19f0a0",
"currentDifficulty": "0x1be7b3432d2d469d"
},
"DifficultyTest1096": {
"parentTimestamp": "0x1687f3330",
"parentDifficulty": "0x49b14933d45aa923",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x1687f3346",
"currentBlockNumber": "0x1b7740",
"currentDifficulty": "0x49a8130aade01dce"
},
"DifficultyTest1097": {
"parentTimestamp": "0x4baedece5",
"parentDifficulty": "0x1e5207ed618e9cb7",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x4baedecfb",
"currentBlockNumber": "0x1cfde0",
"currentDifficulty": "0x1e4e3dac63e26ae4"
},
"DifficultyTest1098": {
"parentTimestamp": "0x4d457af8e",
"parentDifficulty": "0x710a728f7d03c262",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x4d457afa4",
"currentBlockNumber": "0x1e8480",
"currentDifficulty": "0x70fc51412b1421ea"
},
"DifficultyTest1099": {
"parentTimestamp": "0x47566df18",
"parentDifficulty": "0x6d37bf39876751b2",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x47566df2e",
"currentBlockNumber": "0x200b20",
"currentDifficulty": "0x6d2a1841a03664c8"
},
"DifficultyTest11": {
"parentTimestamp": "0x14a0bc14f",
"parentDifficulty": "0x2fb9182be22ee5e3",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x14a0bc14f",
"currentBlockNumber": "0x10c8e0",
"currentDifficulty": "0x2fbf0f4ee7ab2bbf"
},
"DifficultyTest110": {
"parentTimestamp": "0x3e2d3b58b",
"parentDifficulty": "0x46909e90b7394bca",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x3e2d3b58d",
"currentBlockNumber": "0x124f80",
"currentDifficulty": "0x469970a4895032f3"
},
"DifficultyTest1100": {
"parentTimestamp": "0x424cda657",
"parentDifficulty": "0x1c917345c4c6e38e",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x424cda66d",
"currentBlockNumber": "0x2191c0",
"currentDifficulty": "0x1c8de1175c0e4ab2"
},
"DifficultyTest1101": {
"parentTimestamp": "0x45b4c994e",
"parentDifficulty": "0x5ea8025891cd4614",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x45b4c9964",
"currentBlockNumber": "0x231860",
"currentDifficulty": "0x5e9c2d5846bb0c6c"
},
"DifficultyTest1102": {
"parentTimestamp": "0x64a39f419",
"parentDifficulty": "0x4d3d923a92e5891e",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x64a39f42f",
"currentBlockNumber": "0x249f00",
"currentDifficulty": "0x4d33ea884b932c6d"
},
"DifficultyTest1103": {
"parentTimestamp": "0x57814aec6",
"parentDifficulty": "0x2b4a37507ea0bd5b",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x57814aedc",
"currentBlockNumber": "0x2625a0",
"currentDifficulty": "0x2b44ce099490e944"
},
"DifficultyTest1104": {
"parentTimestamp": "0x418ab2ab4",
"parentDifficulty": "0x70a555c9f8b594d7",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x418ab2aca",
"currentBlockNumber": "0x27ac40",
"currentDifficulty": "0x7097411f3f767e25"
},
"DifficultyTest1105": {
"parentTimestamp": "0x27c1784bf",
"parentDifficulty": "0x469a2ba6fc3c0f85",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x27c1784d5",
"currentBlockNumber": "0x2932e0",
"currentDifficulty": "0x46915861875c8804"
},
"DifficultyTest1106": {
"parentTimestamp": "0x2a97a6e65",
"parentDifficulty": "0x5ca3876cc146b23d",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x2a97a6e7b",
"currentBlockNumber": "0x2ab980",
"currentDifficulty": "0x5c97f2fbd3ae8967"
},
"DifficultyTest1107": {
"parentTimestamp": "0x2a087ad97",
"parentDifficulty": "0xc068ff47b12702",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x2a087adad",
"currentBlockNumber": "0x2c4020",
"currentDifficulty": "0xc050f227c830de"
},
"DifficultyTest1108": {
"parentTimestamp": "0x6dbee10d7",
"parentDifficulty": "0x134416b47dacaa3a",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x6dbee10ed",
"currentBlockNumber": "0x2dc6c0",
"currentDifficulty": "0x1341ae31a71cf4a5"
},
"DifficultyTest1109": {
"parentTimestamp": "0x51add3373",
"parentDifficulty": "0x370f34f383552af6",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x51add3389",
"currentBlockNumber": "0x2f4d60",
"currentDifficulty": "0x3708530ce4e4c051"
},
"DifficultyTest111": {
"parentTimestamp": "0x5c9acd11a",
"parentDifficulty": "0x7f6206cf571f8b52",
"parentUncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"currentTimestamp": "0x5c9acd11c",
"currentBlockNumber": "0x13d620",
"currentDifficulty": "0x7f71f310310a6f43"