@maci-protocol/domainobjs 0.0.0-ci.da13fbb → 0.0.0-ci.de69b3e
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/build/ts/ballot.d.ts +4 -3
- package/build/ts/ballot.d.ts.map +1 -1
- package/build/ts/ballot.js +9 -8
- package/build/ts/ballot.js.map +1 -1
- package/build/ts/index.d.ts +3 -2
- package/build/ts/index.d.ts.map +1 -1
- package/build/ts/index.js +5 -3
- package/build/ts/index.js.map +1 -1
- package/build/ts/types.d.ts +17 -0
- package/build/ts/types.d.ts.map +1 -1
- package/build/ts/voteCounts.d.ts +63 -0
- package/build/ts/voteCounts.d.ts.map +1 -0
- package/build/ts/voteCounts.js +110 -0
- package/build/ts/voteCounts.js.map +1 -0
- package/build/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +5 -5
package/build/ts/ballot.d.ts
CHANGED
|
@@ -7,12 +7,13 @@ export declare class Ballot {
|
|
|
7
7
|
votes: bigint[];
|
|
8
8
|
nonce: bigint;
|
|
9
9
|
voteOptionTreeDepth: number;
|
|
10
|
+
totalVoteOptions: number;
|
|
10
11
|
/**
|
|
11
12
|
* Create a new Ballot instance
|
|
12
|
-
* @param
|
|
13
|
-
* @param
|
|
13
|
+
* @param totalVoteOptions How many vote options are available in the poll
|
|
14
|
+
* @param voteOptionTreeDepth The depth of the merkle tree holding the vote options
|
|
14
15
|
*/
|
|
15
|
-
constructor(
|
|
16
|
+
constructor(totalVoteOptions: number, voteOptionTreeDepth: number);
|
|
16
17
|
/**
|
|
17
18
|
* Generate an hash of this ballot
|
|
18
19
|
* @returns The hash of the ballot
|
package/build/ts/ballot.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ballot.d.ts","sourceRoot":"","sources":["../../ts/ballot.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAE3C;;;GAGG;AACH,qBAAa,MAAM;IACjB,KAAK,EAAE,MAAM,EAAE,CAAM;IAErB,KAAK,SAAa;IAElB,mBAAmB,EAAE,MAAM,CAAC;IAE5B;;;;OAIG;gBACS,
|
|
1
|
+
{"version":3,"file":"ballot.d.ts","sourceRoot":"","sources":["../../ts/ballot.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAE3C;;;GAGG;AACH,qBAAa,MAAM;IACjB,KAAK,EAAE,MAAM,EAAE,CAAM;IAErB,KAAK,SAAa;IAElB,mBAAmB,EAAE,MAAM,CAAC;IAE5B,gBAAgB,EAAE,MAAM,CAAC;IAEzB;;;;OAIG;gBACS,gBAAgB,EAAE,MAAM,EAAE,mBAAmB,EAAE,MAAM;IAYjE;;;OAGG;IACH,IAAI,QAAO,MAAM,CAGf;IAEF;;;OAGG;IACH,eAAe,QAAO,MAAM,EAAE,CAAmB;IAEjD;;;;OAIG;IACH,OAAO,QAAO,MAAM,EAAE,CAWpB;IAEF;;;OAGG;IACH,IAAI,QAAO,MAAM,CAMf;IAEF;;;;OAIG;IACH,MAAM,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO;IAK1B;;;;;OAKG;IACH,MAAM,CAAC,cAAc,CAAC,gBAAgB,EAAE,MAAM,EAAE,mBAAmB,EAAE,MAAM,GAAG,MAAM;IAMpF;;;;;OAKG;IACH,MAAM,CAAC,aAAa,CAAC,gBAAgB,EAAE,MAAM,EAAE,mBAAmB,EAAE,MAAM,GAAG,MAAM;IAInF;;OAEG;IACH,MAAM,IAAI,WAAW;IAQrB;;;;OAIG;IACH,MAAM,CAAC,QAAQ,CAAC,IAAI,EAAE,WAAW,GAAG,MAAM;CAM3C"}
|
package/build/ts/ballot.js
CHANGED
|
@@ -13,10 +13,10 @@ const assert_1 = __importDefault(require("assert"));
|
|
|
13
13
|
class Ballot {
|
|
14
14
|
/**
|
|
15
15
|
* Create a new Ballot instance
|
|
16
|
-
* @param
|
|
17
|
-
* @param
|
|
16
|
+
* @param totalVoteOptions How many vote options are available in the poll
|
|
17
|
+
* @param voteOptionTreeDepth The depth of the merkle tree holding the vote options
|
|
18
18
|
*/
|
|
19
|
-
constructor(
|
|
19
|
+
constructor(totalVoteOptions, voteOptionTreeDepth) {
|
|
20
20
|
this.votes = [];
|
|
21
21
|
this.nonce = BigInt(0);
|
|
22
22
|
/**
|
|
@@ -57,11 +57,12 @@ class Ballot {
|
|
|
57
57
|
b.nonce = BigInt(this.nonce.toString());
|
|
58
58
|
return b;
|
|
59
59
|
};
|
|
60
|
-
|
|
61
|
-
(0, assert_1.default)(
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
60
|
+
(0, assert_1.default)(5 ** voteOptionTreeDepth >= totalVoteOptions);
|
|
61
|
+
(0, assert_1.default)(totalVoteOptions >= 0);
|
|
62
|
+
this.voteOptionTreeDepth = voteOptionTreeDepth;
|
|
63
|
+
this.totalVoteOptions = totalVoteOptions;
|
|
64
|
+
for (let i = 0; i < totalVoteOptions; i += 1) {
|
|
65
|
+
this.votes.push(0n);
|
|
65
66
|
}
|
|
66
67
|
}
|
|
67
68
|
/**
|
package/build/ts/ballot.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ballot.js","sourceRoot":"","sources":["../../ts/ballot.ts"],"names":[],"mappings":";;;;;;AAAA,kDAAsG;AAEtG,oDAA4B;AAI5B;;;GAGG;AACH,MAAa,MAAM;
|
|
1
|
+
{"version":3,"file":"ballot.js","sourceRoot":"","sources":["../../ts/ballot.ts"],"names":[],"mappings":"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"}
|
package/build/ts/index.d.ts
CHANGED
|
@@ -5,7 +5,8 @@ export { PublicKey, SERIALIZED_PUB_KEY_PREFIX } from "./publicKey";
|
|
|
5
5
|
export { Keypair } from "./keyPair";
|
|
6
6
|
export { StateLeaf } from "./stateLeaf";
|
|
7
7
|
export { blankStateLeaf, blankStateLeafHash, padKey } from "./constants";
|
|
8
|
-
export type { Proof, IStateLeaf, VoteOptionTreeLeaf, IJsonKeyPair, IJsonPrivateKey, IJsonPublicKey, IJsonStateLeaf, IG1ContractParams, IG2ContractParams, IVerifyingKeyContractParams, IVerifyingKeyObjectParams, IStateLeafContractParams, IMessageContractParams, IJsonBallot, } from "./types";
|
|
9
|
-
export { type IJsonTCommand, type IJsonPCommand, VoteCommand } from "./commands";
|
|
10
8
|
export { VerifyingKey } from "./verifyingKey";
|
|
9
|
+
export { VoteCounts } from "./voteCounts";
|
|
10
|
+
export type { Proof, IStateLeaf, VoteOptionTreeLeaf, IJsonKeyPair, IJsonPrivateKey, IJsonPublicKey, IJsonStateLeaf, IG1ContractParams, IG2ContractParams, IVerifyingKeyContractParams, IVerifyingKeyObjectParams, IStateLeafContractParams, IMessageContractParams, IJsonBallot, IJsonVoteCounts, } from "./types";
|
|
11
|
+
export { type IJsonTCommand, type IJsonPCommand, VoteCommand } from "./commands";
|
|
11
12
|
//# sourceMappingURL=index.d.ts.map
|
package/build/ts/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../ts/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../ts/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,UAAU,EAAE,0BAA0B,EAAE,MAAM,cAAc,CAAC;AACtE,OAAO,EAAE,SAAS,EAAE,yBAAyB,EAAE,MAAM,aAAa,CAAC;AACnE,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,cAAc,EAAE,kBAAkB,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AACzE,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAE1C,YAAY,EACV,KAAK,EACL,UAAU,EACV,kBAAkB,EAClB,YAAY,EACZ,eAAe,EACf,cAAc,EACd,cAAc,EACd,iBAAiB,EACjB,iBAAiB,EACjB,2BAA2B,EAC3B,yBAAyB,EACzB,wBAAwB,EACxB,sBAAsB,EACtB,WAAW,EACX,eAAe,GAChB,MAAM,SAAS,CAAC;AAEjB,OAAO,EAAE,KAAK,aAAa,EAAE,KAAK,aAAa,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC"}
|
package/build/ts/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.VoteCommand = exports.VoteCounts = exports.VerifyingKey = exports.padKey = exports.blankStateLeafHash = exports.blankStateLeaf = exports.StateLeaf = exports.Keypair = exports.SERIALIZED_PUB_KEY_PREFIX = exports.PublicKey = exports.SERIALIZED_PRIV_KEY_PREFIX = exports.PrivateKey = exports.Message = exports.Ballot = void 0;
|
|
4
4
|
var ballot_1 = require("./ballot");
|
|
5
5
|
Object.defineProperty(exports, "Ballot", { enumerable: true, get: function () { return ballot_1.Ballot; } });
|
|
6
6
|
var message_1 = require("./message");
|
|
@@ -19,8 +19,10 @@ var constants_1 = require("./constants");
|
|
|
19
19
|
Object.defineProperty(exports, "blankStateLeaf", { enumerable: true, get: function () { return constants_1.blankStateLeaf; } });
|
|
20
20
|
Object.defineProperty(exports, "blankStateLeafHash", { enumerable: true, get: function () { return constants_1.blankStateLeafHash; } });
|
|
21
21
|
Object.defineProperty(exports, "padKey", { enumerable: true, get: function () { return constants_1.padKey; } });
|
|
22
|
-
var commands_1 = require("./commands");
|
|
23
|
-
Object.defineProperty(exports, "VoteCommand", { enumerable: true, get: function () { return commands_1.VoteCommand; } });
|
|
24
22
|
var verifyingKey_1 = require("./verifyingKey");
|
|
25
23
|
Object.defineProperty(exports, "VerifyingKey", { enumerable: true, get: function () { return verifyingKey_1.VerifyingKey; } });
|
|
24
|
+
var voteCounts_1 = require("./voteCounts");
|
|
25
|
+
Object.defineProperty(exports, "VoteCounts", { enumerable: true, get: function () { return voteCounts_1.VoteCounts; } });
|
|
26
|
+
var commands_1 = require("./commands");
|
|
27
|
+
Object.defineProperty(exports, "VoteCommand", { enumerable: true, get: function () { return commands_1.VoteCommand; } });
|
|
26
28
|
//# sourceMappingURL=index.js.map
|
package/build/ts/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../ts/index.ts"],"names":[],"mappings":";;;AAAA,mCAAkC;AAAzB,gGAAA,MAAM,OAAA;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../ts/index.ts"],"names":[],"mappings":";;;AAAA,mCAAkC;AAAzB,gGAAA,MAAM,OAAA;AACf,qCAAoC;AAA3B,kGAAA,OAAO,OAAA;AAChB,2CAAsE;AAA7D,wGAAA,UAAU,OAAA;AAAE,wHAAA,0BAA0B,OAAA;AAC/C,yCAAmE;AAA1D,sGAAA,SAAS,OAAA;AAAE,sHAAA,yBAAyB,OAAA;AAC7C,qCAAoC;AAA3B,kGAAA,OAAO,OAAA;AAChB,yCAAwC;AAA/B,sGAAA,SAAS,OAAA;AAClB,yCAAyE;AAAhE,2GAAA,cAAc,OAAA;AAAE,+GAAA,kBAAkB,OAAA;AAAE,mGAAA,MAAM,OAAA;AACnD,+CAA8C;AAArC,4GAAA,YAAY,OAAA;AACrB,2CAA0C;AAAjC,wGAAA,UAAU,OAAA;AAoBnB,uCAAiF;AAAhC,uGAAA,WAAW,OAAA"}
|
package/build/ts/types.d.ts
CHANGED
|
@@ -70,4 +70,21 @@ export interface IJsonBallot {
|
|
|
70
70
|
nonce: BigNumberish;
|
|
71
71
|
voteOptionTreeDepth: BigNumberish;
|
|
72
72
|
}
|
|
73
|
+
/**
|
|
74
|
+
* A JSON representation of the vote counts
|
|
75
|
+
*/
|
|
76
|
+
export interface IJsonVoteCounts {
|
|
77
|
+
/**
|
|
78
|
+
* The vote counts for each vote option in the poll
|
|
79
|
+
*/
|
|
80
|
+
counts: BigNumberish[];
|
|
81
|
+
/**
|
|
82
|
+
* The nonce for the vote counts
|
|
83
|
+
*/
|
|
84
|
+
nonce: BigNumberish;
|
|
85
|
+
/**
|
|
86
|
+
* The depth of the merkle tree holding the vote options
|
|
87
|
+
*/
|
|
88
|
+
voteOptionTreeDepth: BigNumberish;
|
|
89
|
+
}
|
|
73
90
|
//# sourceMappingURL=types.d.ts.map
|
package/build/ts/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../ts/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAC7C,OAAO,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,uBAAuB,CAAC;AAE9D;;GAEG;AACH,MAAM,WAAW,KAAK;IACpB,CAAC,EAAE,OAAO,CAAC;IACX,CAAC,EAAE,OAAO,CAAC;IACX,CAAC,EAAE,OAAO,CAAC;CACZ;AAED;;GAEG;AACH,MAAM,WAAW,UAAU;IACzB,SAAS,EAAE,SAAS,CAAC;IACrB,kBAAkB,EAAE,MAAM,CAAC;CAC5B;AAED;;GAEG;AACH,MAAM,WAAW,kBAAkB;IACjC,KAAK,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,YAAY;IAC3B,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,MAAM,eAAe,GAAG,IAAI,CAAC,YAAY,EAAE,YAAY,CAAC,CAAC;AAE/D,MAAM,MAAM,cAAc,GAAG,IAAI,CAAC,YAAY,EAAE,WAAW,CAAC,CAAC;AAE7D,MAAM,WAAW,cAAc;IAC7B,SAAS,EAAE,MAAM,CAAC;IAClB,kBAAkB,EAAE,MAAM,CAAC;CAC5B;AAED,MAAM,MAAM,YAAY,GAAG,MAAM,GAAG,MAAM,GAAG,MAAM,CAAC;AAEpD,MAAM,WAAW,iBAAiB;IAChC,CAAC,EAAE,YAAY,CAAC;IAChB,CAAC,EAAE,YAAY,CAAC;CACjB;AAED,MAAM,WAAW,iBAAiB;IAChC,CAAC,EAAE,YAAY,EAAE,CAAC;IAClB,CAAC,EAAE,YAAY,EAAE,CAAC;CACnB;AAED,MAAM,WAAW,2BAA2B;IAC1C,MAAM,EAAE,iBAAiB,CAAC;IAC1B,KAAK,EAAE,iBAAiB,CAAC;IACzB,MAAM,EAAE,iBAAiB,CAAC;IAC1B,MAAM,EAAE,iBAAiB,CAAC;IAC1B,EAAE,EAAE,iBAAiB,EAAE,CAAC;CACzB;AAED,MAAM,WAAW,yBAAyB;IACxC,QAAQ,EAAE,YAAY,CAAC;IACvB,KAAK,EAAE,YAAY,CAAC;IACpB,OAAO,EAAE,YAAY,CAAC;IACtB,UAAU,EAAE,YAAY,EAAE,CAAC;IAC3B,SAAS,EAAE,YAAY,EAAE,EAAE,CAAC;IAC5B,UAAU,EAAE,YAAY,EAAE,EAAE,CAAC;IAC7B,UAAU,EAAE,YAAY,EAAE,EAAE,CAAC;IAC7B,eAAe,EAAE,YAAY,EAAE,EAAE,EAAE,CAAC;IACpC,EAAE,EAAE,YAAY,EAAE,EAAE,CAAC;CACtB;AAED,MAAM,WAAW,wBAAwB;IACvC,SAAS,EAAE,iBAAiB,CAAC;IAC7B,kBAAkB,EAAE,YAAY,CAAC;CAClC;AAED,MAAM,WAAW,sBAAsB;IACrC,IAAI,EAAE,YAAY,EAAE,CAAC;CACtB;AAED,MAAM,WAAW,WAAW;IAC1B,KAAK,EAAE,YAAY,EAAE,CAAC;IACtB,KAAK,EAAE,YAAY,CAAC;IACpB,mBAAmB,EAAE,YAAY,CAAC;CACnC"}
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../ts/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAC7C,OAAO,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,uBAAuB,CAAC;AAE9D;;GAEG;AACH,MAAM,WAAW,KAAK;IACpB,CAAC,EAAE,OAAO,CAAC;IACX,CAAC,EAAE,OAAO,CAAC;IACX,CAAC,EAAE,OAAO,CAAC;CACZ;AAED;;GAEG;AACH,MAAM,WAAW,UAAU;IACzB,SAAS,EAAE,SAAS,CAAC;IACrB,kBAAkB,EAAE,MAAM,CAAC;CAC5B;AAED;;GAEG;AACH,MAAM,WAAW,kBAAkB;IACjC,KAAK,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,YAAY;IAC3B,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,MAAM,eAAe,GAAG,IAAI,CAAC,YAAY,EAAE,YAAY,CAAC,CAAC;AAE/D,MAAM,MAAM,cAAc,GAAG,IAAI,CAAC,YAAY,EAAE,WAAW,CAAC,CAAC;AAE7D,MAAM,WAAW,cAAc;IAC7B,SAAS,EAAE,MAAM,CAAC;IAClB,kBAAkB,EAAE,MAAM,CAAC;CAC5B;AAED,MAAM,MAAM,YAAY,GAAG,MAAM,GAAG,MAAM,GAAG,MAAM,CAAC;AAEpD,MAAM,WAAW,iBAAiB;IAChC,CAAC,EAAE,YAAY,CAAC;IAChB,CAAC,EAAE,YAAY,CAAC;CACjB;AAED,MAAM,WAAW,iBAAiB;IAChC,CAAC,EAAE,YAAY,EAAE,CAAC;IAClB,CAAC,EAAE,YAAY,EAAE,CAAC;CACnB;AAED,MAAM,WAAW,2BAA2B;IAC1C,MAAM,EAAE,iBAAiB,CAAC;IAC1B,KAAK,EAAE,iBAAiB,CAAC;IACzB,MAAM,EAAE,iBAAiB,CAAC;IAC1B,MAAM,EAAE,iBAAiB,CAAC;IAC1B,EAAE,EAAE,iBAAiB,EAAE,CAAC;CACzB;AAED,MAAM,WAAW,yBAAyB;IACxC,QAAQ,EAAE,YAAY,CAAC;IACvB,KAAK,EAAE,YAAY,CAAC;IACpB,OAAO,EAAE,YAAY,CAAC;IACtB,UAAU,EAAE,YAAY,EAAE,CAAC;IAC3B,SAAS,EAAE,YAAY,EAAE,EAAE,CAAC;IAC5B,UAAU,EAAE,YAAY,EAAE,EAAE,CAAC;IAC7B,UAAU,EAAE,YAAY,EAAE,EAAE,CAAC;IAC7B,eAAe,EAAE,YAAY,EAAE,EAAE,EAAE,CAAC;IACpC,EAAE,EAAE,YAAY,EAAE,EAAE,CAAC;CACtB;AAED,MAAM,WAAW,wBAAwB;IACvC,SAAS,EAAE,iBAAiB,CAAC;IAC7B,kBAAkB,EAAE,YAAY,CAAC;CAClC;AAED,MAAM,WAAW,sBAAsB;IACrC,IAAI,EAAE,YAAY,EAAE,CAAC;CACtB;AAED,MAAM,WAAW,WAAW;IAC1B,KAAK,EAAE,YAAY,EAAE,CAAC;IACtB,KAAK,EAAE,YAAY,CAAC;IACpB,mBAAmB,EAAE,YAAY,CAAC;CACnC;AAED;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B;;OAEG;IACH,MAAM,EAAE,YAAY,EAAE,CAAC;IAEvB;;OAEG;IACH,KAAK,EAAE,YAAY,CAAC;IAEpB;;OAEG;IACH,mBAAmB,EAAE,YAAY,CAAC;CACnC"}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import type { IJsonVoteCounts } from "./types";
|
|
2
|
+
/**
|
|
3
|
+
* A VoteCounts represents a User's vote counts in a Poll, as well as their next valid
|
|
4
|
+
* nonce.
|
|
5
|
+
*/
|
|
6
|
+
export declare class VoteCounts {
|
|
7
|
+
counts: bigint[];
|
|
8
|
+
nonce: bigint;
|
|
9
|
+
voteOptionTreeDepth: number;
|
|
10
|
+
/**
|
|
11
|
+
* Create a new VoteCounts instance
|
|
12
|
+
* @param totalVoteOptions How many vote options are available in the poll
|
|
13
|
+
* @param voteOptionTreeDepth The depth of the merkle tree holding the vote options
|
|
14
|
+
*/
|
|
15
|
+
constructor(totalVoteOptions: number, voteOptionTreeDepth: number);
|
|
16
|
+
/**
|
|
17
|
+
* Generate a blank VoteCounts object
|
|
18
|
+
* @param totalVoteOptions How many vote options are available
|
|
19
|
+
* @param voteOptionTreeDepth How deep is the merkle tree holding the vote options
|
|
20
|
+
* @returns a Blank VoteCounts object
|
|
21
|
+
*/
|
|
22
|
+
static generateBlank(totalVoteOptions: number, voteOptionTreeDepth: number): VoteCounts;
|
|
23
|
+
/**
|
|
24
|
+
* Generate an hash of this vote counts
|
|
25
|
+
* @returns The hash of the vote counts
|
|
26
|
+
*/
|
|
27
|
+
hash: () => bigint;
|
|
28
|
+
/**
|
|
29
|
+
* Convert in a format suitable for the circuit
|
|
30
|
+
* @returns the vote counts as a BigInt array
|
|
31
|
+
*/
|
|
32
|
+
asCircuitInputs: () => bigint[];
|
|
33
|
+
/**
|
|
34
|
+
* Convert in a an array of bigints
|
|
35
|
+
* @notice this is the nonce and the root of the vote option tree
|
|
36
|
+
* @returns the vote counts as a bigint array
|
|
37
|
+
*/
|
|
38
|
+
asArray: () => bigint[];
|
|
39
|
+
/**
|
|
40
|
+
* Create a deep clone of this VoteCounts
|
|
41
|
+
* @returns a copy of the vote counts
|
|
42
|
+
*/
|
|
43
|
+
copy: () => VoteCounts;
|
|
44
|
+
/**
|
|
45
|
+
* Check if two vote counts are equal (same counts and same nonce)
|
|
46
|
+
* @param voteCounts - The vote counts to compare with
|
|
47
|
+
* @returns whether the two vote counts are equal
|
|
48
|
+
*/
|
|
49
|
+
equals(voteCounts: VoteCounts): boolean;
|
|
50
|
+
/**
|
|
51
|
+
* Serialize to a JSON object
|
|
52
|
+
*
|
|
53
|
+
* @returns the JSON representation of the vote counts
|
|
54
|
+
*/
|
|
55
|
+
toJSON(): IJsonVoteCounts;
|
|
56
|
+
/**
|
|
57
|
+
* Deserialize into a VoteCounts instance
|
|
58
|
+
* @param json - the json representation
|
|
59
|
+
* @returns the deserialized object as a VoteCounts instance
|
|
60
|
+
*/
|
|
61
|
+
static fromJSON(json: IJsonVoteCounts): VoteCounts;
|
|
62
|
+
}
|
|
63
|
+
//# sourceMappingURL=voteCounts.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"voteCounts.d.ts","sourceRoot":"","sources":["../../ts/voteCounts.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;AAE/C;;;GAGG;AACH,qBAAa,UAAU;IACrB,MAAM,EAAE,MAAM,EAAE,CAAM;IAEtB,KAAK,SAAM;IAEX,mBAAmB,EAAE,MAAM,CAAC;IAE5B;;;;OAIG;gBACS,gBAAgB,EAAE,MAAM,EAAE,mBAAmB,EAAE,MAAM;IAWjE;;;;;OAKG;IACH,MAAM,CAAC,aAAa,CAAC,gBAAgB,EAAE,MAAM,EAAE,mBAAmB,EAAE,MAAM,GAAG,UAAU;IAIvF;;;OAGG;IACH,IAAI,QAAO,MAAM,CAIf;IAEF;;;OAGG;IACH,eAAe,QAAO,MAAM,EAAE,CAAmB;IAEjD;;;;OAIG;IACH,OAAO,QAAO,MAAM,EAAE,CAWpB;IAEF;;;OAGG;IACH,IAAI,QAAO,UAAU,CAOnB;IAEF;;;;OAIG;IACH,MAAM,CAAC,UAAU,EAAE,UAAU,GAAG,OAAO;IAMvC;;;;OAIG;IACH,MAAM,IAAI,eAAe;IAQzB;;;;OAIG;IACH,MAAM,CAAC,QAAQ,CAAC,IAAI,EAAE,eAAe,GAAG,UAAU;CAOnD"}
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.VoteCounts = void 0;
|
|
7
|
+
const crypto_1 = require("@maci-protocol/crypto");
|
|
8
|
+
const assert_1 = __importDefault(require("assert"));
|
|
9
|
+
/**
|
|
10
|
+
* A VoteCounts represents a User's vote counts in a Poll, as well as their next valid
|
|
11
|
+
* nonce.
|
|
12
|
+
*/
|
|
13
|
+
class VoteCounts {
|
|
14
|
+
/**
|
|
15
|
+
* Create a new VoteCounts instance
|
|
16
|
+
* @param totalVoteOptions How many vote options are available in the poll
|
|
17
|
+
* @param voteOptionTreeDepth The depth of the merkle tree holding the vote options
|
|
18
|
+
*/
|
|
19
|
+
constructor(totalVoteOptions, voteOptionTreeDepth) {
|
|
20
|
+
this.counts = [];
|
|
21
|
+
this.nonce = 0n;
|
|
22
|
+
/**
|
|
23
|
+
* Generate an hash of this vote counts
|
|
24
|
+
* @returns The hash of the vote counts
|
|
25
|
+
*/
|
|
26
|
+
this.hash = () => {
|
|
27
|
+
const [nonce, root] = this.asArray();
|
|
28
|
+
return (0, crypto_1.hashLeftRight)(nonce, root);
|
|
29
|
+
};
|
|
30
|
+
/**
|
|
31
|
+
* Convert in a format suitable for the circuit
|
|
32
|
+
* @returns the vote counts as a BigInt array
|
|
33
|
+
*/
|
|
34
|
+
this.asCircuitInputs = () => this.asArray();
|
|
35
|
+
/**
|
|
36
|
+
* Convert in a an array of bigints
|
|
37
|
+
* @notice this is the nonce and the root of the vote option tree
|
|
38
|
+
* @returns the vote counts as a bigint array
|
|
39
|
+
*/
|
|
40
|
+
this.asArray = () => {
|
|
41
|
+
const lastIndex = this.counts.length - 1;
|
|
42
|
+
const foundIndex = this.counts.findIndex((_, index) => this.counts[lastIndex - index] !== 0n);
|
|
43
|
+
const lastIndexToInsert = foundIndex >= 0 ? lastIndex - foundIndex : -1;
|
|
44
|
+
const voteCountsTree = new crypto_1.IncrementalQuinTree(this.voteOptionTreeDepth, 0n, 5, crypto_1.hash5);
|
|
45
|
+
for (let i = 0; i <= lastIndexToInsert; i += 1) {
|
|
46
|
+
voteCountsTree.insert(this.counts[i]);
|
|
47
|
+
}
|
|
48
|
+
return [this.nonce, voteCountsTree.root];
|
|
49
|
+
};
|
|
50
|
+
/**
|
|
51
|
+
* Create a deep clone of this VoteCounts
|
|
52
|
+
* @returns a copy of the vote counts
|
|
53
|
+
*/
|
|
54
|
+
this.copy = () => {
|
|
55
|
+
const voteCounts = new VoteCounts(this.counts.length, this.voteOptionTreeDepth);
|
|
56
|
+
voteCounts.counts = this.counts.map((x) => BigInt(x.toString()));
|
|
57
|
+
voteCounts.nonce = BigInt(this.nonce.toString());
|
|
58
|
+
return voteCounts;
|
|
59
|
+
};
|
|
60
|
+
(0, assert_1.default)(5 ** voteOptionTreeDepth >= totalVoteOptions);
|
|
61
|
+
(0, assert_1.default)(totalVoteOptions >= 0);
|
|
62
|
+
this.voteOptionTreeDepth = voteOptionTreeDepth;
|
|
63
|
+
for (let i = 0; i < totalVoteOptions; i += 1) {
|
|
64
|
+
this.counts.push(0n);
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* Generate a blank VoteCounts object
|
|
69
|
+
* @param totalVoteOptions How many vote options are available
|
|
70
|
+
* @param voteOptionTreeDepth How deep is the merkle tree holding the vote options
|
|
71
|
+
* @returns a Blank VoteCounts object
|
|
72
|
+
*/
|
|
73
|
+
static generateBlank(totalVoteOptions, voteOptionTreeDepth) {
|
|
74
|
+
return new VoteCounts(totalVoteOptions, voteOptionTreeDepth);
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* Check if two vote counts are equal (same counts and same nonce)
|
|
78
|
+
* @param voteCounts - The vote counts to compare with
|
|
79
|
+
* @returns whether the two vote counts are equal
|
|
80
|
+
*/
|
|
81
|
+
equals(voteCounts) {
|
|
82
|
+
const isEqualVotes = this.counts.every((vote, index) => vote === voteCounts.counts[index]);
|
|
83
|
+
return isEqualVotes ? voteCounts.nonce === this.nonce && this.counts.length === voteCounts.counts.length : false;
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* Serialize to a JSON object
|
|
87
|
+
*
|
|
88
|
+
* @returns the JSON representation of the vote counts
|
|
89
|
+
*/
|
|
90
|
+
toJSON() {
|
|
91
|
+
return {
|
|
92
|
+
counts: this.counts.map((x) => x.toString()),
|
|
93
|
+
nonce: this.nonce.toString(),
|
|
94
|
+
voteOptionTreeDepth: this.voteOptionTreeDepth.toString(),
|
|
95
|
+
};
|
|
96
|
+
}
|
|
97
|
+
/**
|
|
98
|
+
* Deserialize into a VoteCounts instance
|
|
99
|
+
* @param json - the json representation
|
|
100
|
+
* @returns the deserialized object as a VoteCounts instance
|
|
101
|
+
*/
|
|
102
|
+
static fromJSON(json) {
|
|
103
|
+
const voteCounts = new VoteCounts(json.counts.length, Number.parseInt(json.voteOptionTreeDepth.toString(), 10));
|
|
104
|
+
voteCounts.counts = json.counts.map((x) => BigInt(x));
|
|
105
|
+
voteCounts.nonce = BigInt(json.nonce);
|
|
106
|
+
return voteCounts;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
exports.VoteCounts = VoteCounts;
|
|
110
|
+
//# sourceMappingURL=voteCounts.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"voteCounts.js","sourceRoot":"","sources":["../../ts/voteCounts.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../crypto/build/ts/utils.d.ts","../../crypto/build/ts/types.d.ts","../../crypto/build/ts/quinTree.d.ts","../../crypto/build/ts/bigIntUtils.d.ts","../../crypto/build/ts/constants.d.ts","../../crypto/build/ts/keys.d.ts","../../crypto/build/ts/babyjub.d.ts","../../crypto/build/ts/hashing.d.ts","../../../node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/@types+snarkjs@0.7.9/node_modules/@types/snarkjs/index.d.cts","../../../node_modules/.pnpm/@types+snarkjs@0.7.9/node_modules/@types/snarkjs/index.d.ts","../../../node_modules/.pnpm/@zk-kit+utils@1.2.1/node_modules/@zk-kit/utils/dist/index.d.ts","../../../node_modules/.pnpm/@zk-kit+baby-jubjub@1.0.3/node_modules/@zk-kit/baby-jubjub/dist/index.d.ts","../../../node_modules/.pnpm/@zk-kit+poseidon-cipher@0.3.2/node_modules/@zk-kit/poseidon-cipher/dist/index.d.ts","../../../node_modules/.pnpm/@zk-kit+eddsa-poseidon@1.1.0/node_modules/@zk-kit/eddsa-poseidon/dist/index.d.ts","../../crypto/build/ts/index.d.ts","../ts/publicKey.ts","../ts/types.ts","../ts/ballot.ts","../ts/privateKey.ts","../ts/keyPair.ts","../ts/stateLeaf.ts","../ts/constants.ts","../ts/message.ts","../ts/commands/types.ts","../ts/commands/VoteCommand.ts","../ts/commands/index.ts","../ts/verifyingKey.ts","../ts/index.ts","../../../node_modules/.pnpm/@types+chai@4.3.20/node_modules/@types/chai/index.d.ts","../../../node_modules/.pnpm/@types+mocha@10.0.10/node_modules/@types/mocha/index.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/dom-events.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/sqlite.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@22.15.17/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/@types+estree@1.0.7/node_modules/@types/estree/index.d.ts","../../../node_modules/.pnpm/@types+json-schema@7.0.15/node_modules/@types/json-schema/index.d.ts","../../../node_modules/.pnpm/@types+eslint@9.6.1/node_modules/@types/eslint/use-at-your-own-risk.d.ts","../../../node_modules/.pnpm/@types+eslint@9.6.1/node_modules/@types/eslint/index.d.ts","../../../node_modules/.pnpm/@types+eslint-scope@3.7.7/node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/.pnpm/@types+prettier@2.7.3/node_modules/@types/prettier/index.d.ts"],"fileIdsList":[[82,124],[82,124,175,178],[82,124,175,176,177],[82,124,178],[82,121,124],[82,123,124],[124],[82,124,129,159],[82,124,125,130,136,137,144,156,167],[82,124,125,126,136,144],[77,78,79,82,124],[82,124,127,168],[82,124,128,129,137,145],[82,124,129,156,164],[82,124,130,132,136,144],[82,123,124,131],[82,124,132,133],[82,124,136],[82,124,134,136],[82,123,124,136],[82,124,136,137,138,156,167],[82,124,136,137,138,151,156,159],[82,119,124,172],[82,119,124,132,136,139,144,156,167],[82,124,136,137,139,140,144,156,164,167],[82,124,139,141,156,164,167],[80,81,82,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],[82,124,136,142],[82,124,143,167],[82,124,132,136,144,156],[82,124,145],[82,124,146],[82,123,124,147],[82,121,122,123,124,125,126,127,128,129,130,131,132,133,134,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],[82,124,149],[82,124,150],[82,124,136,151,152],[82,124,151,153,168,170],[82,124,136,156,157,159],[82,124,158,159],[82,124,156,157],[82,124,159],[82,124,160],[82,121,124,156],[82,124,136,162,163],[82,124,162,163],[82,124,129,144,156,164],[82,124,165],[82,124,144,166],[82,124,139,150,167],[82,124,129,168],[82,124,156,169],[82,124,143,170],[82,124,171],[82,124,129,136,138,147,156,167,170,172],[82,124,156,173],[55,82,124],[57,82,124],[57,58,82,124],[56,82,124],[82,91,95,124,167],[82,91,124,156,167],[82,86,124],[82,88,91,124,164,167],[82,124,144,164],[82,124,174],[82,86,124,174],[82,88,91,124,144,167],[82,83,84,87,90,124,136,156,167],[82,91,98,124],[82,83,89,124],[82,91,112,113,124],[82,87,91,124,159,167,174],[82,112,124,174],[82,85,86,124,174],[82,91,124],[82,85,86,87,88,89,90,91,92,93,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,113,114,115,116,117,118,124],[82,91,106,124],[82,91,98,99,124],[82,89,91,99,100,124],[82,90,124],[82,83,86,91,124],[82,91,95,99,100,124],[82,95,124],[82,89,91,94,124,167],[82,83,88,91,98,124],[82,124,156],[82,86,91,112,124,172,174],[47,82,124],[46,47,48,49,50,51,52,53,58,59,60,82,124],[61,63,82,121,124],[61,62,65,69,70,82,121,124],[70,71,82,124],[62,67,82,124],[62,63,64,65,66,67,68,69,72,73,82,124],[61,62,63,65,82,121,124],[61,62,63,82,121,124],[61,63,82,124],[61,62,63,66,82,124],[61,62,82,124]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","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":"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":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","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":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","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":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},"ec8389704b2282d7f8e4da4798de5fd20e9bf3c7a8b289a01ab9e6384277af80","ccb1117accb51a749def10d59f062a8c61eeaef511d1062bae5e4adf0f01e1a6","38e10cc20e7c40f7670a32dbc6fd0abd8d27578bd4b3a012964f246957b7c62f","0c7d936c39037cfc48c558e4b1cad0acda9070a34b6730a8ec736818b32f0d11","d99c5f23f7bf1c105830bb62dc843f3493b299340f2f57f6669de9e3bb35c279","86806e16d70b85c3641f85d65eaabd1b57fcf18f8433ae5f5a34049a56334b73","205218e06f8bab37deb3a60808b6b89989cd8ab23fac719df696c6c44b67e1b1","9a8316bb379d037c3ae202e0bf0b73531775812b045375bde5fa4f4ab90e5ac1",{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"73d7b4877900a649baddf8e689e985553189e93fd9eedbdbbb29912194abfe12","impliedFormat":1},{"version":"02ce6690df0c77317e7c29fc74c400e6d31d41f0026e87c25d6045a01ea08993","impliedFormat":99},{"version":"d7031eee8d87b1027daf58c08b2f91b91e1f4c0f320a382c9ee5ade5b140600e","impliedFormat":99},{"version":"637aa706ffa05af6bdc9cb07c4287b7d224790ad0cf3e629a1549157fec34d9c","impliedFormat":99},{"version":"51a2c83f1c37db18beb632d893d8aec1460054487b3b93453c5f35c6c1a23db7","impliedFormat":99},{"version":"dc1113e7c556c83ce2e0604a5403733906facf38c7378b21c76aac2b7668f8fb","impliedFormat":99},"595f2c1bb0cdfb407297a5e1c4e996e85837d9f54ba418c57380baa594764817",{"version":"3de1e13d28785e1d153a04c37a9a8be5bef5d8a3ca72916558bf9a08936310cc","signature":"17699adba427b72aa73d77f2bd0ab3eb1e66f6dd0b4b6a2ab87f8b432ed48988"},{"version":"667da60d50d8ae3927cfd8b40c63a57af96695fed8840ecb5db22df2ab1059fd","signature":"01c19e0c48de883de03793d3df59dc5e4d1b7b13002404c710a785a5305bad37"},{"version":"a0d53190185685c57eaa7d0d8b4e5193e541e57c5e76a6bd835b22232f30d282","signature":"ecca3dc49d62d7f514632c4c737b438021081a9f734488850a857b4379ec5648"},{"version":"4a443bd8009dbafa0b4a7652f884408fde82cd49e4d0713f3bdbff5d30f6aecf","signature":"f8de14eeebcf27cc93096c23e122b933789c5b91a7f07c3856b22a4afa0c1e59"},{"version":"8f8ceedfb62c75b6d5ee603ca5cf854b1c9c50da83a73116ea4991ddc337e5f3","signature":"ec4de3f932053ca34ade7add84fe4218d0d50d0dcb5b9b272caf402f9855e3d5"},{"version":"bcb4b66a9d8ee4f59ca1b11b4623a02b2bbe21a880e3316f98000f0f55359ba3","signature":"657627d177c46325502d03ed7acbe7a275b58f1237072a2b683986b47ab79a46"},{"version":"13e70c4f47b2bfbe38f505e60bbb186ed3774c22d44ad64daeee42d6a11fae8b","signature":"66017896ee80fb707c784735b1cb60bbacb0c8d2eb5455fc5684359bd4e4a1a4"},{"version":"d2464a662503c6367b54fdacc47e4de7e8f81c32f18671c9b796b183d0248d6b","signature":"19c2c0dedc55371eedda7b21192c72c321a42aca537083a47cec210429b26c1d"},{"version":"37b6a04ee50c3c09a790c42a0ce0d8f453d53a95a638decc7ea96e91c561e54d","signature":"6589dfb1956285b9251a5aae2bb655b4398ea52d273c47323632e812dce887c6"},{"version":"39f1f3fa53c5ba1708ff266612adb8e41e6725e3918f4d53cfbf217407daa719","signature":"7746139833a526b11bdd16f4fdfae562edd3f50e144ce1e8176ce62f4d385775"},"2152cbc9ebf7c7185594bac7da95954a388bd58d49c36fcc02b553bc5d21a0a9",{"version":"8821eaa073989ca080440fa0f6ae28dd6a52845d802f4b0fbfcd37563d7d60c2","signature":"cfbce2aae1eb34123bc673f7ef24bc120d6aabc9777866454e2bc5aad0456b44"},{"version":"b3f7fa40817f980ee2ad91b7648b706b65fadcb24942a1a1508ea83fc92a9d08","signature":"5c2f5874034f0deb3c57ff2fa9115d0a65c9c9c0ee800efa735b6ef400e8a311"},{"version":"eef204f061321360559bd19235ea32a9d55b3ec22a362cc78d14ef50d4db4490","affectsGlobalScope":true,"impliedFormat":1},{"version":"29f72ec1289ae3aeda78bf14b38086d3d803262ac13904b400422941a26a3636","affectsGlobalScope":true,"impliedFormat":1},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"030e350db2525514580ed054f712ffb22d273e6bc7eddc1bb7eda1e0ba5d395e","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"d802f0e6b5188646d307f070d83512e8eb94651858de8a82d1e47f60fb6da4e2","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"3b724a66c071d616203133f8d099a0cb881b0b43fd42e8621e611243c5f30cd6","affectsGlobalScope":true,"impliedFormat":1},{"version":"a38efe83ff77c34e0f418a806a01ca3910c02ee7d64212a59d59bca6c2c38fa1","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"3fe4022ba1e738034e38ad9afacbf0f1f16b458ed516326f5bf9e4a31e9be1dc","impliedFormat":1},{"version":"a957197054b074bcdf5555d26286e8461680c7c878040d0f4e2d5509a7524944","affectsGlobalScope":true,"impliedFormat":1},{"version":"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","impliedFormat":1},{"version":"e9b97d69510658d2f4199b7d384326b7c4053b9e6645f5c19e1c2a54ede427fc","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"f478f6f5902dc144c0d6d7bdc919c5177cac4d17a8ca8653c2daf6d7dc94317f","affectsGlobalScope":true,"impliedFormat":1},{"version":"19d5f8d3930e9f99aa2c36258bf95abbe5adf7e889e6181872d1cdba7c9a7dd5","impliedFormat":1},{"version":"b200675fd112ffef97c166d0341fb33f6e29e9f27660adde7868e95c5bc98beb","impliedFormat":1},{"version":"a6bf63d17324010ca1fbf0389cab83f93389bb0b9a01dc8a346d092f65b3605f","impliedFormat":1},{"version":"e009777bef4b023a999b2e5b9a136ff2cde37dc3f77c744a02840f05b18be8ff","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"88bc59b32d0d5b4e5d9632ac38edea23454057e643684c3c0b94511296f2998c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a0a1dda070290b92da5a50113b73ecc4dd6bcbffad66e3c86503d483eafbadcf","impliedFormat":1},{"version":"59dcad36c4549175a25998f6a8b33c1df8e18df9c12ebad1dfb25af13fd4b1ce","impliedFormat":1},{"version":"9ba5b6a30cb7961b68ad4fb18dca148db151c2c23b8d0a260fc18b83399d19d3","impliedFormat":1},{"version":"3f3edb8e44e3b9df3b7ca3219ab539710b6a7f4fe16bd884d441af207e03cd57","impliedFormat":1},{"version":"528b62e4272e3ddfb50e8eed9e359dedea0a4d171c3eb8f337f4892aac37b24b","impliedFormat":1},{"version":"d71535813e39c23baa113bc4a29a0e187b87d1105ccc8c5a6ebaca38d9a9bff2","impliedFormat":1},{"version":"8cf7e92bdb2862c2d28ba4535c43dc599cfbc0025db5ed9973d9b708dcbe3d98","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a410a7fa4baf13dd45c9bba6d71806027dc0e4e5027cdf74f36466ae9b240b7","impliedFormat":1},{"version":"b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"1dc73f8854e5c4506131c4d95b3a6c24d0c80336d3758e95110f4c7b5cb16397","affectsGlobalScope":true,"impliedFormat":1},{"version":"636302a00dfd1f9fe6e8e91e4e9350c6518dcc8d51a474e4fc3a9ba07135100b","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"e1120271ebbc9952fdc7b2dd3e145560e52e06956345e6fdf91d70ca4886464f","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"e1ce1d622f1e561f6cdf246372ead3bbc07ce0342024d0e9c7caf3136f712698","impliedFormat":1},{"version":"c878f74b6d10b267f6075c51ac1d8becd15b4aa6a58f79c0cfe3b24908357f60","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"27e4532aaaa1665d0dd19023321e4dc12a35a741d6b8e1ca3517fcc2544e0efe","affectsGlobalScope":true,"impliedFormat":1},{"version":"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada","impliedFormat":1},{"version":"8c2ad42d5d1a2e8e6112625767f8794d9537f1247907378543106f7ba6c7df90","affectsGlobalScope":true,"impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"98ffdf93dfdd206516971d28e3e473f417a5cfd41172e46b4ce45008f640588e","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"7d6ff413e198d25639f9f01f16673e7df4e4bd2875a42455afd4ecc02ef156da","affectsGlobalScope":true,"impliedFormat":1},{"version":"12e8ce658dd17662d82fb0509d2057afc5e6ee30369a2e9e0957eff725b1f11d","affectsGlobalScope":true,"impliedFormat":1},{"version":"74736930d108365d7bbe740c7154706ccfb1b2a3855a897963ab3e5c07ecbf19","impliedFormat":1},{"version":"858f999b3e4a45a4e74766d43030941466460bf8768361d254234d5870480a53","impliedFormat":1},{"version":"ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a","impliedFormat":1},{"version":"63b05afa6121657f25e99e1519596b0826cda026f09372c9100dfe21417f4bd6","affectsGlobalScope":true,"impliedFormat":1},{"version":"3797dd6f4ea3dc15f356f8cdd3128bfa18122213b38a80d6c1f05d8e13cbdad8","impliedFormat":1},{"version":"ad90122e1cb599b3bc06a11710eb5489101be678f2920f2322b0ac3e195af78d","impliedFormat":1},{"version":"e2b48abff5a8adc6bb1cd13a702b9ef05e6045a98e7cfa95a8779b53b6d0e69d","impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"a4a39b5714adfcadd3bbea6698ca2e942606d833bde62ad5fb6ec55f5e438ff8","impliedFormat":1},{"version":"bbc1d029093135d7d9bfa4b38cbf8761db505026cc458b5e9c8b74f4000e5e75","impliedFormat":1},{"version":"1f68ab0e055994eb337b67aa87d2a15e0200951e9664959b3866ee6f6b11a0fe","impliedFormat":1},{"version":"d88a5e779faf033be3d52142a04fbe1cb96009868e3bbdd296b2bc6c59e06c0e","impliedFormat":1}],"root":[[62,74]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"alwaysStrict":false,"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"strictPropertyInitialization":true,"stripInternal":true,"target":7},"referencedMap":[[75,1],[179,2],[178,3],[177,4],[175,1],[176,1],[76,1],[121,5],[122,5],[123,6],[82,7],[124,8],[125,9],[126,10],[77,1],[80,11],[78,1],[79,1],[127,12],[128,13],[129,14],[130,15],[131,16],[132,17],[133,17],[135,18],[134,19],[136,20],[137,21],[138,22],[120,23],[81,1],[139,24],[140,25],[141,26],[174,27],[142,28],[143,29],[144,30],[145,31],[146,32],[147,33],[148,34],[149,35],[150,36],[151,37],[152,37],[153,38],[154,1],[155,1],[156,39],[158,40],[157,41],[159,42],[160,43],[161,44],[162,45],[163,46],[164,47],[165,48],[166,49],[167,50],[168,51],[169,52],[170,53],[171,54],[172,55],[173,56],[180,1],[55,1],[56,57],[58,58],[60,59],[59,58],[57,60],[54,1],[44,1],[45,1],[9,1],[8,1],[2,1],[10,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[3,1],[18,1],[19,1],[4,1],[20,1],[24,1],[21,1],[22,1],[23,1],[25,1],[26,1],[27,1],[5,1],[28,1],[29,1],[30,1],[31,1],[6,1],[35,1],[32,1],[33,1],[34,1],[36,1],[7,1],[37,1],[42,1],[43,1],[38,1],[39,1],[40,1],[41,1],[1,1],[98,61],[108,62],[97,61],[118,63],[89,64],[88,65],[117,66],[111,67],[116,68],[91,69],[105,70],[90,71],[114,72],[86,73],[85,66],[115,74],[87,75],[92,76],[93,1],[96,76],[83,1],[119,77],[109,78],[100,79],[101,80],[103,81],[99,82],[102,83],[112,66],[94,84],[95,85],[104,86],[84,87],[107,78],[106,76],[110,1],[113,88],[52,1],[49,89],[50,1],[53,89],[61,90],[51,89],[48,89],[47,1],[46,1],[64,91],[71,92],[72,93],[70,1],[68,94],[74,95],[66,96],[69,97],[65,98],[62,91],[67,99],[63,100],[73,98]],"latestChangedDtsFile":"./ts/index.d.ts","version":"5.8.3"}
|
|
1
|
+
{"fileNames":["../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../crypto/build/ts/utils.d.ts","../../crypto/build/ts/types.d.ts","../../crypto/build/ts/quinTree.d.ts","../../crypto/build/ts/bigIntUtils.d.ts","../../crypto/build/ts/constants.d.ts","../../crypto/build/ts/keys.d.ts","../../crypto/build/ts/babyjub.d.ts","../../crypto/build/ts/hashing.d.ts","../../../node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/@types+snarkjs@0.7.9/node_modules/@types/snarkjs/index.d.cts","../../../node_modules/.pnpm/@types+snarkjs@0.7.9/node_modules/@types/snarkjs/index.d.ts","../../../node_modules/.pnpm/@zk-kit+utils@1.2.1/node_modules/@zk-kit/utils/dist/index.d.ts","../../../node_modules/.pnpm/@zk-kit+baby-jubjub@1.0.3/node_modules/@zk-kit/baby-jubjub/dist/index.d.ts","../../../node_modules/.pnpm/@zk-kit+poseidon-cipher@0.3.2/node_modules/@zk-kit/poseidon-cipher/dist/index.d.ts","../../../node_modules/.pnpm/@zk-kit+eddsa-poseidon@1.1.0/node_modules/@zk-kit/eddsa-poseidon/dist/index.d.ts","../../crypto/build/ts/index.d.ts","../ts/publicKey.ts","../ts/types.ts","../ts/ballot.ts","../ts/privateKey.ts","../ts/keyPair.ts","../ts/stateLeaf.ts","../ts/constants.ts","../ts/message.ts","../ts/verifyingKey.ts","../ts/voteCounts.ts","../ts/commands/types.ts","../ts/commands/VoteCommand.ts","../ts/commands/index.ts","../ts/index.ts","../../../node_modules/.pnpm/@types+chai@4.3.20/node_modules/@types/chai/index.d.ts","../../../node_modules/.pnpm/@types+mocha@10.0.10/node_modules/@types/mocha/index.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/utility.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/h2c-client.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/dom-events.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/sqlite.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@24.0.13/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/@types+estree@1.0.7/node_modules/@types/estree/index.d.ts","../../../node_modules/.pnpm/@types+json-schema@7.0.15/node_modules/@types/json-schema/index.d.ts","../../../node_modules/.pnpm/@types+eslint@9.6.1/node_modules/@types/eslint/use-at-your-own-risk.d.ts","../../../node_modules/.pnpm/@types+eslint@9.6.1/node_modules/@types/eslint/index.d.ts","../../../node_modules/.pnpm/@types+eslint-scope@3.7.7/node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/.pnpm/@types+prettier@2.7.3/node_modules/@types/prettier/index.d.ts"],"fileIdsList":[[82,126],[82,126,177,180],[82,126,177,178,179],[82,126,180],[82,123,126],[82,125,126],[126],[82,126,131,161],[82,126,127,132,138,139,146,158,169],[82,126,127,128,138,146],[82,126,129,170],[82,126,130,131,139,147],[82,126,131,158,166],[82,126,132,134,138,146],[82,125,126,133],[82,126,134,135],[82,126,136,138],[82,125,126,138],[82,126,138,139,140,158,169],[82,126,138,139,140,153,158,161],[82,121,126],[82,121,126,134,138,141,146,158,169],[82,126,138,139,141,142,146,158,166,169],[82,126,141,143,158,166,169],[80,81,82,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],[82,126,138,144],[82,126,145,169],[82,126,134,138,146,158],[82,126,147],[82,126,148],[82,125,126,149],[82,123,124,125,126,127,128,129,130,131,132,133,134,135,136,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],[82,126,151],[82,126,152],[82,126,138,153,154],[82,126,153,155,170,172],[82,126,138,158,159,161],[82,126,160,161],[82,126,158,159],[82,126,161],[82,126,162],[82,123,126,158,163],[82,126,138,164,165],[82,126,164,165],[82,126,131,146,158,166],[82,126,167],[82,126,146,168],[82,126,141,152,169],[82,126,131,170],[82,126,158,171],[82,126,145,172],[82,126,173],[82,126,138,140,149,158,161,169,171,172,174],[82,126,158,175],[57,82,126],[59,82,126],[59,60,82,126],[58,82,126],[82,91,95,126,169],[82,91,126,158,169],[82,126,158],[82,86,126],[82,88,91,126,169],[82,126,146,166],[82,126,176],[82,86,126,176],[82,88,91,126,146,169],[82,83,84,85,87,90,126,138,158,169],[82,91,99,126],[82,84,89,126],[82,91,115,116,126],[82,84,87,91,126,161,169,176],[82,91,126],[82,83,126],[82,86,87,88,89,90,91,92,93,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,116,117,118,119,120,126],[82,91,108,111,126,134],[82,91,99,100,101,126],[82,89,91,100,102,126],[82,90,126],[82,84,86,91,126],[82,91,95,100,102,126],[82,95,126],[82,89,91,94,126,169],[82,84,88,91,99,126],[82,91,108,126],[82,86,91,115,126,161,174,176],[49,82,126],[48,49,50,51,52,53,54,55,60,61,62,82,126],[63,65,82,123,126],[63,64,67,71,74,82,123,126],[74,75,82,126],[64,69,82,126],[64,65,66,67,68,69,70,71,72,73,76,82,126],[63,64,65,67,82,123,126],[63,64,65,82,123,126],[63,65,82,126],[63,64,65,68,82,126],[63,64,82,126]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","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":"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":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","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":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","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":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},"ec8389704b2282d7f8e4da4798de5fd20e9bf3c7a8b289a01ab9e6384277af80","ccb1117accb51a749def10d59f062a8c61eeaef511d1062bae5e4adf0f01e1a6","38e10cc20e7c40f7670a32dbc6fd0abd8d27578bd4b3a012964f246957b7c62f","0c7d936c39037cfc48c558e4b1cad0acda9070a34b6730a8ec736818b32f0d11","d99c5f23f7bf1c105830bb62dc843f3493b299340f2f57f6669de9e3bb35c279","86806e16d70b85c3641f85d65eaabd1b57fcf18f8433ae5f5a34049a56334b73","205218e06f8bab37deb3a60808b6b89989cd8ab23fac719df696c6c44b67e1b1","9a8316bb379d037c3ae202e0bf0b73531775812b045375bde5fa4f4ab90e5ac1",{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"73d7b4877900a649baddf8e689e985553189e93fd9eedbdbbb29912194abfe12","impliedFormat":1},{"version":"02ce6690df0c77317e7c29fc74c400e6d31d41f0026e87c25d6045a01ea08993","impliedFormat":99},{"version":"d7031eee8d87b1027daf58c08b2f91b91e1f4c0f320a382c9ee5ade5b140600e","impliedFormat":99},{"version":"637aa706ffa05af6bdc9cb07c4287b7d224790ad0cf3e629a1549157fec34d9c","impliedFormat":99},{"version":"51a2c83f1c37db18beb632d893d8aec1460054487b3b93453c5f35c6c1a23db7","impliedFormat":99},{"version":"dc1113e7c556c83ce2e0604a5403733906facf38c7378b21c76aac2b7668f8fb","impliedFormat":99},"595f2c1bb0cdfb407297a5e1c4e996e85837d9f54ba418c57380baa594764817",{"version":"3de1e13d28785e1d153a04c37a9a8be5bef5d8a3ca72916558bf9a08936310cc","signature":"17699adba427b72aa73d77f2bd0ab3eb1e66f6dd0b4b6a2ab87f8b432ed48988"},{"version":"12ce2b3bbb851fe5c05081211bb273bdc84cb53134ce992c87d2c2542b165513","signature":"95b06c32a8b38854747ebc69fc068c7daf00cd8f2b86fad48b38a5e7342f6f08"},{"version":"9a85b7037b88b95d00ee171f3412f9120b7281205271337f988b231a4121aad5","signature":"82465212088fa1c9e9bb320276dec739995f8f5ddcc4cfd92ece27fd36fa253c"},{"version":"4a443bd8009dbafa0b4a7652f884408fde82cd49e4d0713f3bdbff5d30f6aecf","signature":"f8de14eeebcf27cc93096c23e122b933789c5b91a7f07c3856b22a4afa0c1e59"},{"version":"8f8ceedfb62c75b6d5ee603ca5cf854b1c9c50da83a73116ea4991ddc337e5f3","signature":"ec4de3f932053ca34ade7add84fe4218d0d50d0dcb5b9b272caf402f9855e3d5"},{"version":"bcb4b66a9d8ee4f59ca1b11b4623a02b2bbe21a880e3316f98000f0f55359ba3","signature":"657627d177c46325502d03ed7acbe7a275b58f1237072a2b683986b47ab79a46"},{"version":"13e70c4f47b2bfbe38f505e60bbb186ed3774c22d44ad64daeee42d6a11fae8b","signature":"66017896ee80fb707c784735b1cb60bbacb0c8d2eb5455fc5684359bd4e4a1a4"},{"version":"d2464a662503c6367b54fdacc47e4de7e8f81c32f18671c9b796b183d0248d6b","signature":"19c2c0dedc55371eedda7b21192c72c321a42aca537083a47cec210429b26c1d"},{"version":"8821eaa073989ca080440fa0f6ae28dd6a52845d802f4b0fbfcd37563d7d60c2","signature":"cfbce2aae1eb34123bc673f7ef24bc120d6aabc9777866454e2bc5aad0456b44"},{"version":"9e95da908c5f0aa8c7457acdd5a83aa1b4e27a20d52277600f10e213a0eca357","signature":"b91d4ecda2f28da5df7a5a4e86de285c2967b496de5d478c108b1054851af57a"},{"version":"37b6a04ee50c3c09a790c42a0ce0d8f453d53a95a638decc7ea96e91c561e54d","signature":"6589dfb1956285b9251a5aae2bb655b4398ea52d273c47323632e812dce887c6"},{"version":"39f1f3fa53c5ba1708ff266612adb8e41e6725e3918f4d53cfbf217407daa719","signature":"7746139833a526b11bdd16f4fdfae562edd3f50e144ce1e8176ce62f4d385775"},"2152cbc9ebf7c7185594bac7da95954a388bd58d49c36fcc02b553bc5d21a0a9",{"version":"94bdcc189110bb3af460b1830df90914096ecdfe72b5e5ae9f36da181326724e","signature":"c2c32a0c1985be6adc2e6a63cd9a3f37effacc18ff50a368225514a606751313"},{"version":"eef204f061321360559bd19235ea32a9d55b3ec22a362cc78d14ef50d4db4490","affectsGlobalScope":true,"impliedFormat":1},{"version":"29f72ec1289ae3aeda78bf14b38086d3d803262ac13904b400422941a26a3636","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0671b50bb99cc7ad46e9c68fa0e7f15ba4bc898b59c31a17ea4611fab5095da","affectsGlobalScope":true,"impliedFormat":1},{"version":"d802f0e6b5188646d307f070d83512e8eb94651858de8a82d1e47f60fb6da4e2","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","impliedFormat":1},{"version":"e525f9e67f5ddba7b5548430211cae2479070b70ef1fd93550c96c10529457bd","impliedFormat":1},{"version":"ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"17fe9131bec653b07b0a1a8b99a830216e3e43fe0ea2605be318dc31777c8bbf","impliedFormat":1},{"version":"3c8e93af4d6ce21eb4c8d005ad6dc02e7b5e6781f429d52a35290210f495a674","impliedFormat":1},{"version":"2c9875466123715464539bfd69bcaccb8ff6f3e217809428e0d7bd6323416d01","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"2472ef4c28971272a897fdb85d4155df022e1f5d9a474a526b8fc2ef598af94e","impliedFormat":1},{"version":"6c8e442ba33b07892169a14f7757321e49ab0f1032d676d321a1fdab8a67d40c","impliedFormat":1},{"version":"b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","impliedFormat":1},{"version":"1cd673d367293fc5cb31cd7bf03d598eb368e4f31f39cf2b908abbaf120ab85a","impliedFormat":1},{"version":"19851a6596401ca52d42117108d35e87230fc21593df5c4d3da7108526b6111c","impliedFormat":1},{"version":"3825bf209f1662dfd039010a27747b73d0ef379f79970b1d05601ec8e8a4249f","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"40bfc70953be2617dc71979c14e9e99c5e65c940a4f1c9759ddb90b0f8ff6b1a","impliedFormat":1},{"version":"da52342062e70c77213e45107921100ba9f9b3a30dd019444cf349e5fb3470c4","impliedFormat":1},{"version":"e9ace91946385d29192766bf783b8460c7dbcbfc63284aa3c9cae6de5155c8bc","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"561c60d8bfe0fec2c08827d09ff039eca0c1f9b50ef231025e5a549655ed0298","impliedFormat":1},{"version":"1e30c045732e7db8f7a82cf90b516ebe693d2f499ce2250a977ec0d12e44a529","impliedFormat":1},{"version":"84b736594d8760f43400202859cda55607663090a43445a078963031d47e25e7","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","impliedFormat":1},{"version":"beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","impliedFormat":1},{"version":"78b29846349d4dfdd88bd6650cc5d2baaa67f2e89dc8a80c8e26ef7995386583","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"e38d4fdf79e1eadd92ed7844c331dbaa40f29f21541cfee4e1acff4db09cda33","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"7c10a32ae6f3962672e6869ee2c794e8055d8225ef35c91c0228e354b4e5d2d3","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"99f569b42ea7e7c5fe404b2848c0893f3e1a56e0547c1cd0f74d5dbb9a9de27e","impliedFormat":1},{"version":"f4b4faedc57701ae727d78ba4a83e466a6e3bdcbe40efbf913b17e860642897c","affectsGlobalScope":true,"impliedFormat":1},{"version":"bbcfd9cd76d92c3ee70475270156755346c9086391e1b9cb643d072e0cf576b8","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"72c1f5e0a28e473026074817561d1bc9647909cf253c8d56c41d1df8d95b85f7","impliedFormat":1},{"version":"003ec918ec442c3a4db2c36dc0c9c766977ea1c8bcc1ca7c2085868727c3d3f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"938f94db8400d0b479626b9006245a833d50ce8337f391085fad4af540279567","impliedFormat":1},{"version":"c4e8e8031808b158cfb5ac5c4b38d4a26659aec4b57b6a7e2ba0a141439c208c","impliedFormat":1},{"version":"2c91d8366ff2506296191c26fd97cc1990bab3ee22576275d28b654a21261a44","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"12fb9c13f24845000d7bd9660d11587e27ef967cbd64bd9df19ae3e6aa9b52d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"289e9894a4668c61b5ffed09e196c1f0c2f87ca81efcaebdf6357cfb198dac14","impliedFormat":1},{"version":"25a1105595236f09f5bce42398be9f9ededc8d538c258579ab662d509aa3b98e","impliedFormat":1},{"version":"5078cd62dbdf91ae8b1dc90b1384dec71a9c0932d62bdafb1a811d2a8e26bef2","impliedFormat":1},{"version":"a2e2bbde231b65c53c764c12313897ffdfb6c49183dd31823ee2405f2f7b5378","impliedFormat":1},{"version":"ad1cc0ed328f3f708771272021be61ab146b32ecf2b78f3224959ff1e2cd2a5c","impliedFormat":1},{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true,"impliedFormat":1},{"version":"62f572306e0b173cc5dfc4c583471151f16ef3779cf27ab96922c92ec82a3bc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f32444438ecb1fa4519f6ec3977d69ce0e3acfa18b803e5cd725c204501f350","impliedFormat":1},{"version":"0ab3c844f1eb5a1d94c90edc346a25eb9d3943af7a7812f061bf2d627d8afac0","impliedFormat":1},{"version":"b0a84d9348601dbc217017c0721d6064c3b1af9b392663348ba146fdae0c7afd","impliedFormat":1},{"version":"161f09445a8b4ba07f62ae54b27054e4234e7957062e34c6362300726dabd315","impliedFormat":1},{"version":"77fced47f495f4ff29bb49c52c605c5e73cd9b47d50080133783032769a9d8a6","impliedFormat":1},{"version":"e6057f9e7b0c64d4527afeeada89f313f96a53291705f069a9193c18880578cb","impliedFormat":1},{"version":"34ecb9596317c44dab586118fb62c1565d3dad98d201cd77f3e6b0dde453339c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0f5cda0282e1d18198e2887387eb2f026372ebc4e11c4e4516fef8a19ee4d514","impliedFormat":1},{"version":"e99b0e71f07128fc32583e88ccd509a1aaa9524c290efb2f48c22f9bf8ba83b1","impliedFormat":1},{"version":"76957a6d92b94b9e2852cf527fea32ad2dc0ef50f67fe2b14bd027c9ceef2d86","impliedFormat":1},{"version":"237581f5ec4620a17e791d3bb79bad3af01e27a274dbee875ac9b0721a4fe97d","affectsGlobalScope":true,"impliedFormat":1},{"version":"a8a99a5e6ed33c4a951b67cc1fd5b64fd6ad719f5747845c165ca12f6c21ba16","affectsGlobalScope":true,"impliedFormat":1},{"version":"a58a15da4c5ba3df60c910a043281256fa52d36a0fcdef9b9100c646282e88dd","impliedFormat":1},{"version":"b36beffbf8acdc3ebc58c8bb4b75574b31a2169869c70fc03f82895b93950a12","impliedFormat":1},{"version":"de263f0089aefbfd73c89562fb7254a7468b1f33b61839aafc3f035d60766cb4","impliedFormat":1},{"version":"70b57b5529051497e9f6482b76d91c0dcbb103d9ead8a0549f5bab8f65e5d031","impliedFormat":1},{"version":"e6d81b1f7ab11dc1b1ad7ad29fcfad6904419b36baf55ed5e80df48d56ac3aff","impliedFormat":1},{"version":"1013eb2e2547ad8c100aca52ef9df8c3f209edee32bb387121bb3227f7c00088","impliedFormat":1},{"version":"b6b8e3736383a1d27e2592c484a940eeb37ec4808ba9e74dd57679b2453b5865","impliedFormat":1},{"version":"d6f36b683c59ac0d68a1d5ee906e578e2f5e9a285bca80ff95ce61cdc9ddcdeb","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"12aad38de6f0594dc21efa78a2c1f67bf6a7ef5a389e05417fe9945284450908","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea713aa14a670b1ea0fbaaca4fd204e645f71ca7653a834a8ec07ee889c45de6","impliedFormat":1},{"version":"b338a6e6c1d456e65a6ea78da283e3077fe8edf7202ae10490abbba5b952b05e","impliedFormat":1},{"version":"2918b7c516051c30186a1055ebcdb3580522be7190f8a2fff4100ea714c7c366","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae86f30d5d10e4f75ce8dcb6e1bd3a12ecec3d071a21e8f462c5c85c678efb41","impliedFormat":1},{"version":"982efeb2573605d4e6d5df4dc7e40846bda8b9e678e058fc99522ab6165c479e","impliedFormat":1},{"version":"e03460fe72b259f6d25ad029f085e4bedc3f90477da4401d8fbc1efa9793230e","impliedFormat":1},{"version":"4286a3a6619514fca656089aee160bb6f2e77f4dd53dc5a96b26a0b4fc778055","impliedFormat":1},{"version":"d67fc92a91171632fc74f413ce42ff1aa7fbcc5a85b127101f7ec446d2039a1f","affectsGlobalScope":true,"impliedFormat":1},{"version":"d40e4631100dbc067268bce96b07d7aff7f28a541b1bfb7ef791c64a696b3d33","affectsGlobalScope":true,"impliedFormat":1},{"version":"784490137935e1e38c49b9289110e74a1622baf8a8907888dcbe9e476d7c5e44","impliedFormat":1},{"version":"42180b657831d1b8fead051698618b31da623fb71ff37f002cb9d932cfa775f1","impliedFormat":1},{"version":"4f98d6fb4fe7cbeaa04635c6eaa119d966285d4d39f0eb55b2654187b0b27446","impliedFormat":1},{"version":"e4c653466d0497d87fa9ffd00e59a95f33bc1c1722c3f5c84dab2e950c18da70","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6dcc3b933e864e91d4bea94274ad69854d5d2a1311a4b0e20408a57af19e95d","impliedFormat":1},{"version":"a51f786b9f3c297668f8f322a6c58f85d84948ef69ade32069d5d63ec917221c","impliedFormat":1},{"version":"e2b48abff5a8adc6bb1cd13a702b9ef05e6045a98e7cfa95a8779b53b6d0e69d","impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"a4a39b5714adfcadd3bbea6698ca2e942606d833bde62ad5fb6ec55f5e438ff8","impliedFormat":1},{"version":"bbc1d029093135d7d9bfa4b38cbf8761db505026cc458b5e9c8b74f4000e5e75","impliedFormat":1},{"version":"1f68ab0e055994eb337b67aa87d2a15e0200951e9664959b3866ee6f6b11a0fe","impliedFormat":1},{"version":"d88a5e779faf033be3d52142a04fbe1cb96009868e3bbdd296b2bc6c59e06c0e","impliedFormat":1}],"root":[[64,77]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"alwaysStrict":false,"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"strictPropertyInitialization":true,"stripInternal":true,"target":7},"referencedMap":[[78,1],[181,2],[180,3],[179,4],[177,1],[178,1],[79,1],[123,5],[124,5],[125,6],[82,7],[126,8],[127,9],[128,10],[80,1],[129,11],[130,12],[131,13],[132,14],[133,15],[134,16],[135,16],[137,1],[136,17],[138,18],[139,19],[140,20],[122,21],[81,1],[141,22],[142,23],[143,24],[176,25],[144,26],[145,27],[146,28],[147,29],[148,30],[149,31],[150,32],[151,33],[152,34],[153,35],[154,35],[155,36],[156,1],[157,1],[158,37],[160,38],[159,39],[161,40],[162,41],[163,42],[164,43],[165,44],[166,45],[167,46],[168,47],[169,48],[170,49],[171,50],[172,51],[173,52],[174,53],[175,54],[182,1],[57,1],[58,55],[60,56],[62,57],[61,56],[59,58],[56,1],[46,1],[47,1],[9,1],[8,1],[2,1],[10,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[3,1],[18,1],[19,1],[4,1],[20,1],[24,1],[21,1],[22,1],[23,1],[25,1],[26,1],[27,1],[5,1],[28,1],[29,1],[30,1],[31,1],[6,1],[35,1],[32,1],[33,1],[34,1],[36,1],[7,1],[37,1],[42,1],[43,1],[38,1],[39,1],[40,1],[41,1],[1,1],[44,1],[45,1],[99,59],[110,60],[97,59],[111,61],[120,62],[89,63],[88,64],[119,65],[114,66],[118,67],[91,68],[107,69],[90,70],[117,71],[86,72],[87,66],[92,73],[93,1],[98,63],[96,73],[84,74],[121,75],[112,76],[102,77],[101,73],[103,78],[105,79],[100,80],[104,81],[115,65],[94,82],[95,83],[106,84],[85,61],[109,85],[108,73],[113,1],[83,1],[116,86],[54,1],[51,87],[52,1],[55,87],[63,88],[53,87],[50,87],[49,1],[48,1],[66,89],[75,90],[76,91],[74,1],[70,92],[77,93],[68,94],[71,95],[67,96],[64,89],[69,97],[65,98],[72,96],[73,89]],"latestChangedDtsFile":"./ts/index.d.ts","version":"5.8.3"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maci-protocol/domainobjs",
|
|
3
|
-
"version": "0.0.0-ci.
|
|
3
|
+
"version": "0.0.0-ci.de69b3e",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Classes representing domain objects for MACI",
|
|
6
6
|
"main": "build/ts/index.js",
|
|
@@ -22,14 +22,14 @@
|
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@types/chai": "^4.3.11",
|
|
24
24
|
"@types/mocha": "^10.0.10",
|
|
25
|
-
"@types/node": "^
|
|
25
|
+
"@types/node": "^24.0.13",
|
|
26
26
|
"chai": "^4.3.10",
|
|
27
|
-
"mocha": "^11.
|
|
27
|
+
"mocha": "^11.7.1",
|
|
28
28
|
"nyc": "^17.1.0",
|
|
29
29
|
"ts-mocha": "^11.1.0"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@maci-protocol/crypto": "0.0.0-ci.
|
|
32
|
+
"@maci-protocol/crypto": "0.0.0-ci.de69b3e"
|
|
33
33
|
},
|
|
34
34
|
"nyc": {
|
|
35
35
|
"reporter": [
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"functions": ">50%",
|
|
52
52
|
"statements": ">50%"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "66c24f90edff1bd2c734135872854dd1883ba8f8"
|
|
55
55
|
}
|