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
// <auto-generated>
// This code was generated by the UnitCodeGenerator tool
//
// Changes to this file will be lost if the code is regenerated
// </auto-generated>

//! # Time based converters

/// Centuries conversion functions
pub mod centuries {
	/// Converts the supplied Centuries value to Nanoseconds
	/// # Arguments
	/// * `value` - The Centuries input value
	pub fn to_nanoseconds(value: f64) -> f64 {
		return value * 3.154e+18;
	}
	/// Converts the supplied Centuries value to Microseconds
	/// # Arguments
	/// * `value` - The Centuries input value
	pub fn to_microseconds(value: f64) -> f64 {
		return value * 3.154e+15;
	}
	/// Converts the supplied Centuries value to Milliseconds
	/// # Arguments
	/// * `value` - The Centuries input value
	pub fn to_milliseconds(value: f64) -> f64 {
		return value * 3.154e+12;
	}
	/// Converts the supplied Centuries value to Seconds
	/// # Arguments
	/// * `value` - The Centuries input value
	pub fn to_seconds(value: f64) -> f64 {
		return value * 3.154e+9;
	}
	/// Converts the supplied Centuries value to Minutes
	/// # Arguments
	/// * `value` - The Centuries input value
	pub fn to_minutes(value: f64) -> f64 {
		return value * 5.256e+7;
	}
	/// Converts the supplied Centuries value to Hours
	/// # Arguments
	/// * `value` - The Centuries input value
	pub fn to_hours(value: f64) -> f64 {
		return value * 876000.0;
	}
	/// Converts the supplied Centuries value to Days
	/// # Arguments
	/// * `value` - The Centuries input value
	pub fn to_days(value: f64) -> f64 {
		return value * 36500.0;
	}
	/// Converts the supplied Centuries value to Weeks
	/// # Arguments
	/// * `value` - The Centuries input value
	pub fn to_weeks(value: f64) -> f64 {
		return value * 5214.29;
	}
	/// Converts the supplied Centuries value to Months
	/// # Arguments
	/// * `value` - The Centuries input value
	pub fn to_months(value: f64) -> f64 {
		return value * 1200.0;
	}
	/// Converts the supplied Centuries value to Years
	/// # Arguments
	/// * `value` - The Centuries input value
	pub fn to_years(value: f64) -> f64 {
		return value * 100.0;
	}
	/// Converts the supplied Centuries value to Decades
	/// # Arguments
	/// * `value` - The Centuries input value
	pub fn to_decades(value: f64) -> f64 {
		return value * 10.0;
	}
}
/// Days conversion functions
pub mod days {
	/// Converts the supplied Days value to Nanoseconds
	/// # Arguments
	/// * `value` - The Days input value
	pub fn to_nanoseconds(value: f64) -> f64 {
		return value * 8.64e+13;
	}
	/// Converts the supplied Days value to Microseconds
	/// # Arguments
	/// * `value` - The Days input value
	pub fn to_microseconds(value: f64) -> f64 {
		return value * 8.64e+10;
	}
	/// Converts the supplied Days value to Milliseconds
	/// # Arguments
	/// * `value` - The Days input value
	pub fn to_milliseconds(value: f64) -> f64 {
		return value * 8.64e+7;
	}
	/// Converts the supplied Days value to Seconds
	/// # Arguments
	/// * `value` - The Days input value
	pub fn to_seconds(value: f64) -> f64 {
		return value * 86400.0;
	}
	/// Converts the supplied Days value to Minutes
	/// # Arguments
	/// * `value` - The Days input value
	pub fn to_minutes(value: f64) -> f64 {
		return value * 1440.0;
	}
	/// Converts the supplied Days value to Hours
	/// # Arguments
	/// * `value` - The Days input value
	pub fn to_hours(value: f64) -> f64 {
		return value * 24.0;
	}
	/// Converts the supplied Days value to Weeks
	/// # Arguments
	/// * `value` - The Days input value
	pub fn to_weeks(value: f64) -> f64 {
		return value / 7.0;
	}
	/// Converts the supplied Days value to Months
	/// # Arguments
	/// * `value` - The Days input value
	pub fn to_months(value: f64) -> f64 {
		return value / 30.4167;
	}
	/// Converts the supplied Days value to Years
	/// # Arguments
	/// * `value` - The Days input value
	pub fn to_years(value: f64) -> f64 {
		return value / 365.0;
	}
	/// Converts the supplied Days value to Decades
	/// # Arguments
	/// * `value` - The Days input value
	pub fn to_decades(value: f64) -> f64 {
		return value / 3650.0;
	}
	/// Converts the supplied Days value to Centuries
	/// # Arguments
	/// * `value` - The Days input value
	pub fn to_centuries(value: f64) -> f64 {
		return value / 36500.0;
	}
}
/// Decades conversion functions
pub mod decades {
	/// Converts the supplied Decades value to Nanoseconds
	/// # Arguments
	/// * `value` - The Decades input value
	pub fn to_nanoseconds(value: f64) -> f64 {
		return value * 3.154e+17;
	}
	/// Converts the supplied Decades value to Microseconds
	/// # Arguments
	/// * `value` - The Decades input value
	pub fn to_microseconds(value: f64) -> f64 {
		return value * 3.154e+14;
	}
	/// Converts the supplied Decades value to Milliseconds
	/// # Arguments
	/// * `value` - The Decades input value
	pub fn to_milliseconds(value: f64) -> f64 {
		return value * 3.154e+11;
	}
	/// Converts the supplied Decades value to Seconds
	/// # Arguments
	/// * `value` - The Decades input value
	pub fn to_seconds(value: f64) -> f64 {
		return value * 3.154e+8;
	}
	/// Converts the supplied Decades value to Minutes
	/// # Arguments
	/// * `value` - The Decades input value
	pub fn to_minutes(value: f64) -> f64 {
		return value * 5.256e+6;
	}
	/// Converts the supplied Decades value to Hours
	/// # Arguments
	/// * `value` - The Decades input value
	pub fn to_hours(value: f64) -> f64 {
		return value * 87600.0;
	}
	/// Converts the supplied Decades value to Days
	/// # Arguments
	/// * `value` - The Decades input value
	pub fn to_days(value: f64) -> f64 {
		return value * 3650.0;
	}
	/// Converts the supplied Decades value to Weeks
	/// # Arguments
	/// * `value` - The Decades input value
	pub fn to_weeks(value: f64) -> f64 {
		return value * 521.429;
	}
	/// Converts the supplied Decades value to Months
	/// # Arguments
	/// * `value` - The Decades input value
	pub fn to_months(value: f64) -> f64 {
		return value * 120.0;
	}
	/// Converts the supplied Decades value to Years
	/// # Arguments
	/// * `value` - The Decades input value
	pub fn to_years(value: f64) -> f64 {
		return value * 10.0;
	}
	/// Converts the supplied Decades value to Centuries
	/// # Arguments
	/// * `value` - The Decades input value
	pub fn to_centuries(value: f64) -> f64 {
		return value / 10.0;
	}
}
/// Hours conversion functions
pub mod hours {
	/// Converts the supplied Hours value to Nanoseconds
	/// # Arguments
	/// * `value` - The Hours input value
	pub fn to_nanoseconds(value: f64) -> f64 {
		return value * 3.6e+12;
	}
	/// Converts the supplied Hours value to Microseconds
	/// # Arguments
	/// * `value` - The Hours input value
	pub fn to_microseconds(value: f64) -> f64 {
		return value * 3.6e+9;
	}
	/// Converts the supplied Hours value to Milliseconds
	/// # Arguments
	/// * `value` - The Hours input value
	pub fn to_milliseconds(value: f64) -> f64 {
		return value * 3.6e+6;
	}
	/// Converts the supplied Hours value to Seconds
	/// # Arguments
	/// * `value` - The Hours input value
	pub fn to_seconds(value: f64) -> f64 {
		return value * 3600.0;
	}
	/// Converts the supplied Hours value to Minutes
	/// # Arguments
	/// * `value` - The Hours input value
	pub fn to_minutes(value: f64) -> f64 {
		return value * 60.0;
	}
	/// Converts the supplied Hours value to Days
	/// # Arguments
	/// * `value` - The Hours input value
	pub fn to_days(value: f64) -> f64 {
		return value / 24.0;
	}
	/// Converts the supplied Hours value to Weeks
	/// # Arguments
	/// * `value` - The Hours input value
	pub fn to_weeks(value: f64) -> f64 {
		return value / 168.0;
	}
	/// Converts the supplied Hours value to Months
	/// # Arguments
	/// * `value` - The Hours input value
	pub fn to_months(value: f64) -> f64 {
		return value / 730.001;
	}
	/// Converts the supplied Hours value to Years
	/// # Arguments
	/// * `value` - The Hours input value
	pub fn to_years(value: f64) -> f64 {
		return value / 8760.0;
	}
	/// Converts the supplied Hours value to Decades
	/// # Arguments
	/// * `value` - The Hours input value
	pub fn to_decades(value: f64) -> f64 {
		return value / 87600.0;
	}
	/// Converts the supplied Hours value to Centuries
	/// # Arguments
	/// * `value` - The Hours input value
	pub fn to_centuries(value: f64) -> f64 {
		return value / 876000.0;
	}
}
/// Microseconds conversion functions
pub mod microseconds {
	/// Converts the supplied Microseconds value to Nanoseconds
	/// # Arguments
	/// * `value` - The Microseconds input value
	pub fn to_nanoseconds(value: f64) -> f64 {
		return value * 1000.0;
	}
	/// Converts the supplied Microseconds value to Milliseconds
	/// # Arguments
	/// * `value` - The Microseconds input value
	pub fn to_milliseconds(value: f64) -> f64 {
		return value / 1000.0;
	}
	/// Converts the supplied Microseconds value to Seconds
	/// # Arguments
	/// * `value` - The Microseconds input value
	pub fn to_seconds(value: f64) -> f64 {
		return value / 1e+6;
	}
	/// Converts the supplied Microseconds value to Minutes
	/// # Arguments
	/// * `value` - The Microseconds input value
	pub fn to_minutes(value: f64) -> f64 {
		return value / 6e+7;
	}
	/// Converts the supplied Microseconds value to Hours
	/// # Arguments
	/// * `value` - The Microseconds input value
	pub fn to_hours(value: f64) -> f64 {
		return value / 3.6e+9;
	}
	/// Converts the supplied Microseconds value to Days
	/// # Arguments
	/// * `value` - The Microseconds input value
	pub fn to_days(value: f64) -> f64 {
		return value / 8.64e+10;
	}
	/// Converts the supplied Microseconds value to Weeks
	/// # Arguments
	/// * `value` - The Microseconds input value
	pub fn to_weeks(value: f64) -> f64 {
		return value / 6.048e+11;
	}
	/// Converts the supplied Microseconds value to Months
	/// # Arguments
	/// * `value` - The Microseconds input value
	pub fn to_months(value: f64) -> f64 {
		return value / 2629746000000.0;
	}
	/// Converts the supplied Microseconds value to Years
	/// # Arguments
	/// * `value` - The Microseconds input value
	pub fn to_years(value: f64) -> f64 {
		return value / 3.154e+13;
	}
	/// Converts the supplied Microseconds value to Decades
	/// # Arguments
	/// * `value` - The Microseconds input value
	pub fn to_decades(value: f64) -> f64 {
		return value / 3.154e+14;
	}
	/// Converts the supplied Microseconds value to Centuries
	/// # Arguments
	/// * `value` - The Microseconds input value
	pub fn to_centuries(value: f64) -> f64 {
		return value / 3.154e+15;
	}
}
/// Milliseconds conversion functions
pub mod milliseconds {
	/// Converts the supplied Milliseconds value to Nanoseconds
	/// # Arguments
	/// * `value` - The Milliseconds input value
	pub fn to_nanoseconds(value: f64) -> f64 {
		return value * 1e+6;
	}
	/// Converts the supplied Milliseconds value to Microseconds
	/// # Arguments
	/// * `value` - The Milliseconds input value
	pub fn to_microseconds(value: f64) -> f64 {
		return value * 1000.0;
	}
	/// Converts the supplied Milliseconds value to Seconds
	/// # Arguments
	/// * `value` - The Milliseconds input value
	pub fn to_seconds(value: f64) -> f64 {
		return value / 1000.0;
	}
	/// Converts the supplied Milliseconds value to Minutes
	/// # Arguments
	/// * `value` - The Milliseconds input value
	pub fn to_minutes(value: f64) -> f64 {
		return value / 60000.0;
	}
	/// Converts the supplied Milliseconds value to Hours
	/// # Arguments
	/// * `value` - The Milliseconds input value
	pub fn to_hours(value: f64) -> f64 {
		return value / 3.6e+6;
	}
	/// Converts the supplied Milliseconds value to Days
	/// # Arguments
	/// * `value` - The Milliseconds input value
	pub fn to_days(value: f64) -> f64 {
		return value / 8.64e+7;
	}
	/// Converts the supplied Milliseconds value to Weeks
	/// # Arguments
	/// * `value` - The Milliseconds input value
	pub fn to_weeks(value: f64) -> f64 {
		return value / 6.048e+8;
	}
	/// Converts the supplied Milliseconds value to Months
	/// # Arguments
	/// * `value` - The Milliseconds input value
	pub fn to_months(value: f64) -> f64 {
		return value / 2629746000.0;
	}
	/// Converts the supplied Milliseconds value to Years
	/// # Arguments
	/// * `value` - The Milliseconds input value
	pub fn to_years(value: f64) -> f64 {
		return value / 31556952000.0;
	}
	/// Converts the supplied Milliseconds value to Decades
	/// # Arguments
	/// * `value` - The Milliseconds input value
	pub fn to_decades(value: f64) -> f64 {
		return value / 3.154e+11;
	}
	/// Converts the supplied Milliseconds value to Centuries
	/// # Arguments
	/// * `value` - The Milliseconds input value
	pub fn to_centuries(value: f64) -> f64 {
		return value / 3.154e+12;
	}
}
/// Minutes conversion functions
pub mod minutes {
	/// Converts the supplied Minutes value to Nanoseconds
	/// # Arguments
	/// * `value` - The Minutes input value
	pub fn to_nanoseconds(value: f64) -> f64 {
		return value * 6e+10;
	}
	/// Converts the supplied Minutes value to Microseconds
	/// # Arguments
	/// * `value` - The Minutes input value
	pub fn to_microseconds(value: f64) -> f64 {
		return value * 6e+7;
	}
	/// Converts the supplied Minutes value to Milliseconds
	/// # Arguments
	/// * `value` - The Minutes input value
	pub fn to_milliseconds(value: f64) -> f64 {
		return value * 60000.0;
	}
	/// Converts the supplied Minutes value to Seconds
	/// # Arguments
	/// * `value` - The Minutes input value
	pub fn to_seconds(value: f64) -> f64 {
		return value * 60.0;
	}
	/// Converts the supplied Minutes value to Hours
	/// # Arguments
	/// * `value` - The Minutes input value
	pub fn to_hours(value: f64) -> f64 {
		return value / 60.0;
	}
	/// Converts the supplied Minutes value to Days
	/// # Arguments
	/// * `value` - The Minutes input value
	pub fn to_days(value: f64) -> f64 {
		return value / 1440.0;
	}
	/// Converts the supplied Minutes value to Weeks
	/// # Arguments
	/// * `value` - The Minutes input value
	pub fn to_weeks(value: f64) -> f64 {
		return value / 10080.0;
	}
	/// Converts the supplied Minutes value to Months
	/// # Arguments
	/// * `value` - The Minutes input value
	pub fn to_months(value: f64) -> f64 {
		return value / 43800.0;
	}
	/// Converts the supplied Minutes value to Years
	/// # Arguments
	/// * `value` - The Minutes input value
	pub fn to_years(value: f64) -> f64 {
		return value / 525600.0;
	}
	/// Converts the supplied Minutes value to Decades
	/// # Arguments
	/// * `value` - The Minutes input value
	pub fn to_decades(value: f64) -> f64 {
		return value / 5.256e+6;
	}
	/// Converts the supplied Minutes value to Centuries
	/// # Arguments
	/// * `value` - The Minutes input value
	pub fn to_centuries(value: f64) -> f64 {
		return value / 5.256e+7;
	}
}
/// Months conversion functions
pub mod months {
	/// Converts the supplied Months value to Nanoseconds
	/// # Arguments
	/// * `value` - The Months input value
	pub fn to_nanoseconds(value: f64) -> f64 {
		return value * 2629746000000000.0;
	}
	/// Converts the supplied Months value to Microseconds
	/// # Arguments
	/// * `value` - The Months input value
	pub fn to_microseconds(value: f64) -> f64 {
		return value * 2629746000000.0;
	}
	/// Converts the supplied Months value to Milliseconds
	/// # Arguments
	/// * `value` - The Months input value
	pub fn to_milliseconds(value: f64) -> f64 {
		return value * 2629746000.0;
	}
	/// Converts the supplied Months value to Seconds
	/// # Arguments
	/// * `value` - The Months input value
	pub fn to_seconds(value: f64) -> f64 {
		return value * 2.628e+6;
	}
	/// Converts the supplied Months value to Minutes
	/// # Arguments
	/// * `value` - The Months input value
	pub fn to_minutes(value: f64) -> f64 {
		return value * 43800.0;
	}
	/// Converts the supplied Months value to Hours
	/// # Arguments
	/// * `value` - The Months input value
	pub fn to_hours(value: f64) -> f64 {
		return value * 730.001;
	}
	/// Converts the supplied Months value to Days
	/// # Arguments
	/// * `value` - The Months input value
	pub fn to_days(value: f64) -> f64 {
		return value * 30.4167;
	}
	/// Converts the supplied Months value to Weeks
	/// # Arguments
	/// * `value` - The Months input value
	pub fn to_weeks(value: f64) -> f64 {
		return value * 4.34524;
	}
	/// Converts the supplied Months value to Years
	/// # Arguments
	/// * `value` - The Months input value
	pub fn to_years(value: f64) -> f64 {
		return value / 12.0;
	}
	/// Converts the supplied Months value to Decades
	/// # Arguments
	/// * `value` - The Months input value
	pub fn to_decades(value: f64) -> f64 {
		return value / 120.0;
	}
	/// Converts the supplied Months value to Centuries
	/// # Arguments
	/// * `value` - The Months input value
	pub fn to_centuries(value: f64) -> f64 {
		return value / 1200.0;
	}
}
/// Nanoseconds conversion functions
pub mod nanoseconds {
	/// Converts the supplied Nanoseconds value to Microseconds
	/// # Arguments
	/// * `value` - The Nanoseconds input value
	pub fn to_microseconds(value: f64) -> f64 {
		return value / 1000.0;
	}
	/// Converts the supplied Nanoseconds value to Milliseconds
	/// # Arguments
	/// * `value` - The Nanoseconds input value
	pub fn to_milliseconds(value: f64) -> f64 {
		return value / 1e+6;
	}
	/// Converts the supplied Nanoseconds value to Seconds
	/// # Arguments
	/// * `value` - The Nanoseconds input value
	pub fn to_seconds(value: f64) -> f64 {
		return value / 1e+9;
	}
	/// Converts the supplied Nanoseconds value to Minutes
	/// # Arguments
	/// * `value` - The Nanoseconds input value
	pub fn to_minutes(value: f64) -> f64 {
		return value / 6e+10;
	}
	/// Converts the supplied Nanoseconds value to Hours
	/// # Arguments
	/// * `value` - The Nanoseconds input value
	pub fn to_hours(value: f64) -> f64 {
		return value / 3.6e+12;
	}
	/// Converts the supplied Nanoseconds value to Days
	/// # Arguments
	/// * `value` - The Nanoseconds input value
	pub fn to_days(value: f64) -> f64 {
		return value / 8.64e+13;
	}
	/// Converts the supplied Nanoseconds value to Weeks
	/// # Arguments
	/// * `value` - The Nanoseconds input value
	pub fn to_weeks(value: f64) -> f64 {
		return value / 6.048e+14;
	}
	/// Converts the supplied Nanoseconds value to Months
	/// # Arguments
	/// * `value` - The Nanoseconds input value
	pub fn to_months(value: f64) -> f64 {
		return value / 2629746000000000.0;
	}
	/// Converts the supplied Nanoseconds value to Years
	/// # Arguments
	/// * `value` - The Nanoseconds input value
	pub fn to_years(value: f64) -> f64 {
		return value / 3.154e+16;
	}
	/// Converts the supplied Nanoseconds value to Decades
	/// # Arguments
	/// * `value` - The Nanoseconds input value
	pub fn to_decades(value: f64) -> f64 {
		return value / 3.154e+17;
	}
	/// Converts the supplied Nanoseconds value to Centuries
	/// # Arguments
	/// * `value` - The Nanoseconds input value
	pub fn to_centuries(value: f64) -> f64 {
		return value / 3.154e+18;
	}
}
/// Seconds conversion functions
pub mod seconds {
	/// Converts the supplied Seconds value to Nanoseconds
	/// # Arguments
	/// * `value` - The Seconds input value
	pub fn to_nanoseconds(value: f64) -> f64 {
		return value * 1e+9;
	}
	/// Converts the supplied Seconds value to Microseconds
	/// # Arguments
	/// * `value` - The Seconds input value
	pub fn to_microseconds(value: f64) -> f64 {
		return value * 1e+6;
	}
	/// Converts the supplied Seconds value to Milliseconds
	/// # Arguments
	/// * `value` - The Seconds input value
	pub fn to_milliseconds(value: f64) -> f64 {
		return value * 1000.0;
	}
	/// Converts the supplied Seconds value to Minutes
	/// # Arguments
	/// * `value` - The Seconds input value
	pub fn to_minutes(value: f64) -> f64 {
		return value / 60.0;
	}
	/// Converts the supplied Seconds value to Hours
	/// # Arguments
	/// * `value` - The Seconds input value
	pub fn to_hours(value: f64) -> f64 {
		return value / 3600.0;
	}
	/// Converts the supplied Seconds value to Days
	/// # Arguments
	/// * `value` - The Seconds input value
	pub fn to_days(value: f64) -> f64 {
		return value / 86400.0;
	}
	/// Converts the supplied Seconds value to Weeks
	/// # Arguments
	/// * `value` - The Seconds input value
	pub fn to_weeks(value: f64) -> f64 {
		return value / 604800.0;
	}
	/// Converts the supplied Seconds value to Months
	/// # Arguments
	/// * `value` - The Seconds input value
	pub fn to_months(value: f64) -> f64 {
		return value / 2.628e+6;
	}
	/// Converts the supplied Seconds value to Years
	/// # Arguments
	/// * `value` - The Seconds input value
	pub fn to_years(value: f64) -> f64 {
		return value / 3.1536e+7;
	}
	/// Converts the supplied Seconds value to Decades
	/// # Arguments
	/// * `value` - The Seconds input value
	pub fn to_decades(value: f64) -> f64 {
		return value / 3.154e+8;
	}
	/// Converts the supplied Seconds value to Centuries
	/// # Arguments
	/// * `value` - The Seconds input value
	pub fn to_centuries(value: f64) -> f64 {
		return value / 3.154e+9;
	}
}
/// Weeks conversion functions
pub mod weeks {
	/// Converts the supplied Weeks value to Nanoseconds
	/// # Arguments
	/// * `value` - The Weeks input value
	pub fn to_nanoseconds(value: f64) -> f64 {
		return value * 6.048e+14;
	}
	/// Converts the supplied Weeks value to Microseconds
	/// # Arguments
	/// * `value` - The Weeks input value
	pub fn to_microseconds(value: f64) -> f64 {
		return value * 6.048e+11;
	}
	/// Converts the supplied Weeks value to Milliseconds
	/// # Arguments
	/// * `value` - The Weeks input value
	pub fn to_milliseconds(value: f64) -> f64 {
		return value * 6.048e+8;
	}
	/// Converts the supplied Weeks value to Seconds
	/// # Arguments
	/// * `value` - The Weeks input value
	pub fn to_seconds(value: f64) -> f64 {
		return value * 604800.0;
	}
	/// Converts the supplied Weeks value to Minutes
	/// # Arguments
	/// * `value` - The Weeks input value
	pub fn to_minutes(value: f64) -> f64 {
		return value * 10080.0;
	}
	/// Converts the supplied Weeks value to Hours
	/// # Arguments
	/// * `value` - The Weeks input value
	pub fn to_hours(value: f64) -> f64 {
		return value * 168.0;
	}
	/// Converts the supplied Weeks value to Days
	/// # Arguments
	/// * `value` - The Weeks input value
	pub fn to_days(value: f64) -> f64 {
		return value * 7.0;
	}
	/// Converts the supplied Weeks value to Months
	/// # Arguments
	/// * `value` - The Weeks input value
	pub fn to_months(value: f64) -> f64 {
		return value / 4.34524;
	}
	/// Converts the supplied Weeks value to Years
	/// # Arguments
	/// * `value` - The Weeks input value
	pub fn to_years(value: f64) -> f64 {
		return value / 52.143;
	}
	/// Converts the supplied Weeks value to Decades
	/// # Arguments
	/// * `value` - The Weeks input value
	pub fn to_decades(value: f64) -> f64 {
		return value / 521.429;
	}
	/// Converts the supplied Weeks value to Centuries
	/// # Arguments
	/// * `value` - The Weeks input value
	pub fn to_centuries(value: f64) -> f64 {
		return value / 5214.29;
	}
}
/// Years conversion functions
pub mod years {
	/// Converts the supplied Years value to Nanoseconds
	/// # Arguments
	/// * `value` - The Years input value
	pub fn to_nanoseconds(value: f64) -> f64 {
		return value * 3.154e+16;
	}
	/// Converts the supplied Years value to Microseconds
	/// # Arguments
	/// * `value` - The Years input value
	pub fn to_microseconds(value: f64) -> f64 {
		return value * 3.154e+13;
	}
	/// Converts the supplied Years value to Milliseconds
	/// # Arguments
	/// * `value` - The Years input value
	pub fn to_milliseconds(value: f64) -> f64 {
		return value * 31556952000.0;
	}
	/// Converts the supplied Years value to Seconds
	/// # Arguments
	/// * `value` - The Years input value
	pub fn to_seconds(value: f64) -> f64 {
		return value * 3.1536e+7;
	}
	/// Converts the supplied Years value to Minutes
	/// # Arguments
	/// * `value` - The Years input value
	pub fn to_minutes(value: f64) -> f64 {
		return value * 525600.0;
	}
	/// Converts the supplied Years value to Hours
	/// # Arguments
	/// * `value` - The Years input value
	pub fn to_hours(value: f64) -> f64 {
		return value * 8760.0;
	}
	/// Converts the supplied Years value to Days
	/// # Arguments
	/// * `value` - The Years input value
	pub fn to_days(value: f64) -> f64 {
		return value * 365.0;
	}
	/// Converts the supplied Years value to Weeks
	/// # Arguments
	/// * `value` - The Years input value
	pub fn to_weeks(value: f64) -> f64 {
		return value * 52.143;
	}
	/// Converts the supplied Years value to Months
	/// # Arguments
	/// * `value` - The Years input value
	pub fn to_months(value: f64) -> f64 {
		return value * 12.0;
	}
	/// Converts the supplied Years value to Decades
	/// # Arguments
	/// * `value` - The Years input value
	pub fn to_decades(value: f64) -> f64 {
		return value / 10.0;
	}
	/// Converts the supplied Years value to Centuries
	/// # Arguments
	/// * `value` - The Years input value
	pub fn to_centuries(value: f64) -> f64 {
		return value / 100.0;
	}
}