-
Notifications
You must be signed in to change notification settings - Fork 1
/
nbits7_2_2024
5206 lines (5206 loc) · 212 KB
/
nbits7_2_2024
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
-------------------------********---------------------------
just see :params.DifficultyAdjustmentInterval() : 2016
btc_count[]: 1320 2016 1925 2003
ltc_count[]: 696 0 91 13
nActualTimespan: 206287 retargetTimespan: 604800
A/T: 0.341083
realheight8065
10.0*y_n[0]/x_n[0] : 5.27273 x_n[0]/10.0*y_n[0] : 0.189655
temp_btc_1 : 3 temp_ltc_1 0.25
temp_btc_1_final : 2.19432 temp_ltc_1_final 0.29
temp_x_a : 390.9 temp_y_b 390.9
not pow(1.2,temp_btc_2): 1.78051 not pow(1.2,temp_ltc_2): -1.78051
pow(1.2,temp_btc_2): 1.38351 pow(1.2,temp_ltc_2) 0.722799
temp_btc_1*temp_btc_2: 3.03586 temp_ltc_1*temp_ltc_2 0.209612
temp_btc_3: 1 temp_ltc_3 : 0.209612
btc_3 0.341083 ltc_3 0.0714949
btc_4 1.03548 ltc_4 0.0714949
btc_4 0.341083 ltc_4 0.0714949
0.2~btc_temp3*A_T~5 0.341083 0.2~ltc_temp3*A_T~5 0.2
before:-----------------------------
bnNew_btc_nbits : 545259519
bnNew_ltc_nbits : 545259519
bnNew_btc_nbits : 4.65654e-10
bnNew_ltc_nbits : 4.65654e-10
nModulatedTimespan_btc 341.083 nModulatedTimespan_ltc 200
!!LTC!!!!!bnNew_ltc_over *= nModulatedTimespan_ltc>bnPowLimit!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
after:-----------------------------
bnNew_btc_nbits : 522241092
bnNew_ltc_nbits : 536954798
bnNew_btc_nbits : 4.65673e-07
bnNew_ltc_nbits : 4.65655e-08
2024-07-02 09:01:19
*****************************************************
-------------------------********---------------------------
just see :params.DifficultyAdjustmentInterval() : 2016
btc_count[]: 1250 1320 2016 1925
ltc_count[]: 766 696 0 91
nActualTimespan: 198815 retargetTimespan: 604800
A/T: 0.328729
realheight10081
10.0*y_n[0]/x_n[0] : 6.128 x_n[0]/10.0*y_n[0] : 0.163185
temp_btc_1 : 3 temp_ltc_1 0.25
temp_btc_1_final : 2.2332 temp_ltc_1_final 0.29
temp_x_a : 262 temp_y_b 262
not pow(1.2,temp_btc_2): 0.267176 not pow(1.2,temp_ltc_2): -0.267176
pow(1.2,temp_btc_2): 1.04992 pow(1.2,temp_ltc_2) 0.952456
temp_btc_1*temp_btc_2: 2.34468 temp_ltc_1*temp_ltc_2 0.276212
temp_btc_3: 1 temp_ltc_3 : 0.276212
btc_3 0.328729 ltc_3 0.0907988
btc_4 0.770762 ltc_4 0.0907988
btc_4 0.328729 ltc_4 0.0907988
0.2~btc_temp3*A_T~5 0.328729 0.2~ltc_temp3*A_T~5 0.2
before:-----------------------------
bnNew_btc_nbits : 522241092
bnNew_ltc_nbits : 536954798
bnNew_btc_nbits : 4.65673e-07
bnNew_ltc_nbits : 4.65655e-08
nModulatedTimespan_btc 328.729 nModulatedTimespan_ltc 200
!!LTC!!!!!bnNew_ltc_over *= nModulatedTimespan_ltc>bnPowLimit!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
after:-----------------------------
bnNew_btc_nbits : 520798041
bnNew_ltc_nbits : 524388659
bnNew_btc_nbits : 1.41974e-06
bnNew_ltc_nbits : 2.32827e-07
2024-07-02 09:01:28
*****************************************************
-------------------------********---------------------------
just see :params.DifficultyAdjustmentInterval() : 2016
btc_count[]: 1215 1250 1320 2016
ltc_count[]: 801 766 696 0
nActualTimespan: 193317 retargetTimespan: 604800
A/T: 0.319638
realheight12097
10.0*y_n[0]/x_n[0] : 6.59259 x_n[0]/10.0*y_n[0] : 0.151685
temp_btc_1 : 3 temp_ltc_1 0.25
temp_btc_1_final : 2.25432 temp_ltc_1_final 0.29
temp_x_a : 177.7 temp_y_b 177.7
not pow(1.2,temp_btc_2): 0.196961 not pow(1.2,temp_ltc_2): -0.196961
pow(1.2,temp_btc_2): 1.03656 pow(1.2,temp_ltc_2) 0.964727
temp_btc_1*temp_btc_2: 2.33675 temp_ltc_1*temp_ltc_2 0.279771
temp_btc_3: 1 temp_ltc_3 : 0.279771
btc_3 0.319638 ltc_3 0.0894253
btc_4 0.746912 ltc_4 0.0894253
btc_4 0.319638 ltc_4 0.0894253
0.2~btc_temp3*A_T~5 0.319638 0.2~ltc_temp3*A_T~5 0.2
before:-----------------------------
bnNew_btc_nbits : 520798041
bnNew_ltc_nbits : 524388659
bnNew_btc_nbits : 1.41974e-06
bnNew_ltc_nbits : 2.32827e-07
nModulatedTimespan_btc 319.638 nModulatedTimespan_ltc 200
after:-----------------------------
bnNew_btc_nbits : 520318382
bnNew_ltc_nbits : 520952688
bnNew_btc_nbits : 4.45059e-06
bnNew_ltc_nbits : 1.16414e-06
2024-07-02 09:01:37
*****************************************************
-------------------------********---------------------------
just see :params.DifficultyAdjustmentInterval() : 2016
btc_count[]: 1258 1215 1250 1320
ltc_count[]: 758 801 766 696
nActualTimespan: 199071 retargetTimespan: 604800
A/T: 0.329152
realheight14113
10.0*y_n[0]/x_n[0] : 6.02544 x_n[0]/10.0*y_n[0] : 0.165963
temp_btc_1 : 3 temp_ltc_1 0.25
temp_btc_1_final : 2.22854 temp_ltc_1_final 0.29
temp_x_a : 46 temp_y_b 46
not pow(1.2,temp_btc_2): -0.934783 not pow(1.2,temp_ltc_2): 0.934783
pow(1.2,temp_btc_2): 0.843301 pow(1.2,temp_ltc_2) 1.18582
temp_btc_1*temp_btc_2: 1.87933 temp_ltc_1*temp_ltc_2 0.343887
temp_btc_3: 1 temp_ltc_3 : 0.343887
btc_3 0.329152 ltc_3 0.113191
btc_4 0.618584 ltc_4 0.113191
btc_4 0.329152 ltc_4 0.113191
0.2~btc_temp3*A_T~5 0.329152 0.2~ltc_temp3*A_T~5 0.2
before:-----------------------------
bnNew_btc_nbits : 520318382
bnNew_ltc_nbits : 520952688
bnNew_btc_nbits : 4.45059e-06
bnNew_ltc_nbits : 1.16414e-06
nModulatedTimespan_btc 329.152 nModulatedTimespan_ltc 200
after:-----------------------------
bnNew_btc_nbits : 520167617
bnNew_ltc_nbits : 520265494
bnNew_btc_nbits : 1.35277e-05
bnNew_ltc_nbits : 5.8207e-06
2024-07-02 09:01:46
*****************************************************
-------------------------********---------------------------
just see :params.DifficultyAdjustmentInterval() : 2016
btc_count[]: 1338 1258 1215 1250
ltc_count[]: 678 758 801 766
nActualTimespan: 200379 retargetTimespan: 604800
A/T: 0.331314
realheight16129
10.0*y_n[0]/x_n[0] : 5.06726 x_n[0]/10.0*y_n[0] : 0.197345
temp_btc_1 : 3 temp_ltc_1 0.25
temp_btc_1_final : 2.18498 temp_ltc_1_final 0.29
temp_x_a : 59.9 temp_y_b 59.9
not pow(1.2,temp_btc_2): -1.33556 not pow(1.2,temp_ltc_2): 1.33556
pow(1.2,temp_btc_2): 0.783879 pow(1.2,temp_ltc_2) 1.27571
temp_btc_1*temp_btc_2: 1.71276 temp_ltc_1*temp_ltc_2 0.369955
temp_btc_3: 1 temp_ltc_3 : 0.369955
btc_3 0.331314 ltc_3 0.122572
btc_4 0.567461 ltc_4 0.122572
btc_4 0.331314 ltc_4 0.122572
0.2~btc_temp3*A_T~5 0.331314 0.2~ltc_temp3*A_T~5 0.2
before:-----------------------------
bnNew_btc_nbits : 520167617
bnNew_ltc_nbits : 520265494
bnNew_btc_nbits : 1.35277e-05
bnNew_ltc_nbits : 5.8207e-06
nModulatedTimespan_btc 331.314 nModulatedTimespan_ltc 200
after:-----------------------------
bnNew_btc_nbits : 509580249
bnNew_ltc_nbits : 520128055
bnNew_btc_nbits : 4.08693e-05
bnNew_ltc_nbits : 2.9104e-05
2024-07-02 09:01:55
*****************************************************
-------------------------********---------------------------
just see :params.DifficultyAdjustmentInterval() : 2016
btc_count[]: 1564 1338 1258 1215
ltc_count[]: 452 678 758 801
nActualTimespan: 239700 retargetTimespan: 604800
A/T: 0.396329
realheight18145
10.0*y_n[0]/x_n[0] : 2.89003 x_n[0]/10.0*y_n[0] : 0.346018
temp_btc_1 : 2.89003 temp_ltc_1 0.346018
temp_btc_1_final : 2.03101 temp_ltc_1_final 0.375442
temp_x_a : 145.6 temp_y_b 145.6
not pow(1.2,temp_btc_2): -1.5522 not pow(1.2,temp_ltc_2): 1.5522
pow(1.2,temp_btc_2): 0.75352 pow(1.2,temp_ltc_2) 1.3271
temp_btc_1*temp_btc_2: 1.53041 temp_ltc_1*temp_ltc_2 0.498251
temp_btc_3: 1 temp_ltc_3 : 0.498251
btc_3 0.396329 ltc_3 0.197472
btc_4 0.606546 ltc_4 0.197472
btc_4 0.396329 ltc_4 0.197472
0.2~btc_temp3*A_T~5 0.396329 0.2~ltc_temp3*A_T~5 0.2
before:-----------------------------
bnNew_btc_nbits : 509580249
bnNew_ltc_nbits : 520128055
bnNew_btc_nbits : 4.08693e-05
bnNew_ltc_nbits : 2.9104e-05
nModulatedTimespan_btc 396.329 nModulatedTimespan_ltc 200
after:-----------------------------
bnNew_btc_nbits : 505796932
bnNew_ltc_nbits : 505075660
bnNew_btc_nbits : 0.000103205
bnNew_ltc_nbits : 0.00014552
2024-07-02 09:02:04
*****************************************************
-------------------------********---------------------------
just see :params.DifficultyAdjustmentInterval() : 2016
btc_count[]: 1248 1564 1338 1258
ltc_count[]: 768 452 678 758
nActualTimespan: 191235 retargetTimespan: 604800
A/T: 0.316195
realheight20161
10.0*y_n[0]/x_n[0] : 6.15385 x_n[0]/10.0*y_n[0] : 0.1625
temp_btc_1 : 3 temp_ltc_1 0.25
temp_btc_1_final : 2.23438 temp_ltc_1_final 0.29
temp_x_a : 241.8 temp_y_b 241.8
not pow(1.2,temp_btc_2): 1.30687 not pow(1.2,temp_ltc_2): -1.30687
pow(1.2,temp_btc_2): 1.26905 pow(1.2,temp_ltc_2) 0.78799
temp_btc_1*temp_btc_2: 2.83554 temp_ltc_1*temp_ltc_2 0.228517
temp_btc_3: 1 temp_ltc_3 : 0.228517
btc_3 0.316195 ltc_3 0.0722561
btc_4 0.896584 ltc_4 0.0722561
btc_4 0.316195 ltc_4 0.0722561
0.2~btc_temp3*A_T~5 0.316195 0.2~ltc_temp3*A_T~5 0.2
before:-----------------------------
bnNew_btc_nbits : 505796932
bnNew_ltc_nbits : 505075660
bnNew_btc_nbits : 0.000103205
bnNew_ltc_nbits : 0.00014552
nModulatedTimespan_btc 316.195 nModulatedTimespan_ltc 200
after:-----------------------------
bnNew_btc_nbits : 504100302
bnNew_ltc_nbits : 503668316
bnNew_btc_nbits : 0.0003266
bnNew_ltc_nbits : 0.000727601
2024-07-02 09:02:14
*****************************************************
-------------------------********---------------------------
just see :params.DifficultyAdjustmentInterval() : 2016
btc_count[]: 2003 1248 1564 1338
ltc_count[]: 13 768 452 678
nActualTimespan: 785556 retargetTimespan: 604800
A/T: 1.29887
realheight22177
10.0*y_n[0]/x_n[0] : 0.0649026 x_n[0]/10.0*y_n[0] : 15.4077
temp_btc_1 : 0.33 temp_ltc_1 4
temp_btc_1_final : 0.622564 temp_ltc_1_final 3.5
temp_x_a : 517.5 temp_y_b 517.5
not pow(1.2,temp_btc_2): -1.45894 not pow(1.2,temp_ltc_2): 1.45894
pow(1.2,temp_btc_2): 0.766442 pow(1.2,temp_ltc_2) 1.30473
temp_btc_1*temp_btc_2: 0.477159 temp_ltc_1*temp_ltc_2 4.56655
temp_btc_3: 1 temp_ltc_3 : 4.56655
btc_3 1.29887 ltc_3 5.93135
btc_4 0.619767 ltc_4 5.93135
btc_4 1.29887 ltc_4 5.93135
0.2~btc_temp3*A_T~5 1.29887 0.2~ltc_temp3*A_T~5 5
before:-----------------------------
bnNew_btc_nbits : 504100302
bnNew_ltc_nbits : 503668316
bnNew_btc_nbits : 0.0003266
bnNew_ltc_nbits : 0.000727601
nModulatedTimespan_btc 1298.87 nModulatedTimespan_ltc 5000
after:-----------------------------
bnNew_btc_nbits : 504333880
bnNew_ltc_nbits : 505075660
bnNew_btc_nbits : 0.000251618
bnNew_ltc_nbits : 0.00014552
2024-07-02 09:02:23
*****************************************************
-------------------------********---------------------------
just see :params.DifficultyAdjustmentInterval() : 2016
btc_count[]: 2016 2003 1248 1564
ltc_count[]: 0 13 768 452
nActualTimespan: 46609 retargetTimespan: 604800
A/T: 0.0770651
realheight24193
10.0*y_n[0]/x_n[0] : 0 x_n[0]/10.0*y_n[0] : inf
temp_btc_1 : 0.33 temp_ltc_1 4
temp_btc_1_final : 0.619613 temp_ltc_1_final 3.5
temp_x_a : 296.2 temp_y_b 296.2
not pow(1.2,temp_btc_2): -0.0438893 not pow(1.2,temp_ltc_2): 0.0438893
pow(1.2,temp_btc_2): 0.99203 pow(1.2,temp_ltc_2) 1.00803
temp_btc_1*temp_btc_2: 0.614675 temp_ltc_1*temp_ltc_2 3.52812
temp_btc_3: 0.614675 temp_ltc_3 : 1
btc_3 0.153669 ltc_3 0.25
btc_4 0.153669 ltc_4 0.88203
btc_4 0.153669 ltc_4 0.25
0.2~btc_temp3*A_T~5 0.2 0.2~ltc_temp3*A_T~5 0.25
before:-----------------------------
bnNew_btc_nbits : 504333880
bnNew_ltc_nbits : 505075660
bnNew_btc_nbits : 0.000251618
bnNew_ltc_nbits : 0.00014552
nModulatedTimespan_btc 200 nModulatedTimespan_ltc 250
after:-----------------------------
bnNew_btc_nbits : 503519960
bnNew_ltc_nbits : 503756275
bnNew_btc_nbits : 0.00125809
bnNew_ltc_nbits : 0.000582081
2024-07-02 09:02:32
*****************************************************
-------------------------********---------------------------
just see :params.DifficultyAdjustmentInterval() : 2016
btc_count[]: 2016 2016 2003 1248
ltc_count[]: 0 0 13 768
nActualTimespan: 47690 retargetTimespan: 604800
A/T: 0.0788525
realheight26209
10.0*y_n[0]/x_n[0] : 0 x_n[0]/10.0*y_n[0] : inf
temp_btc_1 : 0.33 temp_ltc_1 4
temp_btc_1_final : 0.619613 temp_ltc_1_final 3.5
temp_x_a : 154.9 temp_y_b 154.9
not pow(1.2,temp_btc_2): 0 not pow(1.2,temp_ltc_2): 0
pow(1.2,temp_btc_2): 1 pow(1.2,temp_ltc_2) 1
temp_btc_1*temp_btc_2: 0.619613 temp_ltc_1*temp_ltc_2 3.5
temp_btc_3: 0.619613 temp_ltc_3 : 1
btc_3 0.154903 ltc_3 0.25
btc_4 0.154903 ltc_4 0.875
btc_4 0.154903 ltc_4 0.25
0.2~btc_temp3*A_T~5 0.2 0.2~ltc_temp3*A_T~5 0.25
before:-----------------------------
bnNew_btc_nbits : 503519960
bnNew_ltc_nbits : 503756275
bnNew_btc_nbits : 0.00125809
bnNew_ltc_nbits : 0.000582081
nModulatedTimespan_btc 200 nModulatedTimespan_ltc 250
after:-----------------------------
bnNew_btc_nbits : 503357176
bnNew_ltc_nbits : 503426428
bnNew_btc_nbits : 0.00629045
bnNew_ltc_nbits : 0.00232834
2024-07-02 09:02:41
*****************************************************
-------------------------********---------------------------
just see :params.DifficultyAdjustmentInterval() : 2016
btc_count[]: 2016 2016 2016 2003
ltc_count[]: 0 0 0 13
nActualTimespan: 46341 retargetTimespan: 604800
A/T: 0.076622
realheight28225
10.0*y_n[0]/x_n[0] : 0 x_n[0]/10.0*y_n[0] : inf
temp_btc_1 : 0.33 temp_ltc_1 4
temp_btc_1_final : 0.619613 temp_ltc_1_final 3.5
temp_x_a : 2.6 temp_y_b 2.6
not pow(1.2,temp_btc_2): 0 not pow(1.2,temp_ltc_2): 0
pow(1.2,temp_btc_2): 1 pow(1.2,temp_ltc_2) 1
temp_btc_1*temp_btc_2: 0.619613 temp_ltc_1*temp_ltc_2 3.5
temp_btc_3: 0.619613 temp_ltc_3 : 1
btc_3 0.154903 ltc_3 0.25
btc_4 0.154903 ltc_4 0.875
btc_4 0.154903 ltc_4 0.25
0.2~btc_temp3*A_T~5 0.2 0.2~ltc_temp3*A_T~5 0.25
before:-----------------------------
bnNew_btc_nbits : 503357176
bnNew_ltc_nbits : 503426428
bnNew_btc_nbits : 0.00629045
bnNew_ltc_nbits : 0.00232834
nModulatedTimespan_btc 200 nModulatedTimespan_ltc 250
after:-----------------------------
bnNew_btc_nbits : 488622899
bnNew_ltc_nbits : 493575936
bnNew_btc_nbits : 0.0314522
bnNew_ltc_nbits : 0.00931335
2024-07-02 09:02:50
*****************************************************
-------------------------********---------------------------
just see :params.DifficultyAdjustmentInterval() : 2016
btc_count[]: 2015 2016 2016 2016
ltc_count[]: 1 0 0 0
nActualTimespan: 44996 retargetTimespan: 604800
A/T: 0.0743981
realheight30241
10.0*y_n[0]/x_n[0] : 0.00496278 x_n[0]/10.0*y_n[0] : 201.5
temp_btc_1 : 0.33 temp_ltc_1 4
temp_btc_1_final : 0.619839 temp_ltc_1_final 3.5
temp_x_a : 0.5 temp_y_b 0.5
not pow(1.2,temp_btc_2): 0.0178571 not pow(1.2,temp_ltc_2): -0.0357143
pow(1.2,temp_btc_2): 1.00326 pow(1.2,temp_ltc_2) 0.99351
temp_btc_1*temp_btc_2: 0.62186 temp_ltc_1*temp_ltc_2 3.47728
temp_btc_3: 0.62186 temp_ltc_3 : 1
btc_3 0.155465 ltc_3 0.25
btc_4 0.155465 ltc_4 0.869321
btc_4 0.155465 ltc_4 0.25
0.2~btc_temp3*A_T~5 0.2 0.2~ltc_temp3*A_T~5 0.25
before:-----------------------------
bnNew_btc_nbits : 488622899
bnNew_ltc_nbits : 493575936
bnNew_btc_nbits : 0.0314522
bnNew_ltc_nbits : 0.00931335
nModulatedTimespan_btc 200 nModulatedTimespan_ltc 250
after:-----------------------------
bnNew_btc_nbits : 486955991
bnNew_ltc_nbits : 488298432
bnNew_btc_nbits : 0.157261
bnNew_ltc_nbits : 0.0372534
2024-07-02 09:02:59
*****************************************************
-------------------------********---------------------------
just see :params.DifficultyAdjustmentInterval() : 2016
btc_count[]: 2016 2015 2016 2016
ltc_count[]: 0 1 0 0
nActualTimespan: 46523 retargetTimespan: 604800
A/T: 0.0769229
realheight32257
10.0*y_n[0]/x_n[0] : 0 x_n[0]/10.0*y_n[0] : inf
temp_btc_1 : 0.33 temp_ltc_1 4
temp_btc_1_final : 0.619613 temp_ltc_1_final 3.5
temp_x_a : 0.8 temp_y_b 0.8
not pow(1.2,temp_btc_2): -0.0178571 not pow(1.2,temp_ltc_2): 0.0357143
pow(1.2,temp_btc_2): 0.99675 pow(1.2,temp_ltc_2) 1.00653
temp_btc_1*temp_btc_2: 0.617599 temp_ltc_1*temp_ltc_2 3.52286
temp_btc_3: 0.617599 temp_ltc_3 : 1
btc_3 0.1544 ltc_3 0.25
btc_4 0.1544 ltc_4 0.880716
btc_4 0.1544 ltc_4 0.25
0.2~btc_temp3*A_T~5 0.2 0.2~ltc_temp3*A_T~5 0.25
before:-----------------------------
bnNew_btc_nbits : 486955991
bnNew_ltc_nbits : 488298432
bnNew_btc_nbits : 0.157261
bnNew_ltc_nbits : 0.0372534
nModulatedTimespan_btc 200 nModulatedTimespan_ltc 250
after:-----------------------------
bnNew_btc_nbits : 486622609
bnNew_ltc_nbits : 486979056
bnNew_btc_nbits : 0.78631
bnNew_ltc_nbits : 0.149014
2024-07-02 09:03:08
*****************************************************
-------------------------********---------------------------
just see :params.DifficultyAdjustmentInterval() : 2016
btc_count[]: 2016 2016 2015 2016
ltc_count[]: 0 0 1 0
nActualTimespan: 47144 retargetTimespan: 604800
A/T: 0.0779497
realheight34273
10.0*y_n[0]/x_n[0] : 0 x_n[0]/10.0*y_n[0] : inf
temp_btc_1 : 0.33 temp_ltc_1 4
temp_btc_1_final : 0.619613 temp_ltc_1_final 3.5
temp_x_a : 0.5 temp_y_b 0.5
not pow(1.2,temp_btc_2): 0 not pow(1.2,temp_ltc_2): 0
pow(1.2,temp_btc_2): 1 pow(1.2,temp_ltc_2) 1
temp_btc_1*temp_btc_2: 0.619613 temp_ltc_1*temp_ltc_2 3.5
temp_btc_3: 0.619613 temp_ltc_3 : 1
btc_3 0.154903 ltc_3 0.25
btc_4 0.154903 ltc_4 0.875
btc_4 0.154903 ltc_4 0.25
0.2~btc_temp3*A_T~5 0.2 0.2~ltc_temp3*A_T~5 0.25
before:-----------------------------
bnNew_btc_nbits : 486622609
bnNew_ltc_nbits : 486979056
bnNew_btc_nbits : 0.78631
bnNew_ltc_nbits : 0.149014
nModulatedTimespan_btc 200 nModulatedTimespan_ltc 250
after:-----------------------------
bnNew_btc_nbits : 474029312
bnNew_ltc_nbits : 486649212
bnNew_btc_nbits : 3.93155
bnNew_ltc_nbits : 0.596054
2024-07-02 09:03:17
*****************************************************
-------------------------********---------------------------
just see :params.DifficultyAdjustmentInterval() : 2016
btc_count[]: 2016 2016 2016 2015
ltc_count[]: 0 0 0 1
nActualTimespan: 46122 retargetTimespan: 604800
A/T: 0.0762599
realheight36289
10.0*y_n[0]/x_n[0] : 0 x_n[0]/10.0*y_n[0] : inf
temp_btc_1 : 0.33 temp_ltc_1 4
temp_btc_1_final : 0.619613 temp_ltc_1_final 3.5
temp_x_a : 0.2 temp_y_b 0.2
not pow(1.2,temp_btc_2): 0 not pow(1.2,temp_ltc_2): 0
pow(1.2,temp_btc_2): 1 pow(1.2,temp_ltc_2) 1
temp_btc_1*temp_btc_2: 0.619613 temp_ltc_1*temp_ltc_2 3.5
temp_btc_3: 0.619613 temp_ltc_3 : 1
btc_3 0.154903 ltc_3 0.25
btc_4 0.154903 ltc_4 0.875
btc_4 0.154903 ltc_4 0.25
0.2~btc_temp3*A_T~5 0.2 0.2~ltc_temp3*A_T~5 0.25
before:-----------------------------
bnNew_btc_nbits : 474029312
bnNew_ltc_nbits : 486649212
bnNew_btc_nbits : 3.93155
bnNew_ltc_nbits : 0.596054
nModulatedTimespan_btc 200 nModulatedTimespan_ltc 250
after:-----------------------------
bnNew_btc_nbits : 470615500
bnNew_ltc_nbits : 476798720
bnNew_btc_nbits : 19.6578
bnNew_ltc_nbits : 2.38422
2024-07-02 09:03:27
*****************************************************
-------------------------********---------------------------
just see :params.DifficultyAdjustmentInterval() : 2016
btc_count[]: 2016 2016 2016 2016
ltc_count[]: 0 0 0 0
nActualTimespan: 45882 retargetTimespan: 604800
A/T: 0.0758631
realheight38305
10.0*y_n[0]/x_n[0] : 0 x_n[0]/10.0*y_n[0] : inf
temp_btc_1 : 0.33 temp_ltc_1 4
temp_btc_1_final : 0.619613 temp_ltc_1_final 3.5
temp_x_a : 0 temp_y_b 0
pow(1.2,temp_btc_2): 1 pow(1.2,temp_ltc_2) 1
temp_btc_1*temp_btc_2: 0.619613 temp_ltc_1*temp_ltc_2 3.5
temp_btc_3: 0.619613 temp_ltc_3 : 1
btc_3 0.154903 ltc_3 0.25
btc_4 0.154903 ltc_4 0.875
btc_4 0.154903 ltc_4 0.25
0.2~btc_temp3*A_T~5 0.2 0.2~ltc_temp3*A_T~5 0.25
before:-----------------------------
bnNew_btc_nbits : 470615500
bnNew_ltc_nbits : 476798720
bnNew_btc_nbits : 19.6578
bnNew_ltc_nbits : 2.38422
nModulatedTimespan_btc 200 nModulatedTimespan_ltc 250
after:-----------------------------
bnNew_btc_nbits : 469932738
bnNew_ltc_nbits : 471521216
bnNew_btc_nbits : 98.2891
bnNew_ltc_nbits : 9.53687
2024-07-02 09:03:36
*****************************************************
-------------------------********---------------------------
just see :params.DifficultyAdjustmentInterval() : 2016
btc_count[]: 2016 2016 2016 2016
ltc_count[]: 0 0 0 0
nActualTimespan: 48001 retargetTimespan: 604800
A/T: 0.0793667
realheight40321
10.0*y_n[0]/x_n[0] : 0 x_n[0]/10.0*y_n[0] : inf
temp_btc_1 : 0.33 temp_ltc_1 4
temp_btc_1_final : 0.619613 temp_ltc_1_final 3.5
temp_x_a : 0 temp_y_b 0
pow(1.2,temp_btc_2): 1 pow(1.2,temp_ltc_2) 1
temp_btc_1*temp_btc_2: 0.619613 temp_ltc_1*temp_ltc_2 3.5
temp_btc_3: 0.619613 temp_ltc_3 : 1
btc_3 0.154903 ltc_3 0.25
btc_4 0.154903 ltc_4 0.875
btc_4 0.154903 ltc_4 0.25
0.2~btc_temp3*A_T~5 0.2 0.2~ltc_temp3*A_T~5 0.25
before:-----------------------------
bnNew_btc_nbits : 469932738
bnNew_ltc_nbits : 471521216
bnNew_btc_nbits : 98.2891
bnNew_ltc_nbits : 9.53687
nModulatedTimespan_btc 200 nModulatedTimespan_ltc 250
after:-----------------------------
bnNew_btc_nbits : 469796186
bnNew_ltc_nbits : 470201840
bnNew_btc_nbits : 491.445
bnNew_ltc_nbits : 38.1475
2024-07-02 09:03:45
*****************************************************
-------------------------********---------------------------
just see :params.DifficultyAdjustmentInterval() : 2016
btc_count[]: 2016 2016 2016 2016
ltc_count[]: 0 0 0 0
nActualTimespan: 47843 retargetTimespan: 604800
A/T: 0.0791055
realheight42337
10.0*y_n[0]/x_n[0] : 0 x_n[0]/10.0*y_n[0] : inf
temp_btc_1 : 0.33 temp_ltc_1 4
temp_btc_1_final : 0.619613 temp_ltc_1_final 3.5
temp_x_a : 0 temp_y_b 0
pow(1.2,temp_btc_2): 1 pow(1.2,temp_ltc_2) 1
temp_btc_1*temp_btc_2: 0.619613 temp_ltc_1*temp_ltc_2 3.5
temp_btc_3: 0.619613 temp_ltc_3 : 1
btc_3 0.154903 ltc_3 0.25
btc_4 0.154903 ltc_4 0.875
btc_4 0.154903 ltc_4 0.25
0.2~btc_temp3*A_T~5 0.2 0.2~ltc_temp3*A_T~5 0.25
before:-----------------------------
bnNew_btc_nbits : 469796186
bnNew_ltc_nbits : 470201840
bnNew_btc_nbits : 491.445
bnNew_ltc_nbits : 38.1475
nModulatedTimespan_btc 200 nModulatedTimespan_ltc 250
after:-----------------------------
bnNew_btc_nbits : 454732697
bnNew_ltc_nbits : 469871996
bnNew_btc_nbits : 2457.23
bnNew_ltc_nbits : 152.59
2024-07-02 09:03:54
*****************************************************
-------------------------********---------------------------
just see :params.DifficultyAdjustmentInterval() : 2016
btc_count[]: 2016 2016 2016 2016
ltc_count[]: 0 0 0 0
nActualTimespan: 49287 retargetTimespan: 604800
A/T: 0.0814931
realheight44353
10.0*y_n[0]/x_n[0] : 0 x_n[0]/10.0*y_n[0] : inf
temp_btc_1 : 0.33 temp_ltc_1 4
temp_btc_1_final : 0.619613 temp_ltc_1_final 3.5
temp_x_a : 0 temp_y_b 0
pow(1.2,temp_btc_2): 1 pow(1.2,temp_ltc_2) 1
temp_btc_1*temp_btc_2: 0.619613 temp_ltc_1*temp_ltc_2 3.5
temp_btc_3: 0.619613 temp_ltc_3 : 1
btc_3 0.154903 ltc_3 0.25
btc_4 0.154903 ltc_4 0.875
btc_4 0.154903 ltc_4 0.25
0.2~btc_temp3*A_T~5 0.2 0.2~ltc_temp3*A_T~5 0.25
before:-----------------------------
bnNew_btc_nbits : 454732697
bnNew_ltc_nbits : 469871996
bnNew_btc_nbits : 2457.23
bnNew_ltc_nbits : 152.59
nModulatedTimespan_btc 200 nModulatedTimespan_ltc 250
after:-----------------------------
bnNew_btc_nbits : 453334405
bnNew_ltc_nbits : 460021504
bnNew_btc_nbits : 12286.1
bnNew_ltc_nbits : 610.36
2024-07-02 09:04:03
*****************************************************
-------------------------********---------------------------
just see :params.DifficultyAdjustmentInterval() : 2016
btc_count[]: 2016 2016 2016 2016
ltc_count[]: 0 0 0 0
nActualTimespan: 47750 retargetTimespan: 604800
A/T: 0.0789517
realheight46369
10.0*y_n[0]/x_n[0] : 0 x_n[0]/10.0*y_n[0] : inf
temp_btc_1 : 0.33 temp_ltc_1 4
temp_btc_1_final : 0.619613 temp_ltc_1_final 3.5
temp_x_a : 0 temp_y_b 0
pow(1.2,temp_btc_2): 1 pow(1.2,temp_ltc_2) 1
temp_btc_1*temp_btc_2: 0.619613 temp_ltc_1*temp_ltc_2 3.5
temp_btc_3: 0.619613 temp_ltc_3 : 1
btc_3 0.154903 ltc_3 0.25
btc_4 0.154903 ltc_4 0.875
btc_4 0.154903 ltc_4 0.25
0.2~btc_temp3*A_T~5 0.2 0.2~ltc_temp3*A_T~5 0.25
before:-----------------------------
bnNew_btc_nbits : 453334405
bnNew_ltc_nbits : 460021504
bnNew_btc_nbits : 12286.1
bnNew_ltc_nbits : 610.36
nModulatedTimespan_btc 200 nModulatedTimespan_ltc 250
after:-----------------------------
bnNew_btc_nbits : 453054746
bnNew_ltc_nbits : 454744000
bnNew_btc_nbits : 61431.2
bnNew_ltc_nbits : 2441.44
2024-07-02 09:04:12
*****************************************************
-------------------------********---------------------------
just see :params.DifficultyAdjustmentInterval() : 2016
btc_count[]: 2016 2016 2016 2016
ltc_count[]: 0 0 0 0
nActualTimespan: 49523 retargetTimespan: 604800
A/T: 0.0818833
realheight48385
10.0*y_n[0]/x_n[0] : 0 x_n[0]/10.0*y_n[0] : inf
temp_btc_1 : 0.33 temp_ltc_1 4
temp_btc_1_final : 0.619613 temp_ltc_1_final 3.5
temp_x_a : 0 temp_y_b 0
pow(1.2,temp_btc_2): 1 pow(1.2,temp_ltc_2) 1
temp_btc_1*temp_btc_2: 0.619613 temp_ltc_1*temp_ltc_2 3.5
temp_btc_3: 0.619613 temp_ltc_3 : 1
btc_3 0.154903 ltc_3 0.25
btc_4 0.154903 ltc_4 0.875
btc_4 0.154903 ltc_4 0.25
0.2~btc_temp3*A_T~5 0.2 0.2~ltc_temp3*A_T~5 0.25
before:-----------------------------
bnNew_btc_nbits : 453054746
bnNew_ltc_nbits : 454744000
bnNew_btc_nbits : 61431.2
bnNew_ltc_nbits : 2441.44
nModulatedTimespan_btc 200 nModulatedTimespan_ltc 250
after:-----------------------------
bnNew_btc_nbits : 439787212
bnNew_ltc_nbits : 453424624
bnNew_btc_nbits : 307156
bnNew_ltc_nbits : 9765.76
2024-07-02 09:04:21
*****************************************************
-------------------------********---------------------------
just see :params.DifficultyAdjustmentInterval() : 2016
btc_count[]: 2016 2016 2016 2016
ltc_count[]: 0 0 0 0
nActualTimespan: 46668 retargetTimespan: 604800
A/T: 0.0771627
realheight50401
10.0*y_n[0]/x_n[0] : 0 x_n[0]/10.0*y_n[0] : inf
temp_btc_1 : 0.33 temp_ltc_1 4
temp_btc_1_final : 0.619613 temp_ltc_1_final 3.5
temp_x_a : 0 temp_y_b 0
pow(1.2,temp_btc_2): 1 pow(1.2,temp_ltc_2) 1
temp_btc_1*temp_btc_2: 0.619613 temp_ltc_1*temp_ltc_2 3.5
temp_btc_3: 0.619613 temp_ltc_3 : 1
btc_3 0.154903 ltc_3 0.25
btc_4 0.154903 ltc_4 0.875
btc_4 0.154903 ltc_4 0.25
0.2~btc_temp3*A_T~5 0.2 0.2~ltc_temp3*A_T~5 0.25
before:-----------------------------
bnNew_btc_nbits : 439787212
bnNew_ltc_nbits : 453424624
bnNew_btc_nbits : 307156
bnNew_ltc_nbits : 9765.76
nModulatedTimespan_btc 200 nModulatedTimespan_ltc 250
after:-----------------------------
bnNew_btc_nbits : 436923535
bnNew_ltc_nbits : 453094780
bnNew_btc_nbits : 1.53578e+06
bnNew_ltc_nbits : 39063
2024-07-02 09:04:30
*****************************************************
-------------------------********---------------------------
just see :params.DifficultyAdjustmentInterval() : 2016
btc_count[]: 2015 2016 2016 2016
ltc_count[]: 1 0 0 0
nActualTimespan: 47342 retargetTimespan: 604800
A/T: 0.0782771
realheight52417
10.0*y_n[0]/x_n[0] : 0.00496278 x_n[0]/10.0*y_n[0] : 201.5
temp_btc_1 : 0.33 temp_ltc_1 4
temp_btc_1_final : 0.619839 temp_ltc_1_final 3.5
temp_x_a : 0.5 temp_y_b 0.5
not pow(1.2,temp_btc_2): 0.0178571 not pow(1.2,temp_ltc_2): -0.0357143
pow(1.2,temp_btc_2): 1.00326 pow(1.2,temp_ltc_2) 0.99351
temp_btc_1*temp_btc_2: 0.62186 temp_ltc_1*temp_ltc_2 3.47728
temp_btc_3: 0.62186 temp_ltc_3 : 1
btc_3 0.155465 ltc_3 0.25
btc_4 0.155465 ltc_4 0.869321
btc_4 0.155465 ltc_4 0.25
0.2~btc_temp3*A_T~5 0.2 0.2~ltc_temp3*A_T~5 0.25
before:-----------------------------
bnNew_btc_nbits : 436923535
bnNew_ltc_nbits : 453094780
bnNew_btc_nbits : 1.53578e+06
bnNew_ltc_nbits : 39063
nModulatedTimespan_btc 200 nModulatedTimespan_ltc 250
after:-----------------------------
bnNew_btc_nbits : 436350799
bnNew_ltc_nbits : 443244288
bnNew_btc_nbits : 7.67895e+06
bnNew_ltc_nbits : 156252
2024-07-02 09:04:40
*****************************************************
-------------------------********---------------------------
just see :params.DifficultyAdjustmentInterval() : 2016
btc_count[]: 2016 2015 2016 2016
ltc_count[]: 0 1 0 0
nActualTimespan: 46627 retargetTimespan: 604800
A/T: 0.0770949
realheight54433
10.0*y_n[0]/x_n[0] : 0 x_n[0]/10.0*y_n[0] : inf
temp_btc_1 : 0.33 temp_ltc_1 4
temp_btc_1_final : 0.619613 temp_ltc_1_final 3.5
temp_x_a : 0.8 temp_y_b 0.8
not pow(1.2,temp_btc_2): -0.0178571 not pow(1.2,temp_ltc_2): 0.0357143
pow(1.2,temp_btc_2): 0.99675 pow(1.2,temp_ltc_2) 1.00653
temp_btc_1*temp_btc_2: 0.617599 temp_ltc_1*temp_ltc_2 3.52286
temp_btc_3: 0.617599 temp_ltc_3 : 1
btc_3 0.1544 ltc_3 0.25
btc_4 0.1544 ltc_4 0.880716
btc_4 0.1544 ltc_4 0.25
0.2~btc_temp3*A_T~5 0.2 0.2~ltc_temp3*A_T~5 0.25
before:-----------------------------
bnNew_btc_nbits : 436350799
bnNew_ltc_nbits : 443244288
bnNew_btc_nbits : 7.67895e+06
bnNew_ltc_nbits : 156252
nModulatedTimespan_btc 200 nModulatedTimespan_ltc 250
after:-----------------------------
bnNew_btc_nbits : 426761369
bnNew_ltc_nbits : 437966784
bnNew_btc_nbits : 3.83947e+07
bnNew_ltc_nbits : 625008
2024-07-02 09:04:49
*****************************************************
-------------------------********---------------------------
just see :params.DifficultyAdjustmentInterval() : 2016
btc_count[]: 2016 2016 2015 2016
ltc_count[]: 0 0 1 0
nActualTimespan: 48211 retargetTimespan: 604800
A/T: 0.079714
realheight56449
10.0*y_n[0]/x_n[0] : 0 x_n[0]/10.0*y_n[0] : inf
temp_btc_1 : 0.33 temp_ltc_1 4
temp_btc_1_final : 0.619613 temp_ltc_1_final 3.5
temp_x_a : 0.5 temp_y_b 0.5
not pow(1.2,temp_btc_2): 0 not pow(1.2,temp_ltc_2): 0
pow(1.2,temp_btc_2): 1 pow(1.2,temp_ltc_2) 1
temp_btc_1*temp_btc_2: 0.619613 temp_ltc_1*temp_ltc_2 3.5
temp_btc_3: 0.619613 temp_ltc_3 : 1
btc_3 0.154903 ltc_3 0.25
btc_4 0.154903 ltc_4 0.875
btc_4 0.154903 ltc_4 0.25
0.2~btc_temp3*A_T~5 0.2 0.2~ltc_temp3*A_T~5 0.25
before:-----------------------------
bnNew_btc_nbits : 426761369
bnNew_ltc_nbits : 437966784
bnNew_btc_nbits : 3.83947e+07
bnNew_ltc_nbits : 625008
nModulatedTimespan_btc 200 nModulatedTimespan_ltc 250
after:-----------------------------
bnNew_btc_nbits : 420896593
bnNew_ltc_nbits : 436647408
bnNew_btc_nbits : 1.91974e+08
bnNew_ltc_nbits : 2.50003e+06
2024-07-02 09:04:58
*****************************************************
-------------------------********---------------------------
just see :params.DifficultyAdjustmentInterval() : 2016
btc_count[]: 2016 2016 2016 2015
ltc_count[]: 0 0 0 1
nActualTimespan: 46169 retargetTimespan: 604800
A/T: 0.0763376
realheight58465
10.0*y_n[0]/x_n[0] : 0 x_n[0]/10.0*y_n[0] : inf
temp_btc_1 : 0.33 temp_ltc_1 4
temp_btc_1_final : 0.619613 temp_ltc_1_final 3.5
temp_x_a : 0.2 temp_y_b 0.2
not pow(1.2,temp_btc_2): 0 not pow(1.2,temp_ltc_2): 0
pow(1.2,temp_btc_2): 1 pow(1.2,temp_ltc_2) 1
temp_btc_1*temp_btc_2: 0.619613 temp_ltc_1*temp_ltc_2 3.5
temp_btc_3: 0.619613 temp_ltc_3 : 1
btc_3 0.154903 ltc_3 0.25
btc_4 0.154903 ltc_4 0.875
btc_4 0.154903 ltc_4 0.25
0.2~btc_temp3*A_T~5 0.2 0.2~ltc_temp3*A_T~5 0.25
before:-----------------------------
bnNew_btc_nbits : 420896593
bnNew_ltc_nbits : 436647408
bnNew_btc_nbits : 1.91974e+08
bnNew_ltc_nbits : 2.50003e+06
nModulatedTimespan_btc 200 nModulatedTimespan_ltc 250
after:-----------------------------
bnNew_btc_nbits : 419723638
bnNew_ltc_nbits : 436317564
bnNew_btc_nbits : 9.59871e+08
bnNew_ltc_nbits : 1.00001e+07
2024-07-02 09:05:07
*****************************************************
-------------------------********---------------------------
just see :params.DifficultyAdjustmentInterval() : 2016
btc_count[]: 1928 2016 2016 2016
ltc_count[]: 88 0 0 0
nActualTimespan: 45916 retargetTimespan: 604800
A/T: 0.0759193
realheight60481
10.0*y_n[0]/x_n[0] : 0.456432 x_n[0]/10.0*y_n[0] : 2.19091
temp_btc_1 : 0.456432 temp_ltc_1 2.19091
temp_btc_1_final : 0.703579 temp_ltc_1_final 2.13523
temp_x_a : 44 temp_y_b 44
not pow(1.2,temp_btc_2): 2 not pow(1.2,temp_ltc_2): -2
pow(1.2,temp_btc_2): 1.44 pow(1.2,temp_ltc_2) 0.694444
temp_btc_1*temp_btc_2: 1.01315 temp_ltc_1*temp_ltc_2 1.4828
temp_btc_3: 1 temp_ltc_3 : 1
btc_3 0.25 ltc_3 0.25
btc_4 0.253288 ltc_4 0.370699
btc_4 0.25 ltc_4 0.25
0.2~btc_temp3*A_T~5 0.25 0.2~ltc_temp3*A_T~5 0.25
before:-----------------------------
bnNew_btc_nbits : 419723638
bnNew_ltc_nbits : 436317564
bnNew_btc_nbits : 9.59871e+08
bnNew_ltc_nbits : 1.00001e+07
nModulatedTimespan_btc 250 nModulatedTimespan_ltc 250
after:-----------------------------
bnNew_btc_nbits : 419503709
bnNew_ltc_nbits : 426467072
bnNew_btc_nbits : 3.83951e+09
bnNew_ltc_nbits : 4.00005e+07
2024-07-02 09:05:16
*****************************************************
-------------------------********---------------------------
just see :params.DifficultyAdjustmentInterval() : 2016
btc_count[]: 1906 1928 2016 2016
ltc_count[]: 110 88 0 0
nActualTimespan: 1475171 retargetTimespan: 604800
A/T: 2.43911
realheight62497
10.0*y_n[0]/x_n[0] : 0.577125 x_n[0]/10.0*y_n[0] : 1.73273
temp_btc_1 : 0.577125 temp_ltc_1 1.73273
temp_btc_1_final : 0.769412 temp_ltc_1_final 1.69818
temp_x_a : 37.4 temp_y_b 37.4
not pow(1.2,temp_btc_2): 0.588235 not pow(1.2,temp_ltc_2): -0.588235
pow(1.2,temp_btc_2): 1.11321 pow(1.2,temp_ltc_2) 0.898303
temp_btc_1*temp_btc_2: 0.856518 temp_ltc_1*temp_ltc_2 1.52548
temp_btc_3: 1 temp_ltc_3 : 1.52548
btc_3 2.43911 ltc_3 3.72081
btc_4 2.08914 ltc_4 3.72081
btc_4 2.43911 ltc_4 3.72081
0.2~btc_temp3*A_T~5 2.43911 0.2~ltc_temp3*A_T~5 3.72081
before:-----------------------------
bnNew_btc_nbits : 419503709
bnNew_ltc_nbits : 426467072
bnNew_btc_nbits : 3.83951e+09
bnNew_ltc_nbits : 4.00005e+07
nModulatedTimespan_btc 2439.11 nModulatedTimespan_ltc 3720.81
after:-----------------------------
bnNew_btc_nbits : 419609200
bnNew_ltc_nbits : 436309867
bnNew_btc_nbits : 1.57422e+09
bnNew_ltc_nbits : 1.07529e+07
2024-07-02 09:05:25
*****************************************************
-------------------------********---------------------------
just see :params.DifficultyAdjustmentInterval() : 2016
btc_count[]: 1320 2016 1925 2003
ltc_count[]: 696 0 91 13
nActualTimespan: 206287 retargetTimespan: 604800
A/T: 0.341083
realheight8065
10.0*y_n[0]/x_n[0] : 5.27273 x_n[0]/10.0*y_n[0] : 0.189655
temp_btc_1 : 3 temp_ltc_1 0.25
temp_btc_1_final : 2.19432 temp_ltc_1_final 0.29
temp_x_a : 390.9 temp_y_b 390.9
not pow(1.2,temp_btc_2): 1.78051 not pow(1.2,temp_ltc_2): -1.78051
pow(1.2,temp_btc_2): 1.38351 pow(1.2,temp_ltc_2) 0.722799
temp_btc_1*temp_btc_2: 3.03586 temp_ltc_1*temp_ltc_2 0.209612
temp_btc_3: 1 temp_ltc_3 : 0.209612
btc_3 0.341083 ltc_3 0.0714949
btc_4 1.03548 ltc_4 0.0714949
btc_4 0.341083 ltc_4 0.0714949
0.2~btc_temp3*A_T~5 0.341083 0.2~ltc_temp3*A_T~5 0.2
before:-----------------------------
bnNew_btc_nbits : 545259519
bnNew_ltc_nbits : 545259519
bnNew_btc_nbits : 4.65654e-10
bnNew_ltc_nbits : 4.65654e-10
nModulatedTimespan_btc 341.083 nModulatedTimespan_ltc 200
!!LTC!!!!!bnNew_ltc_over *= nModulatedTimespan_ltc>bnPowLimit!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
after:-----------------------------
bnNew_btc_nbits : 522241092
bnNew_ltc_nbits : 536954798
bnNew_btc_nbits : 4.65673e-07
bnNew_ltc_nbits : 4.65655e-08
2024-07-02 10:27:16
*****************************************************
-------------------------********---------------------------
just see :params.DifficultyAdjustmentInterval() : 2016
btc_count[]: 1250 1320 2016 1925
ltc_count[]: 766 696 0 91
nActualTimespan: 198815 retargetTimespan: 604800
A/T: 0.328729
realheight10081
10.0*y_n[0]/x_n[0] : 6.128 x_n[0]/10.0*y_n[0] : 0.163185
temp_btc_1 : 3 temp_ltc_1 0.25
temp_btc_1_final : 2.2332 temp_ltc_1_final 0.29
temp_x_a : 262 temp_y_b 262
not pow(1.2,temp_btc_2): 0.267176 not pow(1.2,temp_ltc_2): -0.267176
pow(1.2,temp_btc_2): 1.04992 pow(1.2,temp_ltc_2) 0.952456
temp_btc_1*temp_btc_2: 2.34468 temp_ltc_1*temp_ltc_2 0.276212
temp_btc_3: 1 temp_ltc_3 : 0.276212
btc_3 0.328729 ltc_3 0.0907988
btc_4 0.770762 ltc_4 0.0907988
btc_4 0.328729 ltc_4 0.0907988
0.2~btc_temp3*A_T~5 0.328729 0.2~ltc_temp3*A_T~5 0.2
before:-----------------------------
bnNew_btc_nbits : 522241092
bnNew_ltc_nbits : 536954798
bnNew_btc_nbits : 4.65673e-07
bnNew_ltc_nbits : 4.65655e-08
nModulatedTimespan_btc 328.729 nModulatedTimespan_ltc 200
!!LTC!!!!!bnNew_ltc_over *= nModulatedTimespan_ltc>bnPowLimit!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
after:-----------------------------
bnNew_btc_nbits : 520798041
bnNew_ltc_nbits : 524388659
bnNew_btc_nbits : 1.41974e-06
bnNew_ltc_nbits : 2.32827e-07
2024-07-02 10:27:24
*****************************************************
-------------------------********---------------------------
just see :params.DifficultyAdjustmentInterval() : 2016
btc_count[]: 1215 1250 1320 2016
ltc_count[]: 801 766 696 0
nActualTimespan: 193317 retargetTimespan: 604800
A/T: 0.319638
realheight12097
10.0*y_n[0]/x_n[0] : 6.59259 x_n[0]/10.0*y_n[0] : 0.151685
temp_btc_1 : 3 temp_ltc_1 0.25
temp_btc_1_final : 2.25432 temp_ltc_1_final 0.29
temp_x_a : 177.7 temp_y_b 177.7
not pow(1.2,temp_btc_2): 0.196961 not pow(1.2,temp_ltc_2): -0.196961
pow(1.2,temp_btc_2): 1.03656 pow(1.2,temp_ltc_2) 0.964727
temp_btc_1*temp_btc_2: 2.33675 temp_ltc_1*temp_ltc_2 0.279771
temp_btc_3: 1 temp_ltc_3 : 0.279771
btc_3 0.319638 ltc_3 0.0894253
btc_4 0.746912 ltc_4 0.0894253
btc_4 0.319638 ltc_4 0.0894253
0.2~btc_temp3*A_T~5 0.319638 0.2~ltc_temp3*A_T~5 0.2
before:-----------------------------
bnNew_btc_nbits : 520798041
bnNew_ltc_nbits : 524388659
bnNew_btc_nbits : 1.41974e-06
bnNew_ltc_nbits : 2.32827e-07
nModulatedTimespan_btc 319.638 nModulatedTimespan_ltc 200
after:-----------------------------
bnNew_btc_nbits : 520318382
bnNew_ltc_nbits : 520952688
bnNew_btc_nbits : 4.45059e-06
bnNew_ltc_nbits : 1.16414e-06
2024-07-02 10:27:32
*****************************************************
-------------------------********---------------------------
just see :params.DifficultyAdjustmentInterval() : 2016
btc_count[]: 1258 1215 1250 1320
ltc_count[]: 758 801 766 696
nActualTimespan: 199071 retargetTimespan: 604800
A/T: 0.329152
realheight14113
10.0*y_n[0]/x_n[0] : 6.02544 x_n[0]/10.0*y_n[0] : 0.165963
temp_btc_1 : 3 temp_ltc_1 0.25
temp_btc_1_final : 2.22854 temp_ltc_1_final 0.29
temp_x_a : 46 temp_y_b 46