@williamthorsen/toolbelt.datetime 3.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md ADDED
@@ -0,0 +1,86 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ ## [strings-v3.1.1] - 2026-03-10
6
+
7
+ ### Dependencies
8
+
9
+ - #6 deps: Adapt to dependency upgrades and bump Node engine to >=24 (#8)
10
+
11
+ Upgrades all dependencies to their latest versions, bumps the Node.js engine requirement from >=18.17.0 to >=24.0.0 across all 13 workspace packages, and adapts source code to satisfy new lint rules introduced by the upgraded ESLint plugins. Also upgrades `@williamthorsen/eslint-config-typescript` from 5.12.1 to 5.12.2 to fix ESM import issues in the compiled output.
12
+
13
+ Commit details:
14
+
15
+ * root|deps: Upgrade all deps to latest version
16
+
17
+ * root|refactor: Fix lint
18
+
19
+ * root|deps: Upgrade all deps to latest minor version
20
+
21
+ * root|deps: Allow unpatchable vulns in dev deps
22
+
23
+ * root|refactor: Adapt to dependency upgrades and bump Node engine to >=24
24
+
25
+ - Upgrade eslint-config-typescript to 5.12.2 (fixes ESM import issues, removes need for pnpm patch)
26
+ - Bump engines.node from >=18.17.0 to >=24.0.0 across all packages
27
+ - Update CI to Node 24.14.0 and pnpm 10.30.3
28
+ - Replace .sort() with .toSorted() to satisfy unicorn/no-array-sort
29
+ - Fix lint errors: remove useless default assignments, redundant type constituents, deprecated re-exports, and empty array args to Set constructor
30
+
31
+ * datetime|tests: Fix locale mismatch in Timestamp test
32
+
33
+ Pass the same 'en-US' locale to both the expected-value computation and
34
+ the method under test. Previously the test used the system default locale
35
+ for the expected value but explicit 'en-US' for the actual call, which
36
+ diverged under Node 24's updated Intl formatting.
37
+
38
+ * root|refactor: Replace toThrow with toThrowError across all tests
39
+
40
+ The vitest/no-alias-methods rule in strict-lint requires the canonical
41
+ toThrowError() name instead of the toThrow() alias.
42
+
43
+ * root|refactor: Fix remaining strict-lint errors
44
+
45
+ - Use import() in vi.mock for vitest/prefer-import-in-mock
46
+ - Replace expect(typeof x).toBe() with expectTypeOf for vitest/prefer-expect-type-of
47
+ - Use String.raw for regex escapes for unicorn/prefer-string-raw
48
+
49
+ * root|tooling: Use ws runner to fix recursive build command
50
+
51
+ The build script used `pnpm --recursive run build` but no workspace package defines a `build` script — they all use `ws build` through the workspace script runner. Aligns with all other recursive commands.
52
+
53
+ ### Tooling
54
+
55
+ - *|tooling: Change package registry from github to npmjs
56
+
57
+ ## [4.2.0] - 2025-05-24
58
+
59
+ ### Features
60
+
61
+ - Datetime|feat: Can get decades for a range of years
62
+
63
+ Added `getDecadesContainingRange` and `getDecadesContainingYears`.
64
+
65
+ ## [3.0.1] - 2025-05-20
66
+
67
+ ### Tooling
68
+
69
+ - *|tooling: Enable incremental type generation
70
+ - *|tooling: Rename publish script to avoid recursion
71
+
72
+ ## [3.0.0] - 2025-05-16
73
+
74
+ ### Features
75
+
76
+ - Datetime|feat: ⛔ Migrate from toolbelt-deno
77
+
78
+ ### Tests
79
+
80
+ - Datetime|tests: Convert timestamp tests to Vitest
81
+
82
+ ### Tooling
83
+
84
+ - Datetime|tooling: Scaffold the datetime workspace
85
+
86
+ <!-- generated by git-cliff -->
package/LICENSE ADDED
@@ -0,0 +1,7 @@
1
+ UNLICENSED SOFTWARE
2
+
3
+ Copyright (c) 2023-2025 William Thorsen
4
+
5
+ All rights reserved.
6
+
7
+ This software is provided 'as-is', without any express or implied warranty. No rights are granted to use, copy, modify, or distribute this software for any purpose. For full legal details, consult a legal expert. This notice may not be removed or altered from any distribution.
package/README.md ADDED
@@ -0,0 +1 @@
1
+ # @williamthorsen/toolbelt.datetime
@@ -0,0 +1 @@
1
+ 691db0f08321414444edc91a71340c2383b8b68c36536d442af146b63f5f0e83
@@ -0,0 +1,7 @@
1
+ export declare function getContainingDecades(years: number[]): Decade[];
2
+ interface Decade {
3
+ startYear: number;
4
+ endYear: number;
5
+ label: string;
6
+ }
7
+ export {};
@@ -0,0 +1,18 @@
1
+ function getContainingDecades(years) {
2
+ const uniqueYears = [...new Set(years)].sort((a, b) => a - b);
3
+ const decadesMap = /* @__PURE__ */ new Map();
4
+ for (const year of uniqueYears) {
5
+ const startYear = Math.floor(year / 10) * 10;
6
+ if (!decadesMap.has(startYear)) {
7
+ decadesMap.set(startYear, {
8
+ startYear,
9
+ endYear: startYear + 9,
10
+ label: `${startYear}s`
11
+ });
12
+ }
13
+ }
14
+ return [...decadesMap.values()];
15
+ }
16
+ export {
17
+ getContainingDecades
18
+ };
@@ -0,0 +1,5 @@
1
+ import type { Decade } from './getDecadesContainingYears.ts';
2
+ export declare function getDecadesContainingRange(range: {
3
+ start: number;
4
+ end: number;
5
+ }): Decade[];
@@ -0,0 +1,21 @@
1
+ function getDecadesContainingRange(range) {
2
+ const { start, end } = range;
3
+ if (start < 0 || end < 0) {
4
+ throw new RangeError(`Negative years are not supported: start = ${start}, end = ${end}.`);
5
+ }
6
+ if (start > end) return [];
7
+ const firstDecadeStart = Math.floor(start / 10) * 10;
8
+ const lastDecadeStart = Math.floor(end / 10) * 10;
9
+ const decades = [];
10
+ for (let year = firstDecadeStart; year <= lastDecadeStart; year += 10) {
11
+ decades.push({
12
+ start: year,
13
+ end: year + 9,
14
+ label: `${year}s`
15
+ });
16
+ }
17
+ return decades;
18
+ }
19
+ export {
20
+ getDecadesContainingRange
21
+ };
@@ -0,0 +1,6 @@
1
+ export declare function getDecadesContainingYears(years: number[]): Decade[];
2
+ export interface Decade {
3
+ start: number;
4
+ end: number;
5
+ label: string;
6
+ }
@@ -0,0 +1,25 @@
1
+ function getDecadesContainingYears(years) {
2
+ const uniqueYears = [...new Set(years)].toSorted((a, b) => a - b);
3
+ const decadesMap = /* @__PURE__ */ new Map();
4
+ const [firstYear] = uniqueYears;
5
+ if (firstYear === void 0) {
6
+ return [];
7
+ }
8
+ if (firstYear < 0) {
9
+ throw new RangeError(`Negative years are not supported.`);
10
+ }
11
+ for (const year of uniqueYears) {
12
+ const start = Math.floor(year / 10) * 10;
13
+ if (!decadesMap.has(start)) {
14
+ decadesMap.set(start, {
15
+ start,
16
+ end: start + 9,
17
+ label: `${start}s`
18
+ });
19
+ }
20
+ }
21
+ return [...decadesMap.values()];
22
+ }
23
+ export {
24
+ getDecadesContainingYears
25
+ };
@@ -0,0 +1,3 @@
1
+ export { getDecadesContainingRange } from './getDecadesContainingRange.ts';
2
+ export { getDecadesContainingYears } from './getDecadesContainingYears.ts';
3
+ export * from './types.ts';
@@ -0,0 +1,7 @@
1
+ import { getDecadesContainingRange } from "./getDecadesContainingRange.js";
2
+ import { getDecadesContainingYears } from "./getDecadesContainingYears.js";
3
+ export * from "./types.js";
4
+ export {
5
+ getDecadesContainingRange,
6
+ getDecadesContainingYears
7
+ };
@@ -0,0 +1 @@
1
+ export type { Decade } from './getDecadesContainingYears.ts';
File without changes
@@ -0,0 +1,25 @@
1
+ export declare class TimeUnit {
2
+ readonly inMillis: number;
3
+ static readonly Millis: TimeUnit;
4
+ static readonly Seconds: TimeUnit;
5
+ static readonly Minutes: TimeUnit;
6
+ static readonly Hours: TimeUnit;
7
+ static readonly Days: TimeUnit;
8
+ readonly abbrev: string;
9
+ readonly plural: string;
10
+ readonly singular: string;
11
+ private constructor();
12
+ static convert(amount: number, fromUnit: TimeUnit, toUnit: TimeUnit, options?: TimeUnitConversionOptions): number;
13
+ getLabeledCount(amount: number, options?: TimeUnitLabelOptions): string;
14
+ getInflectedLabel(amount: number): string;
15
+ toString(): string;
16
+ }
17
+ export interface TimeUnitConversionOptions {
18
+ readonly throwOnFractional?: boolean | undefined;
19
+ readonly decimalPlaces?: Integer | undefined;
20
+ }
21
+ export interface TimeUnitLabelOptions {
22
+ format?: 'short' | 'long' | undefined;
23
+ }
24
+ type Integer = number;
25
+ export {};
@@ -0,0 +1,48 @@
1
+ class TimeUnit {
2
+ constructor(inMillis, options) {
3
+ this.inMillis = inMillis;
4
+ this.abbrev = options.abbrev;
5
+ this.singular = options.singular;
6
+ this.plural = `${options.singular}s`;
7
+ }
8
+ static Millis = new TimeUnit(1, { singular: "millisecond", abbrev: "ms" });
9
+ static Seconds = new TimeUnit(1e3, { singular: "second", abbrev: "s" });
10
+ static Minutes = new TimeUnit(6e4, { singular: "minute", abbrev: "m" });
11
+ static Hours = new TimeUnit(36e5, { singular: "hour", abbrev: "h" });
12
+ static Days = new TimeUnit(864e5, { singular: "day", abbrev: "d" });
13
+ abbrev;
14
+ plural;
15
+ singular;
16
+ static convert(amount, fromUnit, toUnit, options = {}) {
17
+ const { decimalPlaces, throwOnFractional } = options;
18
+ if (fromUnit.inMillis === toUnit.inMillis) {
19
+ return amount;
20
+ }
21
+ const multiplier = fromUnit.inMillis / toUnit.inMillis;
22
+ const value = amount * multiplier;
23
+ if (!Number.isInteger(value) && throwOnFractional) {
24
+ throw new Error(
25
+ `${fromUnit.getLabeledCount(amount)} cannot be converted into a whole number of ${toUnit.plural}.`
26
+ );
27
+ }
28
+ if (decimalPlaces !== void 0) {
29
+ return Math.round(value * 10 ** decimalPlaces) / 10 ** decimalPlaces;
30
+ }
31
+ return value;
32
+ }
33
+ getLabeledCount(amount, options = {}) {
34
+ if (options.format === "short") {
35
+ return `${amount}${this.abbrev}`;
36
+ }
37
+ return `${amount} ${this.getInflectedLabel(amount)}`;
38
+ }
39
+ getInflectedLabel(amount) {
40
+ return amount === 1 ? this.singular : this.plural;
41
+ }
42
+ toString() {
43
+ return this.plural;
44
+ }
45
+ }
46
+ export {
47
+ TimeUnit
48
+ };
@@ -0,0 +1,32 @@
1
+ import { TimeUnit } from './TimeUnit.ts';
2
+ export declare class Timestamp {
3
+ private _format;
4
+ private readonly _millis;
5
+ private _timeUnit;
6
+ static fromMillis(milliseconds: number): Timestamp;
7
+ static fromSeconds(seconds: number): Timestamp;
8
+ static now(options?: TimestampOptions): Timestamp;
9
+ constructor(dateTime?: TimestampInput, options?: TimestampOptions);
10
+ get format(): TimestampFormatEnum;
11
+ get millis(): number;
12
+ get seconds(): number;
13
+ get timeUnit(): TimeUnit;
14
+ clone(options?: TimestampOptions): Timestamp;
15
+ setOptions(options?: TimestampOptions): this;
16
+ toCompactString(options?: Options): string;
17
+ toDate(): Date;
18
+ toHumaneUtcString(options?: Options): string;
19
+ toIsoString(options?: Options): string;
20
+ toLocaleDateTimeString(locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions): string;
21
+ toNumericString(options?: Options): string;
22
+ toString(options?: TimestampOptions): string;
23
+ }
24
+ interface Options {
25
+ timeUnit?: TimeUnit | undefined;
26
+ }
27
+ type TimestampFormatEnum = 'compact' | 'humane' | 'iso' | 'numeric';
28
+ export type TimestampInput = Date | number | string | Timestamp;
29
+ export interface TimestampOptions extends Options {
30
+ format?: TimestampFormatEnum;
31
+ }
32
+ export {};
@@ -0,0 +1,120 @@
1
+ import { TimeUnit } from "./TimeUnit.js";
2
+ class Timestamp {
3
+ _format;
4
+ _millis;
5
+ _timeUnit;
6
+ // region | Static methods
7
+ static fromMillis(milliseconds) {
8
+ return new Timestamp(new Date(milliseconds));
9
+ }
10
+ static fromSeconds(seconds) {
11
+ return new Timestamp(new Date(seconds * 1e3), { timeUnit: TimeUnit.Seconds });
12
+ }
13
+ static now(options = {}) {
14
+ return new Timestamp(void 0, options);
15
+ }
16
+ // endregion
17
+ // region | Public methods
18
+ constructor(dateTime, options = {}) {
19
+ const { format = "iso", timeUnit = TimeUnit.Millis } = options;
20
+ if (dateTime instanceof Timestamp) {
21
+ this._millis = dateTime._millis;
22
+ } else if (dateTime) {
23
+ this._millis = new Date(dateTime).getTime();
24
+ } else {
25
+ this._millis = Date.now();
26
+ }
27
+ this._format = format;
28
+ this._timeUnit = timeUnit;
29
+ }
30
+ get format() {
31
+ return this._format;
32
+ }
33
+ get millis() {
34
+ return this._millis;
35
+ }
36
+ get seconds() {
37
+ return TimeUnit.convert(this._millis, TimeUnit.Millis, TimeUnit.Seconds);
38
+ }
39
+ get timeUnit() {
40
+ return this._timeUnit;
41
+ }
42
+ clone(options = {}) {
43
+ return new Timestamp(this._millis, options);
44
+ }
45
+ setOptions(options = {}) {
46
+ const { format = this._format, timeUnit = this._timeUnit } = options;
47
+ this._format = format;
48
+ this._timeUnit = timeUnit;
49
+ return this;
50
+ }
51
+ /**
52
+ * Returns the date & time in the format `YYYYMMDD-HHMM[SS[.sss]]` (depending on the time unit). UTC is implied.
53
+ */
54
+ toCompactString(options = {}) {
55
+ const [datePart = "", timePart = ""] = this.toIsoString(options).split("T");
56
+ const formattedDatePart = datePart.replaceAll(/[-Z]/g, "");
57
+ const formattedTimePart = timePart.replaceAll(/[:Z]/g, "");
58
+ return timePart.length > 0 ? `${formattedDatePart}-${formattedTimePart}` : formattedDatePart;
59
+ }
60
+ toDate() {
61
+ return new Date(this._millis);
62
+ }
63
+ /**
64
+ * Returns the date & time in the format `YYYY-MM-DD HH:MM[:SS[.000]] UTC` (depending on the time unit).
65
+ * It is the same format as `Date.toISOString()` but with a space instead of a `T` and ` UTC` instead of `Z`.
66
+ * This date format is human-readable, sortable, and accepted by the Date constructor.
67
+ * TODO: Decide how to handle hours.
68
+ */
69
+ toHumaneUtcString(options = {}) {
70
+ const { timeUnit = this.timeUnit } = options;
71
+ if (timeUnit === TimeUnit.Hours) {
72
+ throw new Error("Method does not support TimeUnit.Hours time unit.");
73
+ }
74
+ const isoString = this.toIsoString({ timeUnit });
75
+ return isoString.replace(/T/, " ").replace(/Z$/, " UTC");
76
+ }
77
+ /**
78
+ * Returns a timestamp in the format `YYYY-MM-DDT[HH:MM[:SS[.000]]Z]` (depending on the time unit).
79
+ */
80
+ toIsoString(options = {}) {
81
+ const { timeUnit = this.timeUnit } = options;
82
+ const isoDateTime = this.toDate().toISOString();
83
+ switch (timeUnit) {
84
+ case TimeUnit.Seconds:
85
+ return isoDateTime.replace(/\.\d{3}Z$/, "Z");
86
+ case TimeUnit.Minutes:
87
+ return isoDateTime.replace(/:\d{2}\.\d{3}Z$/, "Z");
88
+ case TimeUnit.Hours:
89
+ return isoDateTime.replace(/:\d{2}:\d{2}\.\d{3}Z$/, "Z");
90
+ case TimeUnit.Days: {
91
+ const [datePart] = isoDateTime.split("T");
92
+ return `${datePart}Z`;
93
+ }
94
+ // eslint-disable-next-line unicorn/no-useless-switch-case
95
+ case TimeUnit.Millis:
96
+ default:
97
+ return isoDateTime;
98
+ }
99
+ }
100
+ toLocaleDateTimeString(locales, options) {
101
+ const date = new Date(this._millis);
102
+ return date.toLocaleDateString(locales, options) + " " + date.toLocaleTimeString(locales, options);
103
+ }
104
+ /**
105
+ * Returns the date & time in the format `YYYYMMDD[HHMM[SS[sss]]` (depending on the time unit). UTC is implied.
106
+ */
107
+ toNumericString(options = {}) {
108
+ return this.toIsoString(options).replaceAll(/[-T:Z.]/g, "");
109
+ }
110
+ toString(options = {}) {
111
+ const { format = this._format, timeUnit = this._timeUnit } = options;
112
+ if (format === "compact") return this.toCompactString({ timeUnit });
113
+ if (format === "humane") return this.toHumaneUtcString({ timeUnit });
114
+ if (format === "numeric") return this.toNumericString({ timeUnit });
115
+ return this.toIsoString({ timeUnit });
116
+ }
117
+ }
118
+ export {
119
+ Timestamp
120
+ };
@@ -0,0 +1,2 @@
1
+ export { Timestamp } from './Timestamp.ts';
2
+ export { TimeUnit } from './TimeUnit.ts';
@@ -0,0 +1,6 @@
1
+ import { Timestamp } from "./Timestamp.js";
2
+ import { TimeUnit } from "./TimeUnit.js";
3
+ export {
4
+ TimeUnit,
5
+ Timestamp
6
+ };
@@ -0,0 +1 @@
1
+ export declare function parseDate(dateInput: Date | number | string | null | undefined): Date | undefined;
@@ -0,0 +1,10 @@
1
+ function parseDate(dateInput) {
2
+ if (dateInput === null || dateInput === void 0) {
3
+ return void 0;
4
+ }
5
+ const date = new Date(dateInput);
6
+ return Number.isNaN(date.getTime()) ? void 0 : date;
7
+ }
8
+ export {
9
+ parseDate
10
+ };
@@ -0,0 +1 @@
1
+ export {};
File without changes
@@ -0,0 +1 @@
1
+ export declare function getTemporal(): typeof Temporal;
@@ -0,0 +1,7 @@
1
+ import { Temporal as TemporalPolyfill } from "@js-temporal/polyfill";
2
+ function getTemporal() {
3
+ return typeof globalThis.Temporal !== "undefined" ? globalThis.Temporal : TemporalPolyfill;
4
+ }
5
+ export {
6
+ getTemporal
7
+ };
@@ -0,0 +1 @@
1
+ export {};
File without changes
@@ -0,0 +1 @@
1
+ {"fileNames":["../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.error.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/1-proposed/getdecadescontainingyears.ts","../src/1-proposed/getdecadescontainingrange.ts","../src/1-proposed/types.ts","../src/1-proposed/index.ts","../src/2-draft/timeunit.ts","../src/2-draft/timestamp.ts","../src/2-draft/index.ts","../src/3-candidate/index.ts","../src/4-release/index.ts","../../../node_modules/.pnpm/@types+js-yaml@4.0.9/node_modules/@types/js-yaml/index.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/web-globals/crypto.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/utility.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/client-stats.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/h2c-client.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/snapshot-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/web-globals/streams.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/sqlite.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@24.12.0/node_modules/@types/node/index.d.ts"],"fileIdsList":[[93,147,164,165],[93,144,145,147,164,165],[93,146,147,164,165],[147,164,165],[93,147,152,164,165,182],[93,147,148,153,158,164,165,167,179,190],[93,147,148,149,158,164,165,167],[93,147,150,164,165,191],[93,147,151,152,159,164,165,168],[93,147,152,164,165,179,187],[93,147,153,155,158,164,165,167],[93,146,147,154,164,165],[93,147,155,156,164,165],[93,147,157,158,164,165],[93,146,147,158,164,165],[93,147,158,159,160,164,165,179,190],[93,147,158,159,160,164,165,174,179,182],[93,139,147,155,158,161,164,165,167,179,190],[93,147,158,159,161,162,164,165,167,179,187,190],[93,147,161,163,164,165,179,187,190],[91,92,93,94,95,96,97,98,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],[93,147,158,164,165],[93,147,164,165,166,190],[93,147,155,158,164,165,167,179],[93,147,164,165,168],[93,147,164,165,169],[93,146,147,164,165,170],[93,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],[93,147,164,165,172],[93,147,164,165,173],[93,147,158,164,165,174,175],[93,147,164,165,174,176,191,193],[93,147,159,164,165],[93,147,158,164,165,179,180,182],[93,147,164,165,181,182],[93,147,164,165,179,180],[93,147,164,165,182],[93,147,164,165,183],[93,144,147,164,165,179,184,190],[93,147,158,164,165,185,186],[93,147,164,165,185,186],[93,147,152,164,165,167,179,187],[93,147,164,165,188],[93,147,164,165,167,189],[93,147,161,164,165,173,190],[93,147,152,164,165,191],[93,147,164,165,179,192],[93,147,164,165,166,193],[93,147,164,165,194],[93,147,152,164,165],[93,139,147,164,165],[93,147,164,165,195],[93,139,147,158,160,164,165,170,179,182,190,192,193,195],[93,147,164,165,179,196],[93,105,108,111,112,147,164,165,190],[93,108,147,164,165,179,190],[93,108,112,147,164,165,190],[93,147,164,165,179],[93,102,147,164,165],[93,106,147,164,165],[93,104,105,108,147,164,165,190],[93,147,164,165,167,187],[93,147,164,165,197],[93,102,147,164,165,197],[93,104,108,147,164,165,167,190],[93,99,100,101,103,107,147,158,164,165,179,190],[93,108,116,124,147,164,165],[93,100,106,147,164,165],[93,108,133,134,147,164,165],[93,100,103,108,147,164,165,182,190,197],[93,108,147,164,165],[93,104,108,147,164,165,190],[93,99,147,164,165],[93,102,103,104,106,107,108,109,110,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134,135,136,137,138,147,164,165],[93,108,126,129,147,155,164,165],[93,108,116,117,118,147,164,165],[93,106,108,117,119,147,164,165],[93,107,147,164,165],[93,100,102,108,147,164,165],[93,108,112,117,119,147,164,165],[93,112,147,164,165],[93,106,108,111,147,164,165,190],[93,100,104,108,116,147,164,165],[93,108,126,147,164,165],[93,119,147,164,165],[93,102,108,133,147,164,165,182,195,197],[81,93,147,164,165],[81,82,83,93,147,164,165],[85,86,93,147,164,165],[85,93,147,164,165]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"2ab096661c711e4a81cc464fa1e6feb929a54f5340b46b0a07ac6bbf857471f0","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"73f78680d4c08509933daf80947902f6ff41b6230f94dd002ae372620adb0f60","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5239f5c01bcfa9cd32f37c496cf19c61d69d37e48be9de612b541aac915805b","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"4684a726b8afe587635f6cc47d740594891be04eeafbb65d993fffadab108034","signature":"09b8dc25daab19986d5acb3425e00a3d69071b5e37541c9f007c287f8f5241de","impliedFormat":99},{"version":"4b5e281f123b014df1ab3bfe4c18d008d3ea682db66859b444a596f9642ab44c","signature":"0c35b177fca732938f60dbe6a0037df120dc5aa7e30c673d53ff2785f91a54cd","impliedFormat":99},{"version":"7c7128db15f4f77c2871eab9ccec44b44051721812169757d5c4588ba0c0363f","impliedFormat":99},{"version":"8ca2854a8abc2d4667155ace8a00190337d2f11fd78bfb5ab999be6a7687ca99","impliedFormat":99},{"version":"3a56f2ea9ba9ba42190ae2c78fbf6f7de1b5c41696597bf918c41593a8fd198d","signature":"f49c7b9e695380116e35e113606231332295ac75ff9eafec1b0fede1881747f3","impliedFormat":99},{"version":"62017e2b2a73c3607b70c50abb2063f53b64e87e8b1f1f7b179febd7d74db722","signature":"f2f995c48aad41480e46d37cdee8050fe4a51c9a9f3296969565c7fa87163e98","impliedFormat":99},{"version":"aa1d4e61fb1b775459d3a7cd518f89409f631885d43e97cd5af9c7511f484598","impliedFormat":99},{"version":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"7a1dd1e9c8bf5e23129495b10718b280340c7500570e0cfe5cffcdee51e13e48","impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"378281aa35786c27d5811af7e6bcaa492eebd0c7013d48137c35bbc69a2b9751","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"1b2dd1cbeb0cc6ae20795958ba5950395ebb2849b7c8326853dd15530c77ab0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"387a023d363f755eb63450a66c28b14cdd7bc30a104565e2dbf0a8988bb4a56c","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","impliedFormat":1},{"version":"3a80bc85f38526ca3b08007ee80712e7bb0601df178b23fbf0bf87036fce40ce","impliedFormat":1},{"version":"ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"2931540c47ee0ff8a62860e61782eb17b155615db61e36986e54645ec67f67c2","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"f6faf5f74e4c4cc309a6c6a6c4da02dbb840be5d3e92905a23dcd7b2b0bd1986","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"33e981bf6376e939f99bd7f89abec757c64897d33c005036b9a10d9587d80187","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","impliedFormat":1},{"version":"3bacf516d686d08682751a3bd2519ea3b8041a164bfb4f1d35728993e70a2426","impliedFormat":1},{"version":"7fb266686238369442bd1719bc0d7edd0199da4fb8540354e1ff7f16669b4323","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","impliedFormat":1},{"version":"beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","impliedFormat":1},{"version":"c183b931b68ad184bc8e8372bf663f3d33304772fb482f29fb91b3c391031f3e","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"48cc3ec153b50985fb95153258a710782b25975b10dd4ac8a4f3920632d10790","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"e1528ca65ac90f6fa0e4a247eb656b4263c470bb22d9033e466463e13395e599","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"866078923a56d026e39243b4392e282c1c63159723996fa89243140e1388a98d","impliedFormat":1},{"version":"f724236417941ea77ec8d38c6b7021f5fb7f8521c7f8c1538e87661f2c6a0774","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d97fb21da858fb18b8ae72c314e9743fd52f73ebe2764e12af1db32fc03f853f","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ea15fd99b2e34cb25fe8346c955000bb70c8b423ae4377a972ef46bfb37f595","impliedFormat":1},{"version":"7cf69dd5502c41644c9e5106210b5da7144800670cbe861f66726fa209e231c4","impliedFormat":1},{"version":"72c1f5e0a28e473026074817561d1bc9647909cf253c8d56c41d1df8d95b85f7","impliedFormat":1},{"version":"f9b4137a0d285bd77dba2e6e895530112264310ae47e07bf311feae428fb8b61","affectsGlobalScope":true,"impliedFormat":1},{"version":"c06b2652ffeb89afd0f1c52c165ced77032f9cd09bc481153fbd6b5504c69494","impliedFormat":1},{"version":"51aecd2df90a3cffea1eb4696b33b2d78594ea2aa2138e6b9471ec4841c6c2ee","impliedFormat":1},{"version":"9d8f9e63e29a3396285620908e7f14d874d066caea747dc4b2c378f0599166b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"612422d5ba6b4a5c4537f423e9199645468ad80a689801da63ab7edb43f7b835","impliedFormat":1},{"version":"db9ada976f9e52e13f7ae8b9a320f4b67b87685938c5879187d8864b2fbe97f3","impliedFormat":1},{"version":"9f39e70a354d0fba29ac3cdf6eca00b7f9e96f64b2b2780c432e8ea27f133743","impliedFormat":1},{"version":"0dace96cc0f7bc6d0ee2044921bdf19fe42d16284dbcc8ae200800d1c9579335","impliedFormat":1},{"version":"a2e2bbde231b65c53c764c12313897ffdfb6c49183dd31823ee2405f2f7b5378","impliedFormat":1},{"version":"ad1cc0ed328f3f708771272021be61ab146b32ecf2b78f3224959ff1e2cd2a5c","impliedFormat":1},{"version":"c64e1888baaa3253ca4405b455e4bf44f76357868a1bd0a52998ade9a092ad78","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc8c6f5322961b56d9906601b20798725df60baeab45ec014fba9f795d5596fd","impliedFormat":1},{"version":"0904660ae854e6d41f6ff25356db1d654436c6305b0f0aa89d1532df0253486e","impliedFormat":1},{"version":"060d305fe4494d8cb2b99d620928d369d1ee55c1645f5e729a2aca07d0f108cb","impliedFormat":1},{"version":"230bdc111d7578276e4a3bb9d075d85c78c6b68f428c3a9935e2eaa10f4ae1f5","impliedFormat":1},{"version":"0c50296ee73dae94efc3f0da4936b1146ca6ce2217acfabb44c19c9a33fa30e5","impliedFormat":1},{"version":"bbf42f98a5819f4f06e18c8b669a994afe9a17fe520ae3454a195e6eabf7700d","impliedFormat":1},{"version":"0e5974dfff7a97181c7c376545f126b20acf2f1341db7d3fccea4977bf3ce19c","impliedFormat":1},{"version":"c7f977ea78a1b060a30554c1c4ec0e2269c6e305a349ca2ada14931ac27ecc0b","affectsGlobalScope":true,"impliedFormat":1},{"version":"145dcf25fd4967c610c53d93d7bc4dce8fbb1b6dd7935362472d4ae49363c7ba","impliedFormat":1},{"version":"ff65b8a8bd380c6d129becc35de02f7c29ad7ce03300331ca91311fb4044d1a9","impliedFormat":1},{"version":"04bf1aa481d1adfb16d93d76e44ce71c51c8ef68039d849926551199489637f6","impliedFormat":1},{"version":"2c9adcc85574b002c9a6311ff2141055769e0071856ec979d92ff989042b1f1b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b8bf3fe89ec8baa335f6370b9fa36308e1bc7a72e2eb2dad1e94f31e27fa28b5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a58a15da4c5ba3df60c910a043281256fa52d36a0fcdef9b9100c646282e88dd","impliedFormat":1},{"version":"b36beffbf8acdc3ebc58c8bb4b75574b31a2169869c70fc03f82895b93950a12","impliedFormat":1},{"version":"de263f0089aefbfd73c89562fb7254a7468b1f33b61839aafc3f035d60766cb4","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"8c81fd4a110490c43d7c578e8c6f69b3af01717189196899a6a44f93daa57a3a","impliedFormat":1},{"version":"5fb39858b2459864b139950a09adae4f38dad87c25bf572ce414f10e4bd7baab","impliedFormat":1},{"version":"35390d6fa94bdb432c5d0bcb6547bdd11406c2692a6b90b9e47be2105ea19bd6","impliedFormat":1},{"version":"b33b74b97952d9bf4fbd2951dcfbb5136656ddb310ce1c84518aaa77dbca9992","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"8d117798e5228c7fdff887f44851d07320739c5cc0d511afae8f250c51809a36","affectsGlobalScope":true,"impliedFormat":1},{"version":"c119835edf36415081dfd9ed15fc0cd37aaa28d232be029ad073f15f3d88c323","impliedFormat":1},{"version":"8e7c3bed5f19ade8f911677ddc83052e2283e25b0a8654cd89db9079d4b323c7","impliedFormat":1},{"version":"9705cd157ffbb91c5cab48bdd2de5a437a372e63f870f8a8472e72ff634d47c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae86f30d5d10e4f75ce8dcb6e1bd3a12ecec3d071a21e8f462c5c85c678efb41","impliedFormat":1},{"version":"ccf3afaeebbeee4ca9092101e99fd6abd681116b6e5ec23e381bbb1e1f32262c","impliedFormat":1},{"version":"e03460fe72b259f6d25ad029f085e4bedc3f90477da4401d8fbc1efa9793230e","impliedFormat":1},{"version":"4286a3a6619514fca656089aee160bb6f2e77f4dd53dc5a96b26a0b4fc778055","impliedFormat":1},{"version":"ab7818a9d57a9297b90e456fc68b77f84d74395a9210a3cfa9d87db33aff8b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb08062718a5470cd864c1fae0eb5b3a3adc5bcd05dcf87608d6f60b65eca3f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"3a815b7d1aebc0646b91548eab2fc19dada09ff255d04c71ced00bbd3058c8eb","impliedFormat":1},{"version":"255d948f87f24ffd57bcb2fdf95792fd418a2e1f712a98cf2cce88744d75085c","impliedFormat":1},{"version":"0d5b085f36e6dc55bc6332ecb9c733be3a534958c238fb8d8d18d4a2b6f2a15a","impliedFormat":1},{"version":"836b36913830645ac3b28fe33731aac3fdb3524ee8adbb4cdab9a5c189f41943","affectsGlobalScope":true,"impliedFormat":1},{"version":"bfd3b3c21a56104693183942e221c1896ee23bcb8f8d91ab0b941f7b32985411","impliedFormat":1},{"version":"d7e9ab1b0996639047c61c1e62f85c620e4382206b3abb430d9a21fb7bc23c77","impliedFormat":1}],"root":[[81,89]],"options":{"allowImportingTsExtensions":true,"allowJs":false,"allowUnreachableCode":false,"allowUnusedLabels":false,"declaration":true,"emitDeclarationOnly":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"exactOptionalPropertyTypes":true,"experimentalDecorators":true,"module":199,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"outDir":"./esm","removeComments":true,"rootDir":"../src","skipLibCheck":true,"sourceMap":false,"strict":true,"target":9,"tsBuildInfoFile":"./tsconfig.generate-typings.tsbuildinfo"},"referencedMap":[[90,1],[144,2],[145,2],[146,3],[93,4],[147,5],[148,6],[149,7],[91,1],[150,8],[151,9],[152,10],[153,11],[154,12],[155,13],[156,13],[157,14],[158,15],[159,16],[160,17],[94,1],[92,1],[161,18],[162,19],[163,20],[197,21],[164,22],[165,1],[166,23],[167,24],[168,25],[169,26],[170,27],[171,28],[172,29],[173,30],[174,31],[175,31],[176,32],[177,1],[178,33],[179,34],[181,35],[180,36],[182,37],[183,38],[184,39],[185,40],[186,41],[187,42],[188,43],[189,44],[190,45],[191,46],[192,47],[193,48],[194,49],[95,1],[96,50],[97,1],[98,1],[140,51],[141,52],[142,1],[143,37],[195,53],[196,54],[79,1],[80,1],[14,1],[13,1],[2,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[3,1],[23,1],[24,1],[4,1],[25,1],[29,1],[26,1],[27,1],[28,1],[30,1],[31,1],[32,1],[5,1],[33,1],[34,1],[35,1],[36,1],[6,1],[40,1],[37,1],[38,1],[39,1],[41,1],[7,1],[42,1],[47,1],[48,1],[43,1],[44,1],[45,1],[46,1],[8,1],[52,1],[49,1],[50,1],[51,1],[53,1],[9,1],[54,1],[55,1],[56,1],[58,1],[57,1],[59,1],[60,1],[10,1],[61,1],[62,1],[63,1],[11,1],[64,1],[65,1],[66,1],[67,1],[68,1],[1,1],[69,1],[70,1],[12,1],[74,1],[72,1],[77,1],[76,1],[71,1],[75,1],[73,1],[78,1],[116,55],[128,56],[114,57],[129,58],[138,59],[105,60],[106,61],[104,62],[137,63],[132,64],[136,65],[108,66],[125,67],[107,68],[135,69],[102,70],[103,64],[109,71],[110,1],[115,72],[113,71],[100,73],[139,74],[130,75],[119,76],[118,71],[120,77],[123,78],[117,79],[121,80],[133,63],[111,81],[112,82],[124,83],[101,58],[127,84],[126,71],[122,85],[131,1],[99,1],[134,86],[82,87],[81,1],[84,88],[83,87],[87,89],[86,90],[85,1],[88,1],[89,1]],"version":"5.9.3"}
package/package.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "@williamthorsen/toolbelt.datetime",
3
+ "version": "3.2.2",
4
+ "description": "API",
5
+ "keywords": [],
6
+ "homepage": "https://github.com/williamthorsen/toolbelt/tree/main/packages/datetime#readme",
7
+ "bugs": {
8
+ "url": "https://github.com/williamthorsen/toolbelt/issues"
9
+ },
10
+ "license": "UNLICENSED",
11
+ "author": "William Thorsen <william@thorsen.dev> (https://github.com/williamthorsen)",
12
+ "type": "module",
13
+ "exports": {
14
+ ".": {
15
+ "import": "./dist/esm/4-release/index.js"
16
+ },
17
+ "./candidate": {
18
+ "import": "./dist/esm/3-candidate/index.js"
19
+ },
20
+ "./draft": {
21
+ "import": "./dist/esm/2-draft/index.js"
22
+ },
23
+ "./proposed": {
24
+ "import": "./dist/esm/1-proposed/index.js"
25
+ }
26
+ },
27
+ "files": [
28
+ "dist/*",
29
+ "CHANGELOG.md"
30
+ ],
31
+ "engines": {
32
+ "node": ">=24.0.0"
33
+ },
34
+ "publishConfig": {
35
+ "access": "public",
36
+ "registry": "https://registry.npmjs.org"
37
+ },
38
+ "scripts": {
39
+ "publish:github": "pnpm publish",
40
+ "ws": "node --import tsx ../../scripts/run-workspace-script.ts --int-test"
41
+ }
42
+ }