This repository has been archived by the owner on Sep 22, 2022. It is now read-only.
forked from bokkypoobah/BokkyPooBahsDateTimeLibrary
-
Notifications
You must be signed in to change notification settings - Fork 1
/
test1results.txt
2416 lines (2025 loc) · 108 KB
/
test1results.txt
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
# Account EtherBalanceChange Token Name
-- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
0 0xa00af22d07c87d96eeeb0ed583f8f6ac7812827e 0.000000000000000000 0.000000000000000000 Account #0 - Miner
1 0xa11aae29840fbb5c86e6fd4cf809eba183aef433 0.000000000000000000 0.000000000000000000 Account #1 - Contract Owner
2 0xa22ab8a9d641ce77e06d98b7d7065d324d3d6976 0.000000000000000000 0.000000000000000000 Account #2 - Alice
3 0xa33a6c312d9ad0e0f2e95541beed0cc081621fd0 0.000000000000000000 0.000000000000000000 Account #3 - Bob
4 0xa44a08d3f6933c69212114bb66e2df1813651844 0.000000000000000000 0.000000000000000000 Account #4 - Carol
5 0xa55a151eb00fded1634d27d1127b4be4627079ea 0.000000000000000000 0.000000000000000000 Account #5 - Dave
6 0xa66a85ede0cbe03694aa9d9de0bb19c99ff55bd9 0.000000000000000000 0.000000000000000000 Account #6
7 0xa77a2b9d4b1c010a22a7c565dc418cef683dbcec 0.000000000000000000 0.000000000000000000 Account #7
8 0xa88a05d2b88283ce84c8325760b72a64591279a2 0.000000000000000000 0.000000000000000000 Account #8
9 0xa99a0ae3354c06b1459fd441a32a3f71005d7da0 0.000000000000000000 0.000000000000000000 Account #9
10 0xaaaa9de1e6c564446ebca0fd102d8bd92093c756 0.000000000000000000 0.000000000000000000 Account #10
11 0xabba43e7594e3b76afb157989e93c6621497fd4b 0.000000000000000000 0.000000000000000000 Account #11
-- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
0.000000000000000000 Total Token Balances
-- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
----- Deploy DateTime Library -----
# Account EtherBalanceChange Token Name
-- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
0 0xa00af22d07c87d96eeeb0ed583f8f6ac7812827e 0.001198016000000000 0.000000000000000000 Account #0 - Miner
1 0xa11aae29840fbb5c86e6fd4cf809eba183aef433 -0.001198016000000000 0.000000000000000000 Account #1 - Contract Owner
2 0xa22ab8a9d641ce77e06d98b7d7065d324d3d6976 0.000000000000000000 0.000000000000000000 Account #2 - Alice
3 0xa33a6c312d9ad0e0f2e95541beed0cc081621fd0 0.000000000000000000 0.000000000000000000 Account #3 - Bob
4 0xa44a08d3f6933c69212114bb66e2df1813651844 0.000000000000000000 0.000000000000000000 Account #4 - Carol
5 0xa55a151eb00fded1634d27d1127b4be4627079ea 0.000000000000000000 0.000000000000000000 Account #5 - Dave
6 0xa66a85ede0cbe03694aa9d9de0bb19c99ff55bd9 0.000000000000000000 0.000000000000000000 Account #6
7 0xa77a2b9d4b1c010a22a7c565dc418cef683dbcec 0.000000000000000000 0.000000000000000000 Account #7
8 0xa88a05d2b88283ce84c8325760b72a64591279a2 0.000000000000000000 0.000000000000000000 Account #8
9 0xa99a0ae3354c06b1459fd441a32a3f71005d7da0 0.000000000000000000 0.000000000000000000 Account #9
10 0xaaaa9de1e6c564446ebca0fd102d8bd92093c756 0.000000000000000000 0.000000000000000000 Account #10
11 0xabba43e7594e3b76afb157989e93c6621497fd4b 0.000000000000000000 0.000000000000000000 Account #11
12 0x90d8927407c79c4a28ee879b821c76fc9bcc2688 0.000000000000000000 0.000000000000000000 DateTime Library
-- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
0.000000000000000000 Total Token Balances
-- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
PASS Deploy DateTime Library
dateTimeLibTx status=0x1 Success gas=6000000 gasUsed=74876 costETH=0.001198016 costUSD=0.80951139136 @ ETH/USD=675.71 gasPrice=16 gwei block=28 txIx=0 txId=0xbc383517b572e939da6cc6501ec53df222b46cd082c6afb350b31adfefca7140 @ 1550076750 Wed, 13 Feb 2019 16:52:30 UTC
---------- Deploy TestDateTime Contract ----------
# Account EtherBalanceChange Token Name
-- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
0 0xa00af22d07c87d96eeeb0ed583f8f6ac7812827e 0.020671056000000000 0.000000000000000000 Account #0 - Miner
1 0xa11aae29840fbb5c86e6fd4cf809eba183aef433 -0.020671056000000000 0.000000000000000000 Account #1 - Contract Owner
2 0xa22ab8a9d641ce77e06d98b7d7065d324d3d6976 0.000000000000000000 0.000000000000000000 Account #2 - Alice
3 0xa33a6c312d9ad0e0f2e95541beed0cc081621fd0 0.000000000000000000 0.000000000000000000 Account #3 - Bob
4 0xa44a08d3f6933c69212114bb66e2df1813651844 0.000000000000000000 0.000000000000000000 Account #4 - Carol
5 0xa55a151eb00fded1634d27d1127b4be4627079ea 0.000000000000000000 0.000000000000000000 Account #5 - Dave
6 0xa66a85ede0cbe03694aa9d9de0bb19c99ff55bd9 0.000000000000000000 0.000000000000000000 Account #6
7 0xa77a2b9d4b1c010a22a7c565dc418cef683dbcec 0.000000000000000000 0.000000000000000000 Account #7
8 0xa88a05d2b88283ce84c8325760b72a64591279a2 0.000000000000000000 0.000000000000000000 Account #8
9 0xa99a0ae3354c06b1459fd441a32a3f71005d7da0 0.000000000000000000 0.000000000000000000 Account #9
10 0xaaaa9de1e6c564446ebca0fd102d8bd92093c756 0.000000000000000000 0.000000000000000000 Account #10
11 0xabba43e7594e3b76afb157989e93c6621497fd4b 0.000000000000000000 0.000000000000000000 Account #11
12 0x90d8927407c79c4a28ee879b821c76fc9bcc2688 0.000000000000000000 0.000000000000000000 DateTime Library
13 0x0e946b999033257976aa5cbe0e3530618ca1582d 0.000000000000000000 0.000000000000000000 TestDateTime
-- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
0.000000000000000000 Total Token Balances
-- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
PASS Deploy TestDateTime Contract
testDateTimeAddress=0x0e946b999033257976aa5cbe0e3530618ca1582d status=0x1 Success gas=6000000 gasUsed=1217065 costETH=0.01947304 costUSD=13.1581278584 @ ETH/USD=675.71 gasPrice=16 gwei block=30 txIx=0 txId=0x58f294754e1d18602292281b62829bd034702a925f858240fe3b80a8409a91bf @ 1550076752 Wed, 13 Feb 2019 16:52:32 UTC
---------- Test isLeapYear ----------
PASS 2000,5,24,1,2,3 is a leap year
PASS 2100,5,24,1,2,3 is a not leap year
PASS 2104,5,24,1,2,3 is a leap year
---------- Test isValidDate and isValidDateTime ----------
PASS testDateTime.isValidDate(1969, 1, 1) is false
PASS testDateTime.isValidDate(1970, 1, 1) is true
PASS testDateTime.isValidDate(2000, 2, 29) is true
PASS testDateTime.isValidDate(2001, 2, 29) is false
PASS testDateTime.isValidDate(2001, 0, 1) is false
PASS testDateTime.isValidDate(2001, 1, 0) is false
PASS testDateTime.isValidDateTime(2000, 2, 29, 0, 0, 0) is true
PASS testDateTime.isValidDateTime(2000, 2, 29, 1, 1, 1) is true
PASS testDateTime.isValidDateTime(2000, 2, 29, 23, 1, 1) is true
PASS testDateTime.isValidDateTime(2000, 2, 29, 24, 1, 1) is false
PASS testDateTime.isValidDateTime(2000, 2, 29, 1, 59, 1) is true
PASS testDateTime.isValidDateTime(2000, 2, 29, 1, 60, 1) is false
PASS testDateTime.isValidDateTime(2000, 2, 29, 1, 1, 59) is true
PASS testDateTime.isValidDateTime(2000, 2, 29, 1, 1, 60) is false
---------- Test _isLeapYear ----------
PASS 2000 is a leap year
PASS 2100 is a not leap year
PASS 2104 is a leap year
---------- Test isWeekDay ----------
PASS 2018,5,24,1,2,3 is a week day
PASS 2018,5,25,1,2,3 is a week day
PASS 2018,5,26,1,2,3 is a not week day
---------- Test isWeekEnd ----------
PASS 2018,5,24,1,2,3 is a not a week end
PASS 2018,5,25,1,2,3 is a not a week end
PASS 2018,5,26,1,2,3 is a week end
PASS 2018,5,27,1,2,3 is a week end
---------- Test getDaysInMonth ----------
PASS 2000,1,24,1,2,3 has 31 days
PASS 2000,2,24,1,2,3 has 29 days
PASS 2001,2,24,1,2,3 has 28 days
PASS 2000,3,24,1,2,3 has 31 days
PASS 2000,4,24,1,2,3 has 30 days
PASS 2000,5,24,1,2,3 has 31 days
PASS 2000,6,24,1,2,3 has 30 days
PASS 2000,7,24,1,2,3 has 31 days
PASS 2000,8,24,1,2,3 has 31 days
PASS 2000,9,24,1,2,3 has 30 days
PASS 2000,10,24,1,2,3 has 31 days
PASS 2000,11,24,1,2,3 has 30 days
PASS 2000,12,24,1,2,3 has 31 days
---------- Test _getDaysInMonth ----------
PASS 2000/01 has 31 days
PASS 2000/02 has 29 days
PASS 2001/02 has 28 days
PASS 2000/03 has 31 days
PASS 2000/04 has 30 days
PASS 2000/05 has 31 days
PASS 2000/06 has 30 days
PASS 2000/07 has 31 days
PASS 2000/08 has 31 days
PASS 2000/09 has 30 days
PASS 2000/10 has 31 days
PASS 2000/11 has 30 days
PASS 2000/12 has 31 days
---------- Test getDayOfWeek ----------
PASS 2018,5,21,1,2,3 is 1 Monday
PASS 2018,5,24,1,2,3 is 4 Thursday
PASS 2018,5,26,1,2,3 is 6 Saturday
PASS 2018,5,27,1,2,3 is 7 Sunday
---------- Test get* ----------
PASS 2018,5,21,1,2,3 year is 2018
PASS 2018,5,21,1,2,3 month is 5 May
PASS 2018,5,21,1,2,3 day is 21
PASS 2018,5,21,1,2,3 hour is 1
PASS 2018,5,21,1,2,3 minute is 2
PASS 2018,5,21,1,2,3 second is 3
---------- Test add{Years|Months|Days|Hours|Minutes|Seconds} ----------
PASS 2000,2,29,1,2,3 + 3 years is 2003/02/28 01:02:03
PASS 2018,12,31,2,3,4 + 30 years is 2048/12/31 02:03:04
PASS 2000,1,31,1,2,3 + 37 months is 2003/02/28 01:02:03
PASS 2018,12,1,2,3,4 + 362 months is 2049/02/01 02:03:04
PASS 2017,1,31,1,2,3 + 37,532 days is 2119/11/05 01:02:03
PASS 2017,1,31,1,2,3 + 900,768 hours is 2119/11/05 01:02:03
PASS 2017,1,31,1,2,3 + 781,920 minutes is 2018/07/28 01:02:03
PASS 2017,1,31,1,2,3 + 461,548,800 seconds is 2031/09/17 01:02:03
---------- Test sub{Years|Months|Days|Hours|Minutes|Seconds} ----------
PASS 2000,2,29,1,2,3 - 3 years is 1997/02/28 01:02:03
PASS 2000,2,29,1,2,3 - 37 months is 1997/01/29 01:02:03
PASS 2013,1,1,1,2,3 - 3,756 days is 2002/09/20 01:02:03
PASS 2013,1,1,1,2,3 - 3,756 * 24 hours is 2002/09/20 01:02:03
PASS 2015,7,15,1,2,3 - 223,776 hours is 1990/01/03 01:02:03
PASS 2018,3,1,2,3,4 - 21,600,000 minutes is 1977/02/04 02:03:04
PASS 2020,3,19,3,4,5 - 788,227,200 seconds is 1995/03/28 03:04:05
---------- Test diff{Years|Months|Days|Hours|Minutes|Seconds} ----------
fromTimestamp=1508547723 2017,10,21,1,2,3
toTimestamp=1563422706 2019,7,18,4,5,6
PASS 2017,10,21,1,2,3 to 2019,7,18,4,5,6 has 2 years diff
PASS 2017,10,21,1,2,3 to 2019,7,18,4,5,6 has 21 months diff
PASS 2017,10,21,1,2,3 to 2019,7,18,4,5,6 has 635 days diff
PASS 2017,10,21,1,2,3 to 2019,7,18,4,5,6 has 15,243 hours diff
PASS 2017,10,21,1,2,3 to 2019,7,18,4,5,6 has 914,583 minutes diff
PASS 2017,10,21,1,2,3 to 2019,7,18,4,5,6 has 54,874,983 seconds diff
---------- Test timestampToDateTime(...) and timestampFromDateTime(...) against JavaScript Date ----------
timestampToDateTime(48611)=["1970","1","1","13","30","11"]
timestampFromDateTime(["1970","1","1","13","30","11"])=48611
jsDate(48611)=1970/1/1 13:30:11
PASS jsDate matches
PASS timestampToDateTime(48611) => timestampFromDateTime(...) matches
timestampToDateTime(32096934)=["1971","1","7","11","48","54"]
timestampFromDateTime(["1971","1","7","11","48","54"])=32096934
jsDate(32096934)=1971/1/7 11:48:54
PASS jsDate matches
PASS timestampToDateTime(32096934) => timestampFromDateTime(...) matches
timestampToDateTime(64145254)=["1972","1","13","10","7","34"]
timestampFromDateTime(["1972","1","13","10","7","34"])=64145254
jsDate(64145254)=1972/1/13 10:7:34
PASS jsDate matches
PASS timestampToDateTime(64145254) => timestampFromDateTime(...) matches
timestampToDateTime(95729869)=["1973","1","12","23","37","49"]
timestampFromDateTime(["1973","1","12","23","37","49"])=95729869
jsDate(95729869)=1973/1/12 23:37:49
PASS jsDate matches
PASS timestampToDateTime(95729869) => timestampFromDateTime(...) matches
timestampToDateTime(127778192)=["1974","1","18","21","56","32"]
timestampFromDateTime(["1974","1","18","21","56","32"])=127778192
jsDate(127778192)=1974/1/18 21:56:32
PASS jsDate matches
PASS timestampToDateTime(127778192) => timestampFromDateTime(...) matches
timestampToDateTime(159826516)=["1975","1","24","20","15","16"]
timestampFromDateTime(["1975","1","24","20","15","16"])=159826516
jsDate(159826516)=1975/1/24 20:15:16
PASS jsDate matches
PASS timestampToDateTime(159826516) => timestampFromDateTime(...) matches
timestampToDateTime(191411131)=["1976","1","25","9","45","31"]
timestampFromDateTime(["1976","1","25","9","45","31"])=191411131
jsDate(191411131)=1976/1/25 9:45:31
PASS jsDate matches
PASS timestampToDateTime(191411131) => timestampFromDateTime(...) matches
timestampToDateTime(223459454)=["1977","1","30","8","4","14"]
timestampFromDateTime(["1977","1","30","8","4","14"])=223459454
jsDate(223459454)=1977/1/30 8:4:14
PASS jsDate matches
PASS timestampToDateTime(223459454) => timestampFromDateTime(...) matches
timestampToDateTime(255507778)=["1978","2","5","6","22","58"]
timestampFromDateTime(["1978","2","5","6","22","58"])=255507778
jsDate(255507778)=1978/2/5 6:22:58
PASS jsDate matches
PASS timestampToDateTime(255507778) => timestampFromDateTime(...) matches
timestampToDateTime(287092393)=["1979","2","5","19","53","13"]
timestampFromDateTime(["1979","2","5","19","53","13"])=287092393
jsDate(287092393)=1979/2/5 19:53:13
PASS jsDate matches
PASS timestampToDateTime(287092393) => timestampFromDateTime(...) matches
timestampToDateTime(319140716)=["1980","2","11","18","11","56"]
timestampFromDateTime(["1980","2","11","18","11","56"])=319140716
jsDate(319140716)=1980/2/11 18:11:56
PASS jsDate matches
PASS timestampToDateTime(319140716) => timestampFromDateTime(...) matches
timestampToDateTime(351189040)=["1981","2","16","16","30","40"]
timestampFromDateTime(["1981","2","16","16","30","40"])=351189040
jsDate(351189040)=1981/2/16 16:30:40
PASS jsDate matches
PASS timestampToDateTime(351189040) => timestampFromDateTime(...) matches
timestampToDateTime(382773655)=["1982","2","17","6","0","55"]
timestampFromDateTime(["1982","2","17","6","0","55"])=382773655
jsDate(382773655)=1982/2/17 6:0:55
PASS jsDate matches
PASS timestampToDateTime(382773655) => timestampFromDateTime(...) matches
timestampToDateTime(414821978)=["1983","2","23","4","19","38"]
timestampFromDateTime(["1983","2","23","4","19","38"])=414821978
jsDate(414821978)=1983/2/23 4:19:38
PASS jsDate matches
PASS timestampToDateTime(414821978) => timestampFromDateTime(...) matches
timestampToDateTime(446870302)=["1984","2","29","2","38","22"]
timestampFromDateTime(["1984","2","29","2","38","22"])=446870302
jsDate(446870302)=1984/2/29 2:38:22
PASS jsDate matches
PASS timestampToDateTime(446870302) => timestampFromDateTime(...) matches
timestampToDateTime(478454917)=["1985","2","28","16","8","37"]
timestampFromDateTime(["1985","2","28","16","8","37"])=478454917
jsDate(478454917)=1985/2/28 16:8:37
PASS jsDate matches
PASS timestampToDateTime(478454917) => timestampFromDateTime(...) matches
timestampToDateTime(510503240)=["1986","3","6","14","27","20"]
timestampFromDateTime(["1986","3","6","14","27","20"])=510503240
jsDate(510503240)=1986/3/6 14:27:20
PASS jsDate matches
PASS timestampToDateTime(510503240) => timestampFromDateTime(...) matches
timestampToDateTime(542551564)=["1987","3","12","12","46","4"]
timestampFromDateTime(["1987","3","12","12","46","4"])=542551564
jsDate(542551564)=1987/3/12 12:46:4
PASS jsDate matches
PASS timestampToDateTime(542551564) => timestampFromDateTime(...) matches
timestampToDateTime(574136179)=["1988","3","12","2","16","19"]
timestampFromDateTime(["1988","3","12","2","16","19"])=574136179
jsDate(574136179)=1988/3/12 2:16:19
PASS jsDate matches
PASS timestampToDateTime(574136179) => timestampFromDateTime(...) matches
timestampToDateTime(606184502)=["1989","3","18","0","35","2"]
timestampFromDateTime(["1989","3","18","0","35","2"])=606184502
jsDate(606184502)=1989/3/18 0:35:2
PASS jsDate matches
PASS timestampToDateTime(606184502) => timestampFromDateTime(...) matches
timestampToDateTime(638232826)=["1990","3","23","22","53","46"]
timestampFromDateTime(["1990","3","23","22","53","46"])=638232826
jsDate(638232826)=1990/3/23 22:53:46
PASS jsDate matches
PASS timestampToDateTime(638232826) => timestampFromDateTime(...) matches
timestampToDateTime(669817441)=["1991","3","24","12","24","1"]
timestampFromDateTime(["1991","3","24","12","24","1"])=669817441
jsDate(669817441)=1991/3/24 12:24:1
PASS jsDate matches
PASS timestampToDateTime(669817441) => timestampFromDateTime(...) matches
timestampToDateTime(701865764)=["1992","3","29","10","42","44"]
timestampFromDateTime(["1992","3","29","10","42","44"])=701865764
jsDate(701865764)=1992/3/29 10:42:44
PASS jsDate matches
PASS timestampToDateTime(701865764) => timestampFromDateTime(...) matches
timestampToDateTime(733914088)=["1993","4","4","9","1","28"]
timestampFromDateTime(["1993","4","4","9","1","28"])=733914088
jsDate(733914088)=1993/4/4 9:1:28
PASS jsDate matches
PASS timestampToDateTime(733914088) => timestampFromDateTime(...) matches
timestampToDateTime(765498703)=["1994","4","4","22","31","43"]
timestampFromDateTime(["1994","4","4","22","31","43"])=765498703
jsDate(765498703)=1994/4/4 22:31:43
PASS jsDate matches
PASS timestampToDateTime(765498703) => timestampFromDateTime(...) matches
timestampToDateTime(797547026)=["1995","4","10","20","50","26"]
timestampFromDateTime(["1995","4","10","20","50","26"])=797547026
jsDate(797547026)=1995/4/10 20:50:26
PASS jsDate matches
PASS timestampToDateTime(797547026) => timestampFromDateTime(...) matches
timestampToDateTime(829595350)=["1996","4","15","19","9","10"]
timestampFromDateTime(["1996","4","15","19","9","10"])=829595350
jsDate(829595350)=1996/4/15 19:9:10
PASS jsDate matches
PASS timestampToDateTime(829595350) => timestampFromDateTime(...) matches
timestampToDateTime(861179965)=["1997","4","16","8","39","25"]
timestampFromDateTime(["1997","4","16","8","39","25"])=861179965
jsDate(861179965)=1997/4/16 8:39:25
PASS jsDate matches
PASS timestampToDateTime(861179965) => timestampFromDateTime(...) matches
timestampToDateTime(893228288)=["1998","4","22","6","58","8"]
timestampFromDateTime(["1998","4","22","6","58","8"])=893228288
jsDate(893228288)=1998/4/22 6:58:8
PASS jsDate matches
PASS timestampToDateTime(893228288) => timestampFromDateTime(...) matches
timestampToDateTime(925276612)=["1999","4","28","5","16","52"]
timestampFromDateTime(["1999","4","28","5","16","52"])=925276612
jsDate(925276612)=1999/4/28 5:16:52
PASS jsDate matches
PASS timestampToDateTime(925276612) => timestampFromDateTime(...) matches
timestampToDateTime(956861227)=["2000","4","27","18","47","7"]
timestampFromDateTime(["2000","4","27","18","47","7"])=956861227
jsDate(956861227)=2000/4/27 18:47:7
PASS jsDate matches
PASS timestampToDateTime(956861227) => timestampFromDateTime(...) matches
timestampToDateTime(988909550)=["2001","5","3","17","5","50"]
timestampFromDateTime(["2001","5","3","17","5","50"])=988909550
jsDate(988909550)=2001/5/3 17:5:50
PASS jsDate matches
PASS timestampToDateTime(988909550) => timestampFromDateTime(...) matches
timestampToDateTime(1020957874)=["2002","5","9","15","24","34"]
timestampFromDateTime(["2002","5","9","15","24","34"])=1020957874
jsDate(1020957874)=2002/5/9 15:24:34
PASS jsDate matches
PASS timestampToDateTime(1020957874) => timestampFromDateTime(...) matches
timestampToDateTime(1052542489)=["2003","5","10","4","54","49"]
timestampFromDateTime(["2003","5","10","4","54","49"])=1052542489
jsDate(1052542489)=2003/5/10 4:54:49
PASS jsDate matches
PASS timestampToDateTime(1052542489) => timestampFromDateTime(...) matches
timestampToDateTime(1084590812)=["2004","5","15","3","13","32"]
timestampFromDateTime(["2004","5","15","3","13","32"])=1084590812
jsDate(1084590812)=2004/5/15 3:13:32
PASS jsDate matches
PASS timestampToDateTime(1084590812) => timestampFromDateTime(...) matches
timestampToDateTime(1116639136)=["2005","5","21","1","32","16"]
timestampFromDateTime(["2005","5","21","1","32","16"])=1116639136
jsDate(1116639136)=2005/5/21 1:32:16
PASS jsDate matches
PASS timestampToDateTime(1116639136) => timestampFromDateTime(...) matches
timestampToDateTime(1148223751)=["2006","5","21","15","2","31"]
timestampFromDateTime(["2006","5","21","15","2","31"])=1148223751
jsDate(1148223751)=2006/5/21 15:2:31
PASS jsDate matches
PASS timestampToDateTime(1148223751) => timestampFromDateTime(...) matches
timestampToDateTime(1180272074)=["2007","5","27","13","21","14"]
timestampFromDateTime(["2007","5","27","13","21","14"])=1180272074
jsDate(1180272074)=2007/5/27 13:21:14
PASS jsDate matches
PASS timestampToDateTime(1180272074) => timestampFromDateTime(...) matches
timestampToDateTime(1212320398)=["2008","6","1","11","39","58"]
timestampFromDateTime(["2008","6","1","11","39","58"])=1212320398
jsDate(1212320398)=2008/6/1 11:39:58
PASS jsDate matches
PASS timestampToDateTime(1212320398) => timestampFromDateTime(...) matches
timestampToDateTime(1243905013)=["2009","6","2","1","10","13"]
timestampFromDateTime(["2009","6","2","1","10","13"])=1243905013
jsDate(1243905013)=2009/6/2 1:10:13
PASS jsDate matches
PASS timestampToDateTime(1243905013) => timestampFromDateTime(...) matches
timestampToDateTime(1275953336)=["2010","6","7","23","28","56"]
timestampFromDateTime(["2010","6","7","23","28","56"])=1275953336
jsDate(1275953336)=2010/6/7 23:28:56
PASS jsDate matches
PASS timestampToDateTime(1275953336) => timestampFromDateTime(...) matches
timestampToDateTime(1308001660)=["2011","6","13","21","47","40"]
timestampFromDateTime(["2011","6","13","21","47","40"])=1308001660
jsDate(1308001660)=2011/6/13 21:47:40
PASS jsDate matches
PASS timestampToDateTime(1308001660) => timestampFromDateTime(...) matches
timestampToDateTime(1339586275)=["2012","6","13","11","17","55"]
timestampFromDateTime(["2012","6","13","11","17","55"])=1339586275
jsDate(1339586275)=2012/6/13 11:17:55
PASS jsDate matches
PASS timestampToDateTime(1339586275) => timestampFromDateTime(...) matches
timestampToDateTime(1371634598)=["2013","6","19","9","36","38"]
timestampFromDateTime(["2013","6","19","9","36","38"])=1371634598
jsDate(1371634598)=2013/6/19 9:36:38
PASS jsDate matches
PASS timestampToDateTime(1371634598) => timestampFromDateTime(...) matches
timestampToDateTime(1403682922)=["2014","6","25","7","55","22"]
timestampFromDateTime(["2014","6","25","7","55","22"])=1403682922
jsDate(1403682922)=2014/6/25 7:55:22
PASS jsDate matches
PASS timestampToDateTime(1403682922) => timestampFromDateTime(...) matches
timestampToDateTime(1435267537)=["2015","6","25","21","25","37"]
timestampFromDateTime(["2015","6","25","21","25","37"])=1435267537
jsDate(1435267537)=2015/6/25 21:25:37
PASS jsDate matches
PASS timestampToDateTime(1435267537) => timestampFromDateTime(...) matches
timestampToDateTime(1467315860)=["2016","6","30","19","44","20"]
timestampFromDateTime(["2016","6","30","19","44","20"])=1467315860
jsDate(1467315860)=2016/6/30 19:44:20
PASS jsDate matches
PASS timestampToDateTime(1467315860) => timestampFromDateTime(...) matches
timestampToDateTime(1499364184)=["2017","7","6","18","3","4"]
timestampFromDateTime(["2017","7","6","18","3","4"])=1499364184
jsDate(1499364184)=2017/7/6 18:3:4
PASS jsDate matches
PASS timestampToDateTime(1499364184) => timestampFromDateTime(...) matches
timestampToDateTime(1530948799)=["2018","7","7","7","33","19"]
timestampFromDateTime(["2018","7","7","7","33","19"])=1530948799
jsDate(1530948799)=2018/7/7 7:33:19
PASS jsDate matches
PASS timestampToDateTime(1530948799) => timestampFromDateTime(...) matches
timestampToDateTime(1562997122)=["2019","7","13","5","52","2"]
timestampFromDateTime(["2019","7","13","5","52","2"])=1562997122
jsDate(1562997122)=2019/7/13 5:52:2
PASS jsDate matches
PASS timestampToDateTime(1562997122) => timestampFromDateTime(...) matches
timestampToDateTime(1595045446)=["2020","7","18","4","10","46"]
timestampFromDateTime(["2020","7","18","4","10","46"])=1595045446
jsDate(1595045446)=2020/7/18 4:10:46
PASS jsDate matches
PASS timestampToDateTime(1595045446) => timestampFromDateTime(...) matches
timestampToDateTime(1626630061)=["2021","7","18","17","41","1"]
timestampFromDateTime(["2021","7","18","17","41","1"])=1626630061
jsDate(1626630061)=2021/7/18 17:41:1
PASS jsDate matches
PASS timestampToDateTime(1626630061) => timestampFromDateTime(...) matches
timestampToDateTime(1658678384)=["2022","7","24","15","59","44"]
timestampFromDateTime(["2022","7","24","15","59","44"])=1658678384
jsDate(1658678384)=2022/7/24 15:59:44
PASS jsDate matches
PASS timestampToDateTime(1658678384) => timestampFromDateTime(...) matches
timestampToDateTime(1690726708)=["2023","7","30","14","18","28"]
timestampFromDateTime(["2023","7","30","14","18","28"])=1690726708
jsDate(1690726708)=2023/7/30 14:18:28
PASS jsDate matches
PASS timestampToDateTime(1690726708) => timestampFromDateTime(...) matches
timestampToDateTime(1722311323)=["2024","7","30","3","48","43"]
timestampFromDateTime(["2024","7","30","3","48","43"])=1722311323
jsDate(1722311323)=2024/7/30 3:48:43
PASS jsDate matches
PASS timestampToDateTime(1722311323) => timestampFromDateTime(...) matches
timestampToDateTime(1754359646)=["2025","8","5","2","7","26"]
timestampFromDateTime(["2025","8","5","2","7","26"])=1754359646
jsDate(1754359646)=2025/8/5 2:7:26
PASS jsDate matches
PASS timestampToDateTime(1754359646) => timestampFromDateTime(...) matches
timestampToDateTime(1786407970)=["2026","8","11","0","26","10"]
timestampFromDateTime(["2026","8","11","0","26","10"])=1786407970
jsDate(1786407970)=2026/8/11 0:26:10
PASS jsDate matches
PASS timestampToDateTime(1786407970) => timestampFromDateTime(...) matches
timestampToDateTime(1817992585)=["2027","8","11","13","56","25"]
timestampFromDateTime(["2027","8","11","13","56","25"])=1817992585
jsDate(1817992585)=2027/8/11 13:56:25
PASS jsDate matches
PASS timestampToDateTime(1817992585) => timestampFromDateTime(...) matches
timestampToDateTime(1850040908)=["2028","8","16","12","15","8"]
timestampFromDateTime(["2028","8","16","12","15","8"])=1850040908
jsDate(1850040908)=2028/8/16 12:15:8
PASS jsDate matches
PASS timestampToDateTime(1850040908) => timestampFromDateTime(...) matches
timestampToDateTime(1882089232)=["2029","8","22","10","33","52"]
timestampFromDateTime(["2029","8","22","10","33","52"])=1882089232
jsDate(1882089232)=2029/8/22 10:33:52
PASS jsDate matches
PASS timestampToDateTime(1882089232) => timestampFromDateTime(...) matches
timestampToDateTime(1913673847)=["2030","8","23","0","4","7"]
timestampFromDateTime(["2030","8","23","0","4","7"])=1913673847
jsDate(1913673847)=2030/8/23 0:4:7
PASS jsDate matches
PASS timestampToDateTime(1913673847) => timestampFromDateTime(...) matches
timestampToDateTime(1945722170)=["2031","8","28","22","22","50"]
timestampFromDateTime(["2031","8","28","22","22","50"])=1945722170
jsDate(1945722170)=2031/8/28 22:22:50
PASS jsDate matches
PASS timestampToDateTime(1945722170) => timestampFromDateTime(...) matches
timestampToDateTime(1977770494)=["2032","9","2","20","41","34"]
timestampFromDateTime(["2032","9","2","20","41","34"])=1977770494
jsDate(1977770494)=2032/9/2 20:41:34
PASS jsDate matches
PASS timestampToDateTime(1977770494) => timestampFromDateTime(...) matches
timestampToDateTime(2009355109)=["2033","9","3","10","11","49"]
timestampFromDateTime(["2033","9","3","10","11","49"])=2009355109
jsDate(2009355109)=2033/9/3 10:11:49
PASS jsDate matches
PASS timestampToDateTime(2009355109) => timestampFromDateTime(...) matches
timestampToDateTime(2041403432)=["2034","9","9","8","30","32"]
timestampFromDateTime(["2034","9","9","8","30","32"])=2041403432
jsDate(2041403432)=2034/9/9 8:30:32
PASS jsDate matches
PASS timestampToDateTime(2041403432) => timestampFromDateTime(...) matches
timestampToDateTime(2073451756)=["2035","9","15","6","49","16"]
timestampFromDateTime(["2035","9","15","6","49","16"])=2073451756
jsDate(2073451756)=2035/9/15 6:49:16
PASS jsDate matches
PASS timestampToDateTime(2073451756) => timestampFromDateTime(...) matches
timestampToDateTime(2105036371)=["2036","9","14","20","19","31"]
timestampFromDateTime(["2036","9","14","20","19","31"])=2105036371
jsDate(2105036371)=2036/9/14 20:19:31
PASS jsDate matches
PASS timestampToDateTime(2105036371) => timestampFromDateTime(...) matches
timestampToDateTime(2137084694)=["2037","9","20","18","38","14"]
timestampFromDateTime(["2037","9","20","18","38","14"])=2137084694
jsDate(2137084694)=2037/9/20 18:38:14
PASS jsDate matches
PASS timestampToDateTime(2137084694) => timestampFromDateTime(...) matches
timestampToDateTime(2169133018)=["2038","9","26","16","56","58"]
timestampFromDateTime(["2038","9","26","16","56","58"])=2169133018
jsDate(2169133018)=2038/9/26 16:56:58
PASS jsDate matches
PASS timestampToDateTime(2169133018) => timestampFromDateTime(...) matches
timestampToDateTime(2200717633)=["2039","9","27","6","27","13"]
timestampFromDateTime(["2039","9","27","6","27","13"])=2200717633
jsDate(2200717633)=2039/9/27 6:27:13
PASS jsDate matches
PASS timestampToDateTime(2200717633) => timestampFromDateTime(...) matches
timestampToDateTime(2232765956)=["2040","10","2","4","45","56"]
timestampFromDateTime(["2040","10","2","4","45","56"])=2232765956
jsDate(2232765956)=2040/10/2 4:45:56
PASS jsDate matches
PASS timestampToDateTime(2232765956) => timestampFromDateTime(...) matches
timestampToDateTime(2264814280)=["2041","10","8","3","4","40"]
timestampFromDateTime(["2041","10","8","3","4","40"])=2264814280
jsDate(2264814280)=2041/10/8 3:4:40
PASS jsDate matches
PASS timestampToDateTime(2264814280) => timestampFromDateTime(...) matches
timestampToDateTime(2296398895)=["2042","10","8","16","34","55"]
timestampFromDateTime(["2042","10","8","16","34","55"])=2296398895
jsDate(2296398895)=2042/10/8 16:34:55
PASS jsDate matches
PASS timestampToDateTime(2296398895) => timestampFromDateTime(...) matches
timestampToDateTime(2328447218)=["2043","10","14","14","53","38"]
timestampFromDateTime(["2043","10","14","14","53","38"])=2328447218
jsDate(2328447218)=2043/10/14 14:53:38
PASS jsDate matches
PASS timestampToDateTime(2328447218) => timestampFromDateTime(...) matches
timestampToDateTime(2360495542)=["2044","10","19","13","12","22"]
timestampFromDateTime(["2044","10","19","13","12","22"])=2360495542
jsDate(2360495542)=2044/10/19 13:12:22
PASS jsDate matches
PASS timestampToDateTime(2360495542) => timestampFromDateTime(...) matches
timestampToDateTime(2392080157)=["2045","10","20","2","42","37"]
timestampFromDateTime(["2045","10","20","2","42","37"])=2392080157
jsDate(2392080157)=2045/10/20 2:42:37
PASS jsDate matches
PASS timestampToDateTime(2392080157) => timestampFromDateTime(...) matches
timestampToDateTime(2424128480)=["2046","10","26","1","1","20"]
timestampFromDateTime(["2046","10","26","1","1","20"])=2424128480
jsDate(2424128480)=2046/10/26 1:1:20
PASS jsDate matches
PASS timestampToDateTime(2424128480) => timestampFromDateTime(...) matches
timestampToDateTime(2456176804)=["2047","10","31","23","20","4"]
timestampFromDateTime(["2047","10","31","23","20","4"])=2456176804
jsDate(2456176804)=2047/10/31 23:20:4
PASS jsDate matches
PASS timestampToDateTime(2456176804) => timestampFromDateTime(...) matches
timestampToDateTime(2487761419)=["2048","10","31","12","50","19"]
timestampFromDateTime(["2048","10","31","12","50","19"])=2487761419
jsDate(2487761419)=2048/10/31 12:50:19
PASS jsDate matches
PASS timestampToDateTime(2487761419) => timestampFromDateTime(...) matches
timestampToDateTime(2519809742)=["2049","11","6","11","9","2"]
timestampFromDateTime(["2049","11","6","11","9","2"])=2519809742
jsDate(2519809742)=2049/11/6 11:9:2
PASS jsDate matches
PASS timestampToDateTime(2519809742) => timestampFromDateTime(...) matches
timestampToDateTime(2551858066)=["2050","11","12","9","27","46"]
timestampFromDateTime(["2050","11","12","9","27","46"])=2551858066
jsDate(2551858066)=2050/11/12 9:27:46
PASS jsDate matches
PASS timestampToDateTime(2551858066) => timestampFromDateTime(...) matches
timestampToDateTime(2583442681)=["2051","11","12","22","58","1"]
timestampFromDateTime(["2051","11","12","22","58","1"])=2583442681
jsDate(2583442681)=2051/11/12 22:58:1
PASS jsDate matches
PASS timestampToDateTime(2583442681) => timestampFromDateTime(...) matches
timestampToDateTime(2615491004)=["2052","11","17","21","16","44"]
timestampFromDateTime(["2052","11","17","21","16","44"])=2615491004
jsDate(2615491004)=2052/11/17 21:16:44
PASS jsDate matches
PASS timestampToDateTime(2615491004) => timestampFromDateTime(...) matches
timestampToDateTime(2647539328)=["2053","11","23","19","35","28"]
timestampFromDateTime(["2053","11","23","19","35","28"])=2647539328
jsDate(2647539328)=2053/11/23 19:35:28
PASS jsDate matches
PASS timestampToDateTime(2647539328) => timestampFromDateTime(...) matches
timestampToDateTime(2679123943)=["2054","11","24","9","5","43"]
timestampFromDateTime(["2054","11","24","9","5","43"])=2679123943
jsDate(2679123943)=2054/11/24 9:5:43
PASS jsDate matches
PASS timestampToDateTime(2679123943) => timestampFromDateTime(...) matches
timestampToDateTime(2711172266)=["2055","11","30","7","24","26"]
timestampFromDateTime(["2055","11","30","7","24","26"])=2711172266
jsDate(2711172266)=2055/11/30 7:24:26
PASS jsDate matches
PASS timestampToDateTime(2711172266) => timestampFromDateTime(...) matches
timestampToDateTime(2743220590)=["2056","12","5","5","43","10"]
timestampFromDateTime(["2056","12","5","5","43","10"])=2743220590
jsDate(2743220590)=2056/12/5 5:43:10
PASS jsDate matches
PASS timestampToDateTime(2743220590) => timestampFromDateTime(...) matches
timestampToDateTime(2774805205)=["2057","12","5","19","13","25"]
timestampFromDateTime(["2057","12","5","19","13","25"])=2774805205
jsDate(2774805205)=2057/12/5 19:13:25
PASS jsDate matches
PASS timestampToDateTime(2774805205) => timestampFromDateTime(...) matches
timestampToDateTime(2806853528)=["2058","12","11","17","32","8"]
timestampFromDateTime(["2058","12","11","17","32","8"])=2806853528
jsDate(2806853528)=2058/12/11 17:32:8
PASS jsDate matches
PASS timestampToDateTime(2806853528) => timestampFromDateTime(...) matches
timestampToDateTime(2838901852)=["2059","12","17","15","50","52"]
timestampFromDateTime(["2059","12","17","15","50","52"])=2838901852
jsDate(2838901852)=2059/12/17 15:50:52
PASS jsDate matches
PASS timestampToDateTime(2838901852) => timestampFromDateTime(...) matches
timestampToDateTime(2870486467)=["2060","12","17","5","21","7"]
timestampFromDateTime(["2060","12","17","5","21","7"])=2870486467
jsDate(2870486467)=2060/12/17 5:21:7
PASS jsDate matches
PASS timestampToDateTime(2870486467) => timestampFromDateTime(...) matches
timestampToDateTime(2902534790)=["2061","12","23","3","39","50"]
timestampFromDateTime(["2061","12","23","3","39","50"])=2902534790
jsDate(2902534790)=2061/12/23 3:39:50
PASS jsDate matches
PASS timestampToDateTime(2902534790) => timestampFromDateTime(...) matches
timestampToDateTime(2934583114)=["2062","12","29","1","58","34"]
timestampFromDateTime(["2062","12","29","1","58","34"])=2934583114
jsDate(2934583114)=2062/12/29 1:58:34
PASS jsDate matches
PASS timestampToDateTime(2934583114) => timestampFromDateTime(...) matches
timestampToDateTime(2966167729)=["2063","12","29","15","28","49"]
timestampFromDateTime(["2063","12","29","15","28","49"])=2966167729
jsDate(2966167729)=2063/12/29 15:28:49
PASS jsDate matches
PASS timestampToDateTime(2966167729) => timestampFromDateTime(...) matches
timestampToDateTime(2998216052)=["2065","1","3","13","47","32"]
timestampFromDateTime(["2065","1","3","13","47","32"])=2998216052
jsDate(2998216052)=2065/1/3 13:47:32
PASS jsDate matches
PASS timestampToDateTime(2998216052) => timestampFromDateTime(...) matches
timestampToDateTime(3030264376)=["2066","1","9","12","6","16"]
timestampFromDateTime(["2066","1","9","12","6","16"])=3030264376
jsDate(3030264376)=2066/1/9 12:6:16
PASS jsDate matches
PASS timestampToDateTime(3030264376) => timestampFromDateTime(...) matches
timestampToDateTime(3061848991)=["2067","1","10","1","36","31"]
timestampFromDateTime(["2067","1","10","1","36","31"])=3061848991
jsDate(3061848991)=2067/1/10 1:36:31
PASS jsDate matches
PASS timestampToDateTime(3061848991) => timestampFromDateTime(...) matches
timestampToDateTime(3093897314)=["2068","1","15","23","55","14"]
timestampFromDateTime(["2068","1","15","23","55","14"])=3093897314
jsDate(3093897314)=2068/1/15 23:55:14
PASS jsDate matches
PASS timestampToDateTime(3093897314) => timestampFromDateTime(...) matches
timestampToDateTime(3125945638)=["2069","1","20","22","13","58"]
timestampFromDateTime(["2069","1","20","22","13","58"])=3125945638
jsDate(3125945638)=2069/1/20 22:13:58
PASS jsDate matches
PASS timestampToDateTime(3125945638) => timestampFromDateTime(...) matches
timestampToDateTime(3157530253)=["2070","1","21","11","44","13"]
timestampFromDateTime(["2070","1","21","11","44","13"])=3157530253
jsDate(3157530253)=2070/1/21 11:44:13
PASS jsDate matches
PASS timestampToDateTime(3157530253) => timestampFromDateTime(...) matches
timestampToDateTime(3189578576)=["2071","1","27","10","2","56"]
timestampFromDateTime(["2071","1","27","10","2","56"])=3189578576
jsDate(3189578576)=2071/1/27 10:2:56
PASS jsDate matches
PASS timestampToDateTime(3189578576) => timestampFromDateTime(...) matches
timestampToDateTime(3221626900)=["2072","2","2","8","21","40"]
timestampFromDateTime(["2072","2","2","8","21","40"])=3221626900
jsDate(3221626900)=2072/2/2 8:21:40
PASS jsDate matches
PASS timestampToDateTime(3221626900) => timestampFromDateTime(...) matches
timestampToDateTime(3253211515)=["2073","2","1","21","51","55"]
timestampFromDateTime(["2073","2","1","21","51","55"])=3253211515
jsDate(3253211515)=2073/2/1 21:51:55
PASS jsDate matches
PASS timestampToDateTime(3253211515) => timestampFromDateTime(...) matches
timestampToDateTime(3285259838)=["2074","2","7","20","10","38"]
timestampFromDateTime(["2074","2","7","20","10","38"])=3285259838
jsDate(3285259838)=2074/2/7 20:10:38
PASS jsDate matches
PASS timestampToDateTime(3285259838) => timestampFromDateTime(...) matches
timestampToDateTime(3317308162)=["2075","2","13","18","29","22"]
timestampFromDateTime(["2075","2","13","18","29","22"])=3317308162
jsDate(3317308162)=2075/2/13 18:29:22
PASS jsDate matches
PASS timestampToDateTime(3317308162) => timestampFromDateTime(...) matches
timestampToDateTime(3348892777)=["2076","2","14","7","59","37"]
timestampFromDateTime(["2076","2","14","7","59","37"])=3348892777
jsDate(3348892777)=2076/2/14 7:59:37
PASS jsDate matches
PASS timestampToDateTime(3348892777) => timestampFromDateTime(...) matches
timestampToDateTime(3380941100)=["2077","2","19","6","18","20"]
timestampFromDateTime(["2077","2","19","6","18","20"])=3380941100
jsDate(3380941100)=2077/2/19 6:18:20
PASS jsDate matches
PASS timestampToDateTime(3380941100) => timestampFromDateTime(...) matches
timestampToDateTime(3412989424)=["2078","2","25","4","37","4"]
timestampFromDateTime(["2078","2","25","4","37","4"])=3412989424
jsDate(3412989424)=2078/2/25 4:37:4
PASS jsDate matches
PASS timestampToDateTime(3412989424) => timestampFromDateTime(...) matches
timestampToDateTime(3444574039)=["2079","2","25","18","7","19"]
timestampFromDateTime(["2079","2","25","18","7","19"])=3444574039
jsDate(3444574039)=2079/2/25 18:7:19
PASS jsDate matches
PASS timestampToDateTime(3444574039) => timestampFromDateTime(...) matches
timestampToDateTime(3476622362)=["2080","3","2","16","26","2"]
timestampFromDateTime(["2080","3","2","16","26","2"])=3476622362
jsDate(3476622362)=2080/3/2 16:26:2
PASS jsDate matches
PASS timestampToDateTime(3476622362) => timestampFromDateTime(...) matches
timestampToDateTime(3508670686)=["2081","3","8","14","44","46"]
timestampFromDateTime(["2081","3","8","14","44","46"])=3508670686
jsDate(3508670686)=2081/3/8 14:44:46
PASS jsDate matches
PASS timestampToDateTime(3508670686) => timestampFromDateTime(...) matches
timestampToDateTime(3540255301)=["2082","3","9","4","15","1"]
timestampFromDateTime(["2082","3","9","4","15","1"])=3540255301
jsDate(3540255301)=2082/3/9 4:15:1
PASS jsDate matches
PASS timestampToDateTime(3540255301) => timestampFromDateTime(...) matches
timestampToDateTime(3572303624)=["2083","3","15","2","33","44"]
timestampFromDateTime(["2083","3","15","2","33","44"])=3572303624
jsDate(3572303624)=2083/3/15 2:33:44
PASS jsDate matches
PASS timestampToDateTime(3572303624) => timestampFromDateTime(...) matches
timestampToDateTime(3604351948)=["2084","3","20","0","52","28"]
timestampFromDateTime(["2084","3","20","0","52","28"])=3604351948
jsDate(3604351948)=2084/3/20 0:52:28
PASS jsDate matches
PASS timestampToDateTime(3604351948) => timestampFromDateTime(...) matches
timestampToDateTime(3635936563)=["2085","3","20","14","22","43"]
timestampFromDateTime(["2085","3","20","14","22","43"])=3635936563
jsDate(3635936563)=2085/3/20 14:22:43
PASS jsDate matches
PASS timestampToDateTime(3635936563) => timestampFromDateTime(...) matches
timestampToDateTime(3667984886)=["2086","3","26","12","41","26"]
timestampFromDateTime(["2086","3","26","12","41","26"])=3667984886
jsDate(3667984886)=2086/3/26 12:41:26
PASS jsDate matches
PASS timestampToDateTime(3667984886) => timestampFromDateTime(...) matches
timestampToDateTime(3700033210)=["2087","4","1","11","0","10"]
timestampFromDateTime(["2087","4","1","11","0","10"])=3700033210
jsDate(3700033210)=2087/4/1 11:0:10
PASS jsDate matches
PASS timestampToDateTime(3700033210) => timestampFromDateTime(...) matches
timestampToDateTime(3731617825)=["2088","4","1","0","30","25"]
timestampFromDateTime(["2088","4","1","0","30","25"])=3731617825
jsDate(3731617825)=2088/4/1 0:30:25
PASS jsDate matches
PASS timestampToDateTime(3731617825) => timestampFromDateTime(...) matches
timestampToDateTime(3763666148)=["2089","4","6","22","49","8"]
timestampFromDateTime(["2089","4","6","22","49","8"])=3763666148
jsDate(3763666148)=2089/4/6 22:49:8
PASS jsDate matches
PASS timestampToDateTime(3763666148) => timestampFromDateTime(...) matches
timestampToDateTime(3795714472)=["2090","4","12","21","7","52"]
timestampFromDateTime(["2090","4","12","21","7","52"])=3795714472
jsDate(3795714472)=2090/4/12 21:7:52
PASS jsDate matches
PASS timestampToDateTime(3795714472) => timestampFromDateTime(...) matches
timestampToDateTime(3827299087)=["2091","4","13","10","38","7"]
timestampFromDateTime(["2091","4","13","10","38","7"])=3827299087
jsDate(3827299087)=2091/4/13 10:38:7
PASS jsDate matches
PASS timestampToDateTime(3827299087) => timestampFromDateTime(...) matches
timestampToDateTime(3859347410)=["2092","4","18","8","56","50"]
timestampFromDateTime(["2092","4","18","8","56","50"])=3859347410
jsDate(3859347410)=2092/4/18 8:56:50
PASS jsDate matches
PASS timestampToDateTime(3859347410) => timestampFromDateTime(...) matches
timestampToDateTime(3891395734)=["2093","4","24","7","15","34"]
timestampFromDateTime(["2093","4","24","7","15","34"])=3891395734
jsDate(3891395734)=2093/4/24 7:15:34
PASS jsDate matches
PASS timestampToDateTime(3891395734) => timestampFromDateTime(...) matches
timestampToDateTime(3922980349)=["2094","4","24","20","45","49"]
timestampFromDateTime(["2094","4","24","20","45","49"])=3922980349
jsDate(3922980349)=2094/4/24 20:45:49
PASS jsDate matches
PASS timestampToDateTime(3922980349) => timestampFromDateTime(...) matches
timestampToDateTime(3955028672)=["2095","4","30","19","4","32"]
timestampFromDateTime(["2095","4","30","19","4","32"])=3955028672
jsDate(3955028672)=2095/4/30 19:4:32
PASS jsDate matches
PASS timestampToDateTime(3955028672) => timestampFromDateTime(...) matches
timestampToDateTime(3987076996)=["2096","5","5","17","23","16"]
timestampFromDateTime(["2096","5","5","17","23","16"])=3987076996
jsDate(3987076996)=2096/5/5 17:23:16
PASS jsDate matches
PASS timestampToDateTime(3987076996) => timestampFromDateTime(...) matches
timestampToDateTime(4018661611)=["2097","5","6","6","53","31"]
timestampFromDateTime(["2097","5","6","6","53","31"])=4018661611
jsDate(4018661611)=2097/5/6 6:53:31
PASS jsDate matches
PASS timestampToDateTime(4018661611) => timestampFromDateTime(...) matches
timestampToDateTime(4050709934)=["2098","5","12","5","12","14"]
timestampFromDateTime(["2098","5","12","5","12","14"])=4050709934
jsDate(4050709934)=2098/5/12 5:12:14
PASS jsDate matches
PASS timestampToDateTime(4050709934) => timestampFromDateTime(...) matches
timestampToDateTime(4082758258)=["2099","5","18","3","30","58"]
timestampFromDateTime(["2099","5","18","3","30","58"])=4082758258
jsDate(4082758258)=2099/5/18 3:30:58
PASS jsDate matches
PASS timestampToDateTime(4082758258) => timestampFromDateTime(...) matches
timestampToDateTime(4114342873)=["2100","5","18","17","1","13"]
timestampFromDateTime(["2100","5","18","17","1","13"])=4114342873
jsDate(4114342873)=2100/5/18 17:1:13
PASS jsDate matches
PASS timestampToDateTime(4114342873) => timestampFromDateTime(...) matches
timestampToDateTime(4146391196)=["2101","5","24","15","19","56"]
timestampFromDateTime(["2101","5","24","15","19","56"])=4146391196
jsDate(4146391196)=2101/5/24 15:19:56
PASS jsDate matches
PASS timestampToDateTime(4146391196) => timestampFromDateTime(...) matches
timestampToDateTime(4178439520)=["2102","5","30","13","38","40"]
timestampFromDateTime(["2102","5","30","13","38","40"])=4178439520
jsDate(4178439520)=2102/5/30 13:38:40
PASS jsDate matches
PASS timestampToDateTime(4178439520) => timestampFromDateTime(...) matches
timestampToDateTime(4210024135)=["2103","5","31","3","8","55"]
timestampFromDateTime(["2103","5","31","3","8","55"])=4210024135
jsDate(4210024135)=2103/5/31 3:8:55
PASS jsDate matches
PASS timestampToDateTime(4210024135) => timestampFromDateTime(...) matches
timestampToDateTime(4242072458)=["2104","6","5","1","27","38"]
timestampFromDateTime(["2104","6","5","1","27","38"])=4242072458
jsDate(4242072458)=2104/6/5 1:27:38
PASS jsDate matches
PASS timestampToDateTime(4242072458) => timestampFromDateTime(...) matches
timestampToDateTime(4274120782)=["2105","6","10","23","46","22"]
timestampFromDateTime(["2105","6","10","23","46","22"])=4274120782
jsDate(4274120782)=2105/6/10 23:46:22
PASS jsDate matches
PASS timestampToDateTime(4274120782) => timestampFromDateTime(...) matches
timestampToDateTime(4305705397)=["2106","6","11","13","16","37"]
timestampFromDateTime(["2106","6","11","13","16","37"])=4305705397
jsDate(4305705397)=2106/6/11 13:16:37
PASS jsDate matches
PASS timestampToDateTime(4305705397) => timestampFromDateTime(...) matches
timestampToDateTime(4337753720)=["2107","6","17","11","35","20"]
timestampFromDateTime(["2107","6","17","11","35","20"])=4337753720
jsDate(4337753720)=2107/6/17 11:35:20
PASS jsDate matches
PASS timestampToDateTime(4337753720) => timestampFromDateTime(...) matches
timestampToDateTime(4369802044)=["2108","6","22","9","54","4"]