@indigo-labs/indigo-sdk 0.3.9 → 0.3.11

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.
Files changed (47) hide show
  1. package/dist/index.d.mts +337 -772
  2. package/dist/index.d.ts +337 -772
  3. package/dist/index.js +1194 -557
  4. package/dist/index.mjs +1091 -451
  5. package/package.json +1 -1
  6. package/src/contracts/cdp/helpers.ts +12 -0
  7. package/src/contracts/cdp/transactions.ts +32 -8
  8. package/src/contracts/gov/helpers.ts +58 -0
  9. package/src/contracts/gov/transactions.ts +35 -14
  10. package/src/contracts/iasset/helpers.ts +3 -0
  11. package/src/contracts/price-oracle/types-new.ts +1 -1
  12. package/src/contracts/rob/helpers.ts +274 -196
  13. package/src/contracts/rob/transactions.ts +11 -5
  14. package/src/contracts/rob-leverage/helpers.ts +379 -371
  15. package/src/contracts/rob-leverage/transactions.ts +176 -104
  16. package/src/contracts/staking/transactions.ts +3 -0
  17. package/src/contracts/treasury/transactions.ts +58 -36
  18. package/src/contracts/treasury/types-new.ts +1 -1
  19. package/src/index.ts +0 -2
  20. package/src/utils/utils.ts +0 -3
  21. package/src/validators/cdp-creator-validator.ts +1 -1
  22. package/src/validators/cdp-redeem-validator.ts +1 -1
  23. package/src/validators/cdp-validator.ts +1 -1
  24. package/src/validators/collector-validator.ts +1 -1
  25. package/src/validators/execute-validator.ts +1 -1
  26. package/src/validators/governance-validator.ts +1 -1
  27. package/src/validators/interest-collection-validator.ts +1 -1
  28. package/src/validators/interest-oracle-validator.ts +1 -1
  29. package/src/validators/poll-manager-validator.ts +1 -1
  30. package/src/validators/poll-shard-validator.ts +1 -1
  31. package/src/validators/stability-pool-validator.ts +1 -1
  32. package/src/validators/stableswap-validator.ts +1 -1
  33. package/src/validators/staking-validator.ts +1 -1
  34. package/src/validators/treasury-validator.ts +1 -1
  35. package/tests/cdp/actions.ts +87 -6
  36. package/tests/cdp/cdp-queries.ts +1 -1
  37. package/tests/cdp/cdp.test.ts +949 -94
  38. package/tests/endpoints/initialize.ts +14 -2
  39. package/tests/gov/gov.test.ts +864 -1
  40. package/tests/interest-collection/interest-collector-queries.ts +2 -1
  41. package/tests/queries/collector-queries.ts +2 -1
  42. package/tests/queries/poll-queries.ts +2 -1
  43. package/tests/queries/treasury-queries.ts +8 -2
  44. package/tests/rob/rob-leverage.test.ts +1646 -612
  45. package/tests/rob/rob.test.ts +35 -19
  46. package/tests/rob/transactions-mutated.ts +6 -4
  47. package/tests/stability-pool.test.ts +251 -25
package/dist/index.js CHANGED
@@ -52,7 +52,9 @@ __export(index_exports, {
52
52
  InterestCollectionParamsSchema: () => InterestCollectionParamsSchema,
53
53
  InterestOracleDatumSchema: () => InterestOracleDatumSchema,
54
54
  InterestOracleParamsSchema: () => InterestOracleParamsSchema,
55
+ MAX_COLLATERAL_ASSETS_COUNT_PER_IASSET: () => MAX_COLLATERAL_ASSETS_COUNT_PER_IASSET,
55
56
  MAX_E2S2S_ENTRIES_COUNT: () => MAX_E2S2S_ENTRIES_COUNT,
57
+ MAX_REDEMPTIONS_WITH_CDP_OPEN: () => MAX_REDEMPTIONS_WITH_CDP_OPEN,
56
58
  MIN_ROB_COLLATERAL_AMT: () => MIN_ROB_COLLATERAL_AMT,
57
59
  ONE_DAY: () => ONE_DAY,
58
60
  ONE_HOUR: () => ONE_HOUR,
@@ -87,6 +89,7 @@ __export(index_exports, {
87
89
  adjustStakingPosition: () => adjustStakingPosition,
88
90
  alwaysFailValidator: () => alwaysFailValidator,
89
91
  annulRequest: () => annulRequest,
92
+ approximateLeverageRedemptions: () => approximateLeverageRedemptions,
90
93
  attachOracle: () => attachOracle,
91
94
  balance: () => balance,
92
95
  batchCollectInterest: () => batchCollectInterest,
@@ -97,8 +100,11 @@ __export(index_exports, {
97
100
  burnCdp: () => burnCdp,
98
101
  calculateAccruedInterest: () => calculateAccruedInterest,
99
102
  calculateAdaReward: () => calculateAdaReward,
103
+ calculateCollateralRatioFromLeverage: () => calculateCollateralRatioFromLeverage,
100
104
  calculateIAssetRedemptionAmt: () => calculateIAssetRedemptionAmt,
105
+ calculateLeverageFromCollateralRatio: () => calculateLeverageFromCollateralRatio,
101
106
  calculateMinCollateralCappedIAssetRedemptionAmt: () => calculateMinCollateralCappedIAssetRedemptionAmt,
107
+ calculateTotalCollateralForRedemption: () => calculateTotalCollateralForRedemption,
102
108
  calculateUnitaryInterest: () => calculateUnitaryInterest,
103
109
  calculateUnitaryInterestSinceOracleLastUpdated: () => calculateUnitaryInterestSinceOracleLastUpdated,
104
110
  cancelRob: () => cancelRob,
@@ -164,9 +170,9 @@ __export(index_exports, {
164
170
  getAssetClassComparisonStr: () => getAssetClassComparisonStr,
165
171
  getInlineDatumOrThrow: () => getInlineDatumOrThrow,
166
172
  getPythFeedConfig: () => getPythFeedConfig,
167
- getRandomElement: () => getRandomElement,
168
173
  getUpdatedAccountDeposit: () => getUpdatedAccountDeposit,
169
174
  handleOracleForCollateralAsset: () => handleOracleForCollateralAsset,
175
+ iassetValueOfCollateral: () => iassetValueOfCollateral,
170
176
  init: () => init,
171
177
  initCDPCreator: () => initCDPCreator,
172
178
  initCollector: () => initCollector,
@@ -180,8 +186,10 @@ __export(index_exports, {
180
186
  initTreasury: () => initTreasury,
181
187
  initializeAsset: () => initializeAsset,
182
188
  insertSorted: () => insertSorted,
189
+ isBuyOrderFullyRedeemed: () => isBuyOrderFullyRedeemed,
183
190
  isFullyRedeemed: () => isFullyRedeemed,
184
191
  isSameEpochToScaleKey: () => isSameEpochToScaleKey,
192
+ leverageCdpWithRob: () => leverageCdpWithRob,
185
193
  liquidateCdp: () => liquidateCdp,
186
194
  liquidationHelper: () => liquidationHelper,
187
195
  loadSystemParamsFromFile: () => loadSystemParamsFromFile,
@@ -245,10 +253,6 @@ __export(index_exports, {
245
253
  parseIAssetDatumOrThrow: () => parseIAssetDatumOrThrow,
246
254
  parseInterestCollectionDatum: () => parseInterestCollectionDatum,
247
255
  parseInterestOracleDatum: () => parseInterestOracleDatum,
248
- parsePollManager: () => parsePollManager,
249
- parsePollManagerOrThrow: () => parsePollManagerOrThrow,
250
- parsePollShard: () => parsePollShard,
251
- parsePollShardOrThrow: () => parsePollShardOrThrow,
252
256
  parsePriceOracleDatum: () => parsePriceOracleDatum,
253
257
  parsePythStateDatum: () => parsePythStateDatum,
254
258
  parseRobDatum: () => parseRobDatum,
@@ -269,8 +273,8 @@ __export(index_exports, {
269
273
  parseStakingPosition: () => parseStakingPosition,
270
274
  parseStakingPositionOrThrow: () => parseStakingPositionOrThrow,
271
275
  partitionEpochToScaleToSums: () => partitionEpochToScaleToSums,
272
- pollPassQuorum: () => pollPassQuorum,
273
276
  processSpRequest: () => processSpRequest,
277
+ randomRobsSubsetSatisfyingTargetCollateral: () => randomRobsSubsetSatisfyingTargetCollateral,
274
278
  rationalAdd: () => rationalAdd,
275
279
  rationalCeil: () => rationalCeil,
276
280
  rationalDiv: () => rationalDiv,
@@ -289,7 +293,10 @@ __export(index_exports, {
289
293
  requestSpAccountClosure: () => requestSpAccountClosure,
290
294
  requestSpAccountCreation: () => requestSpAccountCreation,
291
295
  rewardSnapshotPrecision: () => rewardSnapshotPrecision,
292
- robAmountToSpend: () => robAmountToSpend,
296
+ robAmtToSpend: () => robAmtToSpend,
297
+ robBuyOrderSummary: () => robBuyOrderSummary,
298
+ robCollateralAmtToSpend: () => robCollateralAmtToSpend,
299
+ robIAssetAmtToSpend: () => robIAssetAmtToSpend,
293
300
  runCreateScriptRefTx: () => runCreateScriptRefTx,
294
301
  runOneShotMintTx: () => runOneShotMintTx,
295
302
  scriptRef: () => scriptRef,
@@ -306,9 +313,6 @@ __export(index_exports, {
306
313
  serialiseInterestCollectionDatum: () => serialiseInterestCollectionDatum,
307
314
  serialiseInterestCollectionRedeemer: () => serialiseInterestCollectionRedeemer,
308
315
  serialiseInterestOracleDatum: () => serialiseInterestOracleDatum,
309
- serialisePollDatum: () => serialisePollDatum,
310
- serialisePollManagerRedeemer: () => serialisePollManagerRedeemer,
311
- serialisePollShardRedeemer: () => serialisePollShardRedeemer,
312
316
  serialisePriceOracleDatum: () => serialisePriceOracleDatum,
313
317
  serialisePriceOracleRedeemer: () => serialisePriceOracleRedeemer,
314
318
  serialisePythFeedParams: () => serialisePythFeedParams,
@@ -337,6 +341,7 @@ __export(index_exports, {
337
341
  startPriceOracleTx: () => startPriceOracleTx,
338
342
  submitTx: () => submitTx,
339
343
  sum: () => sum,
344
+ summarizeActualLeverageRedemptions: () => summarizeActualLeverageRedemptions,
340
345
  toAssetClassFromLucid: () => toAssetClassFromLucid,
341
346
  toDataDerivedPythPrice: () => toDataDerivedPythPrice,
342
347
  toSystemParamsAsset: () => toSystemParamsAsset,
@@ -723,7 +728,6 @@ function loadSystemParamsFromFile(file) {
723
728
  function loadSystemParamsFromUrl(url) {
724
729
  return fetch(url).then((res) => res.json()).then((data) => data);
725
730
  }
726
- var getRandomElement = (arr) => arr.length ? arr[Math.floor(Math.random() * arr.length)] : void 0;
727
731
 
728
732
  // src/utils/time-helpers.ts
729
733
  var ONE_SECOND = 1e3;
@@ -800,6 +804,11 @@ function calculateFeeFromRatio(feeRatio, amount) {
800
804
 
801
805
  // src/contracts/cdp/helpers.ts
802
806
  var import_cardano_offchain_common = require("@3rd-eye-labs/cardano-offchain-common");
807
+ function iassetValueOfCollateral(collateralAmt, oraclePrice) {
808
+ return rationalFloor(
809
+ rationalDiv(rationalFromInt(collateralAmt), oraclePrice)
810
+ );
811
+ }
803
812
  function cdpCollateralRatioPercentage(currentSlot, iassetPrice, cdpUtxo, cdpContent, interestOracleDatum, network) {
804
813
  const currentTime = BigInt((0, import_lucid4.slotToUnixTime)(network, currentSlot));
805
814
  return (0, import_ts_pattern5.match)(cdpContent.cdpFees).with({ ActiveCDPInterestTracking: import_ts_pattern5.P.select() }, (interest) => {
@@ -1293,7 +1302,7 @@ function castStabilityPoolParams(params) {
1293
1302
  var _stabilityPoolValidator = {
1294
1303
  type: "PlutusScriptV3",
1295
1304
  description: "Generated by Aiken",
1296
- cborHex: "593c9e593c9b010100229800aba2aba1aba0aab9faab9eaab9dab9cab9a4888888896600264653001300900198049805000cdc3a400530090024888966002600460126ea800e33001300a3754007370e90004dc3a4009223233001001003223300300130020029b874801a6e1d20089b874802a6e1d200c48888888a6002602a0113015301600891192cc004c02800626464b3001301b0028024590181bae3019001301537540071598009806800c4c8c96600260360050048b2030375c6032002602a6ea800e2c809101218099baa00291192cc004c02800626464b3001301b0028024590181bad3019001301537540071598009806800c4c8c8cc8966002603a0070068b2034375a60340026eb4c068008c068004c054dd5001c590122024301337540049111191991191980080a0cc004dd2a40012232330010010032259800800c528456600266e3cdd71810800801c528c4cc008008c08800501b203e9180f180f980f980f980f800c8c078c07c0064446466446600400400244b3001001801c4c8cc896600266e4401c00a2b30013371e00e0051001803204089980280298138022040375c60400026eb4c084004c08c005021191919800800803112cc00400600713233225980099b910090028acc004cdc78048014400600c810a26600a00a60500088108dd718108009bab302200130240014088297adef6c6014800244646600200200644b30010018a5eb8226644b3001300500289981100119802002000c4cc01001000501d18108009811000a03e9b88480024603c603e603e0032598009807980d1baa0018980f180d9baa0018b20304888888888c8cc8966002602a604a6ea80822646644b3001301e3028375400313259800981118149baa001899912cc004c0c0006264b30013022302c3754003132332259800981a000c4cc08cdd61819800912cc00400a264b3001302830323754003133018300c3756602e60666ea80a8dd7181b18199baa0018b206032330010013758602c60666ea801c896600200314c103d87a80008992cc006600266ebc00530103d87a8000a50a5140c91001899801801981c8012064325980099b8f375c60700020171301b33037303830390014bd7045300103d87a800040c86eb0c0dc00503544c8c8cc8966002607400713005303a0068b206e375c606e0026eb8c0dc008c0dc004dd6181a80120668b2062375a60620026064002605a6ea80062c8150c028c02cc0b0dd5180798161baa302f0018b205a375c605a60546ea800660026eb0c034c0a8dd5010cc0b4c0b8c0b8c0b8c0b8c0b8c0b8c0a8dd5018530103d8798000401916409c605860526ea8c0b0c0a4dd5180618149baa302c302937540031640986002002660046eb0c0a8c09cdd500f00a912cc004006297ae089981518139815800998010011816000a0528acc004c06cc094dd5009c660026052604c6ea804e44b3001301d3027375400513232598009817001400e2c8158dd6981600098141baa0028b204a9b894801244b3001301d30273754005132323322598009818001c0162c8168dd698168009bad302d002302d001302837540051640952259800980e98139baa0028991919912cc004c0c000e00b1640b46eb8c0b4004dd71816801181680098141baa0028b204a488888cc88cc88cc8966002604c00313259800981b000c4cc014c0d400400e2c8198c0c4dd5005c566002605200313259800981b000c4c966002605060646ea800626464646464653001375a6078003375c607800d375c607800b37586078007303c00248888966002608400d1330123041009133031002225980080144c966002606c003132598009823000c4cc0acc11400404e2c8218c104dd50024566002607200315980098209baa00480945904245903e207c303f3754007132323259800982380144cc064c11800c4cc0700044c010c11c0162c8220c114004c114004dd6182180120828b207e181e000981d800981d000981c800981c00098199baa0018b206030350018b2066303137540171598009812800c4c966002606c00313300430350010038b2066303137540171640b8817102e0cc004c0b8dd5004cdc0240052298008014dd7181a18189baa0019bae301430313754002809a6e95200291819981a181a181a181a181a181a181a181a181a000c8888c8cc0040040148966002003133037337606ea4014dd400225eb7bdb1822653001375c606a003375a606c003303a00248896600266e4002400e26607666ec0dd48049ba80080058acc004cdc7804801c6600201300880148cc0f0cdd81ba900a37500020051001401d13303b337606ea400cdd400119803003000a06c40d8303800140d9222232330010010052259800800c4cc0dccdd81ba9005374c00897adef6c608994c004dd7181a800cdd5981b000cc0e80092225980099b9000900389981d99bb037520126e980200162b30013371e01200719800804c02200523303c337606ea4028dd30008014400500744cc0eccdd81ba9003374c0046600c00c00281b10360c0e0005036496600200314a314a0818a24444464b3001302a00180144c00c00503219b8000400391919800800801112cc004006297ae08991991199119801001000912cc00400620071323303a374e660746ea4014cc0e8c0dc004cc0e8c0e00052f5c0660060066078004607400281c0dd5981a8019bae3032001330030033037002303500140cd370290004dc4a4001222598009813800c52f5bded8c113232330010014bd6f7b630112cc00400626606e66ec0dd48031ba60034bd6f7b63044ca60026eb8c0d40066eacc0d800660740049112cc004cdc8005001c4cc0eccdd81ba900a374c00e00b15980099b8f00a00389981d99bb037520146e9801c00626607666ec0dd48019ba60023300600600140d881b0607000281b0c8cc0040052f5bded8c044b300100189981b19bb037520086ea000d2f5bded8c113298009bae30340019bad3035001981c8012444b30013372001000713303a337606ea4020dd4003802c56600266e3c02000e26607466ec0dd48041ba800700189981d19bb037520066ea0008cc018018005035206a181b800a06a40bd2301633032375066e08005208080a0f6f4acdbe01b4bd70488c05ccc0ccdd419b83337046eb4c0d0c0c4dd5001241010141ede959b7c0366eb4c0d0c0c4dd5000a5eb8244602e660666ea0cdc09bad3034303137540046eb4c0d0c0c4dd5000a5eb8244602e660666ea0cdc199b82375a606860626ea8008dd6981a18189baa001482020283dbd2b36f806d2f5c122301733033375066e00dd6981a18189baa002375a606860626ea80052f5c123033303430343034001911919800800801912cc004006297ae089981a9ba730033758606c00266004004606e00281a244b30010018800c54cc0bc008400502e488c966002604e0031323259800981c00140122c81a8dd7181b00098191baa0038acc004c0a80062b3001303237540070028b20668b205e40bc60606ea800a6e0120019baf01d9baf3013302f375404d374a900224444444444444444444444444530012259800800c520008980d998010011827800a09891192cc004c104c12cdd5000c4c13cc130dd5000c59049191919800800801912cc004006298103d87a80008992cc004cdd78021827000c4c0d4cc144c13c0052f5c11330030033053002413060a20028278c064cc1340092f5c1232330010010022259800800c52f5bded8c11323304f3376060980026e98c8cc004004dd59827001112cc004006297adef6c608991982919bb0304f0013750602e6eb4c140004cc00c00cc150008c1480050501980180198288011827800a09a91194c0040060070024004444b30010028800c4ca60020093053003cc00400a6eb8c1380066eacc13c0064444464b3001301f00180144c00c00505219194c00400600d0054004444b30010028800c4ca6002009305d003cc00400a6eb8c1600066eb4c16400600a8129004182d80120b2501d40688020c14400904f4a60026eb8c134c128dd5000cdd7181698251baa001a4004807a44b30010018a40011301b33002002304f00141312225980080145300103d87a80008acc004c104006260646609c609e00497ae08cc00400e60a00053007001400c824904d24444445300130070079111119198008009981b8032cc004c12cc154dd5002c48c8cdd7982d982c1baa305b3058375400400260b460ae6ea801a246466ebcc16cc160dd5001000982d182b9baa006414c44b30010018a508acc004c96600266ebcc0dcc160dd500080344c96600200314a3159800982e800c4c8ca60026eb8c1780066eb4c178c17c0066eb8c1780092225980099b8f001489008acc004cdc7801a441008acc004c14cc174dd50054566002604800513371200490404df701452820b68981200120b68a50416d14a082d860bc0026eb0c170006294105a20b430203300c3756607660b06ea8004c0340162941055182d000c528c4cc008008c16c00505420b098010014c00400522223322598009827013c6600260b260ac6ea80c260aa6ea81424466072004466ebcc170c164dd5182e182c9baa303c305937540020052305a305b305b305b305b305b305b305b305b00192cc004c0dc006200314800105448966002003149a264b30010018a4d1325980099b90375c60b260ba0066eb8c164006266008008660b800260bc0051533058491326b65797320696e206173736f63696174697665206c697374206172656e277420696e20617363656e64696e67206f726465720016415c60b800282d0c1700050594dd7a6101a00048888888c8c96600260a801113298009bac30630019bac306330643064001983198301baa05a48896600260b660c46ea8c11cc18cdd5006c4c96600260d000313259800980f983418329baa0018992cc004c1a8cc038018c1a4c198dd5000c566002660469210141003304b3758601a60cc6ea8174dd7183498331baa0108acc004cc08d2401014200300a304a306637540bb13259800982f800c4cc09124101430098008034c0d4cc1a40092f5c1301f330693035330693232323230513306d306e0043306d306e0033306d306e0023306d306e0013306d30513306d0094bd701837983780098370009836800983600098339baa0114bd7025eb833001301a3026306737540db375c60d460ce6ea81b66eb8c128c19cdd5008cc034dd6983518339baa00540254c0103d87a80004059159800982d800c4cc091240101440098008034c0d4cc1a40092f5c1301f330693035330693232323230513306d306e0043306d306e0033306d306e0023306d306e0013306d30513306d0094bd701837983780098370009836800983600098339baa0114bd7025eb826034604c60ce6ea81b6980103d87a8000405914a0832106418329baa0048a50418d14a0831a2c8338c1a0c194dd5182418329baa0018b20c430670018b20ca9800801cc088c18cdd5034d300103d879800040fd164180305f37540ad159800982980446600260be6ea8166444b30010028a6103d87a80008acc004c15c00626090660c860ca00497ae08cc00400e60cc005301d001400c82f906348cdc19bad306330603754002904040507b7a566df00dc88cc88cc896600260ba60c86ea8c1a0c1a4c1a4c194dd518341834803456600266e2000400a29462b30013370e0040031337106eb4c1a0c1a400cdd698341834802452820c4418914a08310dd698330011bad30660013061375460c800460c26ea800644b3001305630603754005132323322598009834801c0162c8330dd698330009bad3066002306600130613754005164179223259800982b800c56600260ae60c26ea800a298103d87a80008a6103d8798000417d159800982b000c56600260ac60c26ea800a2980103d87a80008a6103d87b8000417d1332259800982e000c4c96600266e2000c0062980103d87980008acc004cdc4000801c530103d87b80008a6103d87a800041888310dd6983398321baa0048acc004c164006298103d87b80008a6103d879800041848308dd6983298311baa0033061375400482f905f18301baa0029182319831192cc004c164c180dd5000c4c96600260b460c26ea8c114c188dd5183298311baa00389818198321ba80014bd7044c0c0cc190dd41819000a5eb8105f1bad3064306137540031001417860c660c06ea8c18cc180dd500099831192cc004c164c180dd5000c4c96600260b460c26ea8c114c188dd5182298311baa00389818198321ba80014bd7044c0c0cc190dd4180e800a5eb8105f1bad3064306137540031001417860c660c06ea8c10cc180dd5000a5eb8253001001a44100a4410041092298008015220100a44100800a006912cc004c15800a20031323048330643302330653062375400466044604c900119812800982298311baa002330643302230453062375400400260cc60cc60c46ea8008c09400905e48c96600260ac60c06ea8006260c860c26ea80062c82f0cc896600260ae00314c0103d87a80008acc004cdc4000a4001130483306430483306437506052004660c86ea0c0a40052f5c097ae089824198321824198321ba800233064375000297ae04bd7020be417c6eb4c18cc180dd50009bad304330603754003225980099b89001480022900044c8cdc19bad3065001375a60ca60cc00260c26ea8cc88c124cc194dd419b82375a60cc0046eb4c198004cc194dd419b82375a60cc60ce0046eb4c198c19c0052f5c060c26ea8c11ccc18cdd400099831a6010101004bd7018309baa002417925980098201bad30633060375400310018a60105d8799f00ff004175230633064306430643064306430643064001918319832183218321832183218321832183218321832000c8c18cc190c190c190c190c19000660be6ea8159222222222222222229800983a008cdd69839808cc040042444460266606e6606a660686606c0080046606e6606c00600860709040546b5c83982b983a1baa0013077307437540032259800983398389baa00289919191919191919194c004c1f80066eb8c1f80266eb4c1f802260fc00d307e005983f0024c1f800e64b3001307c0018acc004c150c1ec0062d13074307b00141e51641f46ea8c1f80092222222259800984380804c4cc080c2180403c4cc0800144cc0800104cc08000c4cc0800084cc0fc02004a2c84200860fc00260fa00260f800260f600260f400260f200260f000260ee00260e46ea800a2c837a6eb0c1cc00660e660e860e860e860e860e860e860e800291111114c004c1ec01e6eb4c1e801e44b300133710002900045300103d87a8000899803801000a0ec488a60026eb0c1f400e6eb4c1f4c1f800e444444b30013075307f375400913259800983b1840009baa00189bac30840130810137540031641f86600e0066eb4c20c04c20004dd500244c8c8cc896600260f26106026ea800a264b3001330424901015a0033062375660d0610a026ea8c1a0c21404dd500080344c96600260f4610a026ea8006264b3001308b010018991982d0008acc004cc11524010159005980099b8f375c60d66110026ea800403a266ebcc19cc22004dd5000806c528210a028992cc004c1f8c22004dd5000c4dd61846009844809baa0018b210c023300f37586116026110026ea80040162c842808c228040062c844008c21804dd5000c5908301183198321842809baa3068308501375400316420804610e026108026ea800a2c840808cc0b4010004dd69842809843008011bad308401001308001375400883ea6604a00a0049111192cc004c1d0c1f8dd500144c96600260746106026100026ea80062b30013303d491014100332259800983b9840809baa0028acc004c1dcc20404dd51842809841009baa0028983b998289bab3065308201375460ca6104026ea800cc104c20804dd504400c00507f400507f18321840009baa02a13305d375660c66100026ea8c18cc20004dd5000981f9840009baa086018992cc004c1d8c20004dd5000c4c9660026607e9210142003305f375660ca6104026ea8c194c20804dd500098329841009baa08801899912cc004c1e4c20c04dd5000c4c9660026112020031323305900115980099821a49014300332259800992cc004c1f400629462b30013081010018a518a50421804843008c21c04dd5198121845809844009baa002308b01308801375400313259800983f000c528c56600261020200314a314a0843009086011843809baa33024306b308801375400460d66110026ea8006294108501181080818109836198440098361984400982a19844009ba8337020166eb4c064c21804dd504600a5eb80cc22006600294698103d87a8000a60103d8798000420c0497ae03308801306c330880130543308801375066e0002cdd6980c9843009baa08c014bd701984400cc00528d300103d87a8000a60103d8798000420c0497ae04bd7045660026608692010144003233225980098408080144c9660026104026112026ea8c1b4c22804dd51846809845009baa014899b88002001899b89002001421c046eb4c23004c22404dd5001c56600260fc00514a114a2843009086011843009baa001337006eb4c064c21c04dd50189bad3054308701375411a02611202610c026ea8c22404c21804dd500844c966002660889210145003001375c60d4610e026ea80c62b3001330444901014600307b30370058acc004cc111241014700323306f00113375e00260ac66114026ea005ccc22804dd400825eb80cc0f4c22804c21c04dd50031bab305430870137540fd132598009840009843809baa0018b44c8cc896600261000200519800983899846809847009845809baa308e01308b01375460dc6116026ea8028cc23404c23804c23c04c23c04c23c04c23c04c23c04c23c04c23c04c23c04c23c04c23c04c23c04c22c04dd504880a5eb833001375660dc6116026ea8c1b8c22c04dd50064dd71847009845809baa091019bae308e01308b01375400c836a6eb0c1a8c22c04dd504100a444b30013304b4910148003047374c6082609a611c026ea8250062b30013304b4901014900308201303c3056375660e2611c026ea8c1c4c23804dd5007c566002660969201014a00306e0028acc004cc12d241014b0098009984800984880800a5eb8260b8661200200697ae098231984800983a1984800cc004c8c1d4cc24404c24804004cc24404c8c1d8cc24804c24c04004cc24804cc140c1ccc24004dd518399848009baa00b3054004309401309401001308f01375460e4611e026ea8028c24c04c24c04004c23804dd5004d300106d8799f4040ff00a4001375a606a611c026ea82500503a25eb812f5c13302798009bab3071308e01375460e2611c026ea80366eb8c24404c23804dd504a00cdd71848809847009baa0098012060375a606a611c026ea82500698103d879800040f513304b4901014c0098009984800984880984900800a5eb8260b8661200200697ae098231984800982e1984800983a19848009848809847009baa0383309001309101308e01375401266120026460ea6612202612402002661220260a6006612602612602002611c026ea8c1c4c23804dd500499848009ba73304c375860da611c026ea80248cc24404c24804004cc24404c24804c23c04dd5184900984980800a5eb80cc2400530103d87a80003309001375002697ae04bd7025eb826604e6082609a611c026ea825004cdc098021bad3035308e013754128026eb4c134c23804dd504280d300103d87a800040f514a084580a294108b0145282116028a50422c048acc004c1fc00a2653001308f010019bad308f01309001001cc004dd618379846009baa08301980f1846009baa09201a60103d879800041a09112cc004c24c04006264b30013375e60bc661240260486120026ea8258052f5c06126026120026ea8c24c04c24004dd518399848009baa0018992cc004c21804c24004dd5000c4c966002612c020031323301f00115980098069bae30960130930137540031323233229800acc004c23004dd6984d00984b809baa0028a400113302d302e307b309701375400a00284a00a6eb0c1d8c25c04dd504700cdd5984d00984d808022444b3001330574910148003053374c609e609a60b26134026ea8280062b3001330574901014900337126eb4c164c26804dd504880806c566002660ae9201014a0098009984e00984e8080125eb8260d06613802613a026134026ea8c1f4c26804dd500ca5eb8260a466138026100026613802646102026613a02613c020026613a0266066008646104026613c02613e020026613c0200e6140026140020026136026ea8c1f8c26c04dd500b184f80984f80800984d009baa0154bd7025eb8330013304e375660fa6134026ea8c1f4c26804dd500c9827800cdd7184e80984d009baa0a0019bae309d01309a01375402b3370060c200800681e298103d879800041251330574901014b0098009984e00984e80984f0080125eb8260d0661380201c97ae098291984e0098341984e00984e80984d009baa01b4bd7025eb833001330330013010375a60b26134026ea8244066eb8c27404c26804dd505000cdd7184e80984d009baa01599b8100400340f14c0103d87a8000412514a084b80a2941097014528212e0218151982b983c184a809baa3078309501375402000260766068002612e02002646612c0260ee6128026ea8c1ccc25004dd5184b808009984b00984b80984c00800a5eb82600201d03d80ccdd6183b1849809baa08a0184c80a02a8b2120023095010018b21260230910137540031642380460dc60de6120026ea8c1ccc24004dd5000c5908d01184900800c59090010c22c04dd5001c4ca60026eb4c23c04006611e0261200200398009bac306f308c01375410603301e308c013754124034c0103d879800041a1308f01308c01375460de6118026ea802d222259800984a0080144c96600266ebcc17ccc24c04c094c24404dd504b80a5eb80c25004c24404dd5184a009848809baa30743091013754003132598009843809848809baa0018992cc004c25c04006264660400022b3001300e375c612e026128026ea8006266453001309901002984d00800cc17002922232329800acc0056600200714a31309001375a613c026136026ea8005098014520008998189819183f984d809baa00830620024260053756613c02613e0200f309e01309f01004488966002660b692010148003042308201309e01375412a031598009982da48101490098009985000985080803a5eb8260d8661400201e97ae0982b19850009836198500099191843009985100985180801198510098518080099851009918438099851809852008009985180998309842009850809baa30800130a101375401660ca010614a02614a020026140026ea8c1fcc28004dd500519851009851809852009852008009985100a60103d87a8000330a201375004a97ae030a301001309e01375401097ae04bd704cc0dcc144c174c27804dd50520099b813014375a60ba613c026ea825404cdc0981c1bab308101309e01375400260700054c103d87a800041351598009982da49014a0098009985000985080804a5eb8260d8661400201e97ae0982b1985000984200998500099184280998508098510080099850809981b8021918430099851009851808009985100803185200985200800984f809baa308201309f013754034614602614602002613c026ea80652f5c097ae0cc004cc148dd5984080984f009baa308101309e01375403a60a6005375c614202613c026ea8290066eb8c28404c27804dd500cccdc0002801a080a6103d87a8000413513305b4901014b0098009985000800a5eb8260d8661400202297ae0982b19850009842009985000985080984f009baa01f4bd7025eb82b30010068801466002005375c614202613c026ea8290066eb8c28404c27804dd500cccdc09832802801a080426c054c0103d87a8000413514a084d80a294109b01452821360218179982d183e984d009baa307d309a01375402a60bc002b30010018806c4c96600266e2000403a201d1001425c0460c0607060f86132026ea8c1e0c26404dd5001a12c024c00403e07d01a9bac307730940137541160309a0140586eb0c1ccc25004dd504580c5909101184b00800c59094011849009baa0018b211e02306f3070309101375460e86122026ea80062c847008c24c0400a2c8488086116026ea800d0880121100230880137540026e04c08cdd598361844809baa306c30890137540146116026110026ea80050850118359843809baa0318a5042100514a084200a2941084011b8f375c611202610c026ea800629410830145282106023088010018b210c023084013754003164204046605401a610a026104026ea8c21404c20804dd518329841009baa00330603061308201375460ca6104026ea80062c83f8c21004c20404dd5000c5907e19815805807c5907d45907d184100983f9baa0028b20f82222233223233088013232306e3308a01308b010023308a01308b010013308a0132306f3308b01308c010013308b015980099b88375a6118026112026ea8010dd69846009844809baa3304c306c308901375400a609a9040546b5c83c5300105d8799f00ff008802210c02308d01308d01001308801375460d66110026ea8028cc22804dd3998231bac306730880137540144661160261180200266116026118026112026ea8c23004c234040052f5c0611802611802611802002611602002610c026ea801ccc22004dd3194c0040073001375c611402610e026ea80266eb0c198c21c04dd5004cdd618231843809baa00898331843809baa00548888ca6002003004806400d00111112cc00400e297ae08cc004dd6184900801cc24c0400e6eb0c2480400a61260200530753309101306e308f0137540166612202609c611e026ea802d2f5c130753309101306e308f01375401666122026ea0c17cdd698271847809baa00b4bd70244444466446644b300100b899191984e809ba73309d010063309d0137513001001acc004c24004c26804dd5001c4c96600266ebcc27c040040222613e026138026ea8c27c04c280040062c84c808dd6184f00984d809baa0038acc005660026126026134026ea8c27804c27c0400a26126026134026ea8c1f8c26c04dd5183f00244cc0e401001d09801440062c84c00909801530105d8799f00ff0080ba0504bd704c004042017009806a020309d010015980099baf309c0100200689984d80984e00984c809baa309c01309d010023309b019800a51a6103d87a8000a60103d879800042580497ae08acc004cc159241015800330370020068a5eb8505d8799f00ff008103d879800045909601212c028992cc004cdd7802984e80800c4c8c96600266ebcc27c0401402626613c026e9ccc2780401ccc27804dd44c004006b3001309401309b013754613e02614002005159800984a00984d809baa0048800c590990145660026122026136026ea8012264b30013375e614002002013130a001309d013754614002614202003164268046eb0c27c04c27004dd500245909901213202984f80985000801c06102925eb82600202300c8054c2800403901145909901184f00800984d009baa309d01309e010038b212e02375861380201684d00a6002021002984d008034dd6183d184b809baa00180b403501b192cc004c24004c25c04dd5000c5300103d87a80008983f1984d009ba79800808c00e6136026130026ea80066eb0c1ecc26004dd5001405e01c80e12f5c084a808c26804c26c04018c26004018c26004c264040188480094bd6f7b63020022225980080144006330010039846808014c8ca6002007375c611c026116026ea80066eb8c1b8c22c04dd5000cdd6984700984780801205a308d010013758611802004801908a0125eb816600266e20dd698321842809baa001375a60c8610a026ea800a298105d8799f00ff008acc004cdc42400466e04dd698221842809baa002375a6088610a026ea8006298105d8799f00ff008acc004cdc41bad304430850137540026eb4c110c21404dd500144cc120cc118c1a0c21404dd50009844009842809baa002306b3308701375066e08dd69844009842809baa30880130850137540029040546b5c83a5eb822660906608c60d0610a026ea8004c22004c21404dd50011844009842809baa0014208048410090820118331841809baa005306230830137540081159800982880444c8c8c96600260ae60c26ea8006264b300130673300b00330663063375400315980099810249014100330483758601460c66ea8168dd7183318319baa00d8acc004cc081240101420030073047306337540b513259800982e18319baa0018b456600260b260c66ea8c19cc190dd5000c528c4cc085240101430098009bac30673068306800598191983300125eb826038660cc6064660cc64646464609c660d460d6008660d460d6006660d460d6004660d460d6002660d4980103d87a8000306c306c001306b001306a00130690013064375401c97ae04bd704c05cc08cc190dd5035530103d87a8000404c8309061182398319baa00d8a50418114a083022c8320c194c188dd5182298311baa30653062375400316417c6607800209e6eb0c18c004c17cdd502b45905c20b841704444b300130570018802466002009003991900118030009983219bb037520046ea00052f5bded8c12222232598009819000c00a260060028328ca6002009008803c8888a600200b003802400a00280310342818205a417c60040048acc004c12c09e26644b3001305000189991192cc004c140c168dd5000c4c96600266ebcc17cc170dd500082544c96600260a460b86ea8006264b30013375e60c260bc6ea8c184c178dd51820982f1baa0013061305e375460c260bc6ea8c104c178dd5001c4c96600260a660bc6ea800626464646464b30013068002899911982c9bac306900522598008014528c4c8c8c96600260de005133056306e00313305300113004306f0058b20d8306d001306d001375860d60048348dd698338029bad30670048b20ca375a60cc00260cc00260ca00260c800260be6ea80062c82e0cc050c184c178dd50009bab302b305e37540ab16416c60c060ba6ea80062c82d0cc01c00cdd6982f9830002459059182f182d9baa0018b20b033005001375a60ba00460b06ea8148dd6182d982c1baa04f8acc004c124006264646644b30013051305b3754005133225980099baf3061305e375400260c260bc6ea8c104c178dd500144c96600260a860bc6ea8006264b300130403302f3756608660c06ea8c10cc180dd5000982218301baa0668992cc004c158c180dd5000c4c96600260cc0031323259800982c98319baa002899191919194c004c1b00066eb8c1b001260d8007375a60d800491112cc004c1c401626605260e0012266086004264b300130630018991919912cc004c1d800e01f1641cc6eb4c1cc004dd69839801183980098371baa0058acc004c198006264646644b30013076003807c590731bad3073001375a60e600460e600260dc6ea80162c835906b18361baa0048b20dc183600098358009835000983480098321baa0028b20c215980099b8f375c608c60c66ea8004dd7183318319baa00d8acc004cc08124101410032332259800982d800c4c8c8ca60026eb4c1b000660da003375a60d8007375a60d800491112cc004c1c400e26602460e00060131641b8306c001306b00130663754007159800982f000c4c8c96600260d80050048b20d2375a60d400260cc6ea800e2b3001305a0018acc004c198dd5001c00a2c833a2b3001305800189919912cc004c1b400626601c60d800200b1641a86eb4c1a8004c1ac004c198dd5001c56600260ae00315980098331baa003801459067456600260ac003132598009835800c4c96600260ba60ce6ea8006264646644b3001307000380445906d1bad306d001375c60da00460da00260d06ea80062c8328c1a80062c8340c198dd5001c56600260aa00315980098331baa003801459067456600266e1d200e001899192cc004c1b000a0091641a46eb4c1a8004c198dd5001c56600266e1d2010001899192cc004c1b000a0091641a46eb4c1a8004c198dd5001c56600266e1d20120018acc004c198dd5001c00a2c833a2c831906320c6418c831906320c6418c8319063099baf0014c103d87f8000306337540026603260cc60c66ea8010dd5981818319baa05a8acc004cc081241014200330403756608c60c66ea8c118c18cdd5003982318319baa06989981024810143003375e608460c66ea8018c06ccc194c124cc196600201b3042306337540033370330013756608c60c66ea8c118c18cdd5003cdd7183318319baa0699bae30663063375401a822a60026eacc118c18cdd50034dd7183318319baa0699bae30663063375401a822a66e04cc0c8dd5982318319baa006304230633754002660646eacc118c18cdd5182318319baa00730423063375400280792f5c097ae08a50418114a083022c8300c1940062c8318c184dd5000c5905e181f181f98301baa30433060375400316417460c460be6ea80062c82e0cc024014dd69830982f1baa0588b20b6305f305c375400460be6eb0c17cc180c1800122c82c8cc0d400412088c96600260a40031323259800983180140122c8300dd69830800982e9baa0038acc004c15400626464b300130630028024590601bad3061001305d37540071598009828800c56600260ba6ea800e00516417916416882d105a182d9baa002375860b800260b06ea813e2b30013048001899194c004cc0d400412244b30010018a5eb8410180008101800044cc88cc180dd39983018308011bac306100133060374e660c060c260c40046eb0c184c1880052f5c06eb0c17c004cc008008c18000505d4dd6182e982f182f0012444b30013052305c375400713322598009831800c4c966002603460c660c06ea80062646464b300133020490101410030430018acc004cc0812410142009800803cc0c4cc1940192f5c1301b3306530493306532304a330663067001330663067306800133066306730680044bd7018319baa00d4bd7025eb826eacc118c18cdd5182318319baa004a60103d8798000404915980099810249014300301c374c653001375c60ce60c86ea80066eb8c11cc190dd5000c009029182118319baa06989981024901440032330010010032259800800c528c566003300100998199983380425eb82603a660ce603a660ce60d000297ae04bd704c060c110c194dd5035d300103d87a8000405113300200230690018a50418883322941060452820c08a50418060240026eb0c190004c8cc18cdd399198008009bac30650022259800800c52f5c11323322330020020012259800800c400e2660d060d20026600400460d40028338dd61833801198010011833800a0c833063306430650014bd70198028029980f1bac303f3060375401446644b300133712900518089bac30463063375400313232325980099b87375a60d20026eb4c114c198dd5182498331baa0108acc004cdc39bad3069306a001375a604a60cc6ea8c124c198dd500844cc1a0dd3998341826198341ba7306a00333068306930663754020660d000a97ae04bd70198341ba73306800533068304c33068306930663754008660d06e9ccc1a0dd380125eb812f5c097ae04bd7045906345906318329baa3068001375860ce0026eb0c118c18cdd5000c4cc19530101800033065374e660ca004660ca00297ae04bd7020c03064001306430650018b20ba30620018b20c03060305d3754608060ba6ea8c180c174dd5001cc004012608060ba6ea818e98103d879800040e5164168375860b800260b06ea813e2c82a905520aa30593056375406060aa6ea81422c829905311111991191919199119182319831183198301baa00c3306259800801c4c8c8c120cc190c194008cc190c194004cc190dd418191bad30413062375401260cc60cc00260ca00260c06ea9300118d8799fd8799f1b0de0b6b3a7640000ffd8799f00ff0000ff0089823198310021983119811182198301baa00700833062303f3060375400e660c46ea0cdc01bad301f3060375400eb30010058a400514800105d25eb8105d198311ba7323259800acc0040162946200e82fa266040002464b300133021490101570033712606860246eb0c11cc190dd5000a401513306630670023306659800803c4c128cc19930105d8799f00ff0033066374e660cc6e9ccc198c128cc198dd4181a1bad304330643754016660cc9810100004bd701983326010fd8799fd8799f00ffd87a80d87980ff004bd701bac30473064375400297ae089919192cc004cdd79835001003c4c134cc1a4c1a8c19cdd5002198349ba733069374e660d2609a660d2608c60ce6ea8038cc1a4dd4181b9bad30263067375401c97ae033069304d33069306a30673754002660d330014a34c103d87a8000a60103d87980004190660d330014a14c0103d87a8000a60103d8798000419097ae04bd70198349ba7330690073306932304e3306a306b0013306a9800a50a60103d87a8000a60103d8798000419460d860d800260ce6ea80052f5c060d600697ae08b20c83069306a001375860d00026eb0c11cc190dd5000a0c24bd7045906118331833800c400505f19199119801001000912cc0040062660cc6e9ccc19803ccc19800d2f5c097ae08994c004c1a000660d060d2003306900248896600266ebc00c04e2660d46e9ccc1a800ccc1a8c138cc1a8024cc1a8dd39919192cc004cdd7800805c4cc1b4dd39983680099836982899836806983798359baa306e306f0024bd701837801c5906818368009bac306c0013758609660d06ea80092f5c097ae00018998351ba73306a0033306a0024bd7019803003000a0ca1bac306700141946eb0c104c188dd5007182399831801198319ba733063374e660c6002660c6608e660c6006660c730014a34c103d87a8000a60103d87980004178660c730014a34c0103d87a8000a60103d8798000417897ae04bd7025eb812f5c0608c660c4607e60c06ea801ccc188c07cc180dd5003a5eb812f5c0b30010028a60105d8799f00ff008800a0b8337126eb4c180c174dd5000a40006603a64b30013053305d375400313061305e375460c260bc6ea80062980105d8799f00ff00416c64660020026eb0c0f4c178dd5005112cc0040062980103d87a80008992cc006600266ebc00530103d87a8000a50a5141751001899801801983200120ba325980099baf306300100b898231983118319832000a5eb822980103d87a800041746eb0c188005060198101980f18108031830182e9baa0043040305d37540086603a6084660bc6ea0cdc12cc00400629040546b5c83c5200241646eb4c17cc170dd5182f982e1baa0034bd7000119b88375a60bc60b66ea8cc070c178c16cdd5001000a410151ad720e66038603c90011980e801181e982d1baa001301c002303b3058375400844b300133710002900045300103d87a8000899801801000a0a60605c6ea802489660026048605c6ea800a26464646644b30013038003899804181b802099813801112cc00400a011132323259800981e80144cc03cc0f000c566002605c60706ea80062646464b3001304000289980a981f801899817800912cc00400a260126084015132323259800982280144cc060c11000c4cc0580044c010c1140162c8210c10c004c10c004dd61820801207e8b207a3758607c002607c00260726ea80062c81b22c81d0c0ec004c0ec004dd6181c801206e8b206a3758606a0026eb8c0d400cc0d4004c0d0004c0bcdd500145902c112cc004c090c0b8dd500144c8c8c8cc896600260700071330273758606e00a44b300100289980600200444c8c8c966002607a005133010303c00313300e00113004303d0058b2074303b001303b0013758607200481ba2c81a8c0d4004dd7181a801181a800981a00098179baa0028b20582259800981118161baa002899191919912cc004c0d800e266016606a00a00d1640cc64b300130310018acc004c024c0c00062d13029303000140b91640c86ea8c0cc004c966002606200315980098049818000c5a26052606000281722c8190dd518198011819800981900098169baa0028b20542259800981118161baa0028991919194c004dd6981a000cc0d000e6eb4c0d000922259800981c00244cc034c0dc01c4cc0340080222c81a8606800260660026064002605a6ea800a2c815116408c8118888c8cc0240108c008c030c0a4dd5000acc004c070c098dd5000c48cc014dd5980598141baa0010038918044c004dd5980598141baa0019bae302b30283754007375c601660506ea800d00a20482232330010010032259800800c5300103d87a80008992cc004cdd7981618149baa0010048980799815800a5eb82266006006605a0048130c0ac00502911180ecc00400a6eb8c0a0c094dd5000cdd7180418129baa001401c2232598009808800c4c966002604200313300630200010038b203c301c3754007159800980a000c4c8c8cc896600260480070068b2042375a60420026eb4c084008c084004c070dd5001c566002602000313232323298009bad30230019bad30230049bad3023003488966002604e0091330163758604c00a44b3001002805c4c8c8c9660026058005133013302b00313301000113004302c0058b2052302a001302a0013758605000481322c812060460026044002604200260386ea800e2b3001300e0018acc004c070dd5001c00a2c80ea2b3001300d001899192cc004c08800a00916407c6eb4c080004c070dd5001c5660026018003159800980e1baa00380145901d45660026016003159800980e1baa00380145901d4590192032406480c90192032406460346ea800888c966002601e003159800980d1baa00380145901b456600260240031323322598009810800c4cc01cc0800040162c80f0dd6980f000980f800980d1baa0038acc004c0380062646464b300130210028998039810001802c5901e1bad301f001301f001301a375400716405c80b9017180c1baa0022232598009807800c4c966002603e003133006301e0010038b2038301a37540071598009809000c56600260346ea800e00516406d16405c80b8c060dd5001112cc004c034c05cdd500144c8c8c966002603e005133007301e003132598009808800c4c96600260420031323259800980a000c4c966002604800313300c30230010098b2042301f3754005159800980b800c4c8c8ca60026eb4c0940066eb4c09400e6eb4c094009222598009814802403a2c8130604a0026048002603e6ea800a2c80e101c180e9baa00130200018b203c301c3754005159800980a000c56600260386ea800a00b16407516406480c8c068dd5000c5901c180e800980e800980c1baa0028b202a22c8038601200260086ea802629344d95900101"
1305
+ cborHex: "593ca7593ca4010100229800aba2aba1aba0aab9faab9eaab9dab9cab9a4888888896600264653001300900198049805000cdc3a400530090024888966002600460126ea800e33001300a3754007370e90004dc3a4009223233001001003223300300130020029b874801a6e1d20089b874802a6e1d200c48888888a6002602a0113015301600891192cc004c02800626464b3001301b0028024590181bae3019001301537540071598009806800c4c8c96600260360050048b2030375c6032002602a6ea800e2c809101218099baa00291192cc004c02800626464b3001301b0028024590181bad3019001301537540071598009806800c4c8c8cc8966002603a0070068b2034375a60340026eb4c068008c068004c054dd5001c590122024301337540049111191991191980080a0cc004dd2a40012232330010010032259800800c528456600266e3cdd71810800801c528c4cc008008c08800501b203e9180f180f980f980f980f800c8c078c07c0064446466446600400400244b3001001801c4c8cc896600266e4401c00a2b30013371e00e0051001803204089980280298138022040375c60400026eb4c084004c08c005021191919800800803112cc00400600713233225980099b910090028acc004cdc78048014400600c810a26600a00a60500088108dd718108009bab302200130240014088297adef6c6014800244646600200200644b30010018a5eb8226644b3001300500289981100119802002000c4cc01001000501d18108009811000a03e9b88480024603c603e603e0032598009807980d1baa0018980f180d9baa0018b20304888888888c8cc8966002602a604a6ea80822646644b3001301e3028375400313259800981118149baa001899912cc004c0c0006264b30013022302c3754003132332259800981a000c4cc08cdd61819800912cc00400a264b3001302830323754003133018300c3756602e60666ea80a8dd7181b18199baa0018b206032330010013758602c60666ea801c896600200314c103d87a80008992cc006600266ebc00530103d87a8000a50a5140c91001899801801981c8012064325980099b8f375c60700020171301b33037303830390014bd7045300103d87a800040c86eb0c0dc00503544c8c8cc8966002607400713005303a0068b206e375c606e0026eb8c0dc008c0dc004dd6181a80120668b2062375a60620026064002605a6ea80062c8150c028c02cc0b0dd5180798161baa302f0018b205a375c605a60546ea800660026eb0c034c0a8dd5010cc0b4c0b8c0b8c0b8c0b8c0b8c0b8c0a8dd5018530103d8798000401916409c605860526ea8c0b0c0a4dd5180618149baa302c302937540031640986002002660046eb0c0a8c09cdd500f00a912cc004006297ae089981518139815800998010011816000a0528acc004c06cc094dd5009c660026052604c6ea804e44b3001301d3027375400513232598009817001400e2c8158dd6981600098141baa0028b204a9b894801244b3001301d30273754005132323322598009818001c0162c8168dd698168009bad302d002302d001302837540051640952259800980e98139baa0028991919912cc004c0c000e00b1640b46eb8c0b4004dd71816801181680098141baa0028b204a488888cc88cc88cc8966002604c00313259800981b000c4cc014c0d400400e2c8198c0c4dd5005c566002605200313259800981b000c4c966002605060646ea800626464646464653001375a6078003375c607800d375c607800b37586078007303c00248888966002608400d1330123041009133031002225980080144c966002606c003132598009823000c4cc0acc11400404e2c8218c104dd50024566002607200315980098209baa00480945904245903e207c303f3754007132323259800982380144cc064c11800c4cc0700044c010c11c0162c8220c114004c114004dd6182180120828b207e181e000981d800981d000981c800981c00098199baa0018b206030350018b2066303137540171598009812800c4c966002606c00313300430350010038b2066303137540171640b8817102e0cc004c0b8dd5004cdc0240052298008014dd7181a18189baa0019bae301430313754002809a6e95200291819981a181a181a181a181a181a181a181a181a000c8888c8cc0040040148966002003133037337606ea4014dd400225eb7bdb1822653001375c606a003375a606c003303a00248896600266e4002400e26607666ec0dd48049ba80080058acc004cdc7804801c6600201300880148cc0f0cdd81ba900a37500020051001401d13303b337606ea400cdd400119803003000a06c40d8303800140d9222232330010010052259800800c4cc0dccdd81ba9005374c00897adef6c608994c004dd7181a800cdd5981b000cc0e80092225980099b9000900389981d99bb037520126e980200162b30013371e01200719800804c02200523303c337606ea4028dd30008014400500744cc0eccdd81ba9003374c0046600c00c00281b10360c0e0005036496600200314a314a0818a24444464b3001302a00180144c00c00503219b8000400391919800800801112cc004006297ae08991991199119801001000912cc00400620071323303a374e660746ea4014cc0e8c0dc004cc0e8c0e00052f5c0660060066078004607400281c0dd5981a8019bae3032001330030033037002303500140cd370290004dc4a4001222598009813800c52f5bded8c113232330010014bd6f7b630112cc00400626606e66ec0dd48031ba60034bd6f7b63044ca60026eb8c0d40066eacc0d800660740049112cc004cdc8005001c4cc0eccdd81ba900a374c00e00b15980099b8f00a00389981d99bb037520146e9801c00626607666ec0dd48019ba60023300600600140d881b0607000281b0c8cc0040052f5bded8c044b300100189981b19bb037520086ea000d2f5bded8c113298009bae30340019bad3035001981c8012444b30013372001000713303a337606ea4020dd4003802c56600266e3c02000e26607466ec0dd48041ba800700189981d19bb037520066ea0008cc018018005035206a181b800a06a40bd2301633032375066e08005208080a0f6f4acdbe01b4bd70488c05ccc0ccdd419b83337046eb4c0d0c0c4dd5001241010141ede959b7c0366eb4c0d0c0c4dd5000a5eb8244602e660666ea0cdc09bad3034303137540046eb4c0d0c0c4dd5000a5eb8244602e660666ea0cdc199b82375a606860626ea8008dd6981a18189baa001482020283dbd2b36f806d2f5c122301733033375066e00dd6981a18189baa002375a606860626ea80052f5c123033303430343034001911919800800801912cc004006297ae089981a9ba730033758606c00266004004606e00281a244b30010018800c54cc0bc008400502e488c966002604e0031323259800981c00140122c81a8dd7181b00098191baa0038acc004c0a80062b3001303237540070028b20668b205e40bc60606ea800a6e0120019baf01d9baf3013302f375404d374a900224444444444444444444444444530012259800800c520008980d998010011827800a09891192cc004c104c12cdd5000c4c13cc130dd5000c59049191919800800801912cc004006298103d87a80008992cc004cdd78021827000c4c0d4cc144c13c0052f5c11330030033053002413060a20028278c064cc1340092f5c1232330010010022259800800c52f5bded8c11323304f3376060980026e98c8cc004004dd59827001112cc004006297adef6c608991982919bb0304f0013750602e6eb4c140004cc00c00cc150008c1480050501980180198288011827800a09a91194c0040060070024004444b30010028800c4ca60020093053003cc00400a6eb8c1380066eacc13c0064444464b3001301f00180144c00c00505219194c00400600d0054004444b30010028800c4ca6002009305d003cc00400a6eb8c1600066eb4c16400600a8129004182d80120b2501d40688020c14400904f4a60026eb8c134c128dd5000cdd7181698251baa001a4004807a44b30010018a40011301b33002002304f00141312225980080145300103d87a80008acc004c104006260646609c609e00497ae08cc00400e60a00053007001400c824904d244444453001300700791111191919800800803912cc00400629422b300132598009802000c56600266ebcc0e0c164dd5000803c4c96600200314a3159800982f000c4c8ca60026eb8c17c0066eb4c17cc1800066eb8c17c0092225980099b8f001489008acc004cdc7801a441008acc004c150c178dd5005c566002604a00513371200490404df701452820b88981280120b88a50417114a082e060be0026eb0c174006294105b20b630213300d3756607860b26ea8004c03801a2941056452820ac305b0018a51899801001182e000a0aa4164b3001304a3054375400912323375e60b460ae6ea8c168c15cdd5001000982c982b1baa005891919baf305a3057375400400260b260ac6ea80150524c00800a6002002911119912cc004c13809e33001305930563754061305537540a1223303900223375e60b860b26ea8c170c164dd5181e182c9baa0010029182d182d982d982d982d982d982d982d982d800c966002606e00310018a400082a244b30010018a4d13259800800c5268992cc004cdc81bae3059305d003375c60b20031330040043305c001305e0028a9982c249326b65797320696e206173736f63696174697665206c697374206172656e277420696e20617363656e64696e67206f726465720016415c60b800282d0c1700050594dd7a6101a00048888888c8c96600260a801113298009bac30630019bac306330643064001983198301baa05a48896600260b660c46ea8c11cc18cdd5006c4c96600260d000313259800980f983418329baa0018992cc004c1a8cc038018c1a4c198dd5000c566002660469210141003304b3758601a60cc6ea8174dd7183498331baa0108acc004cc08d2401014200300a304a306637540bb13259800982f800c4cc09124101430098008034c0d4cc1a40092f5c1301f330693035330693232323230513306d306e0043306d306e0033306d306e0023306d306e0013306d30513306d0094bd701837983780098370009836800983600098339baa0114bd7025eb833001301a3026306737540db375c60d460ce6ea81b66eb8c128c19cdd5008cc034dd6983518339baa00540254c0103d87a80004059159800982d800c4cc091240101440098008034c0d4cc1a40092f5c1301f330693035330693232323230513306d306e0043306d306e0033306d306e0023306d306e0013306d30513306d0094bd701837983780098370009836800983600098339baa0114bd7025eb826034604c60ce6ea81b6980103d87a8000405914a0832106418329baa0048a50418d14a0831a2c8338c1a0c194dd5182418329baa0018b20c430670018b20ca9800801cc088c18cdd5034d300103d879800040fd164180305f37540ad159800982980446600260be6ea8166444b30010028a6103d87a80008acc004c15c00626090660c860ca00497ae08cc00400e60cc005301d001400c82f906348cdc19bad306330603754002904040507b7a566df00dc88cc88cc896600260ba60c86ea8c1a0c1a4c1a4c194dd518341834803456600266e2000400a29462b30013370e0040031337106eb4c1a0c1a400cdd698341834802452820c4418914a08310dd698330011bad30660013061375460c800460c26ea800644b3001305630603754005132323322598009834801c0162c8330dd698330009bad3066002306600130613754005164179223259800982b800c56600260ae60c26ea800a298103d87a80008a6103d8798000417d159800982b000c56600260ac60c26ea800a2980103d87a80008a6103d87b8000417d1332259800982e000c4c96600266e2000c0062980103d87980008acc004cdc4000801c530103d87b80008a6103d87a800041888310dd6983398321baa0048acc004c164006298103d87b80008a6103d879800041848308dd6983298311baa0033061375400482f905f18301baa0029182319831192cc004c164c180dd5000c4c96600260b460c26ea8c114c188dd5183298311baa00389818198321ba80014bd7044c0c0cc190dd41819000a5eb8105f1bad3064306137540031001417860c660c06ea8c18cc180dd500099831192cc004c164c180dd5000c4c96600260b460c26ea8c114c188dd5182298311baa00389818198321ba80014bd7044c0c0cc190dd4180e800a5eb8105f1bad3064306137540031001417860c660c06ea8c10cc180dd5000a5eb8253001001a44100a4410041092298008015220100a44100800a006912cc004c15800a20031323048330643302330653062375400466044604c900119812800982298311baa002330643302230453062375400400260cc60cc60c46ea8008c09400905e48c96600260ac60c06ea8006260c860c26ea80062c82f0cc896600260ae00314c0103d87a80008acc004cdc4000a4001130483306430483306437506052004660c86ea0c0a40052f5c097ae089824198321824198321ba800233064375000297ae04bd7020be417c6eb4c18cc180dd50009bad304330603754003225980099b89001480022900044c8cdc19bad3065001375a60ca60cc00260c26ea8cc88c124cc194dd419b82375a60cc0046eb4c198004cc194dd419b82375a60cc60ce0046eb4c198c19c0052f5c060c26ea8c11ccc18cdd400099831a6010101004bd7018309baa002417925980098201bad30633060375400310018a60105d8799f00ff004175230633064306430643064306430643064001918319832183218321832183218321832183218321832000c8c18cc190c190c190c190c19000660be6ea8159222222222222222229800983a008cdd69839808cc040042444460266606e6606a660686606c0080046606e6606c00600860709040546b5c83982b983a1baa0013077307437540032259800983398389baa00289919191919191919194c004c1f80066eb8c1f80266eb4c1f802260fc00d307e005983f0024c1f800e64b3001307c0018acc004c150c1ec0062d13074307b00141e51641f46ea8c1f80092222222259800984380804c4cc080c2180403c4cc0800144cc0800104cc08000c4cc0800084cc0fc02004a2c84200860fc00260fa00260f800260f600260f400260f200260f000260ee00260e46ea800a2c837a6eb0c1cc00660e660e860e860e860e860e860e860e800291111114c004c1ec01e6eb4c1e801e44b300133710002900045300103d87a8000899803801000a0ec488a60026eb0c1f400e6eb4c1f4c1f800e444444b30013075307f375400913259800983b1840009baa00189bac30840130810137540031641f86600e0066eb4c20c04c20004dd500244c8c8cc896600260f26106026ea800a264b3001330424901015a0033062375660d0610a026ea8c1a0c21404dd500080344c96600260f4610a026ea8006264b3001308b010018991982d0008acc004cc11524010159005980099b8f375c60d66110026ea800403a266ebcc19cc22004dd5000806c528210a028992cc004c1f8c22004dd5000c4dd61846009844809baa0018b210c023300f37586116026110026ea80040162c842808c228040062c844008c21804dd5000c5908301183198321842809baa3068308501375400316420804610e026108026ea800a2c840808cc0b4010004dd69842809843008011bad308401001308001375400883ea6604a00a0049111192cc004c1d0c1f8dd500144c96600260746106026100026ea80062b30013303d491014100332259800983b9840809baa0028acc004c1dcc20404dd51842809841009baa0028983b998289bab3065308201375460ca6104026ea800cc104c20804dd504400c00507f400507f18321840009baa02a13305d375660c66100026ea8c18cc20004dd5000981f9840009baa086018992cc004c1d8c20004dd5000c4c9660026607e9210142003305f375660ca6104026ea8c194c20804dd500098329841009baa08801899912cc004c1e4c20c04dd5000c4c9660026112020031323305900115980099821a49014300332259800992cc004c1f400629462b30013081010018a518a50421804843008c21c04dd5198121845809844009baa002308b01308801375400313259800983f000c528c56600261020200314a314a0843009086011843809baa33024306b308801375400460d66110026ea8006294108501181080818109836198440098361984400982a19844009ba8337020166eb4c064c21804dd504600a5eb80cc22006600294698103d87a8000a60103d8798000420c0497ae03308801306c330880130543308801375066e0002cdd6980c9843009baa08c014bd701984400cc00528d300103d87a8000a60103d8798000420c0497ae04bd7045660026608692010144003233225980098408080144c9660026104026112026ea8c1b4c22804dd51846809845009baa014899b88002001899b89002001421c046eb4c23004c22404dd5001c56600260fc00514a114a2843009086011843009baa001337006eb4c064c21c04dd50189bad3054308701375411a02611202610c026ea8c22404c21804dd500844c966002660889210145003001375c60d4610e026ea80c62b3001330444901014600307b30370058acc004cc111241014700323306f00113375e00260ac66114026ea005ccc22804dd400825eb80cc0f4c22804c21c04dd50031bab305430870137540fd132598009840009843809baa0018b44c8cc896600261000200519800983899846809847009845809baa308e01308b01375460dc6116026ea8028cc23404c23804c23c04c23c04c23c04c23c04c23c04c23c04c23c04c23c04c23c04c23c04c23c04c22c04dd504880a5eb833001375660dc6116026ea8c1b8c22c04dd50064dd71847009845809baa091019bae308e01308b01375400c836a6eb0c1a8c22c04dd504100a444b30013304b4910148003047374c6082609a611c026ea8250062b30013304b4901014900308201303c3056375660e2611c026ea8c1c4c23804dd5007c566002660969201014a00306e0028acc004cc12d241014b0098009984800984880800a5eb8260b8661200200697ae098231984800983a1984800cc004c8c1d4cc24404c24804004cc24404c8c1d8cc24804c24c04004cc24804cc140c1ccc24004dd518399848009baa00b3054004309401309401001308f01375460e4611e026ea8028c24c04c24c04004c23804dd5004d300106d8799f4040ff00a4001375a606a611c026ea82500503a25eb812f5c13302798009bab3071308e01375460e2611c026ea80366eb8c24404c23804dd504a00cdd71848809847009baa0098012060375a606a611c026ea82500698103d879800040f513304b4901014c0098009984800984880984900800a5eb8260b8661200200697ae098231984800982e1984800983a19848009848809847009baa0383309001309101308e01375401266120026460ea6612202612402002661220260a6006612602612602002611c026ea8c1c4c23804dd500499848009ba73304c375860da611c026ea80248cc24404c24804004cc24404c24804c23c04dd5184900984980800a5eb80cc2400530103d87a80003309001375002697ae04bd7025eb826604e6082609a611c026ea825004cdc098021bad3035308e013754128026eb4c134c23804dd504280d300103d87a800040f514a084580a294108b0145282116028a50422c048acc004c1fc00a2653001308f010019bad308f01309001001cc004dd618379846009baa08301980f1846009baa09201a60103d879800041a09112cc004c24c04006264b30013375e60bc661240260486120026ea8258052f5c06126026120026ea8c24c04c24004dd518399848009baa0018992cc004c21804c24004dd5000c4c966002612c020031323301f00115980098069bae30960130930137540031323233229800acc004c23004dd6984d00984b809baa0028a400113302d302e307b309701375400a00284a00a6eb0c1d8c25c04dd504700cdd5984d00984d808022444b3001330574910148003053374c609e609a60b26134026ea8280062b3001330574901014900337126eb4c164c26804dd504880806c566002660ae9201014a0098009984e00984e8080125eb8260d06613802613a026134026ea8c1f4c26804dd500ca5eb8260a466138026100026613802646102026613a02613c020026613a0266066008646104026613c02613e020026613c0200e6140026140020026136026ea8c1f8c26c04dd500b184f80984f80800984d009baa0154bd7025eb8330013304e375660fa6134026ea8c1f4c26804dd500c9827800cdd7184e80984d009baa0a0019bae309d01309a01375402b3370060c200800681e298103d879800041251330574901014b0098009984e00984e80984f0080125eb8260d0661380201c97ae098291984e0098341984e00984e80984d009baa01b4bd7025eb833001330330013010375a60b26134026ea8244066eb8c27404c26804dd505000cdd7184e80984d009baa01599b8100400340f14c0103d87a8000412514a084b80a2941097014528212e0218151982b983c184a809baa3078309501375402000260766068002612e02002646612c0260ee6128026ea8c1ccc25004dd5184b808009984b00984b80984c00800a5eb82600201d03d80ccdd6183b1849809baa08a0184c80a02a8b2120023095010018b21260230910137540031642380460dc60de6120026ea8c1ccc24004dd5000c5908d01184900800c59090010c22c04dd5001c4ca60026eb4c23c04006611e0261200200398009bac306f308c01375410603301e308c013754124034c0103d879800041a1308f01308c01375460de6118026ea802d222259800984a0080144c96600266ebcc17ccc24c04c094c24404dd504b80a5eb80c25004c24404dd5184a009848809baa30743091013754003132598009843809848809baa0018992cc004c25c04006264660400022b3001300e375c612e026128026ea8006266453001309901002984d00800cc17002922232329800acc0056600200714a31309001375a613c026136026ea8005098014520008998189819183f984d809baa00830620024260053756613c02613e0200f309e01309f01004488966002660b692010148003042308201309e01375412a031598009982da48101490098009985000985080803a5eb8260d8661400201e97ae0982b19850009836198500099191843009985100985180801198510098518080099851009918438099851809852008009985180998309842009850809baa30800130a101375401660ca010614a02614a020026140026ea8c1fcc28004dd500519851009851809852009852008009985100a60103d87a8000330a201375004a97ae030a301001309e01375401097ae04bd704cc0dcc144c174c27804dd50520099b813014375a60ba613c026ea825404cdc0981c1bab308101309e01375400260700054c103d87a800041351598009982da49014a0098009985000985080804a5eb8260d8661400201e97ae0982b1985000984200998500099184280998508098510080099850809981b8021918430099851009851808009985100803185200985200800984f809baa308201309f013754034614602614602002613c026ea80652f5c097ae0cc004cc148dd5984080984f009baa308101309e01375403a60a6005375c614202613c026ea8290066eb8c28404c27804dd500cccdc0002801a080a6103d87a8000413513305b4901014b0098009985000800a5eb8260d8661400202297ae0982b19850009842009985000985080984f009baa01f4bd7025eb82b30010068801466002005375c614202613c026ea8290066eb8c28404c27804dd500cccdc09832802801a080426c054c0103d87a8000413514a084d80a294109b01452821360218179982d183e984d009baa307d309a01375402a60bc002b30010018806c4c96600266e2000403a201d1001425c0460c0607060f86132026ea8c1e0c26404dd5001a12c024c00403e07d01a9bac307730940137541160309a0140586eb0c1ccc25004dd504580c5909101184b00800c59094011849009baa0018b211e02306f3070309101375460e86122026ea80062c847008c24c0400a2c8488086116026ea800d0880121100230880137540026e04c08cdd598361844809baa306c30890137540146116026110026ea80050850118359843809baa0318a5042100514a084200a2941084011b8f375c611202610c026ea800629410830145282106023088010018b210c023084013754003164204046605401a610a026104026ea8c21404c20804dd518329841009baa00330603061308201375460ca6104026ea80062c83f8c21004c20404dd5000c5907e19815805807c5907d45907d184100983f9baa0028b20f82222233223233088013232306e3308a01308b010023308a01308b010013308a0132306f3308b01308c010013308b015980099b88375a6118026112026ea8010dd69846009844809baa3304c306c308901375400a609a9040546b5c83c5300105d8799f00ff008802210c02308d01308d01001308801375460d66110026ea8028cc22804dd3998231bac306730880137540144661160261180200266116026118026112026ea8c23004c234040052f5c0611802611802611802002611602002610c026ea801ccc22004dd3194c0040073001375c611402610e026ea80266eb0c198c21c04dd5004cdd618231843809baa00898331843809baa00548888ca6002003004806400d00111112cc00400e297ae08cc004dd6184900801cc24c0400e6eb0c2480400a61260200530753309101306e308f0137540166612202609c611e026ea802d2f5c130753309101306e308f01375401666122026ea0c17cdd698271847809baa00b4bd70244444466446644b300100b899191984e809ba73309d010063309d0137513001001acc004c24004c26804dd5001c4c96600266ebcc27c040040222613e026138026ea8c27c04c280040062c84c808dd6184f00984d809baa0038acc005660026126026134026ea8c27804c27c0400a26126026134026ea8c1f8c26c04dd5183f00244cc0e401001d09801440062c84c00909801530105d8799f00ff0080ba0504bd704c004042017009806a020309d010015980099baf309c0100200689984d80984e00984c809baa309c01309d010023309b019800a51a6103d87a8000a60103d879800042580497ae08acc004cc159241015800330370020068a5eb8505d8799f00ff008103d879800045909601212c028992cc004cdd7802984e80800c4c8c96600266ebcc27c0401402626613c026e9ccc2780401ccc27804dd44c004006b3001309401309b013754613e02614002005159800984a00984d809baa0048800c590990145660026122026136026ea8012264b30013375e614002002013130a001309d013754614002614202003164268046eb0c27c04c27004dd500245909901213202984f80985000801c06102925eb82600202300c8054c2800403901145909901184f00800984d009baa309d01309e010038b212e02375861380201684d00a6002021002984d008034dd6183d184b809baa00180b403501b192cc004c24004c25c04dd5000c5300103d87a80008983f1984d009ba79800808c00e6136026130026ea80066eb0c1ecc26004dd5001405e01c80e12f5c084a808c26804c26c04018c26004018c26004c264040188480094bd6f7b63020022225980080144006330010039846808014c8ca6002007375c611c026116026ea80066eb8c1b8c22c04dd5000cdd6984700984780801205a308d010013758611802004801908a0125eb816600266e20dd698321842809baa001375a60c8610a026ea800a298105d8799f00ff008acc004cdc42400466e04dd698221842809baa002375a6088610a026ea8006298105d8799f00ff008acc004cdc41bad304430850137540026eb4c110c21404dd500144cc120cc118c1a0c21404dd50009844009842809baa002306b3308701375066e08dd69844009842809baa30880130850137540029040546b5c83a5eb822660906608c60d0610a026ea8004c22004c21404dd50011844009842809baa0014208048410090820118331841809baa005306230830137540081159800982880444c8c8c96600260ae60c26ea8006264b300130673300b00330663063375400315980099810249014100330483758601460c66ea8168dd7183318319baa00d8acc004cc081240101420030073047306337540b513259800982e18319baa0018b456600260b260c66ea8c19cc190dd5000c528c4cc085240101430098009bac30673068306800598191983300125eb826038660cc6064660cc64646464609c660d460d6008660d460d6006660d460d6004660d460d6002660d4980103d87a8000306c306c001306b001306a00130690013064375401c97ae04bd704c05cc08cc190dd5035530103d87a8000404c8309061182398319baa00d8a50418114a083022c8320c194c188dd5182298311baa30653062375400316417c6607800209e6eb0c18c004c17cdd502b45905c20b841704444b300130570018802466002009003991900118030009983219bb037520046ea00052f5bded8c12222232598009819000c00a260060028328ca6002009008803c8888a600200b003802400a00280310342818205a417c60040048acc004c12c09e26644b3001305000189991192cc004c140c168dd5000c4c96600266ebcc17cc170dd500082544c96600260a460b86ea8006264b30013375e60c260bc6ea8c184c178dd51820982f1baa0013061305e375460c260bc6ea8c104c178dd5001c4c96600260a660bc6ea800626464646464b30013068002899911982c9bac306900522598008014528c4c8c8c96600260de005133056306e00313305300113004306f0058b20d8306d001306d001375860d60048348dd698338029bad30670048b20ca375a60cc00260cc00260ca00260c800260be6ea80062c82e0cc050c184c178dd50009bab302b305e37540ab16416c60c060ba6ea80062c82d0cc01c00cdd6982f9830002459059182f182d9baa0018b20b033005001375a60ba00460b06ea8148dd6182d982c1baa04f8acc004c124006264646644b30013051305b3754005133225980099baf3061305e375400260c260bc6ea8c104c178dd500144c96600260a860bc6ea8006264b300130403302f3756608660c06ea8c10cc180dd5000982218301baa0668992cc004c158c180dd5000c4c96600260cc0031323259800982c98319baa002899191919194c004c1b00066eb8c1b001260d8007375a60d800491112cc004c1c401626605260e0012266086004264b300130630018991919912cc004c1d800e01f1641cc6eb4c1cc004dd69839801183980098371baa0058acc004c198006264646644b30013076003807c590731bad3073001375a60e600460e600260dc6ea80162c835906b18361baa0048b20dc183600098358009835000983480098321baa0028b20c215980099b8f375c608c60c66ea8004dd7183318319baa00d8acc004cc08124101410032332259800982d800c4c8c8ca60026eb4c1b000660da003375a60d8007375a60d800491112cc004c1c400e26602460e00060131641b8306c001306b00130663754007159800982f000c4c8c96600260d80050048b20d2375a60d400260cc6ea800e2b3001305a0018acc004c198dd5001c00a2c833a2b3001305800189919912cc004c1b400626601c60d800200b1641a86eb4c1a8004c1ac004c198dd5001c56600260ae00315980098331baa003801459067456600260ac003132598009835800c4c96600260ba60ce6ea8006264646644b3001307000380445906d1bad306d001375c60da00460da00260d06ea80062c8328c1a80062c8340c198dd5001c56600260aa00315980098331baa003801459067456600266e1d200e001899192cc004c1b000a0091641a46eb4c1a8004c198dd5001c56600266e1d2010001899192cc004c1b000a0091641a46eb4c1a8004c198dd5001c56600266e1d20120018acc004c198dd5001c00a2c833a2c831906320c6418c831906320c6418c8319063099baf0014c103d87f8000306337540026603260cc60c66ea8010dd5981818319baa05a8acc004cc081241014200330403756608c60c66ea8c118c18cdd5003982318319baa06989981024810143003375e608460c66ea8018c06ccc194c124cc196600201b3042306337540033370330013756608c60c66ea8c118c18cdd5003cdd7183318319baa0699bae30663063375401a822a60026eacc118c18cdd50034dd7183318319baa0699bae30663063375401a822a66e04cc0c8dd5982318319baa006304230633754002660646eacc118c18cdd5182318319baa00730423063375400280792f5c097ae08a50418114a083022c8300c1940062c8318c184dd5000c5905e181f181f98301baa30433060375400316417460c460be6ea80062c82e0cc024014dd69830982f1baa0588b20b6305f305c375400460be6eb0c17cc180c1800122c82c8cc0d400412088c96600260a40031323259800983180140122c8300dd69830800982e9baa0038acc004c15400626464b300130630028024590601bad3061001305d37540071598009828800c56600260ba6ea800e00516417916416882d105a182d9baa002375860b800260b06ea813e2b30013048001899194c004cc0d400412244b30010018a5eb8410180008101800044cc88cc180dd39983018308011bac306100133060374e660c060c260c40046eb0c184c1880052f5c06eb0c17c004cc008008c18000505d4dd6182e982f182f0012444b30013052305c375400713322598009831800c4c966002603460c660c06ea80062646464b300133020490101410030430018acc004cc0812410142009800803cc0c4cc1940192f5c1301b3306530493306532304a330663067001330663067306800133066306730680044bd7018319baa00d4bd7025eb826eacc118c18cdd5182318319baa004a60103d8798000404915980099810249014300301c374c653001375c60ce60c86ea80066eb8c11cc190dd5000c009029182118319baa06989981024901440032330010010032259800800c528c566003300100998199983380425eb82603a660ce603a660ce60d000297ae04bd704c060c110c194dd5035d300103d87a8000405113300200230690018a50418883322941060452820c08a50418060240026eb0c190004c8cc18cdd399198008009bac30650022259800800c52f5c11323322330020020012259800800c400e2660d060d20026600400460d40028338dd61833801198010011833800a0c833063306430650014bd70198028029980f1bac303f3060375401446644b300133712900518089bac30463063375400313232325980099b87375a60d20026eb4c114c198dd5182498331baa0108acc004cdc39bad3069306a001375a604a60cc6ea8c124c198dd500844cc1a0dd3998341826198341ba7306a00333068306930663754020660d000a97ae04bd70198341ba73306800533068304c33068306930663754008660d06e9ccc1a0dd380125eb812f5c097ae04bd7045906345906318329baa3068001375860ce0026eb0c118c18cdd5000c4cc19530101800033065374e660ca004660ca00297ae04bd7020c03064001306430650018b20ba30620018b20c03060305d3754608060ba6ea8c180c174dd5001cc004012608060ba6ea818e98103d879800040e5164168375860b800260b06ea813e2c82a905520aa30593056375406060aa6ea81422c829905311111991191919199119182319831183198301baa00c3306259800801c4c8c8c120cc190c194008cc190c194004cc190dd418191bad30413062375401260cc60cc00260ca00260c06ea9300118d8799fd8799f1b0de0b6b3a7640000ffd8799f00ff0000ff0089823198310021983119811182198301baa00700833062303f3060375400e660c46ea0cdc01bad301f3060375400eb30010058a400514800105d25eb8105d198311ba7323259800acc0040162946200e82fa266040002464b300133021490101570033712606860246eb0c11cc190dd5000a401513306630670023306659800803c4c128cc19930105d8799f00ff0033066374e660cc6e9ccc198c128cc198dd4181a1bad304330643754016660cc9810100004bd701983326010fd8799fd8799f00ffd87a80d87980ff004bd701bac30473064375400297ae089919192cc004cdd79835001003c4c134cc1a4c1a8c19cdd5002198349ba733069374e660d2609a660d2608c60ce6ea8038cc1a4dd4181b9bad30263067375401c97ae033069304d33069306a30673754002660d330014a34c103d87a8000a60103d87980004190660d330014a14c0103d87a8000a60103d8798000419097ae04bd70198349ba7330690073306932304e3306a306b0013306a9800a50a60103d87a8000a60103d8798000419460d860d800260ce6ea80052f5c060d600697ae08b20c83069306a001375860d00026eb0c11cc190dd5000a0c24bd7045906118331833800c400505f19199119801001000912cc0040062660cc6e9ccc19803ccc19800d2f5c097ae08994c004c1a000660d060d2003306900248896600266ebc00c04e2660d46e9ccc1a800ccc1a8c138cc1a8024cc1a8dd39919192cc004cdd7800805c4cc1b4dd39983680099836982899836806983798359baa306e306f0024bd701837801c5906818368009bac306c0013758609660d06ea80092f5c097ae00018998351ba73306a0033306a0024bd7019803003000a0ca1bac306700141946eb0c104c188dd5007182399831801198319ba733063374e660c6002660c6608e660c6006660c730014a34c103d87a8000a60103d87980004178660c730014a34c0103d87a8000a60103d8798000417897ae04bd7025eb812f5c0608c660c4607e60c06ea801ccc188c07cc180dd5003a5eb812f5c0b30010028a60105d8799f00ff008800a0b8337126eb4c180c174dd5000a40006603a64b30013053305d375400313061305e375460c260bc6ea80062980105d8799f00ff00416c64660020026eb0c0f4c178dd5005112cc0040062980103d87a80008992cc006600266ebc00530103d87a8000a50a5141751001899801801983200120ba325980099baf306300100b898231983118319832000a5eb822980103d87a800041746eb0c188005060198101980f18108031830182e9baa0043040305d37540086603a6084660bc6ea0cdc12cc00400629040546b5c83c5200241646eb4c17cc170dd5182f982e1baa0034bd7000119b88375a60bc60b66ea8cc070c178c16cdd5001000a410151ad720e66038603c90011980e801181e982d1baa001301c002303b3058375400844b300133710002900045300103d87a8000899801801000a0a60605c6ea802489660026048605c6ea800a26464646644b30013038003899804181b802099813801112cc00400a011132323259800981e80144cc03cc0f000c566002605c60706ea80062646464b3001304000289980a981f801899817800912cc00400a260126084015132323259800982280144cc060c11000c4cc0580044c010c1140162c8210c10c004c10c004dd61820801207e8b207a3758607c002607c00260726ea80062c81b22c81d0c0ec004c0ec004dd6181c801206e8b206a3758606a0026eb8c0d400cc0d4004c0d0004c0bcdd500145902c112cc004c090c0b8dd500144c8c8c8cc896600260700071330273758606e00a44b300100289980600200444c8c8c966002607a005133010303c00313300e00113004303d0058b2074303b001303b0013758607200481ba2c81a8c0d4004dd7181a801181a800981a00098179baa0028b20582259800981118161baa002899191919912cc004c0d800e266016606a00a00d1640cc64b300130310018acc004c024c0c00062d13029303000140b91640c86ea8c0cc004c966002606200315980098049818000c5a26052606000281722c8190dd518198011819800981900098169baa0028b20542259800981118161baa0028991919194c004dd6981a000cc0d000e6eb4c0d000922259800981c00244cc034c0dc01c4cc0340080222c81a8606800260660026064002605a6ea800a2c815116408c8118888c8cc0240108c008c030c0a4dd5000acc004c070c098dd5000c48cc014dd5980598141baa0010038918044c004dd5980598141baa0019bae302b30283754007375c601660506ea800d00a20482232330010010032259800800c5300103d87a80008992cc004cdd7981618149baa0010048980799815800a5eb82266006006605a0048130c0ac00502911180ecc00400a6eb8c0a0c094dd5000cdd7180418129baa001401c2232598009808800c4c966002604200313300630200010038b203c301c3754007159800980a000c4c8c8cc896600260480070068b2042375a60420026eb4c084008c084004c070dd5001c566002602000313232323298009bad30230019bad30230049bad3023003488966002604e0091330163758604c00a44b3001002805c4c8c8c9660026058005133013302b00313301000113004302c0058b2052302a001302a0013758605000481322c812060460026044002604200260386ea800e2b3001300e0018acc004c070dd5001c00a2c80ea2b3001300d001899192cc004c08800a00916407c6eb4c080004c070dd5001c5660026018003159800980e1baa00380145901d45660026016003159800980e1baa00380145901d4590192032406480c90192032406460346ea800888c966002601e003159800980d1baa00380145901b456600260240031323322598009810800c4cc01cc0800040162c80f0dd6980f000980f800980d1baa0038acc004c0380062646464b300130210028998039810001802c5901e1bad301f001301f001301a375400716405c80b9017180c1baa0022232598009807800c4c966002603e003133006301e0010038b2038301a37540071598009809000c56600260346ea800e00516406d16405c80b8c060dd5001112cc004c034c05cdd500144c8c8c966002603e005133007301e003132598009808800c4c96600260420031323259800980a000c4c966002604800313300c30230010098b2042301f3754005159800980b800c4c8c8ca60026eb4c0940066eb4c09400e6eb4c094009222598009814802403a2c8130604a0026048002603e6ea800a2c80e101c180e9baa00130200018b203c301c3754005159800980a000c56600260386ea800a00b16407516406480c8c068dd5000c5901c180e800980e800980c1baa0028b202a22c8038601200260086ea802629344d95900101"
1297
1306
  };
1298
1307
 
1299
1308
  // src/contracts/stability-pool/scripts.ts
@@ -2924,7 +2933,7 @@ var WithdrawalOutputDatumSchema = import_evolution13.TSchema.Tuple([
2924
2933
  ]);
2925
2934
  var TreasuryDatumSchema = import_evolution13.TSchema.Struct(
2926
2935
  {
2927
- treasuryInputOref: import_cardano_offchain_common9.OutputReferenceSchema,
2936
+ treasuryInputOref: import_evolution13.TSchema.NullOr(import_cardano_offchain_common9.OutputReferenceSchema),
2928
2937
  actionInputOref: import_cardano_offchain_common9.OutputReferenceSchema
2929
2938
  },
2930
2939
  { flatFields: true }
@@ -3091,6 +3100,39 @@ async function findRelativeCollateralAssetForInsertion(newCollateralAsset, allCo
3091
3100
  (utxo) => parseCollateralAssetDatumOrThrow(getInlineDatumOrThrow(utxo))
3092
3101
  );
3093
3102
  }
3103
+ async function findFirstAsset(allIAssetOrefs, lucid, assetOrd, getComparisonAsset, parseDatum) {
3104
+ const parsedUtxos = await Promise.all(
3105
+ allIAssetOrefs.map(async (oref) => {
3106
+ const utxo = matchSingle(
3107
+ await lucid.utxosByOutRef([oref]),
3108
+ (_) => new Error("Expected a single UTXO")
3109
+ );
3110
+ const datum = parseDatum(utxo);
3111
+ return { datum, utxo };
3112
+ })
3113
+ );
3114
+ return (0, import_function.pipe)(
3115
+ parsedUtxos,
3116
+ // Sort by the asset names
3117
+ import_fp_ts10.array.sort(
3118
+ import_fp_ts10.ord.contramap((a) => getComparisonAsset(a.datum))(
3119
+ assetOrd
3120
+ )
3121
+ ),
3122
+ import_fp_ts10.array.head
3123
+ );
3124
+ }
3125
+ async function findFirstCollateralAsset(allCollateralAssetOrefs, lucid) {
3126
+ return findFirstAsset(
3127
+ allCollateralAssetOrefs,
3128
+ lucid,
3129
+ import_fp_ts10.ord.contramap((x) => getAssetClassComparisonStr(x))(
3130
+ import_fp_ts10.string.Ord
3131
+ ),
3132
+ (d) => d.collateralAsset,
3133
+ (utxo) => parseCollateralAssetDatumOrThrow(getInlineDatumOrThrow(utxo))
3134
+ );
3135
+ }
3094
3136
  function iassetCreationDatumHelper(proposeAssetContent, referencedIAsset) {
3095
3137
  const newContent = {
3096
3138
  assetName: proposeAssetContent.asset,
@@ -3212,52 +3254,70 @@ async function treasuryFeeTx(assetToPay, amountToPay, extraLovelaces, lucid, sys
3212
3254
  return [assetToPay, amountToPay, extraLovelaces];
3213
3255
  })();
3214
3256
  if (amt <= 0n) return null;
3215
- const treasuryUtxo = matchSingle(
3216
- await lucid.utxosByOutRef([treasuryOref]),
3217
- (_) => new Error("Expected a single treasury UTXO")
3218
- );
3219
- const treasuryRefScriptUtxo = matchSingle(
3220
- await lucid.utxosByOutRef([
3221
- fromSystemParamsScriptRef(
3222
- sysParams.scriptReferences.treasuryValidatorRef
3223
- )
3224
- ]),
3225
- (_) => new Error("Expected a single treasury Ref Script UTXO")
3226
- );
3227
- tx.readFrom([treasuryRefScriptUtxo]).collectFrom(
3228
- [treasuryUtxo],
3229
- serialiseTreasuryRedeemer({
3230
- Collect: {
3231
- assetToCollect: asset,
3232
- amountToCollect: amt,
3233
- extraLovelaces: extraLov,
3234
- actionInputOref: {
3235
- txHash: (0, import_lucid11.fromHex)(actionOref.txHash),
3236
- outputIndex: BigInt(actionOref.outputIndex)
3237
- }
3238
- }
3239
- })
3240
- ).pay.ToContract(
3241
- mkTreasuryAddr(lucid, sysParams),
3242
- {
3243
- kind: "inline",
3244
- value: serialiseTreasuryDatum({
3245
- treasuryInputOref: {
3246
- txHash: (0, import_lucid11.fromHex)(treasuryOref.txHash),
3247
- outputIndex: BigInt(treasuryOref.outputIndex)
3248
- },
3249
- actionInputOref: {
3250
- txHash: (0, import_lucid11.fromHex)(actionOref.txHash),
3251
- outputIndex: BigInt(actionOref.outputIndex)
3257
+ let treasuryRefScriptUtxo = null;
3258
+ if (treasuryOref !== void 0) {
3259
+ const treasuryUtxo = matchSingle(
3260
+ await lucid.utxosByOutRef([treasuryOref]),
3261
+ (_) => new Error("Expected a single treasury UTXO")
3262
+ );
3263
+ treasuryRefScriptUtxo = matchSingle(
3264
+ await lucid.utxosByOutRef([
3265
+ fromSystemParamsScriptRef(
3266
+ sysParams.scriptReferences.treasuryValidatorRef
3267
+ )
3268
+ ]),
3269
+ (_) => new Error("Expected a single treasury Ref Script UTXO")
3270
+ );
3271
+ tx.readFrom([treasuryRefScriptUtxo]).collectFrom(
3272
+ [treasuryUtxo],
3273
+ serialiseTreasuryRedeemer({
3274
+ Collect: {
3275
+ assetToCollect: asset,
3276
+ amountToCollect: amt,
3277
+ extraLovelaces: extraLov,
3278
+ actionInputOref: {
3279
+ txHash: (0, import_lucid11.fromHex)(actionOref.txHash),
3280
+ outputIndex: BigInt(actionOref.outputIndex)
3281
+ }
3252
3282
  }
3253
3283
  })
3254
- },
3255
- (0, import_lucid11.addAssets)(
3256
- treasuryUtxo.assets,
3257
- (0, import_cardano_offchain_common11.mkAssetsOf)(asset, amt),
3258
- (0, import_cardano_offchain_common11.mkLovelacesOf)(extraLov)
3259
- )
3260
- );
3284
+ ).pay.ToContract(
3285
+ mkTreasuryAddr(lucid, sysParams),
3286
+ {
3287
+ kind: "inline",
3288
+ value: serialiseTreasuryDatum({
3289
+ treasuryInputOref: {
3290
+ txHash: (0, import_lucid11.fromHex)(treasuryOref.txHash),
3291
+ outputIndex: BigInt(treasuryOref.outputIndex)
3292
+ },
3293
+ actionInputOref: {
3294
+ txHash: (0, import_lucid11.fromHex)(actionOref.txHash),
3295
+ outputIndex: BigInt(actionOref.outputIndex)
3296
+ }
3297
+ })
3298
+ },
3299
+ (0, import_lucid11.addAssets)(
3300
+ treasuryUtxo.assets,
3301
+ (0, import_cardano_offchain_common11.mkAssetsOf)(asset, amt),
3302
+ (0, import_cardano_offchain_common11.mkLovelacesOf)(extraLov)
3303
+ )
3304
+ );
3305
+ } else {
3306
+ tx.pay.ToContract(
3307
+ mkTreasuryAddr(lucid, sysParams),
3308
+ {
3309
+ kind: "inline",
3310
+ value: serialiseTreasuryDatum({
3311
+ treasuryInputOref: null,
3312
+ actionInputOref: {
3313
+ txHash: (0, import_lucid11.fromHex)(actionOref.txHash),
3314
+ outputIndex: BigInt(actionOref.outputIndex)
3315
+ }
3316
+ })
3317
+ },
3318
+ (0, import_lucid11.addAssets)((0, import_cardano_offchain_common11.mkAssetsOf)(asset, amt), (0, import_cardano_offchain_common11.mkLovelacesOf)(extraLov))
3319
+ );
3320
+ }
3261
3321
  return treasuryRefScriptUtxo;
3262
3322
  }
3263
3323
  async function treasuryCollect(assetToPay, amountToPay, extraLovelaces, lucid, sysParams, actionOref, treasuryOref) {
@@ -3874,6 +3934,7 @@ function derivePythPrice(derivedPythPrice, messageHex) {
3874
3934
 
3875
3935
  // src/contracts/iasset/helpers.ts
3876
3936
  var Core = __toESM(require("@evolution-sdk/evolution"));
3937
+ var MAX_COLLATERAL_ASSETS_COUNT_PER_IASSET = 8;
3877
3938
  function attachOracle(iasset, collateralAsset, priceInfo, priceOracleOref, pythStateOref, pythMessage, pythConfig, biasTime, currentSlot, lucid, tx) {
3878
3939
  return (0, import_ts_pattern12.match)(priceInfo).returnType().with({ Delisted: import_ts_pattern12.P.any }, () => {
3879
3940
  const currentTime = BigInt(
@@ -3909,6 +3970,7 @@ function attachOracle(iasset, collateralAsset, priceInfo, priceOracleOref, pythS
3909
3970
  }).with(
3910
3971
  { DeferredValidation: { feedValHash: import_ts_pattern12.P.select() } },
3911
3972
  async (feedValHash) => {
3973
+ if (priceOracleOref) throw new Error("Cannot pass price oracle oref");
3912
3974
  if (!pythMessage) throw new Error("Missing Pyth message");
3913
3975
  if (!pythStateOref) throw new Error("Missing pyth state out ref");
3914
3976
  const pythStateUtxo = matchSingle(
@@ -5149,14 +5211,14 @@ var import_lucid16 = require("@lucid-evolution/lucid");
5149
5211
  var _cdpValidator = {
5150
5212
  type: "PlutusScriptV3",
5151
5213
  description: "Generated by Aiken",
5152
- cborHex: "593c1e593c1b010100229800aba2aba1aba0aab9faab9eaab9dab9cab9a4888888896600264653001300900198049805000cdc3a400530090024888966002600460126ea800e33001300a3754007370e90004dc3a4009370e90034dc3a4011370e90054dc3a4019370e90074dc3a40209111111114c004c058026602c602e0132232598009805800c4c8c96600260380050048b2032375a6034002602c6ea800e2b3001300e001899192cc004c07000a0091640646eb4c068004c058dd5001c5660026014003159800980b1baa0038014590174590132026404c60286ea800a44b3001300a3014375400513232332259800980e801c0162c80d0dd6980d0009bae301a002301a00130153754005164048911119198008090cc004dd2a40012301c301d301d301d301d0019180e180e980e980e980e980e980e800c8c070c0740064446466446600400400244b3001001801c4c8cc896600266e4401c00a2b30013371e00e0051001803203c8998028029812802203c375c603c0026eb4c07c004c08400501f191919800800803112cc00400600713233225980099b910090028acc004cdc78048014400600c80fa26600a00a604c00880f8dd7180f8009bab302000130220014080297adef6c6014800244646600200200644b30010018a5eb8226644b3001300500289981000119802002000c4cc01001000501b180f8009810000a03a9b884800244646600200200644b30010018a508acc004cdc79bae301f0010038a518998010011810000a03240752301c301d301d00192cc004c034c060dd5000c4c070c064dd5000c59016488c8cc00400400c88cc00c004c008009222222222223233225980099b8748048c094dd501044c8cc8966002603c60506ea8006264b300130223029375400313322598009818000c4c966002604460586ea80062646644b300130340018998071bac3033001225980080144c966002605060646ea800626602860186eacc068c0ccdd50151bae3036303337540031640c064660020026eb0c060c0ccdd5003912cc0040062980103d87a80008992cc006600266ebc00530103d87a8000a50a5140c91001899801801981c8012064325980099b8f375c60700020171301d33037303830390014bd7045300103d87a800040c86eb0c0dc00503544c8c8cc8966002607400713005303a0068b206e375c606e0026eb8c0dc008c0dc004dd6181a80120668b2062375a60620026064002605a6ea80062c8150c02cc030c0b0dd5180898161baa302f0018b205a375c605a60546ea800660026eb0c03cc0a8dd5010cc040c0a8dd5018530103d8798000401916409c605860526ea8c0b0c0a4dd5180718149baa302c302937540031640986002002660046eb0c0a8c09cdd500f00a112cc004006297ae089981518139815800998010011816000a0528acc004c06cc094dd50094660026052604c6ea804a4464b3001301e001899192cc004c0bc00a0091640b06eb8c0b4004c0a4dd5001c566002604200315980098149baa00380145902a459026204c302737540052259800980e98139baa0028991919912cc004c0c000e00b1640b46eb8c0b4004dd71816801181680098141baa0028b204a912cc004c074c09cdd500144c8c8cc896600260600070058b205a375a605a0026eb4c0b4008c0b4004c0a0dd50014590254dc4a4008911111919912cc004c08c006264b300130330018998021819000801c5903018171baa0088acc004c098006264b300130330018992cc004c094c0bcdd5000c4c8c8c8c8c8c8c8c8c8c8ca60026eb8c0f80066eb8c0f802e607c013303e008981f003cc96600260780031598009809181d800c5a26068607600281ca2c81e8dd5181f0034c96600260780031598009809181d800c5a26068607600281ca2c81e8dd5181f002cc0f80126eb4c0f800e6eb4c0f80092222222222598009824805c4cc074c1200504cc0700204cc07001c4cc0700184cc07800c0662c8230607c002607a00260780026076002607400260720026070002606e002606c002606a00260606ea80062c8168c0c80062c8180c0b8dd500445902b205619800918181818981898189818981898189818981898189818800c88c8cc00400400c896600200314c0103d87a80008992cc004cdd78021818000c4c064cc0ccc0c40052f5c1133003003303500240b86066002818a6e95200291818181898189818981898189818981898189818800cdc0240032232598009812000c4c966002606800313300730330010038b2062302f37540071598009813800c4c966002606800313300830330010038b2062302f37540071598009811800c4c8c966002606a0050048b2064375c6066002605e6ea800e2c816102c2058302d3754004911111191919912cc004c0acc0d4dd50084660026072606c6ea8042606a6ea80c2460746076607660760032259800800c5268992cc00400629344c96600266e40dd7181c981e8019bae30390018998020021981e000981f001454cc0e1241326b65797320696e206173736f63696174697665206c697374206172656e277420696e20617363656e64696e67206f72646572001640dc607800281d0c0f000503948888c8cc004004014896600200313303e337606ea4014dd300225eb7bdb1822653001375c60780033756607a003304100248896600266e4002400e26608466ec0dd48049ba60080058acc004cdc7804801c6600201300880148cc10ccdd81ba900a374c0020051001401d133042337606ea400cdd300119803003000a07a40f4303f00140f5222232330010010052259800800c4cc0f8cdd81ba9005375000897adef6c608994c004dd7181e000cdd6981e800cc1040092225980099b9000900389982119bb037520126ea00200162b30013371e01200719800804c022005233043337606ea4028dd40008014400500744cc108cdd81ba900337500046600c00c00281e903d0c0fc00503d496600200314a314a081c224444464b3001303100180144c00c00503919b80004003912cc00400620031533036002100140d5223301b00223375e607860726ea8c0f0c0e4dd5180f181c9baa0010029b814800244646600200200644b30010018a508acc004c00cc0f40062946266004004607c00281b903b496600200314a314a081c244b3001302d30373754005132323232323232323298009822000cdd71822004cdd698220044c11001a608800b30440049822001cc9660026084003159800980c1820800c5a26074608200281fa2c8218dd51822001244444444b3001304d009899810182600789981000289981000209981000189981000109981100400945904a0c110004c10c004c108004c104004c100004c0fc004c0f8004c0f4004c0e0dd500145903548966002605a606e6ea800a26464646464646464646465300130460019bae304600b9bad304600998230044c11801e608c00d304600598230024dd69823001cc9660026088003159800980d1821800c5a260786086002820a2c8228dd5182300124444444444b3001305100b899812982800a09980e0038998128030998120028998120020998120018992cc004c10c006264b30013053001899813982900080c45905018271baa00b8acc004c1180062b3001304e37540170178b209e8b2096412c60986ea802a2c8270608c002608a00260880026086002608400260820026080002607e002607c002607a00260706ea800a2c81aa4464b3001302e3038375400313232323322598009821001c4c9660026068607c6ea800626464b300130450028804c590421bad3043001303f37540031640f060820091640fc6eb4c0fc004dd6981f801981f800981f000981c9baa0018b206c3017301830383754603a60706ea8cc89660020030028acc004c0f80062607a00300240ec81d854cc0d92401015900169800801400698103d879800040512303a303b303b303b303b303b303b303b00191199118111981e1ba8337046eb4c0f4008dd6981e8009981e1ba8337046eb4c0f4c0f8008dd6981e981f000a5eb80c0e0dd5001181c1baa0019180f9981c9ba8001330394c10101004bd7048896600266e2000520008a40011598009817000c520028992cc004c0bccdc300124009198008024c00400e66e0c009200440111300198008024c00400e66e0cc0280092004401081b8dc1001206c40d9374a9002452080897a914c00400a6eb8c0ecc0e0dd5000cdd7180e981c1baa0014071232337066eb4c0ec004dd6981d981e000981b9baa0019180f9981c992cc004c0c0c0dcdd5000c4c966002606260706ea8c078c0e4dd5181e181c9baa003898059981d9ba80014bd7044c02ccc0ecdd419b80001480092f5c081b0dd6981d981c1baa0018800a06a303a303737546074606e6ea8004cc0e4c9660026060606e6ea8006264b3001303130383754603c60726ea8c078c0e4dd5001c4c02ccc0ecdd4000a5eb8226016660766ea0c0240052f5c081b0dd6981d981c1baa0018800a06a303a303737546038606e6ea80052f5c12232598009817000c566002605c60706ea800a2980103d87a80008a6103d879800040d91598009816800c566002605a60706ea800a2980103d87a80008a6103d87b800040d913322598009819800c4c96600266e2000c0062980103d87980008acc004cdc4000801c530103d87b80008a6103d87a800040e481c8dd6981f181d9baa0048acc004c0c0006298103d87b80008a6103d879800040e081c0dd6981e181c9baa0033038375400481b1036181b9baa0029118101981d18101981d18051981d1ba80024bd701981d4c00528d30103d87a8000a60103d879800040d497ae03303a30203303a300a3303a375000297ae03303a9800a51a60103d87a8000a60103d879800040d497ae04bd7048c0e8c0ecc0ecc0ecc0ecc0ecc0ecc0ecc0ecc0ecc0ecc0ecc0ec006444b3001302e0018a5eb7bdb182264646600200297adef6c602259800800c4cc0f8cdd81ba9006374c00697adef6c608994c004dd7181e000cdd5981e800cc1040092225980099b9000a00389982119bb037520146e9801c0162b30013371e014007133042337606ea4028dd3003800c4cc108cdd81ba9003374c0046600c00c00281e903d0c0fc00503d1919800800a5eb7bdb180896600200313303d337606ea4010dd4001a5eb7bdb1822653001375c6076003375a6078003304000248896600266e4002000e26608266ec0dd48041ba80070058acc004cdc7804001c4cc104cdd81ba9008375000e003133041337606ea400cdd400119803003000a07840f0303e00140f081b24607460766076607660766076607660766076003375e047375e603a606c6ea80b5222222222222222222222222222222229800980e80ec888888c8ca60026eb4c1840066eb4c184c18800660c20049112cc004c10c00e2b30013065330443302200b303333063375201297ae0232332259800982d000c56600260ca6ea800e005164199159800982e800c56600260ca6ea800e005164199159800982c800c56600260ca6ea800e005164199159800982c000c56600260ca6ea800e005164199159800982b800c4c8c8c8ca600260d8003375a60d8007375a60d80049112cc004c1c001226608860de00e2660ac0060131641b4306c001306b001306a00130653754007159800982b000c56600260ca6ea800e005164199164188831106220c4418883104cdd780099ba548020cc19400ccc194dd4002998329ba8004330650084bd7018311baa0013302d30653062375400201714a316418914a282f060c200264b30015980099b89001480022607e00714a082d22660be98106d8799f4040ff003305f3750006660be9810100004bd7044cc17cc180010cc17cdd40009982f9ba80034bd7020b4375a60be60c0007232330010010022259800800c52f5bded8c11323305c3376060b20026e98c8cc004004dd5982d801112cc004006297adef6c608991982f99bb0305c0013750603a6eb4c174004cc00c00cc184008c17c00505d19801801982f001182e000a0b491194c0040060070024004444b30010028800c4ca60020093060003cc00400a6eb8c16c0066eacc1700064444464b3001302600180144c00c00505f19194c00400600d0054004444b30010028800c4ca6002009306a003cc00400a6eb8c1940066eb4c19800600a8159004183400120cc502440888020c17800905c48966002609a00314c103d87a80008acc004cdc4000a4001130403305a30403305a37506030004660b46ea0c0600052f5c097ae0898201982d18201982d1ba80023305a375000297ae04bd7020aa4155300d00d911112cc004cdc48021bad305e305b375400315980099b88375a607660b66ea8004016266e00cdc199b82337026eb4c178c16cdd5000802001a41010141ede959b7c03666e0ccdc199b823370466e04014dd6981d982d9baa001375a60bc60b66ea8c100c16cdd5000801a41016113f7d402a021153305949101550016416115980099b88002005899b833370666e08cdc119b81005002375a60bc60b66ea8c100c16cdd5000801a41016113f7d402a021153305949101560016416082c244b30013371200290004520008980599808980800080120aa9119912cc004c966002609e00314a31598009829800c528c52820b0416060b26ea8cc02cc174c168dd5001182e982d1baa0018992cc004c14000629462b300130530018a518a50416082c0c164dd519805981f982d1baa002303f305a375400314a082b8c028008c02800653001375c60b460ae6ea80066eb8c0f0c15cdd5000d2002401537006eb4c078c158dd50102444444444453001222259800982d000c401233001004801cc8c8008c040004cc19ccdd81ba9002375000297adef6c6091111192cc004c0bc0060051300300141a0653001004804401e444453001005801c0120050014018818140b502b20c4911192cc00400629462b30013069001899194c004dd71835000cdd698351835800cdd718350012444b30013371e002911008acc004cdc7801a441008acc004c17cc1a4dd5003c56600266e252000002899b89002482026fb80a294106744cdc4a4000004833a2941067452820ce18350009bac30680018a5041988330c8cc004004cc030010c03400c896600200314bd7044c8cc88cc88cc00800800489660020031003899198371ba73306e375200a660dc60d6002660dc60d800297ae0330030033070002306e00141b06eacc1a400cdd718330009980180198358011834800a0ce9192cc004c160c188dd5000c4c198c18cdd5000c59060198041bad3065306237540026eb4c11cc188dd5000c8888c96600260b660ca6ea80062664466e24cdc11bad306b001375a60d660d800466e08dd698358011bad306b306c0013066375460d260cc6ea8004c198dd51980f80180145906319805802001a444465300122222223232598009828801c56600260e60031323259800983318381baa0018acc004c1c4dd5000c66002015304333073305933073004330734c103d87a80004bd7025eb8298107d87b9fd87980ff00cc004dd5982b18389baa3056307137540050078034015010530103d87a800040311641c91641b86607660e660e06ea8004020c1c80062c83822605a0028360cc0bc020004c0fccc1bcdd480225eb824444464b300130610068800c566002609c00d1330250013024330114805001a264b30013062306c375400313070306d37540031641a864b30013065306c375400314c103d87a80008982a9983799813001183818369baa0014bd7020d43233225980099b8800248002260ae660e260ae660e26ea0c0bc004cc1c4dd4181780125eb812f5c1159800982880144c15ccc1c4c15ccc1c4dd4000998389ba80024bd7025eb82298103d87a800041b08360dd698380009bad30703071001306c3754604866022900a181600320d241a464b300130610018acc00660020054a14a2834a2a660d492010157001689804983798361baa00541a51598009832000c4c96600264b30013066306d37540031337126eb4c14cc1b8dd50011bad3071306e37540031641ac60e060da6ea8c148c1b4dd5181398369baa0048a99835a4810158001689805183818369baa00141a864b30013304a375660a460da6ea8004c1c0c1b4dd500344c96600260c660da6ea800626464646644b30013077003899825183b0028803459074183a0009bad307400230740013073001306e37540031641ac6098609a60da6ea80062c8350c96600260c400313259800983198369baa0018982998371baa3071306e37540031641ac660726eb0c148c1b4dd50021bad3070306d375400b1598009832800c4c96600260c660da6ea8006260e260dc6ea80062c8358cc0e4dd6182698369baa004375a60e060da6ea80162a660d69201014f001641a88350c1acdd500244c96600260c460d86ea8006264b30013063306d3754003132323259800983a80144cc120c1d000c4c038c1d0c1c4dd50024590721839800983980098371baa0018b20d63070306d37540031641a86607e6eacc0f4c1b0dd5001981119837181f19837183798361baa0054bd7025eb8106920d2306a37540092229800801cdd7183618349baa0029bae304e3069375400500140209112cc004c1780ca266453001306f0029bad306e0029837800cdd61837000a4445300130730049bad30720049bac30720029bac307230730029982500082e2444446644b3001306b3075375400713322598009836983b9baa001899912cc004c1bcc1e4dd5000c4ca60026eb4c1f80066eb4c1f8c1fc007300100d983f183d9baa08101a60103d8798000415c9112cc004c20804006264b3001302b308201307f37540031332259800984280800c4c96600266ebcc21404c20804dd51842809841009baa3067308201375400200713259800983c1841009baa0018992cc004c22004006264660840022b30013371e6eb8c22004c21404dd50009bae306a308501375409f13259800984500800c4c96600266ebcc22804c21c04dd51845009843809baa306c3087013754002011132598009840009843809baa0018992cc004c234040062646608c0022b30015980099b8f375c611a026114026ea8004dd71846809845009baa006899baf306f308a01375400260d46114026ea815229410870144c8c8c8cc8966002660a2921014100330313049308f01375410c026607e66e0408cdd6981f1847809baa09501337000466eb4c0f8c23c04dd504a80c566002660a29210142003307037586078611e026ea82180405e2b3001330514901014300303a374d3001375c60e8611e026ea8254066eb8c1d0c23c04dd502cc00d03d4566002660a29201014400980080ecc184cc244040652f5c130453309101307733091013077330910130773309101375202e97ae033091013074308f0137540b2661220260de611e026ea8164cc24404dd40011984880983b99848809ba80233309101375066e00dd69849009847809baa0055980099b88375a60de611e026ea801408e266e0ccdc199b823370466e0408cdd698379847809baa005375a612402611e026ea8c1d0c23c04dd5002a41010141ede959b7c03690405844fdf500a822454cc234052401015a001642300497ae04bd7025eb812f5c1980098181849009847809baa0950198379847809baa059800a04ea60103d87a800040a915980099828a490145009800810c0766eacc180c23c04dd504300cdd718249847809baa095019bae3074308f01375412a03375c60e8611e026ea8166008814a2b300159800acc004c1c407e2946266e2006d200042300515980099828a490146009800800c00b3001375a60de611e026ea801a60ae611e026ea801a0350860199b8901f480010284c0b0c1d4c23c04dd50032056899828a4810147009800810cdd598301847809baa086019bae3063308f01375412a033309101307733091013074308f01375412a02661220260e8611e026ea81652f5c066122026ea0cc0c8c0b0c1bcc23c04dd500580fa5eb82900041f103845282118028a5142300515980099828a48101480030710028acc004cc14524101490059800acc004c21004c23804dd5182b9847809baa0068a508a5142300514a315980099b8901f48002266e2406d20008a5042300484600a2660a2921014a00337126eb4c0f0c23c04dd5003000c5282118028a5042300514a084600a294108c0145282118028a5042300514a084600a294108c01181680099b8033041375660e4611a026ea8c1c8c23404dd500798369846809baa05701933700038003300101f807cdd698299845809baa055808400502f1982280c98389845009baa0018b210e02308c010018b21140230880137540031642140460cc60ce610e026ea8c1b0c21c04dd5000c5908401184480800c59087014c004052609a610a026ea822c06980103d8798000418516420804610e02003164214046106026ea80062c840008c184c188c20804dd518339841009baa0018b20fe3084010018b210402305133081013050307f375410a0297ae098008074c17cc1fcdd504280d30103d8798000416d1641f06102020031641fc307a37540031641dc6eb8c1ecc1e0dd5000982f983c1baa0428b20ea30793076375460b660ec6ea8c1e4c1d8dd5001983c983b1baa0408b20e6375a60ee00a60ee60f000a18349baa063306937540c1159800983081944c8ca60026eb0c1b80066eb0c1b8c1bc00660dc60d66ea80d66eb4c1b8c1acdd5032cdd61837001244444b30013065306f37540071332259800983398389baa0018994c004dd6983b000cdd6983b183b800e60020093076307337540f34c0103d8798000413c9112cc004c1e80062b3001302230793076375460f200313259800983d800c4c96600266ebcc1ecc1e0dd5183d983c1baa305d307837540026094660f4609260f06ea81f92f5c1132598009838983c1baa0018992cc004c1f80062646606e0022b30015980099b8f375c60fc60f66ea8004dd71830183d9baa045899baf3060307b375400260b660f66ea8116294107845660026607a9210141003301d3035307b37540e46605666e04034dd69815183d9baa081013370001a6eb4c0a8c1ecdd504080c5660026607a9210142003305c3758605060f66ea81c802e2b30013303d49010143003026374d30013023301c307e307b375410203375c60c060f66ea8204066eb8c180c1ecdd5022cc0ecdd69821983d9baa045406913303d4910144009800806403e6eacc130c1ecdd50394dd7181a983d9baa081019bae3060307b375410203375c60c060f66ea8117300100d803cdd69821983d9baa0458044cc0d8040c188c1ecdd5000a03e405514a083c22941078452820f08b20f0307d0018b20f6307937540031641d860ae60b060f06ea8c174c1e0dd5000c59075183d000c590784c00402e607c60ec6ea81f2980103d879800041491641cd1641dc307237540031641bc6eb8c1ccc1c0dd5001982b98381baa03a8b20da183700098349baa0608acc004c1740ca264b3001305f3069375400313232323322598009839801c4c8cc1680044cc16c00c4cdd780082e9839002c5907018380009bad30700023070001306f001306a375400316419c64b3001305f306937540031306d306a375400316419c660786eacc0e8c1a4dd5030180f99835981d9983598361836983698369836983698369836983698369836983698349baa06f4bd7025eb822b3001305c032899914c004dd698370014c1b8c1bc00a6eb0c1b80066eb0c1b8c1bc00522223259800983298379baa001899912cc004c19cc1c4dd5000c4ca60026eb4c1d80066eb4c1d8c1dc0073001006983b18399baa079a6103d8798000413c9112cc004c1e8006264b30013023307a307737540031332259800983e800c4c96600266ebcc1f4c1e8dd5183e983d1baa305f307a3754002007132598009838183d1baa0018992cc004c20004006264660740022b30013371e6eb8c20004c1f4dd50009bae3062307d375408f13259800984100800c4c96600266ebcc20804c1fcdd5184100983f9baa3064307f375400201113259800983c183f9baa0018992cc004c214040062646607c0022b30015980099b8f375c610a026104026ea8004dd71842809841009baa006899baf3067308201375400260c46104026ea8132294107f44ca6002604600333037375660d06106026ea8c1a0c20c04dd500698319841809baa04dcc004dd698319841809baa00298259841809baa00280bc1ea94501c2444b30013304849101410033028304030860137540fa6606c66e0406cdd6981a9843009baa08c01337000366eb4c0d4c21804dd504600c5660026609092101420059800983d9842809baa30890130860137540a114a314a084180a2b3001330484910143003375e60da610c026ea81f5300101a0008acc004cc12124010144009800cc00400a007001981198201843009baa00540894a14a284180a26609092101450098009bac306630860137540fb30583308801306e330880101633088014c103d87a80004bd7025eb826078661100260dc661100260dc6611002980103d87a80003308801306b30860137540a0661100260cc610c026ea8140cc22004c138c21804dd50281984400982c19844009ba8004330880137506644b30013371000200510018801210a02330293023304e308601375401400464b30013371000290004520008800a108023370200460726607e607c00600297ae04bd7025eb812f5c1375660d6610c026ea8c1acc21804dd50085300103d8798000408514a084180a29410830145282106028a50420c04980080bc03a6eb4c128c20804dd5026403e6607a02860d26104026ea800502645907f184200800c59082011840009baa0018b20fa305e305f307f375460c860fe6ea80062c83e0c204040062c83fa600201f3045307d3754106034c0103d879800041651641e860fe0031641f460f66ea80062c83c0c164c168c1e8dd5182f983d1baa0018b20ee307c0018b20f43049330793048307737540fa97ae09800804cc15cc1dcdd503ed30103d8798000414d1641d060f20031641dc307237540031641bc60e660e06ea8c1ccc1c0dd5182a98381baa30733070375400260ae60e06ea80ea2c8368cc12800817060d26ea818cc1a4dd503044c96600260b806719800911919800800801912cc00400629462b3001300330710018998010011839000c52820d641bd375c609e60d46ea80d2609460d46ea80d26608a6eb0c1b4c1a8dd503082ba4444b30013063306d37540031323259800983a1bac30730018991919912cc004cc0d924101410098009819000d28528a0e28acc004cc0d92410142003300a0012323305f00113375e00266e95200a330780634bd7019820183c183a9baa0013756608c60ea6ea81b22b30013303649010143003300a006232598009835983a9baa0018992cc004c1ec0062646609a0022b3001300f307b3078375400315980099b8f375c60ba60f06ea8004036266ebcc160c1e0dd5000806452820ea8a5041d460f40031641e060ec6ea80062c8398c150c154c1d4dd5182d183a9baa0018acc004cc0d92410144003375e60b660e86ea81ad300101a00089981b248101450098009bac3054307437540d7304633076305c3307630773074375460ee60e86ea8c164c1d0dd5183b983a1baa007330764c0103d87a80004bd7025eb826054660ec60b8660ec60b8660ec980103d87a8000330763752012660ec010660ec60ee006660ec608c660ec60ee004660ec60ee60f000497ae04bd7025eb812f5c1375660ee0094c103d87a8000403d14a0838a2941071452820e28a5041c460ec0026eb0c1d4c1d800cc1d4004c8cc00400400c896600200314bd70901a00081010000810100008101000044cc88c8ca60026eb4c1e40066eb4c1e4c1e800660aa60ac60ec6ea8c16cc1d8dd50024dd5983c801cdd6983c801244444b30013070307a375400713259800984000800c4c8cc1480044c8c96600260ee60fc6ea800626466104026e98cc09c01cdd598329840009baa3065308001375401c66104026ea0cdc00031bad3083010033308201375066e00028dd698418080099841009ba8337000126eb4c20c04c210040052f5c060fe6ea80062c83e0c20404c20804004c20404c20404c20404c1f4dd5000983f800c5907d183d9baa0038b20f0183c800983c000983a80099801001183b000a0e68b20e232330010010022259800800c52f5c210180008101800044ca60026eb0c1d40066eb0c1d4c1d800660ea0049112cc004cdd7983c183a9baa00106289983b9ba73307700100333077374e00497ae089983b9ba700333077374e660ee00200497ae041c833002002307500141c93001375860e260dc6ea819660e260dc6ea81d298103d87a800041291641ac8acc004c16c0ce2646644b30013062306c375400513259800998182481014100323305800113375e00298103d87d8000330390023756607e60dc6ea81962660609210142003302d00425980099baf0033072306f375400313375e60e460de6ea8c1c8c1bcdd5182a18379baa0010028a5041b114a08358c1c0c1b4dd5183818369baa3052306d375460e060da6ea800a2c8350cc118004160c1b8c1acdd50329bac306d306a37540c3159800982d019c4c8ca60026605a002607c660dc603260d86ea81c92f5c12298009bae3071306e3754003375c60a660dc6ea80066604400400280e26eb0c1bcc1c0c1c0009222598009839801c4c8c96600260c660e06ea8006264b300130760018992cc004c1a0c1c8dd5000c4c96600266ebcc1dcc1d0dd5000830c4c8c96600260f4003132598009837983b1baa0018999119914c004c06c00b3001375660c060f66ea8c180c1ecdd5183f0034c16cc1ecdd5022cc0ec0050134c1f80366605e00660c6660fa60c060f66ea820404cc1f4c180c1ecdd5022a5eb8122225980099820a4901410030610018acc004cc105241014200980080a4dd59828183f9baa0769bae3053307f375410a033308101305f307f375409266102026ea00152f5c1480020d881422b3001330414910143003016308201307f375409315980099820a4810144003305c375660c860fe6ea8c190c1fcdd50081833183f9baa085018acc004cdc400080244c8cc896600266088921014500980080a4c150cc210040392f5c130383308401306a3308401306a33084013085013082013754098661080260ce6104026ea8130cc21004c188c20804dd502619842009ba8302298009bab306930820137540f3375c60ce6104026ea8220066eb8c19cc20804dd502620cc33084013054330840130850130860100333084014c10100004bd7025eb812f5c097ae0cc00401a60c46104026ea8132608400280d298103d87a800040751598009982224901460098009bab3067308201375400b9800cc00402a60c46104026ea813200280d26eb8c19cc20804dd504400cdd718339841009baa04c98210022042a6103d87a8000408115980099822249014700980080bcdd618311841009baa0799bab305330820137540f3375c60786104026ea8220066eb8c19cc20804dd504400cdd718339841009baa04c80120388998222481014800302d374c605530013301500a306a33084013067308201375411002661080260ce6104026ea81312f5c1375c60ce6104026ea8220066eb8c19cc20804dd50264c108009021452820fe8a5041fd14a083f8dd698418080099b83337046606800860c06100026ea81280080156600266e24018006266102026ea0018cc2040530010100004bd7044cc20404dd400099840809ba83370200c00297ae041f115980099820a481014900302a374d3001302733012003308201307f375410a03375c60c860fe6ea8214066eb8c190c1fcdd5024cc0fcdd69823983f9baa049407915980099820a481014a0098009bab3064307f37540059800cc004dd59832183f9baa3064307f3754021305f307f375409333033003305f307f375409280ba6eb8c190c1fcdd504280cdd71832183f9baa049981f802203ca60103d87a800040751330414901014b00980080a4dd6182f983f9baa0769bab3050307f37540ed375c607260fe6ea8214066eb8c190c1fcdd504280cdd71832183f9baa04980320328a5041f114a083e107c452820f88a5041f114a083e2294107c0dd6983e0011bad307c307d002307737540026eacc170c1dcdd5182e183b9baa0088b20e8305d307637540811641dc6606c01460f060ea6ea8004c1dcc1d0dd5182c983a1baa0018b20e23076307337540031641c06607c00e6eb4c1d40062c8398c1c4dd5000c5906e1981d983998381baa0013756608260e06ea819cc1c800e2c83806eb0c1b8004c1a8dd5030c56600260b206713259800983018351baa001899192cc004c194c1b0dd5000c4c8c8c8c96600260ea003198009bad30740049bad30740039bad30740029bad307400148888cdd7983c183a9baa30783075375460b460ea6ea8028c11ccc1dcc0bcc1d4dd503da5eb811641c860e800260e600260e400260da6ea80062c8350cc0dcc1bcc1b0dd50009bab303d306c37540c660dc60d66ea80062c8340cc0d8dd6183698351baa061375a60da60d46ea81922c833906720ce419c4b3001305f3069375400314a114a2833906620cc4198833044444660526609a00ab3001305f3069375400912323375e60de60d86ea8c1bcc1b0dd5001000983718359baa005891919baf306f306c375400400260dc60d66ea801506712cc004cdd7982598359baa0010048cc004dd5982818359baa001801c009009452820d011598009812181a9baa0308cc00488c966002605c0031323259800981f80140122c81e0dd7181e800981c9baa0038acc004c0c400626464b3001303f00280245903c1bae303d001303937540071640d881b0c0dcdd50014888c966002605e0031323259800982000140122c81e8dd7181f000981d1baa0038acc004c0c80062646644b3001304100189980d9bac30400012259800801401e33001009982100144c004c10c00900920808b207c375a607c002607e00260746ea800e2c81b9037181c1baa002981c981d181d181d181d181d181b1baa03c9bae300a303637546072606c6ea8042660046eb0c0e4c0d8dd50169bad30393036375406091111192cc004c0c4c0ecdd500144c966002646644b300130350018acc004c100dd5001c00a2c820a2b300130380018991919912cc004c12000e00d1641146eb4c114004dd69822801182280098201baa0038acc004c0d00062b3001304037540070028b20828acc004c0cc0062b3001304037540070028b20828acc004c0c80062b3001304037540070028b20828b207a40f481e903d207a159800992cc004c0d000629462b300130320018a518a5040f081e0c0f4dd5000c4cdd79820981f1baa3041303e37546046607c6ea8008c040cc100dd4802a5eb82294103b181e9baa001330083040303d37540026eacc038c0f4dd501a4528c4c9660026066607a6ea80062646464646465300130470019bad30470049bad30470039bad30470024888966002609800b1329800899912cc004c100006264b300130500018992cc004c108c130dd5000c4c8c8c96600260a80051332259800982398289baa00289919192cc004c16400a26603e60b0006264b3001304b0018992cc004c16c00626464b3001304e0018992cc004c17800626604860ba00201316416c60b26ea800a2b3001305100189919194c004dd6982f800cdd6982f801cdd6982f8012444b300130630048074590600c17c004c178004c164dd500145905620ac3057375400260b400316416060ac6ea800a2b3001304e0018acc004c158dd500140162c82ba2c8299053182a1baa0018b20ac305700130570013052375400516413c60a600626605c00244b3001002804c4c966002609060a46ea800626464653001375a60b2003375c60b2007375c60b20049112cc004c1740122601060ba013164168305900130580013053375400316414060aa004829a2c8288dd61829000982900098269baa0018b2094304f0018b209a304b375400f1598009821800c56600260966ea801e0051641311641208240566002607460906ea800626604c6eacc0b8c124dd5181718249baa00d0118b208c3048375400b30483754003375a60980169112cc004c10400a264b300130510018992cc004c10cc134dd5000c4c8c8c8c8c8ca600260ae003375c60ae00d3057004982b801cc15c0092222259800982e80344cc0c0c1700284cc0c000c4cc0c00084cc0c00044cc0c00140422c82d060ae00260ac00260aa00260a800260a6002609c6ea80062c8258c1400062c8270c130dd500245660026088005132598009828800c4c9660026086609a6ea80062646464646465300130570019bae3057006982b8024c15c00e60ae004911112cc004c17401a26606060b801426606000626606000426606000226606000a02116416830570013056001305500130540013053001304e375400316412c60a000316413860986ea80122b300130400028992cc004c144006264b30013043304d3754003132323232323232323298009bad305a0019bae305a0099bad305a007982d0034c16801660b4009305a003982d001244444444b3001306300989981b983100809981700289981b80209981b00189981b00109981b00080b4590600c168004c164004c160004c15c004c158004c154004c150004c14c004c138dd5000c5904b1828000c5904e18261baa0048acc004c0fc00a264b300130510018992cc004c10cc134dd5000c4c8c8c8c8c8c8c8c8ca60026eb4c1680066eb8c1680266eb4c16801e60b400d305a005982d0024c16800e60b4004911111112cc004c18c02626606e60c402026605c00a26606e00826606c00626606c00426606c00202d164180305a0013059001305800130570013056001305500130540013053001304e375400316412c60a000316413860986ea80122b3001303e0028992cc004c144006264b30013043304d3754003132323232323232323298009bae305a0019bae305a009982d003cc16801a60b400b305a0049bad305a0039bad305a0024888888896600260c601313303730620101330360061330360051330360041330380030168b20c0182d000982c800982c000982b800982b000982a800982a000982980098271baa0018b209630500018b209c304c3754009159800981e80144c96600260a200313259800982198269baa001899191919191919191919194c004dd7182e000cdd7182e005cc17002660b8011305c007992cc004c1680062b3001303030590018b44c148c16400505745905b1baa305c006992cc004c1680062b3001303030590018b44c148c16400505745905b1baa305c005982e0024dd6982e001cdd6982e00124444444444b3001306700b89981d983300a09981d00409981d00389981d00309981e00180d4590640c170004c16c004c168004c164004c160004c15c004c158004c154004c150004c14c004c138dd5000c5904b1828000c5904e18261baa0048acc004c0f000a264b300130510018992cc004c10cc134dd5000c4c8c8c8c8c8c8c8c8c8c8c8ca600260ba003375a60ba019375a60ba017375a60ba015375a60ba013375a60ba011375a60ba00f375a60ba00d375a60ba00b375a60ba009375a60ba004911111111112cc004c1a403226607c60d001c266054016039164198305d001305c001305b001305a0013059001305800130570013056001305500130540013053001304e375400316412c60a000316413860986ea80122b3001303b0028992cc004c144006264b30013043304d3754003132332259800982a800c4cc0bcdd6182a000912cc00400a015132332259800982d000c4c966002609860ac6ea800626464b3001305d00289803982e80445905a1bae305b0013057375400316415060b200316415c6eb8c15c004c160004dd6182b00120a88b20a4375a60a400260a6002609c6ea80062c8258c1400062c8270c130dd5002456600260740051323259800982900140162c8278dd7182800098261baa0048b20924124824904920924124824904920921825804c590490c11c004c118004c114004c110004c10c004c0f8dd5000c5903b180e180e981e9baa3022303d375400281d0c0fcc0f0dd5001459039180200222c8199033112cc004cdc4000a400114c0103d87a8000899801801000a0662232598009816181b1baa0018981d181b9baa0018b2068330090013008330380024bd7018008009112cc00400a298103d87a80008acc004c0a80062603a6606e607000497ae08cc00400e60720053005001400c81910360c0acdd5003112cc004c088c0b0dd500144c8c8c8c8ca6002606a003375c606a00930350039bad30350024888966002607400b13300f303900913300e002132598009816000c4c8c8cc8966002607e00700f8b2078375a60780026eb4c0f0008c0f0004c0dcdd5002c566002605e00313232332259800981f801c03e2c81e0dd6981e0009bad303c002303c0013037375400b1640d081a0c0d4dd50024590370c0d4004c0d0004c0cc004c0c8004c0b4dd500145902a22c8119023111191980580211801180718149baa00159800980e18131baa00189198029bab300d3028375400200712300a98009bab300d30283754003375c605660506ea800e6eb8c034c0a0dd5001a018409044646600200200644b30010018a60103d87a80008992cc004cdd7981618149baa0010048980899815800a5eb82266006006605a0048130c0ac00502911180ecc00400a6eb8c0a0c094dd5000cdd7180518129baa00140242232598009807800c4c8c8ca60026eb4c0800066042003375a6040007375a604000491112cc004c09400e26601860480060131640883020001301f001301a37540071598009809000c4c8c96600260400050048b203a375a603c00260346ea800e2b3001300e0018acc004c068dd5001c00a2c80da2b3001300d00189919912cc004c084006266010604000200b1640786eb4c078004c07c004c068dd5001c5660026018003159800980d1baa00380145901b4566002601600313259800980f800c4cc014c07800400e2c80e0c068dd5001c5660026014003159800980d1baa00380145901b456600260120031323259800981000140122c80e8dd6980f000980d1baa0038acc004c02000626464b3001302000280245901d1bad301e001301a375400715980099b87480480062b3001301a37540070028b20368b202e405c80b9017202e405c80b9017202e405c60306ea80088b200e180480098021baa0098a4d1365640041"
5214
+ cborHex: "593c5f593c5c010100229800aba2aba1aba0aab9faab9eaab9dab9cab9a4888888896600264653001300900198049805000cdc3a400530090024888966002600460126ea800e33001300a3754007370e90004dc3a4009370e90034dc3a4011370e90054dc3a4019370e90074dc3a40209111111114c004c058026602c602e0132232598009805800c4c8c96600260380050048b2032375a6034002602c6ea800e2b3001300e001899192cc004c07000a0091640646eb4c068004c058dd5001c5660026014003159800980b1baa0038014590174590132026404c60286ea800a44b3001300a3014375400513232332259800980e801c0162c80d0dd6980d0009bae301a002301a00130153754005164048911119198008090cc004dd2a40012301c301d301d301d301d0019180e180e980e980e980e980e980e800c8c070c0740064446466446600400400244b3001001801c4c8cc896600266e4401c00a2b30013371e00e0051001803203c8998028029812802203c375c603c0026eb4c07c004c08400501f191919800800803112cc00400600713233225980099b910090028acc004cdc78048014400600c80fa26600a00a604c00880f8dd7180f8009bab302000130220014080297adef6c6014800244646600200200644b30010018a5eb8226644b3001300500289981000119802002000c4cc01001000501b180f8009810000a03a9b884800244646600200200644b30010018a508acc004cdc79bae301f0010038a518998010011810000a03240752301c301d301d00192cc004c034c060dd5000c4c070c064dd5000c59016488c8cc00400400c88cc00c004c008009222222222223233225980099b8748048c094dd501044c8cc8966002603c60506ea8006264b300130223029375400313322598009818000c4c966002604460586ea80062646644b300130340018998071bac3033001225980080144c966002605060646ea800626602860186eacc068c0ccdd50151bae3036303337540031640c064660020026eb0c060c0ccdd5003912cc0040062980103d87a80008992cc006600266ebc00530103d87a8000a50a5140c91001899801801981c8012064325980099b8f375c60700020171301d33037303830390014bd7045300103d87a800040c86eb0c0dc00503544c8c8cc8966002607400713005303a0068b206e375c606e0026eb8c0dc008c0dc004dd6181a80120668b2062375a60620026064002605a6ea80062c8150c02cc030c0b0dd5180898161baa302f0018b205a375c605a60546ea800660026eb0c03cc0a8dd5010cc040c0a8dd5018530103d8798000401916409c605860526ea8c0b0c0a4dd5180718149baa302c302937540031640986002002660046eb0c0a8c09cdd500f00a112cc004006297ae089981518139815800998010011816000a0528acc004c06cc094dd50094660026052604c6ea804a4464b3001301e001899192cc004c0bc00a0091640b06eb8c0b4004c0a4dd5001c566002604200315980098149baa00380145902a459026204c302737540052259800980e98139baa0028991919912cc004c0c000e00b1640b46eb8c0b4004dd71816801181680098141baa0028b204a912cc004c074c09cdd500144c8c8cc896600260600070058b205a375a605a0026eb4c0b4008c0b4004c0a0dd50014590254dc4a4008911111919912cc004c08c006264b300130330018998021819000801c5903018171baa0088acc004c098006264b300130330018992cc004c094c0bcdd5000c4c8c8c8c8c8c8c8c8c8c8ca60026eb8c0f80066eb8c0f802e607c013303e008981f003cc96600260780031598009809181d800c5a26068607600281ca2c81e8dd5181f0034c96600260780031598009809181d800c5a26068607600281ca2c81e8dd5181f002cc0f80126eb4c0f800e6eb4c0f80092222222222598009824805c4cc074c1200504cc0700204cc07001c4cc0700184cc07800c0662c8230607c002607a00260780026076002607400260720026070002606e002606c002606a00260606ea80062c8168c0c80062c8180c0b8dd500445902b205619800918181818981898189818981898189818981898189818800c88c8cc00400400c896600200314c0103d87a80008992cc004cdd78021818000c4c064cc0ccc0c40052f5c1133003003303500240b86066002818a6e95200291818181898189818981898189818981898189818800cdc0240032232598009812000c4c966002606800313300730330010038b2062302f37540071598009813800c4c966002606800313300830330010038b2062302f37540071598009811800c4c8c966002606a0050048b2064375c6066002605e6ea800e2c816102c2058302d3754004911111191919912cc004c0acc0d4dd50084660026072606c6ea8042606a6ea80c2460746076607660760032259800800c5268992cc00400629344c96600266e40dd7181c981e8019bae30390018998020021981e000981f001454cc0e1241326b65797320696e206173736f63696174697665206c697374206172656e277420696e20617363656e64696e67206f72646572001640dc607800281d0c0f000503948888c8cc004004014896600200313303e337606ea4014dd300225eb7bdb1822653001375c60780033756607a003304100248896600266e4002400e26608466ec0dd48049ba60080058acc004cdc7804801c6600201300880148cc10ccdd81ba900a374c0020051001401d133042337606ea400cdd300119803003000a07a40f4303f00140f5222232330010010052259800800c4cc0f8cdd81ba9005375000897adef6c608994c004dd7181e000cdd6981e800cc1040092225980099b9000900389982119bb037520126ea00200162b30013371e01200719800804c022005233043337606ea4028dd40008014400500744cc108cdd81ba900337500046600c00c00281e903d0c0fc00503d496600200314a314a081c224444464b3001303100180144c00c00503919b80004003912cc00400620031533036002100140d537029000488c8cc00400400c896600200314a11598009801981e800c528c4cc008008c0f800503720769112cc004c0b8006297adef6c608991919800800a5eb7bdb180896600200313303e337606ea4018dd3001a5eb7bdb1822653001375c60780033756607a003304100248896600266e4002800e26608466ec0dd48051ba60070058acc004cdc7805001c4cc108cdd81ba900a374c00e003133042337606ea400cdd300119803003000a07a40f4303f00140f4646600200297adef6c602259800800c4cc0f4cdd81ba9004375000697adef6c608994c004dd7181d800cdd6981e000cc1000092225980099b9000800389982099bb037520106ea001c0162b30013371e010007133041337606ea4020dd4003800c4cc104cdd81ba900337500046600c00c00281e103c0c0f800503c206c911980d801119baf303c30393754607860726ea8c078c0e4dd50008014dd2a4009259800800c528c5282070912cc004c0b4c0dcdd500144c8c8c8c8c8c8c8c8ca60026088003375c6088013375a608801130440069822002cc110012608800732598009821000c56600260306082003168981d1820800a07e8b208637546088004911111112cc004c134026266040609801e26604000a26604000826604000626604000426604401002516412830440013043001304200130410013040001303f001303e001303d001303837540051640d522598009816981b9baa002899191919191919191919194c004c1180066eb8c11802e6eb4c118026608c011304600798230034c118016608c009375a608c00732598009822000c56600260346086003168981e1821800a0828b208a3754608c00491111111112cc004c14402e26604a60a002826603800e26604a00c26604800a266048008266048006264b300130430018992cc004c14c00626604e60a4002031164140609c6ea802e2b300130460018acc004c138dd5005c05e2c827a2c825904b18261baa00a8b209c1823000982280098220009821800982100098208009820000981f800981f000981e800981c1baa0028b206a91192cc004c0b8c0e0dd5000c4c8c8c8cc8966002608400713259800981a181f1baa001899192cc004c11400a20131641086eb4c10c004c0fcdd5000c5903c182080245903f1bad303f001375a607e006607e002607c00260726ea80062c81b0c05cc060c0e0dd5180e981c1baa332259800800c00a2b3001303e0018981e800c00903b20761533036491015900169800801400698103d879800040512303a303b303b303b303b303b303b303b00191199118111981e1ba8337046eb4c0f4008dd6981e8009981e1ba8337046eb4c0f4c0f8008dd6981e981f000a5eb80c0e0dd5001181c1baa0019180f9981c9ba8001330394c10101004bd7048896600266e2000520008a40011598009817000c520028992cc004c0bccdc300124009198008024c00400e66e0c009200440111300198008024c00400e66e0cc0280092004401081b8dc1001206c40d9222225980099b89004375a607c60766ea80062b3001337106eb4c06cc0ecdd5000802c4cdc019b833370466e04dd6981f181d9baa001004003482020283dbd2b36f806ccdc199b833370466e08cdc08029bad301b303b37540026eb4c0f8c0ecdd51810181d9baa00100348202c227efa8052080897a8a9981ca490155001640e115980099b88002005899b833370666e08cdc119b81005002375a607c60766ea8c080c0ecdd5000801a41016113f7d402904044bd454cc0e524010156001640e081c24530010029bae303b30383754003375c603a60706ea800501c48c8cdc19bad303b001375a60766078002606e6ea80064603e6607264b3001303030373754003132598009818981c1baa301e30393754607860726ea800e26016660766ea00052f5c11300b3303b375066e0000520024bd70206c375a607660706ea8006200281a8c0e8c0dcdd5181d181b9baa0013303932598009818181b9baa0018992cc004c0c4c0e0dd5180f181c9baa301e303937540071300b3303b375000297ae0898059981d9ba830090014bd70206c375a607660706ea8006200281a8c0e8c0dcdd5180e181b9baa0014bd70488c966002605c0031598009817181c1baa0028a6103d87a80008a6103d879800040d91598009816800c566002605a60706ea800a2980103d87a80008a6103d87b800040d913322598009819800c4c96600266e2000c0062980103d87980008acc004cdc4000801c530103d87b80008a6103d87a800040e481c8dd6981f181d9baa0048acc004c0c0006298103d87b80008a6103d879800040e081c0dd6981e181c9baa0033038375400481b1036181b9baa0029118101981d18101981d18051981d1ba80024bd701981d4c00528d30103d87a8000a60103d879800040d497ae03303a30203303a300a3303a375000297ae03303a9800a51a60103d87a8000a60103d879800040d497ae04bd7048c0e8c0ecc0ecc0ecc0ecc0ecc0ecc0ecc0ecc0ecc0ecc0ecc0ec0064607460766076607660766076607660766076003375e047375e603a606c6ea80b5222222222222222222222222222222229800980e80ec8c8cc004004008896600200314bd6f7b63044c8cc170cdd8182c8009ba63233001001375660b600444b30010018a5eb7bdb182264660be66ec0c170004dd4180f1bad305d001330030033061002305f00141746600600660bc00460b800282d244653001001801c0090011112cc00400a200313298008024c18000f30010029bae305b0019bab305c00191111192cc004c09800600513003001417c6465300100180340150011112cc00400a200313298008024c1a800f30010029bae30650019bad3066001802a056401060d0004833140910222008305e00241712298009bae305b30583754005375c607a60b06ea800a00280ba44b3001304d0018a60103d87a80008acc004cdc4000a4001130403305a30403305a37506032004660b46ea0c0640052f5c097ae0898201982d18201982d1ba80023305a375000297ae04bd7020aa4155300b00b912cc004cdc4800a4001148002260146601e601c00200482aa446644b300132598009827800c528c56600260a600314a314a082c1058182c9baa3300a305d305a375400460ba60b46ea8006264b300130500018a518acc004c14c0062946294105820b03059375466014607e60b46ea8008c0fcc168dd5000c52820ae3009002300900194c004dd7182d182b9baa0019bae303c30573754003480090164dc01bad301e3056375404091111111114c00488896600260b200310048cc0040120073232002300f00133066337606ea4008dd4000a5eb7bdb1824444464b3001302e00180144c00c005067194c004012011007911114c0040160070048014005006205e502c40a8830a44464b30010018a518acc004c1a0006264653001375c60d2003375a60d260d4003375c60d20049112cc004cdc7800a441008acc004cdc7801a441008acc004c178c1a0dd5003c56600266e252000002899b89002482026fb80a294106644cdc4a400000483322941066452820cc18348009bac30670018a5041948328c8cc004004cc030010c03400c896600200314bd7044c8cc88cc88cc00800800489660020031003899198369ba73306d375200a660da60d4002660da60d600297ae033003003306f002306d00141ac6eacc1a000cdd718328009980180198350011834000a0cc9192cc004c15cc184dd5000c4c194c188dd5000c5905f198039bad3064306137540026eb4c118c184dd5000c8888c96600260b460c86ea80062664466e24cdc11bad306a001375a60d460d600466e08dd698350011bad306a306b0013065375460d060ca6ea8004c194dd51980e00180145906219805002001a44446530012222222323298009bad30710019bad3071307200198388012444b30013053003899192cc0040063300100d982d9983a80125eb826060660ea60b6660ea98103d87a8000330750084bd7025eb8330013301a003005a44100a441008022026a6103d87a8000403d159800983b800c4c8cc896600260d6003159800983b1baa003801459077456600260dc003159800983b1baa003801459077456600260d4003159800983b1baa003801459077456600260d2003159800983b1baa003801459077456600260d00031323232329800983e800cdd6983e801cdd6983e8012444b300130810100489982a984000803899833801804c5907e0c1f4004c1f0004c1ec004c1d8dd5001c56600260ce003159800983b1baa00380145907745907320e641cc839907320e613375e00266e9520083307600433076375000c660ec6ea0014cc1d80252f5c060e66ea8004cc0f8c1d8c1ccdd5183b00080645907420e83303000d001304333073375201297ae08a5141b830710013259800acc004cdc4800a40011304f0038a5041a913306f4c106d8799f4040ff003306f3750006660de9810100004bd7044cc1bcc1c0010cc1bcdd4000998379ba80034bd7020d4375a60de60e000722222223232598009828001c56600260e40031323259800983298379baa0018acc004c1c0dd5000c66002015304233072305833072004330724c0103d87a80004bd7025eb8298107d87b9fd87980ff00cc004dd5982a98381baa3055307037540050078034015010530103d87a800040311641c51641b46607460e460de6ea8004020c1c40062c837a260540028358cc0ac020004c0f8cc1b8dd480225eb824444464b300130600068800c566002609a00d1330220013021330104805001a264b30013061306b37540031306f306c37540031641a464b30013064306b375400314c103d87a80008982a1983719811801183798361baa0014bd7020d23233225980099b8800248002260ac660e060ac660e06ea0c0bc004cc1c0dd4181780125eb812f5c1159800982800144c158cc1c0c158cc1c0dd4000998381ba80024bd7025eb82298103d87a800041ac8358dd698378009bad306f3070001306b3754604266020900a181600320d041a064b300130600018acc00660020054a14a283422a660d292010157001689804983718359baa00541a11598009831800c4c96600264b30013065306c37540031337126eb4c148c1b4dd50011bad3070306d37540031641a860de60d86ea8c144c1b0dd5181218361baa0048a9983524810158001689805183798361baa00141a464b300133049375660a260d86ea8004c1bcc1b0dd500344c96600260c460d86ea800626464646644b30013076003899824983a802880345907318398009bad307300230730013072001306d37540031641a86096609860d86ea80062c8348c96600260c200313259800983118361baa0018982918369baa3070306d37540031641a8660706eb0c144c1b0dd50021bad306f306c375400b1598009832000c4c96600260c460d86ea8006260e060da6ea80062c8350cc0e0dd6182618361baa004375a60de60d86ea80162a660d49201014f001641a48348c1a8dd500244c96600260c260d66ea8006264b30013062306c3754003132323259800983a00144cc11cc1cc00c4c038c1ccc1c0dd50024590711839000983900098369baa0018b20d4306f306c37540031641a46607c6eacc0f0c1acdd5001981419836981e99836983718359baa0054bd7025eb8106820d0306937540092229800801cdd7183598341baa0029bae304d30683754005001402091112cc004c1780ca266453001306f0029bad306e0029837800cdd61837000a4445300130730049bad30720049bac30720029bac307230730029982500082e2444446644b3001306b3075375400713322598009836983b9baa001899912cc004c1bcc1e4dd5000c4ca60026eb4c1f80066eb4c1f8c1fc007300100d983f183d9baa08101a6103d8798000415c9112cc004c20804006264b3001302b308201307f37540031332259800984280800c4c96600266ebcc21404c20804dd51842809841009baa3067308201375400200713259800983c1841009baa0018992cc004c22004006264660800022b30013371e6eb8c22004c21404dd50009bae306a308501375409f13259800984500800c4c96600266ebcc22804c21c04dd51845009843809baa306c3087013754002011132598009840009843809baa0018992cc004c23404006264660880022b30015980099b8f375c611a026114026ea8004dd71846809845009baa006899baf306f308a01375400260d46114026ea815229410870144c8cc896600266e24dd6981d1846809baa004001899192cc004c1c40062b300133051491014100330323047308f01375410c026607c66e0408cdd6981e9847809baa09501337000466eb4c0f4c23c04dd504a80c566002660a29210142003307037586078611e026ea82180405e2b3001330514901014300303a374d3001375c60e8611e026ea8254066eb8c1d0c23c04dd502cc00904e4566002660a29201014400980080ecc184cc244040652f5c1304c3309101307733091013077330910130773309101375202e97ae033091013074308f0137540b2661220260de611e026ea8164cc24404dd40009984880983b99848809ba80233309101375066e00dd69849009847809baa0055980099b88375a60de611e026ea801408e266e0ccdc199b823370466e0408cdd698379847809baa005375a612402611e026ea8c1d0c23c04dd5002a41010141ede959b7c03690405844fdf500a410112f5153308d014901015a001642300497ae04bd7025eb812f5c1980098189849009847809baa0950198379847809baa059801a04ea60103d87a800040ad15980099828a490145009800810c0766eacc180c23c04dd504300cdd718239847809baa095019bae3074308f01375412a03375c60e8611e026ea8166008814a2b300159800acc004c1c407e2946266e2006d200042300515980099828a490146009800801c0073001375a60de611e026ea801a60ae611e026ea801a0350860199b8901f480010284c0b4c1d4c23c04dd50032058899828a4810147009800810c0766eacc180c23c04dd504300cdd718319847809baa095019984880983b9984880983a1847809baa0950133091013074308f0137540b297ae03309101375066066605a60de611e026ea802c07d2f5c1480020f88152294108c014528a11802899828a48101480059800acc004c21004c23804dd5182b9847809baa0068a508a5142300514a315980099b8901f48002266e2406d20008a5042300484600a294108c0145282118028a5042300514a084600a294108c0145282118028b211802302f0013370003a00516422805300101f807cdd698299845809baa055808400503f19b803303e375660e06116026ea8c1c0c22c04dd500698359845809baa055017330430193071308a01375400316421c04611802003164228046110026ea80062c842808c198c19cc21c04dd518361843809baa0018b2108023089010018b210e02980080a4c134c21404dd504580d30103d8798000418516420804610e02003164214046106026ea80062c840008c184c188c20804dd518339841009baa0018b20fe3084010018b210402305133081013050307f375410a0297ae098008074c17cc1fcdd504280d30103d8798000416d1641f06102020031641fc307a37540031641dc6eb8c1ecc1e0dd5000982f983c1baa0428b20ea30793076375460b660ec6ea8c1e4c1d8dd5001983c983b1baa0408b20e6375a60ee00a60ee60f000a18349baa063306937540c1159800983081944c8ca60026eb0c1b80066eb0c1b8c1bc00660dc60d66ea80d66eb4c1b8c1acdd5032cdd61837001244444b30013065306f37540071332259800983398389baa0018994c004dd6983b000cdd6983b183b800e60020093076307337540f34c0103d8798000413c9112cc004c1e80062b3001302230793076375460f200313259800983d800c4c96600266ebcc1ecc1e0dd5183d983c1baa305d307837540026094660f4609260f06ea81f92f5c1132598009838983c1baa0018992cc004c1f80062646606a0022b30015980099b8f375c60fc60f66ea8004dd71830183d9baa045899baf3060307b375400260b660f66ea8116294107845660026607a9210141003301e3033307b37540e46605466e04034dd69814983d9baa081013370001a6eb4c0a4c1ecdd504080c5660026607a9210142003305c3758605060f66ea81c802e2b30013303d49010143003026374d30013024301d307e307b375410203375c60c060f66ea8204066eb8c180c1ecdd5022cc0f0dd69821983d9baa045406d13303d4910144009800806403e6eacc130c1ecdd50394dd71819983d9baa081019bae3060307b375410203375c60c060f66ea8117300100d803cdd69821983d9baa0458044cc0d0040c188c1ecdd5000a05e405514a083c22941078452820f08b20f0307d0018b20f6307937540031641d860ae60b060f06ea8c174c1e0dd5000c59075183d000c590784c00402e607c60ec6ea81f2980103d879800041491641cd1641dc307237540031641bc6eb8c1ccc1c0dd5001982b98381baa03a8b20da183700098349baa0608acc004c1740ca264b3001305f3069375400313232323322598009839801c4c8cc1680044cc16c00c4cdd780082e9839002c5907018380009bad30700023070001306f001306a375400316419c64b3001305f306937540031306d306a375400316419c660786eacc0e8c1a4dd5030181319835981d9983598361836983698369836983698369836983698369836983698349baa06f4bd7025eb822b3001305c032899914c004dd698370014c1b8c1bc00a6eb0c1b80066eb0c1b8c1bc00522223259800983298379baa001899912cc004c19cc1c4dd5000c4ca60026eb4c1d80066eb4c1d8c1dc0073001006983b18399baa079a6103d8798000413c9112cc004c1e8006264b30013023307a307737540031332259800983e800c4c96600266ebcc1f4c1e8dd5183e983d1baa305f307a3754002007132598009838183d1baa0018992cc004c20004006264660700022b30013371e6eb8c20004c1f4dd50009bae3062307d375408f13259800984100800c4c96600266ebcc20804c1fcdd5184100983f9baa3064307f375400201113259800983c183f9baa0018992cc004c21404006264660780022b30015980099b8f375c610a026104026ea8004dd71842809841009baa006899baf3067308201375400260c46104026ea8132294107f44ca6002604800333036375660d06106026ea8c1a0c20c04dd500698319841809baa04dcc004dd698319841809baa00298259841809baa00280bc1ea94501c2444b30013304849101410033029303e30860137540fa6606a66e0406cdd6981a1843009baa08c01337000366eb4c0d0c21804dd504600c5660026609092101420059800983d9842809baa30890130860137540a114a314a084180a2b3001330484910143003375e60da610c026ea81f5300101a0008acc004cc12124010144009800cc00400a0070019812181f1843009baa005408d4a14a284180a26609092101450098009bac306630860137540fb30583308801306e330880101633088014c103d87a80004bd7025eb826086661100260dc661100260dc6611002980103d87a80003308801306b30860137540a0661100260cc610c026ea8140cc22004c138c21804dd50281984400982c19844009ba8004330880137506644b30013371000200510018801210a023302a3024304e308601375401400464b30013371000290004520008800a108023370200460706607a607800600297ae04bd7025eb812f5c1375660d6610c026ea8c1acc21804dd50085300103d8798000408914a084180a29410830145282106028a50420c04980080bc03a6eb4c128c20804dd5026403e6607602860d26104026ea800503645907f184200800c59082011840009baa0018b20fa305e305f307f375460c860fe6ea80062c83e0c204040062c83fa600201f3045307d3754106034c0103d879800041651641e860fe0031641f460f66ea80062c83c0c164c168c1e8dd5182f983d1baa0018b20ee307c0018b20f43049330793048307737540fa97ae09800804cc15cc1dcdd503ed30103d8798000414d1641d060f20031641dc307237540031641bc60e660e06ea8c1ccc1c0dd5182a98381baa30733070375400260ae60e06ea80ea2c8368cc12800817060d26ea818cc1a4dd503044c96600260b806719800911919800800801912cc00400629462b3001300330710018998010011839000c52820d641bd375c609e60d46ea80d2609460d46ea80d26608a6eb0c1b4c1a8dd503082ba4444b30013063306d37540031323259800983a1bac30730018992cc0066002605a0034a14a283722646464b30013303649010141003300a0042323305f00113375e00266e95200a330780634bd7019820183c183a9baa0013756608c60ea6ea81b22b30013303649010142003300a006232598009835983a9baa0018992cc004c1ec0062646609a0022b3001300f307b3078375400315980099b8f375c60ba60f06ea8004036266ebcc160c1e0dd5000806452820ea8a5041d460f40031641e060ec6ea80062c8398c150c154c1d4dd5182d183a9baa0018acc004cc0d92410143003375e60b660e86ea81ad300101a00089981b248101440098009bac3054307437540d7304633076305c3307630773074375460ee60e86ea8c164c1d0dd5183b983a1baa007330764c0103d87a80004bd7025eb826062660ec60b8660ec60b8660ec980103d87a8000330763752012660ec010660ec60ee004660ec608c660ec60ee002660ec60ee60f000297ae04bd7025eb812f5c1375660ee0074c103d87a8000404114a0838a2941071452820e23077001307600132330010010042259800800c52f5c2101a00081010000810100008101000044cc88c8ca60026eb4c1e80066eb4c1e8c1ec00660ac60ae60ee6ea8c170c1dcdd50024dd5983d001cdd6983d001244444b30013071307b375400713259800984080800c4c8cc14c0044c8c96600260f060fe6ea800626466106026e98cc0a401cdd598331840809baa3066308101375401c66106026ea0cdc00031bad3084010033308301375066e00028dd698420080099841809ba8337000126eb4c21004c214040052f5c06100026ea80062c83e8c20804c20c04004c20804c20804c20804c1f8dd5000984000800c5907e183e1baa0038b20f2183d000983c800983b00099801001183b800a0e88b20dc375860e660e80031641c4646600200200444b30010018a5eb850180008101800044ca60026eb0c1d40066eb0c1d4c1d800660ea0049112cc004cdd7983c183a9baa00106289983b9ba73307700100333077374e00497ae089983b9ba700333077374e660ee00200497ae041c833002002307500141c93001375860e260dc6ea819660e260dc6ea81d298103d87a800041291641ac8acc004c16c0ce2646644b30013062306c375400513259800998182481014100323305800113375e00298103d87d8000330390023756607e60dc6ea81962660609210142003302e00425980099baf0033072306f375400313375e60e460de6ea8c1c8c1bcdd5182a18379baa0010028a5041b114a08358c1c0c1b4dd5183818369baa3052306d375460e060da6ea800a2c8350cc118004160c1b8c1acdd50329bac306d306a37540c3159800982d019c4c8ca600266054002607c660dc603260d86ea81c92f5c12233015001330210020019bac306f3070307000248896600260e60071323259800983198381baa0018992cc004c1d8006264b30013068307237540031325980099baf3077307437540020c31323259800983d000c4c96600260de60ec6ea8006266453001375a60f8005375a60f860fa0053302c00130613307b305e307937540fe660f660bc60f26ea810d2f5c1307c00b488896600260be005133225980099820a49014100980080a40466eacc140c1fcdd503b4dd71829983f9baa085019984080982f983f9baa0493308101375000a97ae0a400106c406915980099820a4810142003016308201307f375409315980099820a4810143003305c375660c860fe6ea8c190c1fcdd50081833183f9baa085018acc004cdc400200144c8cc896600266088921014400980080a4c150cc210040392f5c1303f3308401306a3308401306a33084013085013082013754098661080260ce6104026ea8130cc21004c188c20804dd502619842009ba8302398009bab306930820137540f3375c60ce6104026ea8220066eb8c19cc20804dd502620cc33084013054330840130850130860100333084014c10100004bd7025eb812f5c097ae0cc00401260c46104026ea8132608600280d298103d87a800040791598009982224901450098009bab3067308201375400d9800cc00402a60c46104026ea813200280d26eb8c19cc20804dd504400cdd718339841009baa04c9821803a044a6103d87a8000408515980099822249014600980080bcdd618311841009baa0799bab305330820137540f3375c60746104026ea8220066eb8c19cc20804dd504400cdd718339841009baa04c80120388998222481014700302d374c605730013301500a306a33084013067308201375411002661080260ce6104026ea81312f5c1375c60ce6104026ea8220066eb8c19cc20804dd50264c10c009022452820fe8a5041fd14a083f8dd698418080099b83337046606600460c06100026ea812801400d6600266e24018012266102026ea0018cc2040530010100004bd7044cc20404dd400219840809ba83370200c00897ae041f115980099820a481014800302a374d3001302833012001308201307f375410a03375c60c860fe6ea8214066eb8c190c1fcdd5024cc100dd69823983f9baa049407d15980099820a48101490098009bab3064307f37540079800cc004dd59832183f9baa3064307f3754021305f307f375409333032001305f307f375409280ba6eb8c190c1fcdd504280cdd71832183f9baa0499820001203ea60103d87a800040791330414901014a00980080a4dd6182f983f9baa0769bab3050307f37540ed375c606e60fe6ea8214066eb8c190c1fcdd504280cdd71832183f9baa04980320328a5041f114a083e107c452820f88a5041f114a083e0c07801260026eacc188c1f4dd51831183e9baa308001008982e983e9baa047981f001a02a8b20f4183b9baa001375660b860ee6ea8c170c1dcdd5004459074182e983b1baa0408b20ee3303300a30783075375400260ee60e86ea8c164c1d0dd5000c59071183b18399baa0018b20e03303e007375a60ea0031641cc60e26ea80062c8370cc0ecc1ccc1c0dd50009bab3041307037540ce60e40071641c0375860dc00260d46ea81862b300130590338992cc004c180c1a8dd5000c4c8c96600260ca60d86ea8006264646464b300130750018cc004dd6983a0024dd6983a001cdd6983a0014dd6983a000a444466ebcc1e0c1d4dd5183c183a9baa305a30753754014608e660ee605a60ea6ea81ed2f5c08b20e4307400130730013072001306d37540031641a86606e60de60d86ea8004dd5981e98361baa063306e306b37540031641a06606c6eb0c1b4c1a8dd50309bad306d306a37540c916419c833906720ce259800982f98349baa0018a508a51419c833106620cc419822222323302a0062598009801000c56600266ebcc12cc1acdd5000802c660026eacc140c1acdd5000c01200680522941068452820d059800982f18341baa004891919baf306e306b375460dc60d66ea8008004c1b4c1a8dd5002c48c8cdd7983718359baa002001306d306a375400a833045660026048606a6ea80c2330012232598009817000c4c8c966002607e0050048b2078375c607a00260726ea800e2b30013031001899192cc004c0fc00a0091640f06eb8c0f4004c0e4dd5001c59036206c3037375400522232598009817800c4c8c96600260800050048b207a375c607c00260746ea800e2b3001303200189919912cc004c1040062660366eb0c10000489660020050078cc0040266084005130013043002402482022c81f0dd6981f000981f800981d1baa0038b206e40dc60706ea800a607260746074607460746074606c6ea80f26eb8c028c0d8dd5181c981b1baa010998011bac30393036375405a6eb4c0e4c0d8dd501824444464b30013031303b3754005132598009919912cc004c0d40062b3001304037540070028b20828acc004c0e0006264646644b300130480038034590451bad3045001375a608a004608a00260806ea800e2b300130340018acc004c100dd5001c00a2c820a2b300130330018acc004c100dd5001c00a2c820a2b300130320018acc004c100dd5001c00a2c820a2c81e903d207a40f481e856600264b300130340018a518acc004c0c80062946294103c2078303d375400313375e6082607c6ea8c104c0f8dd51811981f1baa002301033040375200a97ae08a5040ec607a6ea8004cc020c100c0f4dd50009bab300e303d375406914a3132598009819981e9baa00189919191919194c004c11c0066eb4c11c0126eb4c11c00e6eb4c11c0092222598009826002c4ca600226644b300130400018992cc004c140006264b30013042304c3754003132323259800982a00144cc8966002608e60a26ea800a2646464b3001305900289980f982c0018992cc004c12c006264b3001305b001899192cc004c138006264b3001305e001899812182e800804c5905b182c9baa0028acc004c14400626464653001375a60be003375a60be007375a60be0049112cc004c18c01201d164180305f001305e0013059375400516415882b0c15cdd5000982d000c59058182b1baa0028acc004c1380062b3001305637540050058b20ae8b20a6414c60a86ea80062c82b0c15c004c15c004c148dd500145904f1829801899817000912cc00400a01313259800982418291baa00189919194c004dd6982c800cdd7182c801cdd7182c8012444b3001305d00489804182e804c5905a0c164004c160004c14cdd5000c59050182a80120a68b20a2375860a400260a4002609a6ea80062c8250c13c0062c8268c12cdd5003c566002608600315980098259baa00780145904c4590482090159800981d18241baa0018998131bab302e30493754605c60926ea80340462c8230c120dd5002cc120dd5000cdd69826005a444b300130410028992cc004c144006264b30013043304d375400313232323232329800982b800cdd7182b8034c15c01260ae00730570024888896600260ba00d133030305c00a1330300031330300021330300011330300050108b20b4182b800982b000982a800982a000982980098271baa0018b209630500018b209c304c3754009159800982200144c96600260a200313259800982198269baa00189919191919194c004c15c0066eb8c15c01a60ae0093057003982b801244444b3001305d006899818182e00509981800189981800109981800089981800280845905a0c15c004c158004c154004c150004c14c004c138dd5000c5904b1828000c5904e18261baa0048acc004c10000a264b300130510018992cc004c10cc134dd5000c4c8c8c8c8c8c8c8c8ca60026eb4c1680066eb8c1680266eb4c16801e60b400d305a005982d0024c16800e60b4004911111112cc004c18c02626606e60c402026605c00a26606e00826606c00626606c00426606c00202d164180305a0013059001305800130570013056001305500130540013053001304e375400316412c60a000316413860986ea80122b3001303f0028992cc004c144006264b30013043304d3754003132323232323232323298009bad305a0019bae305a0099bad305a007982d0034c16801660b4009305a003982d001244444444b3001306300989981b983100809981700289981b80209981b00189981b00109981b00080b4590600c168004c164004c160004c15c004c158004c154004c150004c14c004c138dd5000c5904b1828000c5904e18261baa0048acc004c0f800a264b300130510018992cc004c10cc134dd5000c4c8c8c8c8c8c8c8c8ca60026eb8c1680066eb8c16802660b400f305a006982d002cc1680126eb4c16800e6eb4c16800922222222598009831804c4cc0dcc1880404cc0d80184cc0d80144cc0d80104cc0e000c05a2c830060b400260b200260b000260ae00260ac00260aa00260a800260a6002609c6ea80062c8258c1400062c8270c130dd50024566002607a005132598009828800c4c9660026086609a6ea8006264646464646464646464653001375c60b8003375c60b8017305c009982e0044c17001e64b3001305a0018acc004c0c0c1640062d130523059001415d16416c6ea8c17001a64b3001305a0018acc004c0c0c1640062d130523059001415d16416c6ea8c17001660b8009375a60b8007375a60b800491111111112cc004c19c02e26607660cc02826607401026607400e26607400c266078006035164190305c001305b001305a0013059001305800130570013056001305500130540013053001304e375400316412c60a000316413860986ea80122b3001303c0028992cc004c144006264b30013043304d375400313232323232323232323232329800982e800cdd6982e8064dd6982e805cdd6982e8054dd6982e804cdd6982e8044dd6982e803cdd6982e8034dd6982e802cdd6982e8024dd6982e801244444444444b3001306900c89981f183400709981500580e4590660c174004c170004c16c004c168004c164004c160004c15c004c158004c154004c150004c14c004c138dd5000c5904b1828000c5904e18261baa0048acc004c0ec00a264b300130510018992cc004c10cc134dd5000c4c8cc896600260aa00313302f375860a800244b300100280544c8cc896600260b4003132598009826182b1baa001899192cc004c17400a2600e60ba0111641686eb8c16c004c15cdd5000c59054182c800c590571bae30570013058001375860ac00482a22c8290dd69829000982980098271baa0018b209630500018b209c304c3754009159800981d00144c8c96600260a40050058b209e375c60a000260986ea80122c8249049209241248249049209241248248609601316412430470013046001304500130440013043001303e37540031640ec6038603a607a6ea8c088c0f4dd5000a074303f303c37540051640e460080088b206640cc44b30013371000290004530103d87a8000899801801000a0662232598009816181b1baa0018981d181b9baa0018b2068330090013008330380024bd7018008009112cc00400a298103d87a80008acc004c0a80062603a6606e607000497ae08cc00400e60720053005001400c81910360c0acdd5003112cc004c088c0b0dd500144c8c8c8c8ca6002606a003375c606a00930350039bad30350024888966002607400b13300f303900913300e002132598009816000c4c8c8cc8966002607e00700f8b2078375a60780026eb4c0f0008c0f0004c0dcdd5002c566002605e00313232332259800981f801c03e2c81e0dd6981e0009bad303c002303c0013037375400b1640d081a0c0d4dd50024590370c0d4004c0d0004c0cc004c0c8004c0b4dd500145902a22c8119023111191980580211801180718149baa00159800980e18131baa00189198029bab300d3028375400200712300a98009bab300d30283754003375c605660506ea800e6eb8c034c0a0dd5001a018409044646600200200644b30010018a60103d87a80008992cc004cdd7981618149baa0010048980899815800a5eb82266006006605a0048130c0ac00502911180ecc00400a6eb8c0a0c094dd5000cdd7180518129baa00140242232598009807800c4c8c8ca60026eb4c0800066042003375a6040007375a604000491112cc004c09400e26601860480060131640883020001301f001301a37540071598009809000c4c8c96600260400050048b203a375a603c00260346ea800e2b3001300e0018acc004c068dd5001c00a2c80da2b3001300d00189919912cc004c084006266010604000200b1640786eb4c078004c07c004c068dd5001c5660026018003159800980d1baa00380145901b4566002601600313259800980f800c4cc014c07800400e2c80e0c068dd5001c5660026014003159800980d1baa00380145901b456600260120031323259800981000140122c80e8dd6980f000980d1baa0038acc004c02000626464b3001302000280245901d1bad301e001301a375400715980099b87480480062b3001301a37540070028b20368b202e405c80b9017202e405c80b9017202e405c60306ea80088b200e180480098021baa0098a4d1365640041"
5153
5215
  };
5154
5216
 
5155
5217
  // src/validators/cdp-redeem-validator.ts
5156
5218
  var _cdpRedeemValidator = {
5157
5219
  type: "PlutusScriptV3",
5158
5220
  description: "Generated by Aiken",
5159
- cborHex: "5920e85920e5010100229800aba2aba1aba0aab9faab9eaab9dab9cab9a488888888cc8966002646465300130083754003370e90024dc3a4001300c0039806001244444b300130040058999119912cc004c01cc044dd5002c4c8c8c8cc89660026036007133009301a005132598009806800c4c8c966002603c00500a8b2036375a603800260306ea800e2b30013009001899192cc004c07800a01516406c6eb4c070004c060dd5001c566002601c003159800980c1baa003804459019459015202a4054602c6ea800a2c80c0c060004dd6980c001180c000980b80098091baa0058b201e1980098081baa00398081baa0049180a180a800c888c8cc88cc008008004896600200300389919912cc004cdc8803801456600266e3c01c00a20030064059133005005301d00440586eb8c058004dd6980b800980c800a02e3232330010010062259800800c00e2646644b30013372201200515980099b8f0090028800c01901744cc014014c0780110171bae301700137566030002603400280c052f5bded8c029000488c8cc00400400c896600200314bd7044cc8966002600a00513301800233004004001899802002000a0263017001301800140553710900024444453001301a006980d002cdd6180c802c88c0266002005375c603660306ea80066eb8c018c060dd5000a00a4888a60026eb4c074012603c0073758603a007222323300a00423002300d301f3754002b30013012301c3754003123300537566018603c6ea800400e246013300137566018603c6ea80066eb8c084c078dd5001cdd71806180f1baa003402c80d122223322598009812000c660026046003230243025302500192cc004c05cc080dd5000c4c090c084dd5000c5901e244464b3001301930233754003132598009814800c6600260500032259800980e18131baa0028991919912cc004c0bc00e00b1640b06eb8c0b0004dd71816001181600098139baa0028b204891192cc004c07400626464b3001302e00280245902b1bae302c00130283754007159800980c800c56600260506ea800e0051640a51640948128c098dd5001244464b3001301e302837540091323232323298009818800cdd718188024c0c400e6eb4c0c4009222259800981b002c4cc02cc0d40244cc0300084c966002605000313232332259800981d801c03e2c81c0dd6981c0009bad303800230380013033375400b1598009812000c4c8c8cc8966002607600700f8b2070375a60700026eb4c0e0008c0e0004c0ccdd5002c590302060303137540091640cc30310013030001302f001302e00130293754009164098264b3001301e302837540031323259800981018151baa001899912cc004c0c4006266446644b300130263030375400313259800981b000c4cc8966002605260666ea800a2646464646464646465300130400019bae30400099bad304000898200034c10001660800093040003992cc004c0f80062b3001337129002181e800c5a2605e607a00281da2c81f8dd51820001244444444b30013049009899809182400789980900289980900209980900189980900109980f004099192cc004c12c00626464b3001303a30483754003132598009827000c4c8c966002608260966ea800a264646464646464646464653001305a0019bae305a00b9bad305a009982d0044c16801e60b400d305a005982d0024dd6982d001cc96600260b000315980099b8948010c15c0062d13049305700141551641646ea8c1680092222222222598009832805c4cc0ecc1900504cc896600260b0003132598009834000c4cc0c4c19c00400e2c8328c18cdd5004c56600260a8003132598009834000c4cc0f8c19c00400e2c8328c18cdd5004c56600260b20031323259800983480140122c8330dd7183380098319baa0098b20c0418083004cc0ec0184cc0b80144cc0b80104cc0b800c4c96600260ae003132598009833800c4cc0f4c1980040622c8320c188dd5005c56600260a600315980098311baa00b80bc5906345905f20be3060375401460c06ea801e2c831060b400260b200260b000260ae00260ac00260aa00260a800260a600260a400260a200260986ea800a2c82486600264b30013041304b37540031323232332259800982a801c4c966002608e60a26ea800626464b300130580028804c590551bad30560013052375400316413c60a80091641486eb4c148004dd698290019829000982880098261baa0018b20923029302a304b3754607260966ea8cc89660020030028acc004c144006260a00030024138827054cc1252401015900169800817cc088c12cdd5000d30103d879800040b9374a90004dc0a40012304f3050305030503050305030503050305030500019ba54800a6e0120018a410112f53702063332298008014dd7182818269baa0019bae303b304d375400281d0dd5981c98259baa3039304b3754056605460966ea809a4609e60a060a060a060a060a0003232337066eb4c140004dd69828182880098261baa001912cc0040062003153304b002100141292304f305030503050305030503050305030500014888888888888a60024601a660b66ea0004cc16d30010101004bd70488cc88c040cc178dd419b82375a60be0046eb4c17c004cc178dd419b82375a60be60c00046eb4c17cc1800052f5c060b46ea8008c168dd5000c88c8cc00400400c896600200314c103d87a80008992cc004cdd7802182e000c4c044cc17cc1740052f5c11330030033061002416860be00282ea44b3001304f0018a60103d87a80008acc004cdc4000a40011300e3305c300e3305c3750601a004660b86ea0c0340052f5c097ae0898071982e18071982e1ba80023305c375000297ae04bd7020ae415d98009bad305b305c02d9bad301330583754067375a60b605a9112cc004cdc48019bad305e305b375402115980099b88375a607460b66ea8040106266e00cdc199b82337026eb4c178c16cdd5008001801241010141ede959b7c03666e0ccdc199b823370460126eb4c0e8c16cdd50081bad305e305b3754609260b66ea80400092080b089fbea01500a8a9982ca4901550016416115980099b88001041899b833370666e08cdc118048009bad305e305b3754609260b66ea80400092080b089fbea01500a8a9982ca4901560016416082c0911114c00488c96600260a260be6ea8006298103d87a80008980a1983119803801983198301baa0014bd7020ba3233225980099b88002480022602c660c8602c660c86ea0c054004cc190dd4180a80125eb812f5c1159800982680144c058cc190c058cc190dd4000998321ba80024bd7025eb82298103d87a8000417c82f8dd698318009bad30633064001305f375400323259800982a182f1baa00189831182f9baa0018a9982ea481263c65787065637465643e2044656e6f6d696e61746f722063616e6e6f74206265207a65726f2e00164170660066eb4c184c178dd50009bad304c305e3754003337006eb4c060c174dd501c000ccdc0800cc004dd5981a182e9baa0519bae304b305d37540c7375c609660ba6ea80e104a4896600266e2400520008a40011300a3300630070010024170911111991194c004cdc019b810120013300430073011306537540660033370200c00b3259800982d98329baa0018992cc004c170c198dd5000c4c8cc896600260aa66e14008006266e00cdc2001000a40051337080040028338dd698358009bad306b306c0013067375460d460ce6ea80062c8320cc024cc88cc88c078cc1b0dd419b80337046eb4c1b4010004cdc11bad306d0030023306c375066e080080052f5c06eb4c1acc1b0008dd69835983600098331baa32301b33069375060346eb4c1a8004cc1a4c1a8c1ac0052f5c060cc6ea8c1a4c198dd500098331baa3300d003300e00733223322301e3306c375066e04cdc11bad306d004001337046eb4c1b400c008cc1b0dd419b820020014bd701bad306b306c002375a60d660d800260cc6ea800cc198dd518072400516418c66010601a0240069112cc004c96600260bc60d06ea8006264660289201045369676e0032330010013758602860d66ea817c896600200314a115980099b8f375c60de00200714a3133002002307000141a48368dd7183618349baa0018a514198603460d06ea8c158c1a0dd501cc5660026602492010454696d650032980098009836183698369836983698368274c004c074cc1acc074cc1acc068cc1acdd4180b9bad301b306937540de97ae03306b9800a51a60103d87a8000a60103d8798000419897ae03306b301d3306b301a3306b375066e0013cdd6980d98349baa06f4bd7019835cc00528d300103d87a8000a60103d8798000419897ae04bd70488c96600260c2003159800983098359baa0028a6103d87a80008a6103d879800041a51598009831000c56600260c460d66ea800a2980103d87a80008a6103d87b800041a51332259800982f800c4c96600266e2000c0062980103d87980008acc004cdc4000801c530103d87b80008a6103d87a800041b08360dd6983898371baa0048acc004c18c006298103d87b80008a6103d879800041ac8358dd6983798361baa003306b3754004834906918351baa00248896600264b300130630018a518acc004c1780062946294106a20d4306b37546600260de60d86ea800cc1bcc1b0dd500144c96600260c400314a3159800982f000c528c52820d441a860d66ea8cc004c168c1b0dd5001982d18361baa0028a5041a42301d3306b3259800982d98349baa0018992cc004c170c1a8dd5182c98359baa306e306b37540071301c3306d375000297ae08980e198369ba833700002900125eb810681bad306d306a37540031001419c60d860d26ea8c1b0c1a4dd500099835992cc004c16cc1a4dd5000c4c96600260b860d46ea8c164c1acdd5182c98359baa0038980e198369ba80014bd7044c070cc1b4dd4180d800a5eb810681bad306d306a37540031001419c60d860d26ea8c15cc1a4dd5000a5eb822b3001330124910943445020696e707574003375e60d660d06ea8120c1ac1622b300133012490106696173736574003371e6eb8c1acc1a0dd501b1bae305630683754087159800998092490a636f6c6c61746572616c005980099b8f375c60d660d06ea8078dd7183598341baa036899baf30563068375403c608e60d06ea810e29410654566002660249201034d697800325980099baf001306c3069375460d860d26ea8c15cc1a4dd501e44cdd7800983618349baa306c3069375460ae60d26ea808a2941066180c99835180a18341baa06e4bd7044c96600266026921043c524d52009800cc00405a0150078032002a50a51419915980099809a4810843523e3d3130302500980080b402a00f30114800900144c966002660289201044d696e74003375e608260d46ea8178dd34c004dd7182c18351baa0709bae3058306a375408b3370201c014800a2b3001330144910752656420616d740059800982a80544cdc4805001c52820ce8cc0048888c8cc0040040148966002003133072337606ea4014dd400225eb7bdb1822653001375c60e0003375a60e2003307500248896600266e4002400e2660ec66ec0dd48049ba80080058acc004cdc7804801c6600201300880148cc1dccdd81ba900a37500020051001401d133076337606ea400cdd400119803003000a0e241c4307300141c5222232330010010052259800800c4cc1c8cdd81ba9005374c00897adef6c608994c004dd71838000cdd59838800cc1d40092225980099b9000900389983b19bb037520126e980200162b30013371e01200719800804c022005233077337606ea4028dd30008014400500744cc1d8cdd81ba9003374c0046600c00c00283890710c1cc005071496600200314a314a0836224444464b3001306500180144c00c00506d19b80004003912cc00400629344c966002003149a264b3001337206eb8c1b4c1c400cdd71836800c4cc010010cc1c0004c1c800a2a660d89201326b65797320696e206173736f63696174697665206c697374206172656e277420696e20617363656e64696e67206f72646572001641ac60e00028370c1c000506d244444646644b30013301c491064344506f757400980082a4c08ccc1d0c1d4c1c8dd5183018391baa0524bd704cdd2a4008660e8604c660e8604c660e8604c660e860ea60e46ea81292f5c0660e860c060e46ea8134cc1d0c144c1c8dd50269983a1ba800c3307430263307437500b0660e86ea0cdc01bad30753072375404eb3001337106eb4c144c1c8dd501382c44cdc199b833370466e08c080dd6982898391baa027375a60ea60e46ea8c180c1c8dd5013a41010141ede959b7c03690405844fdf500a810c54cc1c1241015a001641bc97ae04bd7025eb812f5c1332298008014dd7183b983a1baa0019bae30623074375400300f4010653001375c60ec60e66ea80066eb8c184c1ccdd5000d2002402860ea60e46ea81e0c144c1c8dd5026d30103d87a8000400513322598009980f24906496e747273740098009bab3026307437540d1375c609660e86ea81ea6eb8c188c1d0dd503d4dd71831183a1baa04f48888c8c96600260ca03d159800800c1d6264b3001307f0028992cc004c1c4c1ecdd5000c56600260f86ea80063300105e98169983f18181983f0021983f26103d87a80004bd7025eb8298107d87b9fd87980ff00cc004dd59835183e1baa306a307c3754005006802c08100c530103d87a8000402d1641f51641e46601060fc60f66ea800401e0ec83e0c1f400507b456600200314a314a083d90771980383080098149983d1ba90034bd7022b30013301e4910854726561737572790098009183c183c983c983c983c983c983c800cdd59813183a1baa068acc0056600266e200500362b3001306930733754604c60e86ea8c188c1d0dd5022c5284528a0e28a5041c51375a603a60e86ea81ea2900020e2983b983a1baa05448888c8c8ca60026eb4c1f80066eb4c1f8c1fc0066eb8c01cc1ecdd504080cc1f8009222259800983500244c96600200307c8acc004c2100400629460f8840809081011983599806833981819840809ba90024bd7011919912cc004c1e00062b300130830137540070028b2108028acc004c1d00062b300130830137540070028b2108028acc004c1e40062b300130830137540070028b2108028acc004cdc3a400c0031598009841809baa00380145908401456600266e1d20080018991919194c004c228040066eb4c2280400e6eb4c228040092225980098470080244cc190c2340401c4cc1f000c0262c8458086114020026112020026110020026106026ea800e2b30013370e9005000c5660026106026ea800e0051642100516420004840009080012100024200048400084cdd780099ba548020cc20c0400ccc20c04dd400319841809ba8005330830100a4bd701840009baa0013300d308301308001375400201714a283e060fc00264b30015980099b8900148002260ca00914a083ba2660f898106d8799f4040ff003307c3750008660f89810100004bd7044cc1f0c1f4008cc1f0dd40009983e1ba80044bd7020ee375a60f860fa002660f460ae60f06ea814ccc1e8dd41980b980d1802183c1baa0460144bd7022b30013301e4901053c6d696e6300337126eb4c074c1d0dd5015007c4cc079241094d696e7465643c3d3000305f00e8a5041c514a0838a29410711119830001119baf30783075375460f060ea6ea8c18cc1d4dd500080111192cc004c1a8c1d0dd5000c4c1e0c1d4dd5000c590721980d00098129983b00125eb82294106f11112cc004c1a4006200919800802400e6464004600c002660ec66ec0dd48011ba80014bd6f7b630488888c966002601c00300289801800a0ee329800802402200f222229800802c00e009002800a00c4040a0188049071111111919800800998310032cc004c1acc1d4dd5002c48c8cdd7983d983c1baa307b3078375400400260f460ee6ea801a246466ebcc1ecc1e0dd5001000983d183b9baa00641cc44b30010018a508acc004c96600266ebcc15cc1e0dd500080344c96600200314a3159800983e800c4c8ca60026eb8c1f80066eb4c1f8c1fc0066eb8c1f80092225980099b8f001489008acc004cdc7801a441008acc004c1ccc1f4dd5005456600266e252000002899b89002482026fb80a294107b44cdc4a400000483da294107b452820f6183f0009bac307c0018a5041e883d0c8cc004004ca6002003375660d060f46ea800e646600200201044b30010018a5eb7bdb182264660fe66ec0c1f0004dd319198008009bab307e0022259800800c52f5bded8c113233082013376060fe0026ea0c0ccdd698400080099801801984200801184100800a1000233003003308101002307f00141f480088896600200510018994c00401261020200798008014dd7183e000cdd5983e800c88888c966002602e00300289801800a1000232329800800c01a00a80088896600200510018994c00401261160200798008014dd7184300800cdd6984380800c01501d2008308901002421c04a02a8091004183f80120fa2259800800c52f5c113233223322330020020012259800800c400e26466104026e9ccc20804dd48029984100983f8009984100984000800a5eb80cc00c00cc21004008c20804005080011bab307d003375c60f40026600600660fe00460fa00283da2941075183d000c528c4cc008008c1ec00507420f03001001452820ce8a50419c444b300130610018a5eb7bdb182264646600200297adef6c602259800800c4cc1c4cdd81ba9006374c00697adef6c608994c004dd71837800cdd59838000cc1d00092225980099b9000a00389983a99bb037520146e9801c0162b30013371e014007133075337606ea4028dd3003800c4cc1d4cdd81ba9003374c0046600c00c00283810700c1c80050701919800800a5eb7bdb1808966002003133070337606ea4010dd4001a5eb7bdb1822653001375c60dc003375a60de003307300248896600266e4002000e2660e866ec0dd48041ba80070058acc004cdc7804001c4cc1d0cdd81ba9008375000e003133074337606ea400cdd400119803003000a0de41bc307100141bc834a2941066452820cc22223259800983118361baa0018999119b89337046eb4c1c8004dd69839183980119b82375a60e40046eb4c1c8c1cc004c1b4dd5183818369baa001306d3754660280060051641a86602200800714a0832a2941065452820ca8a50419514a0832a29410650c03ccc02cc03001000a6002444b30010028a60103d87a80008acc004c16800626032660ce60d000497ae08cc00400e60d20053015001400c831106648896600266e2000520008a4001159800982d000c520028992cc004c16ccdc300124009198008024c00400e66e0c009200440111300198008024c00400e66e0cc058009200440108318dc100120c44189375a608260c46ea8062603a60c46ea806260ca60cc09891111191919912cc004c18001e2005159800982b003c4cc048008c04ccc00520140078992cc004c184c1acdd5000c4c1bcc1b0dd5000c5906919807001180999800a4028603c00e8341068192cc004c17c0062b30019800a51a50a51419d15330684910157001689806183698351baa005419d159800982d800c4c96600264b3001305d306b37540031337126eb4c168c1b0dd50011bad306f306c37540031641a460dc60d66ea8c164c1acdd5181e98359baa05f8a99834a4810158001689806983718359baa00141a064b300133052375660b260d66ea8004c1b8c1acdd500344c96600260c260d66ea800626464646644b3001307500389981f183a002880345907218390009bad307200230720013071001306c37540031641a46092609460d66ea80062c8340c96600260c000313259800983098359baa0018982d18361baa306f306c37540031641a4660066eb0c164c1acdd502f9bad306e306b375400b159800982e000c4c96600260c260d66ea8006260de60d86ea80062c8348cc00cdd6182518359baa05f375a60dc60d66ea80162a660d29201014f001641a08340c1a4dd500244c96600260c060d46ea8006264b30013061306b3754003132323259800983980144cc0f0c1c800c4c044c1c8c1bcdd50024590701838800983880098361baa0018b20d2306e306b37540031641a0660206eacc070c1a8dd502f19ba548010cc1b0c06ccc1b0c1b4c1a8dd5002a5eb812f5c0833906718341baa0043006006225980099b8800148002298103d87a8000899801801000a0ce30050051802180718311baa0180609a00316412c60926ea80062c8230c098c09cc120dd5181b18241baa001304a0018b209098008154c004c118dd5026530103d879800040a4460926094609460940031641183040001303f001303e001303d001303c001303b001303a0013039001303437540051640c4606a00244b300130293033375400513232332259800981e001c0162c81c8dd6981c8009bad30390023039001303437540051640c51640cc60626ea80062c8170c8cc8966002606c00313259800981418191baa001899191919194c004dd6981d800cdd6981d802cdd6981d801cdd6981d80124444b300130400058992cc004c0c8c0f0dd5000c4c8c8c8c8c8c8c8c8c8c8c8ca60026098003375a6098019375a6098017375a6098015375a6098013375a6098011375a609800f375a609800d375a609800b375a6098009375a6098004911111111112cc004c16003226605a60ae01c2660480162045164154304c001304b001304a00130490013048001304700130460013045001304400130430013042001303d37540031640e8607e0111640f4303b001303a00130390013038001303337540031640c06020602260646ea8c080c0c8dd5181a800c590331800800cc004052600460606ea80da980103d8798000404c44464b30013028001899192cc004c0e400a0091640d86eb8c0dc004c0ccdd5001c5660026048003132332259800981d000c4c8cc004004dd6181d001112cc00400600f19800804cc0ec006266004004607800280490394590371bad30370013038001303337540071640c08180c0c4dd50011806980718179baa301d302f375400460600024606260646064606460646064606460640031640b860566ea8006600201f300a302b37540634c103d879800040391640a0600260546ea80148c0b4c0b8c0b8c0b8c0b80062c8130c0acc0a0dd5001a2c8130c090dd5000c590211800980118119baa3011302337540068b20423758604200730010069810980f1baa024a60103d879800040040c04cc040dd5004112cc004c014c03cdd500144c8c8cc896600260300070058b202a375a602a0026eb8c054008c054004c040dd500145900d1b874800a2b30013370e9003002c4c8c966002600a601e6ea8c04cc05000a29462a6601c9211d3c65787065637465643e2057726f6e672063657274696669636174652e001640346eb4c048004c038dd500345900b201618059806000980580098031baa00b8a4d13656400c2a660049201373c65787065637465643e2053696e676c6520747265617375727920696e707574207769746820636f72726563742072656465656d65722e00161533002491153c65787065637465643e2053696e676c6520696e74001601"
5221
+ cborHex: "59210d59210a010100229800aba2aba1aba0aab9faab9eaab9dab9cab9a488888888c966002646465300130073754003370e90024dc3a4001300b0039805801244444b300130040058999119912cc004c01cc040dd5002c4c8c8c8cc896600260340071330093019005132598009806800c4c8c966002603a00500a8b2034375a6036002602e6ea800e2b30013009001899192cc004c07400a0151640686eb4c06c004c05cdd5001c566002601c003159800980b9baa00380445901845901420284050602a6ea800a2c80b8c05c004dd6980b801180b800980b00098089baa0058b201c1980098079baa00398079baa00491809980a000c888c8cc88cc008008004896600200300389919912cc004cdc8803801456600266e3c01c00a20030064055133005005301c00440546eb8c054004dd6980b000980c000a02c3232330010010062259800800c00e2646644b30013372201200515980099b8f0090028800c01901644cc014014c0740110161bae30160013756602e002603200280b852f5bded8c029000488c8cc00400400c896600200314bd7044cc8966002600a00513301700233004004001899802002000a02430160013017001405137109000244444530013019006980c802cdd6180c002c88c0266002005375c6034602e6ea80066eb8c018c05cdd5000a00a4888a60026eb4c070012603a00737586038007222323300a00423002300d301e3754002b30013012301b3754003123300537566018603a6ea800400e246013300137566018603a6ea80066eb8c080c074dd5001cdd71806180e9baa003402c80c922223322598009811800c660026044003230233024302400192cc004c05cc07cdd5000c4c08cc080dd5000c5901d244464b3001301930223754003132598009814000c66002604e0032259800980e18129baa0028991919912cc004c0b800e00b1640ac6eb8c0ac004dd71815801181580098131baa0028b204691192cc004c07400626464b3001302d00280245902a1bae302b00130273754007159800980c800c566002604e6ea800e0051640a11640908120c094dd5001244464b3001301e302737540091323232323298009818000cdd718180024c0c000e6eb4c0c0009222259800981a802c4cc02cc0d00244cc0300084c966002605000313232332259800981d001c03e2c81b8dd6981b8009bad303700230370013032375400b1598009812000c4c8c8cc8966002607400700f8b206e375a606e0026eb4c0dc008c0dc004c0c8dd5002c5902f205e303037540091640c83030001302f001302e001302d00130283754009164094264b3001301e302737540031323259800981018149baa001899912cc004c0c0006266446644b30013026302f375400313259800981a800c4cc8966002605260646ea800a26464646464646464653001303f0019bae303f0099bad303f008981f8034c0fc016607e009303f003992cc004c0f40062b3001337129002181e000c5a2605e607800281d22c81f0dd5181f801244444444b30013048009899809182380789980900289980900209980900189980900109980f004099192cc004c12800626464b3001303a30473754003132598009826800c4c8c966002608260946ea800a26464646464646464646465300130590019bae305900b9bad3059009982c8044c16401e60b200d3059005982c8024dd6982c801cc96600260ae00315980099b8948010c1580062d13049305600141511641606ea8c1640092222222222598009832005c4cc0ecc18c0504cc896600260b0003132598009833800c4cc0c4c19800400e2c8320c188dd5004c56600260a8003132598009833800c4cc0f8c19800400e2c8320c188dd5004c56600260b20031323259800983400140122c8328dd7183300098311baa0098b20be417c82f84cc0ec0184cc0b80144cc0b80104cc0b800c4c96600260ae003132598009833000c4cc0f4c1940040622c8318c184dd5005c56600260a600315980098309baa00b80bc5906245905e20bc305f375401460be6ea801e2c830860b200260b000260ae00260ac00260aa00260a800260a600260a400260a200260a000260966ea800a2c82406600264b30013041304a37540031323232332259800982a001c4c966002608e60a06ea800626464b300130570028804c590541bad30550013051375400316413860a60091641446eb4c144004dd698288019828800982800098259baa0018b20903029302a304a3754607260946ea8cc89660020030028acc004c1400062609e0030024134826854cc1212401015900169800817cc088c128dd5000d30103d879800040b9374a90004dc0a40012304e304f304f304f304f304f304f304f304f304f0019ba5480126e9520029b80480066e040c6664530010029bae304f304c3754003375c607660986ea800503a1bab3039304a3754607260946ea80acc0a8c128dd501348c138c13cc13cc13cc13cc13c00646466e0cdd698278009bad304f3050001304b37540032259800800c40062a660940042002824a4609c609e609e609e609e609e609e609e609e00291111111111114c0048c034cc168dd40009982d26010101004bd70488cc88c040cc174dd419b82375a60bc0046eb4c178004cc174dd419b82375a60bc60be0046eb4c178c17c0052f5c060b26ea8008c164dd5000c88c8cc00400400c896600200314c103d87a80008992cc004cdd7802182d800c4c044cc178c1700052f5c11330030033060002416460bc00282e244b3001304f0018a60103d87a80008acc004cdc4000a40011300e3305b300e3305b3750601a004660b66ea0c0340052f5c097ae0898071982d98071982d9ba80023305b375000297ae04bd7020ac415998009bad305a305b02d9bad301330573754067375a60b405a9112cc004cdc48019bad305d305a375402115980099b88375a607460b46ea8040106266e00cdc199b82337026eb4c174c168dd5008001801241010141ede959b7c03666e0ccdc199b823370460126eb4c0e8c168dd50081bad305d305a3754609260b46ea80400092080b089fbea014820225ea2a660b0920101550016415d15980099b88001041899b833370666e08cdc118048009bad305d305a3754609260b46ea80400092080b089fbea014820225ea2a660b0920101560016415c82b8911114c00488c96600260a260bc6ea8006298103d87a80008980a19830998038019831182f9baa0014bd7020b83233225980099b88002480022602c660c6602c660c66ea0c054004cc18cdd4180a80125eb812f5c1159800982680144c058cc18cc058cc18cdd4000998319ba80024bd7025eb82298103d87a8000417882f0dd698310009bad30623063001305e375400323259800982a182e9baa00189830982f1baa0018a9982e2481263c65787065637465643e2044656e6f6d696e61746f722063616e6e6f74206265207a65726f2e0016416c660066eb4c180c174dd50009bad304c305d3754003337006eb4c060c170dd501c000ccdc0800cc004dd5981a182e1baa0519bae304b305c37540c5375c609660b86ea80e104a4896600266e2400520008a40011300a330063007001002416c911111991194c004cdc019b810120013300430073011306437540660033370200c00b3259800982d98321baa0018992cc004c170c194dd5000c4c8cc896600260aa66e14008006266e00cdc2001000a40051337080040028330dd698350009bad306a306b0013066375460d260cc6ea80062c8318cc024cc88cc88c078cc1acdd419b80337046eb4c1b0010004cdc11bad306c0030023306b375066e080080052f5c06eb4c1a8c1ac008dd69835183580098329baa32301b33068375060346eb4c1a4004cc1a0c1a4c1a80052f5c060ca6ea8c1a0c194dd500098329baa3300d003300e00733223322301e3306b375066e04cdc11bad306c004001337046eb4c1b000c008cc1acdd419b820020014bd701bad306a306b002375a60d460d600260ca6ea800cc194dd518072400516418866010601a0240069112cc004c96600260bc60ce6ea8006264660289201045369676e0032330010013758602860d46ea817c896600200314a115980099b8f375c60dc00200714a3133002002306f00141a08360dd7183598341baa0018a514194603460ce6ea8c158c19cdd501cc5660026602492010454696d650032980098009835983618361836183618360274c004c074cc1a8c074cc1a8c064cc1a8dd4180b9bad301b306837540dc97ae03306a9800a51a60103d87a8000a60103d8798000419497ae03306a301d3306a30193306a375066e0013cdd6980d98341baa06e4bd70198354c00528d300103d87a8000a60103d8798000419497ae04bd70488c96600260c2003159800983098351baa0028a6103d87a80008a6103d879800041a11598009831000c56600260c460d46ea800a2980103d87a80008a6103d87b800041a11332259800982f800c4c96600266e2000c0062980103d87980008acc004cdc4000801c530103d87b80008a6103d87a800041ac8358dd6983818369baa0048acc004c18c006298103d87b80008a6103d879800041a88350dd6983718359baa003306a3754004834106818349baa00248896600264b300130630018a518acc004c1780062946294106920d2306a37546600260dc60d66ea800cc1b8c1acdd500144c96600260c400314a3159800982f000c528c52820d241a460d46ea8cc004c168c1acdd5001982d18359baa0028a5041a02301d3306a3259800982d98341baa0018992cc004c170c1a4dd5182c98351baa306d306a37540071301b3306c375000297ae08980d998361ba833700002900125eb810671bad306c306937540031001419860d660d06ea8c1acc1a0dd500099835192cc004c16cc1a0dd5000c4c96600260b860d26ea8c164c1a8dd5182c98351baa0038980d998361ba80014bd7044c06ccc1b0dd4180d000a5eb810671bad306c306937540031001419860d660d06ea8c15cc1a0dd5000a5eb822b3001330124910943445020696e707574003375e60d460ce6ea8120c1a81622b300133012490106696173736574003371e6eb8c1a8c19cdd501b1bae305630673754087159800998092490a636f6c6c61746572616c005980099b8f375c60d460ce6ea8078dd7183518339baa036899baf30563067375403c608e60ce6ea810e29410644566002660249201034d697800325980099baf001306b3068375460d660d06ea8c15cc1a0dd501e44cdd7800983598341baa306b3068375460ae60d06ea808a2941065180c19834980a18339baa06d4bd7044c96600266026921043c524d52009800cc00405a0150078032002a50a51419515980099809a4810843523e3d3130302500980080b402a00f30114800900144c966002660289201044d696e74003375e608260d26ea8178dd34c004dd7182c18349baa06f9bae30583069375408b3370201c014800a2b3001330144910752656420616d740059800982a80544cdc4805001c52820cc8cc0048888c8cc0040040148966002003133071337606ea4014dd400225eb7bdb1822653001375c60de003375a60e0003307400248896600266e4002400e2660ea66ec0dd48049ba80080058acc004cdc7804801c6600201300880148cc1d8cdd81ba900a37500020051001401d133075337606ea400cdd400119803003000a0e041c0307200141c1222232330010010052259800800c4cc1c4cdd81ba9005374c00897adef6c608994c004dd71837800cdd59838000cc1d00092225980099b9000900389983a99bb037520126e980200162b30013371e01200719800804c022005233076337606ea4028dd30008014400500744cc1d4cdd81ba9003374c0046600c00c00283810700c1c8005070496600200314a314a0835a24444464b3001306500180144c00c00506c19b80004003912cc00400629344c966002003149a264b3001337206eb8c1b0c1c000cdd71836000c4cc010010cc1bc004c1c400a2a660d69201326b65797320696e206173736f63696174697665206c697374206172656e277420696e20617363656e64696e67206f72646572001641a860de0028368c1bc00506c244444646644b30013301c491064344506f757400980082a4c088cc1ccc1d0c1c4dd5183018389baa0524bd704c08ccc1ccc098cc1ccc098cc1ccc098cc1ccc1d0c1c4dd502525eb80cc1ccc180c1c4dd502699839982898389baa04d330733750018660e6604c660e66ea0160cc1ccdd419b80375a60e860e26ea809d6600266e20dd6982898389baa027058899b833370666e08cdc118101bad30513071375404e6eb4c1d0c1c4dd5183018389baa027482020283dbd2b36f806d2080b089fbea014820225ea2a660de9201015a001641b897ae04bd7025eb812f5c1332298008014dd7183b18399baa0019bae30623073375400300f4010653001375c60ea60e46ea80066eb8c184c1c8dd5000d2002402860e860e26ea81dcc144c1c4dd5026d30103d87a8000400513322598009980f24906496e747273740098009bab3026307337540d1375c609660e66ea81e66eb8c188c1ccdd503ccdd7183118399baa04f48888c8c96600260ca03d159800800c1d6264b3001307e0028992cc004c1c4c1e8dd5000c56600260f66ea80063300105e98161983e98181983e8021983ea6103d87a80004bd7025eb8298107d87b9fd87980ff00cc004dd59835183d9baa306a307b3754005006802c08100c530103d87a8000402d1641f11641e06601060fa60f46ea800401e0ec83d8c1f000507a456600200314a314a083d10761980383080098141983c9ba90034bd7022b30013301e4910854726561737572790098009183b983c183c183c183c183c183c000cdd5981318399baa068acc0056600266e200500362b3001306930723754604c60e66ea8c188c1ccdd5022c5284528a0e08a5041c11375a603a60e66ea81e62900020e0983b18399baa05448888c8c8ca60026eb4c1f40066eb4c1f4c1f80066eb8c01cc1e8dd504000cc1f4009222259800983500244c8c96600200319800831cc0d4cc208040092f5c130323308201303533082014c0103d87a8000330820100a4bd7025eb83300198009bae3083013080013754007375c60de6100026ea800e00c80c2910100a44100802a022a6103d87a80004041159800984200800c4c8cc896600260f20031598009841809baa00380145908401456600260ea0031598009841809baa00380145908401456600260f40031598009841809baa00380145908401456600266e1d20060018acc004c20c04dd5001c00a2c84200a2b30013370e9004000c4c8c8c8ca6002611402003375a611402007375a6114020049112cc004c238040122660ca611a0200e2660fa00601316422c04308a01001308901001308801001308301375400715980099b87480280062b300130830137540070028b2108028b21000242000484000908001210002420004266ebc004cdd2a4010661060200866106026ea001ccc20c04dd40031984180805a5eb80c20004dd5000998071841809840009baa30830100100c8b2102024204046601c0d0002605e66100026ea40092f5c114a283d860fa00264b30015980099b8900148002260ca00914a083b22660f698106d8799f4040ff003307b3750008660f69810100004bd7044cc1ecc1f0008cc1ecdd40009983d9ba80044bd7020ec375a60f660f8002660f260ae60ee6ea814ccc1e4dd41980b980d1802183b9baa0460144bd7022b30013301e4901053c6d696e6300337126eb4c074c1ccdd5015007c4cc079241094d696e7465643c3d3000305f00e8a5041c114a0838229410701119830001119baf30773074375460ee60e86ea8c18cc1d0dd500080111192cc004c1a8c1ccdd5000c4c1dcc1d0dd5000c590711980d00098121983a80125eb82294106e11112cc004c1a4006200919800802400e6464004600c002660ea66ec0dd48011ba80014bd6f7b630488888c966002601c00300289801800a0ec329800802402200f222229800802c00e009002800a00c4040a018804907011111191919800800803912cc00400629422b300132598009802000c56600266ebcc160c1e0dd5000803c4c96600200314a3159800983e800c4c8ca60026eb8c1f80066eb4c1f8c1fc0066eb8c1f80092225980099b8f001489008acc004cdc7801a441008acc004c1d0c1f4dd5005c56600266e252000002899b89002482026fb80a294107b44cdc4a400000483da294107b452820f6183f0009bac307c0018a5041e883d0c8cc004004ca6002003375660d260f46ea800e646600200201244b30010018a5eb7bdb182264660fe66ec0c1f0004dd319198008009bab307e0022259800800c52f5bded8c113233082013376060fe0026ea0c0d0dd698400080099801801984200801184100800a1000233003003308101002307f00141f480088896600200510018994c00401261020200798008014dd7183e000cdd5983e800c88888c966002603000300289801800a1000232329800800c01a00a80088896600200510018994c00401261160200798008014dd7184300800cdd6984380800c01501e2008308901002421c04a02c8099004183f80120fa2259800800c52f5c113233223322330020020012259800800c400e26466104026e9ccc20804dd48029984100983f8009984100984000800a5eb80cc00c00cc21004008c20804005080011bab307d003375c60f40026600600660fe00460fa00283da2941075452820ea307a0018a51899801001183d800a0e841e0b3001306a3073375400912323375e60f260ec6ea8c1e4c1d8dd5001000983c183a9baa005891919baf30793076375400400260f060ea6ea80150711800800a2941066452820cc222598009830800c52f5bded8c113232330010014bd6f7b630112cc0040062660e066ec0dd48031ba60034bd6f7b63044ca60026eb8c1b80066eacc1bc00660e60049112cc004cdc8005001c4cc1d0cdd81ba900a374c00e00b15980099b8f00a00389983a19bb037520146e9801c0062660e866ec0dd48019ba60023300600600141bc837860e20028378c8cc0040052f5bded8c044b300100189983799bb037520086ea000d2f5bded8c113298009bae306d0019bad306e00198390012444b300133720010007133073337606ea4020dd4003802c56600266e3c02000e2660e666ec0dd48041ba800700189983999bb037520066ea0008cc01801800506e20dc1838000a0dc41a114a0832a29410651111192cc004c188c1acdd5000c4cc88cdc499b82375a60e20026eb4c1c4c1c8008cdc11bad3071002375a60e260e400260d86ea8c1bcc1b0dd500098361baa330140030028b20d2330110040038a50419114a083222941064452820c88a50419114a08320601e6601660180080053001222598008014530103d87a80008acc004c16800626032660cc60ce00497ae08cc00400e60d00053014001400c830906548896600266e2000520008a4001159800982d000c520028992cc004c16ccdc300124009198008024c00400e66e0c009200440111300198008024c00400e66e0cc054009200440108310dc100120c24185375a608260c26ea8062603a60c26ea806260c860ca09891111191919912cc004c18001e2005159800982b003c4cc048008c04ccc00520140078992cc004c184c1a8dd5000c4c1b8c1acdd5000c5906819807001180999800a4028603c00e8339067192cc004c17c0062b30019800a51a50a51419915330674910157001689806183618349baa0054199159800982d800c4c96600264b3001305d306a37540031337126eb4c168c1acdd50011bad306e306b37540031641a060da60d46ea8c164c1a8dd5181e98351baa05f8a9983424810158001689806983698351baa001419c64b300133052375660b260d46ea8004c1b4c1a8dd500344c96600260c260d46ea800626464646644b3001307400389981f1839802880345907118388009bad307100230710013070001306b37540031641a06092609460d46ea80062c8338c96600260c000313259800983098351baa0018982d18359baa306e306b37540031641a0660066eb0c164c1a8dd502f9bad306d306a375400b159800982e000c4c96600260c260d46ea8006260dc60d66ea80062c8340cc00cdd6182518351baa05f375a60da60d46ea80162a660d09201014f0016419c8338c1a0dd500244c96600260c060d26ea8006264b30013061306a3754003132323259800983900144cc0f0c1c400c4c044c1c4c1b8dd500245906f1838000983800098359baa0018b20d0306d306a375400316419c660206eacc070c1a4dd502f180d99835980d19835983618349baa0054bd7025eb8106620cc30673754008600c00c44b300133710002900045300103d87a8000899801801000a0cc30050051802180718309baa0180609800316412860906ea80062c8228c098c09cc11cdd5181b18239baa00130490018b208e98008154c004c114dd5025d30103d879800040a446090609260926092003164114303f001303e001303d001303c001303b001303a00130390013038001303337540051640c0606800244b300130293032375400513232332259800981d801c0162c81c0dd6981c0009bad30380023038001303337540051640c11640c860606ea80062c8168c8cc8966002606a00313259800981418189baa001899191919194c004dd6981d000cdd6981d002cdd6981d001cdd6981d00124444b3001303f0058992cc004c0c8c0ecdd5000c4c8c8c8c8c8c8c8c8c8c8c8ca60026096003375a6096019375a6096017375a6096015375a6096013375a6096011375a609600f375a609600d375a609600b375a6096009375a6096004911111111112cc004c15c03226605a60ac01c2660480162045164150304b001304a001304900130480013047001304600130450013044001304300130420013041001303c37540031640e4607c0111640f0303a001303900130380013037001303237540031640bc6020602260626ea8c080c0c4dd5181a000c590321800800cc0040526004605e6ea80d6980103d8798000404c44464b30013028001899192cc004c0e000a0091640d46eb8c0d8004c0c8dd5001c5660026048003132332259800981c800c4c8cc004004dd6181c801112cc00400600f19800804cc0e8006266004004607600280490384590361bad30360013037001303237540071640bc8178c0c0dd50011806980718171baa301d302e3754004605e0024606060626062606260626062606260620031640b460546ea8006600201f300a302a37540614c103d8798000403916409c600260526ea80148c0b0c0b4c0b4c0b4c0b40062c8128c0a8c09cdd5001a2c8128c08cdd5000c590201800980118111baa3011302237540068b20403758604000730010069810180e9baa023a60103d879800040040c048c03cdd5004112cc004c014c038dd500144c8c8cc8966002602e0070058b2028375a60280026eb8c050008c050004c03cdd500145900c1b874800a2b30013370e9003002c4c8c966002600a601c6ea8c048c04c00a29462a6601a9211d3c65787065637465643e2057726f6e672063657274696669636174652e001640306eb4c044004c034dd500345900a201418051805800980500098029baa00a8a4d1365640082a660049201153c65787065637465643e2053696e676c6520696e74001601"
5160
5222
  };
5161
5223
 
5162
5224
  // src/contracts/cdp/scripts.ts
@@ -5239,7 +5301,7 @@ var import_lucid18 = require("@lucid-evolution/lucid");
5239
5301
  var _cdpCreatorValidator = {
5240
5302
  type: "PlutusScriptV3",
5241
5303
  description: "Generated by Aiken",
5242
- cborHex: "592929592926010100229800aba2aba1aba0aab9faab9eaab9dab9cab9a488888888cc896600264653001300b00198059806000cdc3a4005300b0024888966002600460166ea800e33001300c3754007370e90024dc3a4001300b375400891111919912cc004c014012264b300130180018992cc004c01cc050dd5000c4c8c8c8c8c8c8c8c8c8ca60026eb4c0880066046003375c6044015375a6044013375a6044011375a604400f375a604400d375a604400b375a6044009375a6044007375a6044004911111111112cc004c0b802a26464b3001301e001899192cc004c0c800a03b1640bc6eb4c0c0004c0b0dd5001456600260440031323259800981900140762c8178dd6981800098161baa0028acc004c07c0062b3001302c375400501b8b205a8b205240a48148c0a8dd5000981680545902b0c088004c084004c080004c07c004c078004c074004c070004c06c004c068004c054dd5000c59012180b800c5901518099baa00b8acc004c0240122b3001301337540170028b20288acc004c0180122b3001301337540170028b20288b202040408080660024602a602c602c602c602c602c602c003374a900048c054c0580064446466446600400400244b3001001801c4c8cc896600266e4401c00a2b30013371e00e0051001803202e899802802980f002202e375c602e0026eb4c060004c068005018191919800800803112cc00400600713233225980099b910090028acc004cdc78048014400600c80c226600a00a603e00880c0dd7180c0009bab3019001301b0014064297adef6c6014800244646600200200644b30010018a5eb8226644b3001300500289980c80119802002000c4cc010010005014180c000980c800a02c9b88480024602a602c602c602c602c0032301530163016001911919800800801911980180098010014966002600a60226ea80062602a60246ea80062c807a60206ea80264b300130043011375400312323375e602e60286ea8c05cc050dd5001000980b18099baa002891919baf301730143754004002602c60266ea800900f48888c8cc0040040148966002003133019337606ea4014dd400225eb7bdb1822653001375c602e003375a6030003301c00248896600266e4002400e26603a66ec0dd48049ba80080058acc004cdc7804801c6600201300880148cc078cdd81ba900a37500020051001401d13301d337606ea400cdd400119803003000a0304060301a0014061222232330010010052259800800c4cc064cdd81ba9005374c00897adef6c608994c004dd7180b800cdd5980c000cc0700092225980099b9000900389980e99bb037520126e980200162b30013371e01200719800804c02200523301e337606ea4028dd30008014400500744cc074cdd81ba9003374c0046600c00c00280c10180c068005018496600200314a314a0809a24444464b3001300900180144c00c00501419b800040039b81480024464b30013006001899192cc004c06800a00916405c6eb8c060004c050dd5001c5660026014003159800980a1baa0038014590154590112022301237540052259800980298091baa0028991919912cc004c06c00e00b1640606eb4c060004dd6980c001180c00098099baa0028b2020912cc004c014c048dd500144c8c8cc896600260360070058b2030375c60300026eb8c060008c060004c04cdd50014590104dc4a4009370e90044dd2a4004911111111111111111111114c00488c8cc00400400c896600200314c0103d87a80008992cc004cdd7981818169baa0010048980d99817800a5eb8226600600660620048150c0bc00502d488c0826002005375c605a60546ea80066eb8c05cc0a8dd5000a02c919912cc00528452f5bded8c113232330010014bd6f7b630112cc00400626606066ec0dd48029ba60034bd6f7b63044ca60026eb8c0b80066eacc0bc00660660049112cc004cdc8004801c4cc0d0cdd81ba9009374c00e00b15980099b8f00900389981a19bb037520126e9801c00626606866ec0dd48019ba60023300600600140bc817860620028178c8cc0040052f5bded8c044b300100189981799bb037520069810101004bd6f7b63044ca60026eb8c0b40066eb4c0b800660640049112cc004cdc8003801c4cc0cccdd81ba90074c010101000058acc004cdc7803801c4cc0cccdd81ba90074c0101010000189981999bb037520066ea0008cc01801800502e205c1818000a05c40a06eb8c0b0c0a4dd50009bae3016302937540032223259800800c528c56600260600031323298009bae30310019bad303130320019bae303100248896600266e3c0052201008acc004cdc7801a441008acc004c08cc0c0dd5003c56600266e252000002899b89002482026fb80a294102e44cdc4a40000048172294102e4528205c18188009bac302f0018a5040b48168c8cc004004ca60020030059919800800802912cc004006297adef6c608991981919bb0302f001374c64660020026eacc0c4008896600200314bd6f7b63044c8cc0d4cdd818190009ba83012375a606600266006006606e004606a0028198cc00c00cc0d0008c0c8005030200222259800801440062653001004981a001e6002005375c605e00337566060003222223259800980b800c00a260060028198c8ca6002003006802a00222259800801440062653001004981f001e6002005375c6072003375a607400300540748020c0f000903a280aa024401060640048180896600200314bd7044c8cc88cc88cc008008004896600200310038991981a9ba733035375200a6606a60640026606a606600297ae0330030033037002303500140cc6eacc0c000cdd718168009980180198190011818000a05c91192cc004c074006264b300130300018998049817800801c5902d18159baa0038acc004c084006264b300130300018998041817800801c5902d18159baa0038acc004c07800626464b3001303100280245902e1bae302f001302b37540071640a0814102818149baa002488888c9660026040027198009b804800644b30010018a4d13259800800c5268992cc004cdc81bae30313035003375c60620031330040043303400130360028a998182481326b65797320696e206173736f63696174697665206c697374206172656e277420696e20617363656e64696e67206f72646572001640bc60680028190c0d0005031488cc88c080cc0d0dd419b82375a606a0046eb4c0d4004cc0d0dd419b82375a606a606c0046eb4c0d4c0d80052f5c060606ea8008c0c0dd5000c8966002604400314c0103d87a80008acc004cdc4000a40011301e33032301e330323750601e004660646ea0c03c0052f5c097ae08980f19819180f198191ba800233032375000297ae04bd70205a40b5230323033303330333033303330333033001911919800800801912cc0040062980103d87a80008992cc004cdd78021819000c4c084cc0d4c0cc0052f5c1133003003303700240c0606a002819a4464b300130230018acc004c08cc0c0dd500145300103d87a80008a6103d879800040b91598009812000c566002604860606ea800a2980103d87a80008a6103d87b800040b913322598009814800c4c96600266e2000c0062980103d87980008acc004cdc4000801c530103d87b80008a6103d87a800040c48188dd6981b18199baa0048acc004c094006298103d87b80008a6103d879800040c08180dd6981a18189baa00330303754004817102e18179baa0029180e998189ba8001330314c10101004bd70488889660026602e00800b15980099baf301b3033375400a007198009bab30203033375400b002800a0108a5040c114a081824606460666066606600323032303330333033303330333033303330333033001918191819981998199819981998199819981998199819800c8c0c8c0ccc0ccc0ccc0ccc0ccc0ccc0ccc0cc006605c6ea8c0c4c0b8dd50134c0b8dd5011a4444444444444453001222598008014530103d87a80008acc004c0c80062605c66084608600497ae08cc00400e60880053012001400c81e90414c03803a444b30013371000290004520008acc004c0c80062900144c966002606666e1800920048cc0040126002007337060049002200889800cc00401260020073370660260049002200840f86e0800903d207a9192cc004c0c4c0f8dd5000c4c108c0fcdd5000c54cc0f5241263c65787065637465643e2044656e6f6d696e61746f722063616e6e6f74206265207a65726f2e001640f06601a6eb4c104c0f8dd50009bad302b303e37540032302c330403259800981a981f1baa0018992cc004c0d8c0fcdd5181698201baa3043304037540071301933042375000297ae08980c998211ba833700002900125eb8103d1bad3042303f3754003100140f06082607c6ea8c104c0f8dd500099820192cc004c0d4c0f8dd5000c4c966002606c607e6ea8c0b4c100dd5181698201baa0038980c998211ba80014bd7044c064cc108dd41809000a5eb8103d1bad3042303f3754003100140f06082607c6ea8c0acc0f8dd5000a5eb826082005375c608000530410019bac3040001488888888a60026012013300700791119912cc004c0f400e200b19800802c00a6464004601c0026609a66ec0dd48009ba80034bd6f7b630488888c966002606400300289801800a09c329800802401e013222229800802c00e009002800a00c40d0a06081690481bae304c304937540046eb8c0d8c124dd50014c1280126eb4c1240126eb0c12400a6eb0c124c1280092222222323322323232323298009bad3058001982c182c800cdd6982c0064dd6982c0044cc018040dd6982c003cdd6982c0024dd6982c00124444444b3001304e305b37540071325980099baf3060305d375400209b1598009981a1bab304a305d3754609460ba6ea8004c180c174dd5031c4c96600260a060ba6ea8006264b300198009831182f9baa002981c198309831182f9baa304c305f375400697ae09800998309826998309831182f9baa0034bd7025eb82606a60c460be6ea8196980103d87a800040a5132598009829182f9baa0018992cc004cc0e0dd5982718309baa304e30613754002605460c26ea819e264b3001305430613754003132598009833800c4c96600260ac60c66ea80062646464646464646465300130700019bae30700099bad307000898380034c1c001660e00093070003992cc004c1b80062b30013049306d0018b44c190c1b400506b45906f1baa30700024888888896600260f2013133052307800f133052005133052004133052003133052002133053008132598009834183a9baa0018992cc004cc138dd59832183b9baa30643077375400260c060ee6ea81f6264b3001306e3077375400313259800983e800c4c8c96600260da60f46ea800a2646464646464646464646530013089010019bae30890100b9bad3089010099844808044c2240401e61120200d3089010059844808024dd6984480801cc966002610e020031598009831184300800c5a260fa610c0200284200a2c844008dd518448080124444444444b300130940100b89983618498080a0998320038998360030998368028998368020998368018992cc004c20c04006264b3001309601001899837184a8080080c459093011848809baa00b8acc004c21c040062b300130910137540170178b2124028b211c02423804611e026ea802a2c848808611202002611002002610e02002610c02002610a0200261080200261060200261040200261020200261000200260f66ea800a2c83c0566002b30013375e60a6660f8608460f46ea8200052f5c060fa60f46ea8c1f4c1e8dd51833983d1baa01a899baf30533307c3042307a37541000297ae0307d307a375460fa60f46ea8c19cc1e8dd5002452820ee8acc004cdc79bae307d307a375402e6eb8c1f4c1e8dd5000c4c96600260da60f46ea8006264b300133053375660d260f86ea8c1a4c1f0dd50009832983e1baa0038992cc004c1bcc1f0dd5000c4c8c8c8cc8966002610c0200713259800983a9841009baa001899192cc004c2240400a264b30019800820cc1b8c21804dd504600d30103d87a8000416513259800983c9843009baa0018acc0066002611402610e026ea800660ea661120260c0661120260aa610e026ea8234052f5c097ae098149984480983a9984480983a9984480983a99844809ba90444bd7019844809845009843809baa02433089013074308701375401c66112026ea00f4cc22404c1d4cc22404dd401799844809ba8337006eb4c22804c21c04dd5005acc004cdc41bad306f308701375401605f13370666e0ccdc119b823370205e6eb4c1bcc21c04dd50059bad308a01308701375460e8610e026ea802d208080a0f6f4acdbe01b48202c227efa8052080897a8a9984280a49015a001642100497ae04bd7025eb812f5c19800982e98379843809baa08d01983a1843809baa00e818207ea60103d87a8000414515980099912cc004c96600260fa00314a3159800984000800c528c528210e02421c046110026ea8cc154c23004c22404dd50011846009844809baa0018992cc004c1f000629462b30013080010018a518a50421c04843808c22004dd51982a983b1844809baa0023076308901375400314a0843008c118c154c21c04dd503e1823183a9984480983a9984480983019844809ba83370205e6eb4c138c21c04dd504680a5eb80cc22406600294698103d87a8000a60103d879800042100497ae033089013075330890130603308901375066e000bcdd698271843809baa08d014bd701984480cc00528d300103d87a8000a60103d879800042100497ae04bd7044c96600266ebcc1c4c22004dd503e9ba69800982f18381844009baa08e01800c0f9040456600264b3001307b3088013754003133223371266e08dd69847008009bad308e01308f01002337046eb4c23804008dd69847009847808009844809baa308c0130890137540026112026ea8cc164010c124c1e0c22404dd5008459086011982b81881f456600260e407d15980099b89375a609c6110026ea803c0c62b300132323298009bad308e010019bad308e01308f010019bae3051308b01375412203375660a66116026ea820006611c02004911112cc004c1e8016264b300100184680c566002612a0200314a308d01424804849008cc1ecc8cc1f01308cdd7984a809849009baa309501309201375460fe6124026ea8004008c1a4cc24804dd4801a5eb808c8cc8966002610c02003159800984a009baa003801459095014566002611402003159800984a009baa003801459095014566002610e02003159800984a009baa00380145909501456600266e1d20060018acc004c25004dd5001c00a2c84a80a2b3001306e0018991919194c004c26c040066eb4c26c0400e6eb4c26c0400922259800984f8080244cc1dcc2780401c566002611a026134026ea800e264646644b300130a301003806c590a0011bad30a001001375c6140020046140020026136026ea800e2c84c00a2c84e0086136020026134020026132020026128026ea800e2b30013370e9005000c5660026128026ea800e0051642540516424404848809091012122024244048488084cdd780099ba548020cc2500400ccc25004dd40039984a009ba80063309401082014bd701848809baa00132598009842009848809baa0018984a809849009baa0018b211e023305e003306a3309301309401309101375400297ae08a51423404308e010013259800acc004cdc4800a400114a114a084380a2661180298106d8799f4040ff003308c014c10100003308c014c10100004bd7044cc23004c23404008cc23004dd40009984600a610100004bd70210e02375a611802611a02002661140200266114026ea16600266e240f920008a4001132337066eb4c23004004dd69846009846808009844009baa33058305303e30483070308801375404a8428092f5c114a31533086014901243c65787065637465643e204d757374207061792064656274206d696e74696e67206665650016421405153308601491253c65787065637465643e204d696e20636f6c6c61746572616c20756e7361746973666965640016421405153308601491213c65787065637465643e204e6f6e706f736974697665206d696e74656420616d740016421405153308601491203c65787065637465643e20556e646572636f6c6c61746572697a6564204344500016421405153308601491223c65787065637465643e204d696e7465642076616c756520697320696e76616c6964001642140460ea661120260e8610e026ea823404cc22404c22804c21c04dd501225eb822a6610a029201203c65787065637465643e20496e636f72726563742074782076616c69646974790016421005153308501491203c65787065637465643e20434450206f757470757420697320696e76616c69640016421005164210046606e07405908101421c04646644b3001307a0018801456600260e400313305800230533304148050006264b3001307b30880137540031308c0130890137540031642180464b3001307f308801375400314c0103d87a80008983b99845809982c8019846009844809baa0014bd70210c023233225980099b8800248002260f26611a0260f26611a026ea0c1a8004cc23404dd4183500125eb812f5c1159800983a80144c1e4cc23404c1e4cc23404dd400099846809ba80024bd7025eb82298103d87a8000422004844008dd69846008009bad308c01308d01001308801375460a666082900a1833800a10a0242140464b300130790018acc006600294294294508401454cc21405240101570016898239845009843809baa002421005159800983e800c4c96600264b3001307f30880137540031337126eb4c1d8c22404dd50011bad308c013089013754003164218046116026110026ea8c1d4c22004dd5182b1844009baa07d8a9984300a48101580016898241845809844009baa00142140464b30013305f375660ea6110026ea8004c22c04c22004dd5001c4c96600260f66110026ea800626464646644b3001309201003899835984880802880345908f011847808009bad308f01002308f01001308e0100130890137540031642180460dc60e06110026ea80062c842808c96600260f400313259800983d9844009baa0018983b1844809baa308c01308901375400316421804660726eb0c1d4c22004dd503e9bad308b013088013754065159800983f000c4c96600260f66110026ea800626118026112026ea80062c843008cc0e4dd618381844009baa07d375a6116026110026ea80ca2a6610c029201014f0016421404842808c21804dd5018c4c96600260f4610e026ea8006264b3001307b308801375400313232325980098480080144cc1a4c23c0400c4c130c23c04c23004dd500245908d011847008009847008009844809baa0018b210c02308b01308801375400316421404660a86eacc13cc21c04dd503e18149984480983019844809845009843809baa0024bd7025eb810840121080230850137540026eb4c1b8c21804dd500698271842809baa00c8b210c02375a610e020026106026ea80062c840008c214040122c841808dd69841808009bad308301003308301001308201001307d37540031641e860c460c860f86ea8c1a4c1f0dd5000c59079183f183d9baa0018b20f03302b02f0258a9983c2491b3c65787065637465643e2077726f6e6720636f6c6c206173736574001641dd1533078491193c65787065637465643e204d697865642076657273696f6e73001641dc60f80031641e860f06ea80062c83a8c174c17cc1dcdd51832183b9baa0018b20e83079307637540031641cc6604c0540351641d83070001306f001306e001306d001306c001306b001306a00130690013064375400316418460cc00316419060c46ea80062c82f8c11cc124c184dd5182718309baa0018b20bc306330603754003164174660200286eb4c1880362a660ba92012b3c65787065637465643e2043445043726561746f72206f757470757420646f6573206e6f74206d61746368001641706e9520048b20b63300e011375a60c001b153305b4901203c65787065637465643e2043445043726561746f724e4654206d697373696e670016416916416860be60b86ea800e2c82c860b000260ae00260ac00260aa00260a800460a400244b300133710002900045300103d87a8000899805001000a09a305100411598009812009c4cc88ca6002660120020432232598009813000c4c8c96600260740050048b206e375c607000260686ea800e2b3001302a001899192cc004c0e800a0091640dc6eb8c0e0004c0d0dd5001c5903120623032375400537586068606a606a00530030034888966002604e60686ea8012264b30013300d37566046606c6ea8c08cc0d8dd5000981c981b1baa03c8992cc006600200f301f3037375407b4c103d87a8000402913259800981e000c4c966002605660706ea80062646464646465300130420019bad30420049bad30420039bad30420024888966002608e00b1329800899912cc004c0e0006264b3001304b0018992cc004c0e8c11cdd5000c4c8c8c966002609e0051332259800981f98261baa00289919192cc004c15000a26603c60a6006264b300130430018992cc004c15800626464b300130460018992cc004c16400626604660b000201316415860a86ea800a2b3001304a00189919194c004dd6982d000cdd6982d001cdd6982d0012444b3001305e00480745905b0c168004c164004c150dd500145905120a23052375400260aa00316414c60a26ea800a2b300130470018acc004c144dd500140162c82922c827104e18279baa0018b20a230520013052001304d3754005164128609c00626606400244b3001002804c4c9660026080609a6ea800626464653001375a60a8003375c60a8007375c60a80049112cc004c1600122601060b001316415430540013053001304e375400316412c60a000482722c8260dd61826800982680098241baa0018b208a304a0018b20903046375400f159800981e000c566002608c6ea801e00516411d16410c8218566002b3001301e3043375400314a314a0820a264b30010018800c54cc10d24012043445043726561746f72206f757470757420646f6573206e6f74206d6174636800100141086466446600400466064028605600244b30010018a508acc004c96600266ebcc0c0c120dd5000a60107d87b9fd87980ff008cc004dd5981a98241baa0018025300103d87a8000407514a08228c128006294626600400460960028221048180f19823807a5eb80c068c11cc110dd502545904118219baa00598219baa0019bad304700b4889660026072005132598009826000c4c966002607660906ea80062646464646465300130520019bae305200698290024c14800e60a4004911112cc004c16001a26606260ae01426606200626606200426606200226606200a021164154305200130510013050001304f001304e001304937540031641186096003164124608e6ea80122b3001303d0028992cc004c130006264b3001303b30483754003132323232323298009829000cdd718290034c14801260a400730520024888896600260b000d133031305700a1330310031330310021330310011330310050108b20aa1829000982880098280009827800982700098249baa0018b208c304b0018b209230473754009159800981d00144c966002609800313259800981d98241baa00189919191919191919194c004dd6982a800cdd7182a804cdd6982a803cc15401a60aa00b3055004982a801cc1540092222222259800982f004c4cc0d8c1740404cc0b80144cc0d80104cc0dc00c4cc0dc0084cc0dc00405a2c82d860aa00260a800260a600260a400260a200260a0002609e002609c00260926ea80062c8230c12c0062c8248c11cdd5002456600266e1d20060028992cc004c130006264b3001303b30483754003132323232323232323298009bad30550019bae30550099bad3055007982a8034c15401660aa0093055003982a801244444444b3001305e00989981b182e80809981700289981b00209981b80189981b80109981b80080b45905b0c154004c150004c14c004c148004c144004c140004c13c004c138004c124dd5000c590461825800c5904918239baa0048acc004c08400a264b3001304c0018992cc004c0ecc120dd5000c4c8c8c8c8c8c8c8c8ca60026eb8c1540066eb8c15402660aa00f3055006982a802cc1540126eb4c15400e6eb4c1540092222222259800982f004c4cc0d8c1740404cc0dc0184cc0dc0144cc0dc0104cc0e000c05a2c82d860aa00260a800260a600260a400260a200260a0002609e002609c00260926ea80062c8230c12c0062c8248c11cdd5002456600266e1d200a0028992cc004c130006264b3001303b304837540031323232323232323232323298009bae30570019bae305700b982b804cc15c02260ae00f3259800982a800c566002606060a80031689825982a000a0a48b20ac375460ae00d3259800982a800c566002606060a80031689825982a000a0a48b20ac375460ae00b30570049bad30570039bad3057002488888888896600260c401713303a306101413303b00813303b00713303b00613303c00301a8b20be182b800982b000982a800982a00098298009829000982880098280009827800982700098249baa0018b208c304b0018b20923047375400915980099b874803000a264b3001304c0018992cc004c0ecc120dd5000c4c8c8c8c8c8c8c8c8c8c8c8ca600260b0003375a60b0019375a60b0017375a60b0015375a60b0013375a60b0011375a60b000f375a60b000d375a60b000b375a60b0009375a60b0004911111111112cc004c19003226607c60c601c266058016039164184305800130570013056001305500130540013053001305200130510013050001304f001304e001304937540031641186096003164124608e6ea80122b30013370e900700144c966002609800313259800981d98241baa00189919912cc004c1400062660666eb0c13c004896600200500a89919912cc004c154006264b30013044305137540031323259800982c00144c01cc1600222c82a8dd7182b00098291baa0018b209e30540018b20a4375c60a400260a60026eb0c14400904f45904d1bad304d001304e001304937540031641186096003164124608e6ea80122b30013370e900800144c8c966002609a0050058b2094375c6096002608e6ea80122c8221044208841108221044208841108220608c013164110304200130410013040001303f001303e001303937540031640d8603c604060706ea8c094c0e0dd5181d800c590394c00401e607460766076607660766076606e6ea80f698103d8798000402903240e06072606c6ea8c08cc0d8dd5000c54cc0d1241253c65787065637465643e2043445043726561746f72204e46542069732070726573656e742e001640cc6070606a6ea80122c81906eb0c0cc004888c96600260480031323259800981c00140122c81a8dd7181b00098191baa0038acc004c0a00062646644b3001303900189980e1bac30380012259800801401e33001009981d00144c004c0ec00900920708b206c375a606c002606e00260646ea800e2c817902f18181baa002302e3754047132332259800981198181baa0018992cc004c0a0c0c4dd5000c4cc89660026070003132598009813981a1baa00189919912cc004c0f000626603e6eb0c0ec0048966002005132598009816981d1baa001899191980080098071bab3026303d375406444b30010018a508acc004cdc79bae30410010038a518998010011821000a07640fc6eb8c0f8c0ecdd5000c5903819198008009bac3028303b375400e44b30010018a60103d87a80008992cc006600266ebc00530103d87a8000a50a5140e9100189980180198208012074325980099b8f375c60800020171302b3303f304030410014bd7045300103d87a800040e86eb0c0fc00503d44c8c8cc896600260840071300530420068b207e375c607e0026eb8c0fc008c0fc004dd6181e80120768b2072375a60720026074002606a6ea80062c8190c068c070c0d0dd51810981a1baa30370018b206a375c606a60646ea800660026eb0c07cc0c8dd5013cc084c0c8dd501c530103d879800040151640bc606860626ea8c0d0c0c4dd5180f18189baa3034303137540031640b860020026600e6eb0c0c8c0bcdd501200f912cc004006297ae08998191817981980099801001181a000a06240ac8158888c8cc0700108c008c07cc0c8dd5000acc004c088c0bcdd5000c48cc020dd5980f18189baa00100389180dcc004dd5980f18189baa0019bae303430313754007375c603c60626ea800d01d205a0c050c054014c04c011164024300b00130063754017149a26cac801854cc0092401373c65787065637465643e2053696e676c6520747265617375727920696e707574207769746820636f72726563742072656465656d65722e001615330024911d3c65787065637465643e204e6f204344507320617265207370656e742e001601"
5304
+ cborHex: "59296c592969010100229800aba2aba1aba0aab9faab9eaab9dab9cab9a488888888c96600264653001300a00198051805800cdc3a4005300a0024888966002600460146ea800e33001300b3754007370e90024dc3a4001300a375400891111919912cc004c014012264b300130170018992cc004c01cc04cdd5000c4c8c8c8c8c8c8c8c8c8ca60026eb4c0840066044003375c6042015375a6042013375a6042011375a604200f375a604200d375a604200b375a6042009375a6042007375a6042004911111111112cc004c0b402a26464b3001301e001899192cc004c0c400a03b1640b86eb4c0bc004c0acdd5001456600260440031323259800981880140762c8170dd6981780098159baa0028acc004c07c0062b3001302b375400501b8b20588b205040a08140c0a4dd5000981600545902a0c084004c080004c07c004c078004c074004c070004c06c004c068004c064004c050dd5000c59011180b000c5901418091baa00b8acc004c0240122b3001301237540170028b20268acc004c0180122b3001301237540170028b20268b201e403c80786600246028602a602a602a602a602a602a003374a900048c050c0540064446466446600400400244b3001001801c4c8cc896600266e4401c00a2b30013371e00e0051001803202c899802802980e802202c375c602c0026eb4c05c004c064005017191919800800803112cc00400600713233225980099b910090028acc004cdc78048014400600c80ba26600a00a603c00880b8dd7180b8009bab3018001301a0014060297adef6c6014800244646600200200644b30010018a5eb8226644b3001300500289980c00119802002000c4cc010010005013180b800980c000a02a9b884800246028602a602a602a602a0032232330010010032233003001300200292cc004c014c040dd5000c4c050c044dd5000c5900e48c050c054c054006601e6ea8026444b300130060018a5eb7bdb182264646600200297adef6c602259800800c4cc060cdd81ba9006374c00697adef6c608994c004dd7180b000cdd5980b800cc06c0092225980099b9000a00389980e19bb037520146e9801c0162b30013371e01400713301c337606ea4028dd3003800c4cc070cdd81ba9003374c0046600c00c00280b90170c0640050171919800800a5eb7bdb1808966002003133017337606ea4010dd4001a5eb7bdb1822653001375c602a003375a602c003301a00248896600266e4002000e26603666ec0dd48041ba80070058acc004cdc7804001c4cc06ccdd81ba9008375000e00313301b337606ea400cdd400119803003000a02c40583018001405880824464b30013006001899192cc004c06400a0091640586eb8c05c004c04cdd5001c566002601400315980098099baa0038014590144590102020301137540052259800980298089baa0028991919912cc004c06800e00b16405c6eb4c05c004dd6980b801180b80098091baa0028b201e912cc004c014c044dd500144c8c8cc896600260340070058b202e375c602e0026eb8c05c008c05c004c048dd500145900f48888c8cc0040040148966002003133018337606ea4014dd400225eb7bdb1822653001375c602c003375a602e003301b00248896600266e4002400e26603866ec0dd48049ba80080058acc004cdc7804801c6600201300880148cc074cdd81ba900a37500020051001401d13301c337606ea400cdd400119803003000a02e405c3019001405d222232330010010052259800800c4cc060cdd81ba9005374c00897adef6c608994c004dd7180b000cdd5980b800cc06c0092225980099b9000900389980e19bb037520126e980200162b30013371e01200719800804c02200523301d337606ea4028dd30008014400500744cc070cdd81ba9003374c0046600c00c00280b90170c064005017496600200314a314a0809224444464b3001300900180144c00c00501319b8000400392cc004c010c040dd5000c48c8cdd7980b18099baa301630133754004002602a60246ea800a246466ebcc058c04cdd5001000980a98091baa0024039370290004dc4a4009370e90044dd2a40049111111111111111111111114c00488c8cc00400400c896600200314c0103d87a80008992cc004cdd7981818169baa0010048980e19817800a5eb8226600600660620048150c0bc00502d488c0866002005375c605a60546ea80066eb8c060c0a8dd5000a02e94c004dd7181618149baa0019bae3017302937540034800900e488c966002603c003132598009818000c4cc03cc0bc00400e2c8168c0acdd5001c5660026044003132598009818000c4cc038c0bc00400e2c8168c0acdd5001c566002603e0031323259800981880140122c8170dd7181780098159baa0038b205040a08140c0a4dd50014888c96600200314a31598009818000c4c8ca60026eb8c0c40066eb4c0c4c0c80066eb8c0c40092225980099b8f001489008acc004cdc7801a441008acc004c090c0c0dd5003c56600266e252000002899b89002482026fb80a294102e44cdc4a40000048172294102e4528205c18188009bac302f0018a5040b48168c8cc004004ca60020030059919800800802912cc004006297adef6c608991981919bb0302f001374c64660020026eacc0c4008896600200314bd6f7b63044c8cc0d4cdd818190009ba8300f375a606600266006006606e004606a0028198cc00c00cc0d0008c0c8005030200222259800801440062653001004981a001e6002005375c605e00337566060003222223259800980a800c00a260060028198c8ca6002003006802a00222259800801440062653001004981f001e6002005375c6072003375a6074003005406c8020c0f000903a2809a020401060640048180896600200314bd7044c8cc88cc88cc008008004896600200310038991981a9ba733035375200a6606a60640026606a606600297ae0330030033037002303500140cc6eacc0c000cdd718168009980180198190011818000a05c488888cc8966002604402b198009b804800644b30010018a4d13259800800c5268992cc004cdc81bae30323036003375c60640031330040043303500130370028a99818a49326b65797320696e206173736f63696174697665206c697374206172656e277420696e20617363656e64696e67206f72646572001640c0606a0028198c0d4005032488cc88c088cc0d4dd419b82375a606c0046eb4c0d8004cc0d4dd419b82375a606c606e0046eb4c0d8c0dc0052f5c060626ea8008c0c4dd5000c8966002604800314c0103d87a80008acc004cdc4000a400113020330333020330333750601a004660666ea0c0340052f5c097ae089810198199810198199ba800233033375000297ae04bd70205c40b9230333034303430343034303430343034001911919800800801912cc0040062980103d87a80008992cc004cdd78021819800c4c08ccc0d8c0d00052f5c1133003003303800240c4606c00281a24464b300130250018acc004c094c0c4dd500145300103d87a80008a6103d879800040bd1598009813000c566002604c60626ea800a2980103d87a80008a6103d87b800040bd13322598009815800c4c96600266e2000c0062980103d87980008acc004cdc4000801c530103d87b80008a6103d87a800040c88190dd6981b981a1baa0048acc004c09c006298103d87b80008a6103d879800040c48188dd6981a98191baa00330313754004817902f18181baa0029180f998191ba8001330324c10101004bd70488889660026602200800b15980099baf301b3034375400a007198009bab30223034375400b002800a0108a5040c514a0818a460666068606860680032303330343034303430343034303430343034303400191819981a181a181a181a181a181a181a181a181a181a000c8c0ccc0d0c0d0c0d0c0d0c0d0c0d0c0d0c0d0006605e6ea8c0c8c0bcdd50144c0bcdd5012a4444444444444453001222598008014530103d87a80008acc004c0d00062606066086608800497ae08cc00400e608a0053012001400c81f10424c03803a444b30013371000290004520008acc004c0d00062900144c966002606a66e1800920048cc0040126002007337060049002200889800cc00401260020073370660260049002200840fc6e0800903e207c9192cc004c0ccc0fcdd5000c4c10cc100dd5000c54cc0f9241263c65787065637465643e2044656e6f6d696e61746f722063616e6e6f74206265207a65726f2e001640f46601a6eb4c108c0fcdd50009bad302d303f37540032302e330413259800981b981f9baa0018992cc004c0e0c100dd5181798209baa3044304137540071301a33043375000297ae08980d198219ba833700002900125eb8103e1bad304330403754003100140f46084607e6ea8c108c0fcdd500099820992cc004c0dcc0fcdd5000c4c966002607060806ea8c0bcc104dd5181798209baa0038980d198219ba80014bd7044c068cc10cdd41809000a5eb8103e1bad304330403754003100140f46084607e6ea8c0b4c0fcdd5000a5eb826084005375c608200530420019bac3041001488888888a60026012013300700791112cc004c0f8006200919800802400e6464004601a0026609a66ec0dd48011ba80014bd6f7b630488888c966002606000300289801800a09c329800802402200f222229800802c00e009002800a00c40c8a05c81590484c12c0126eb4c1280126eb0c12800a6eb0c128c12c00922222229800912cc004cdc4000a400114c0103d87a8000899804801000a09a9114c00400e6eb8c150c144dd50014dd7181f98289baa002800a01098290024dd69828802244446464646464653001375a60b6003305b305c0019bad305b008998050091bad305b0069bad305b0049bad305b00248888896600260a260ba6ea800e264b30013375e60c460be6ea80041422b3001330363756609a60be6ea8c134c17cdd50009831182f9baa0658992cc004c14cc17cdd5000c4c9660033001306430613754005303a33063306430613754609e60c26ea800d2f5c130013306330503306330643061375400697ae04bd704c0dcc190c184dd5033d30103d87a800040a913259800982a98309baa0018992cc004cc0e8dd5982898319baa305130633754002605660c66ea81a6264b3001305730633754003132598009834800c4c96600260b260ca6ea80062646464646464646465300130720019bae30720099bad307200898390034c1c801660e40093072003992cc004c1c00062b3001304b306f0018b44c19cc1bc00506d4590711baa30720024888888896600260f601313305a307a00f13305a00513305a00413305a00313305a00213305b008132598009835983b9baa0018992cc004cc140dd59833983c9baa30673079375400260c660f26ea81fe264b300130713079375400313259800983f800c4c8c96600260e060f86ea800a264646464646464646464653001308b010019bae308b0100b9bad308b010099845808044c22c0401e61160200d308b010059845808024dd6984580801cc9660026112020031598009832184400800c5a261000261100200284300a2c845008dd518458080124444444444b300130960100b89983a184a8080a09983380389983a00309983a80289983a80209983a8018992cc004c21804006264b300130980100189983b184b8080080c459095011849809baa00b8acc004c228040062b300130930137540170178b2128028b2120024240046122026ea802a2c849808611602002611402002611202002611002002610e02002610c02002610a0200261080200261060200261040200260fa6ea800a2c83d0566002b30013375e60aa660fc608660f86ea8208052f5c060fe60f86ea8c1fcc1f0dd51835183e1baa01a899baf30553307e3043307c37541040297ae0307f307c375460fe60f86ea8c1a8c1f0dd5002452820f28acc004cdc79bae307f307c375402e6eb8c1fcc1f0dd5000c4c96600260e060f86ea8006264b300133055375660d860fc6ea8c1b0c1f8dd50009834183f1baa0038992cc004c1c8c1f8dd5000c4c8c8c8cc896600261100200713259800983c1842009baa001899192cc004c22c0400a264b300198008214c1bcc22004dd504700d30103d87a8000416d13259800983e1844009baa0018acc00660026118026112026ea800660f0661160260c4661160260ac6112026ea823c052f5c097ae098149984580983c1984580983c1984580983c19845809ba90454bd7019845809846009844809baa0243308b013077308901375401c66116026ea00f8cc22c04c1e0cc22c04dd401799845809ba8337006eb4c23004c22404dd5005acc004cdc41bad3070308901375401605f13370666e0ccdc119b823370205e6eb4c1c0c22404dd50059bad308c01308901375460ee6112026ea802d208080a0f6f4acdbe01b48202c227efa8052080897a8a9984380a49015a001642180497ae04bd7025eb812f5c19800982f98381844809baa08f01983b9844809baa00e81c2074a60103d87a8000414915980099912cc004c96600261000200314a3159800984180800c528c5282112024224046114026ea8cc158c23804c22c04dd50011847009845809baa0018992cc004c1fc00629462b30013083010018a518a50422404844808c22804dd51982b183c9845809baa0023079308b01375400314a0844008c11cc158c22404dd503f9823983c1984580983c1984580983119845809ba83370205e6eb4c13cc22404dd504780a5eb80cc22c06600294698103d87a8000a60103d879800042180497ae03308b0130783308b0130623308b01375066e000bcdd698279844809baa08f014bd701984580cc00528d300103d87a8000a60103d879800042180497ae04bd7044c96600266ebcc1d0c22804dd5040009ba69800983018389845009baa09001800c0fd03b456600264b3001307e308a013754003133223371266e08dd69848008009bad309001309101002337046eb4c24004008dd69848009848808009845809baa308e01308b0137540026116026ea8cc168010c128c1ecc22c04dd5008459088011982c01c81fc56600260ea07f15980099b89375a609e6114026ea803c0e62b300132323298009bad3090010019bad3090013091010019bae3052308d01375412603375660a8611a026ea820c06612002004911112cc004c1f401626464b30010018cc00411e6106026612c0200497ae0981a1984b009841809984b00a6103d87a80003309601085014bd7025eb83300198009bae3097013094013754007375c6104026128026ea800e00e83ca910100a441008032096a6103d87a80004199159800984c00800c4c8cc8966002611402003159800984b809baa003801459098014566002611c02003159800984b809baa003801459098014566002611602003159800984b809baa00380145909801456600266e1d20060018acc004c25c04dd5001c00a2c84c00a2b300130710018991919194c004c278040066eb4c2780400e6eb4c278040092225980098510080244cc20004c2840401c566002612202613a026ea800e264646644b300130a601003806c590a3011bad30a301001375c614602004614602002613c026ea800e2c84d80a2c84f808613c02002613a02002613802002612e026ea800e2b30013370e9005000c566002612e026ea800e005164260051642500484a0090940121280242500484a0084cdd780099ba548020cc25c04010cc25c04dd40041984b809ba80073309701086014bd70184a009baa0013259800984400984a009baa0018984c00984a809baa0018b21240233060004306d33096013097013094013754612e0200297ae08b212a02425404660fe09a466ebcc25c04c25004dd5184b80984a009baa308201309401375400200460d666128026ea400d2f5c114a284780861200200264b30015980099b8900148002294229410890144cc2380530106d8799f4040ff003308e014c10100003308e014c10100004bd7044cc23804c23c04008cc23804dd40009984700a610100004bd70211202375a611c02611e02002661180200266118026ea16600266e240fd20008a4001132337066eb4c23804004dd69847009847808009845009baa33059305403f30493071308a01375404a8438092f5c114a31533088014901243c65787065637465643e204d757374207061792064656274206d696e74696e67206665650016421c05153308801491253c65787065637465643e204d696e20636f6c6c61746572616c20756e7361746973666965640016421c05153308801491213c65787065637465643e204e6f6e706f736974697665206d696e74656420616d740016421c05153308801491203c65787065637465643e20556e646572636f6c6c61746572697a6564204344500016421c05153308801491223c65787065637465643e204d696e7465642076616c756520697320696e76616c69640016421c0460f0661160260ee6112026ea823c04cc22c04c23004c22404dd501225eb822a6610e029201203c65787065637465643e20496e636f72726563742074782076616c69646974790016421805153308701491203c65787065637465643e20434450206f757470757420697320696e76616c69640016421805164218046607407605908401422404646644b3001307d0018801456600260ea00313305900230543304248050006264b3001307e308a0137540031308e01308b0137540031642200464b3001308201308a01375400314c0103d87a80008983d19846809982d0019847009845809baa0014bd702110023233225980099b8800248002260f86611e0260f86611e026ea0c1a4004cc23c04dd4183480125eb812f5c1159800983c00144c1f0cc23c04c1f0cc23c04dd400099847809ba80024bd7025eb82298103d87a8000422804845008dd69847008009bad308e01308f01001308a01375460a866084900a1833000a10e02421c0464b3001307c0018acc006600294294294508601454cc21c05240101570016898241846009844809baa002421805159800984000800c4c96600264b3001308201308a0137540031337126eb4c1e4c22c04dd50011bad308e01308b01375400316422004611a026114026ea8c1e0c22804dd5182b9845009baa080018a9984400a48101580016898249846809845009baa001421c0464b300133061375660f06114026ea8004c23404c22804dd5001c4c96600260fc6114026ea800626464646644b30013094010038998399849808028803459091011848808009bad309101002309101001309001001308b0137540031642200460e460e26114026ea80062c843808c96600260fa00313259800983f1845009baa0018983c9845809baa308e01308b01375400316422004660786eb0c1e0c22804dd5040009bad308d01308a013754063159800984080800c4c96600260fc6114026ea80062611c026116026ea80062c844008cc0f0dd618389845009baa08001375a611a026114026ea80c62a66110029201014f0016421c04843808c22004dd501844c96600260fa6112026ea8006264b3001307e308a01375400313232325980098490080144cc1c4c2440400c4c134c24404c23804dd500245908f011848008009848008009845809baa0018b211002308d01308a01375400316421c04660aa6eacc140c22404dd503f98149984580983119845809846009844809baa0024bd7025eb8108601210c0230870137540026eb4c1bcc22004dd500698279843809baa00c8b211002375a611202002610a026ea80062c841008c21c040122c842808dd69842808009bad308501003308501001308401001307f37540031641f060cc60ca60fc6ea8c1b0c1f8dd5000c5907b184000983e9baa0018b20f43302e0300248a9983d2491b3c65787065637465643e2077726f6e6720636f6c6c206173736574001641e5153307a491193c65787065637465643e204d697865642076657273696f6e73001641e460fc0031641f060f46ea80062c83b8c184c180c1e4dd51833983c9baa0018b20ec307b307837540031641d4660520560351641e0307200130710013070001306f001306e001306d001306c001306b0013066375400316418c60d000316419860c86ea80062c8308c12cc128c18cdd5182898319baa0018b20c030653062375400316417c6602602a6eb4c1900322a660be92012b3c65787065637465643e2043445043726561746f72206f757470757420646f6573206e6f74206d61746368001641786e9520048b20ba33011012375a60c4019153305d4901203c65787065637465643e2043445043726561746f724e4654206d697373696e670016417116417060c260bc6ea800e2c82d860b600260b400260b200260b000260ae00260ac0041159800981300ac4cc88ca6002660140020472232598009814000c4c8c96600260760050048b2070375c6072002606a6ea800e2b3001302c001899192cc004c0ec00a0091640e06eb8c0e4004c0d4dd5001c590322064303337540053758606a606c606c005300300348889660026052606a6ea8012264b30013300e3756604a606e6ea8c094c0dcdd5000981d181b9baa03d8992cc006600200f301f3038375407d4c103d87a8000402d13259800981e800c4c966002605a60726ea80062646464646465300130430019bad30430049bad30430039bad30430024888966002609000b1329800899912cc004c0e8006264b3001304c0018992cc004c0f0c120dd5000c4c8c8c96600260a00051332259800982098269baa00289919192cc004c15400a26603c60a8006264b300130450018992cc004c15c00626464b300130480018992cc004c16800626604660b200201316415c60aa6ea800a2b3001304c00189919194c004dd6982d800cdd6982d801cdd6982d8012444b3001305f00480745905c0c16c004c168004c154dd500145905220a43053375400260ac00316415060a46ea800a2b300130490018acc004c148dd500140162c829a2c827904f18281baa0018b20a430530013053001304e375400516412c609e00626606a00244b3001002804c4c9660026084609c6ea800626464653001375a60aa003375c60aa007375c60aa0049112cc004c1640122601060b201316415830550013054001304f375400316413060a2004827a2c8268dd61827000982700098249baa0018b208c304b0018b20923047375400f159800981f000c566002608e6ea801e0051641211641108220566002b3001301f3044375400314a314a08212264b30010018800c54cc11124012043445043726561746f72206f757470757420646f6573206e6f74206d61746368001001410d3001011980f1982380725eb8298107d87b9fd87980ff00980d982418229baa04ba6103d87a8000405d16410860886ea801660886ea80066eb4c12002d22259800981d80144c966002609a00313259800981e98249baa00189919191919194c004c14c0066eb8c14c01a60a600930530039829801244444b3001305900689981c182c00509981c00189981c00109981c00089981c0028084590560c14c004c148004c144004c140004c13c004c128dd5000c590471826000c5904a18241baa0048acc004c0fc00a264b3001304d0018992cc004c0f4c124dd5000c4c8c8c8c8c8ca600260a6003375c60a600d30530049829801cc14c0092222259800982c80344cc0e0c1600284cc0e000c4cc0e00084cc0e00044cc0e00140422c82b060a600260a400260a200260a0002609e00260946ea80062c8238c1300062c8250c120dd500245660026078005132598009826800c4c966002607a60926ea800626464646464646464653001375a60ac003375c60ac013375a60ac00f3056006982b002cc15801260ac00730560024888888896600260be01313303d305e01013303000513303d00413303e00313303e00213303e0010168b20b8182b000982a800982a0009829800982900098288009828000982780098251baa0018b208e304c0018b20943048375400915980099b874801800a264b3001304d0018992cc004c0f4c124dd5000c4c8c8c8c8c8c8c8c8ca60026eb4c1580066eb8c1580266eb4c15801e60ac00d3056005982b0024c15800e60ac004911111112cc004c17c02626607a60bc02026606000a26607a00826607c00626607c00426607c00202d1641703056001305500130540013053001305200130510013050001304f001304a375400316411c609800316412860906ea80122b300130220028992cc004c134006264b3001303d30493754003132323232323232323298009bae30560019bae3056009982b003cc15801a60ac00b30560049bad30560039bad30560024888888896600260be01313303d305e01013303e00613303e00513303e00413303f0030168b20b8182b000982a800982a0009829800982900098288009828000982780098251baa0018b208e304c0018b20943048375400915980099b874802800a264b3001304d0018992cc004c0f4c124dd5000c4c8c8c8c8c8c8c8c8c8c8ca60026eb8c1600066eb8c16002e60b00133058008982c003cc96600260ac0031598009818982a800c5a2609a60aa002829a2c82b8dd5182c0034c96600260ac0031598009818982a800c5a2609a60aa002829a2c82b8dd5182c002cc1600126eb4c16000e6eb4c1600092222222222598009831805c4cc104c1880504cc1080204cc10801c4cc1080184cc10c00c06a2c830060b000260ae00260ac00260aa00260a800260a600260a400260a200260a0002609e00260946ea80062c8238c1300062c8250c120dd5002456600266e1d200c0028992cc004c134006264b3001303d3049375400313232323232323232323232329800982c800cdd6982c8064dd6982c805cdd6982c8054dd6982c804cdd6982c8044dd6982c803cdd6982c8034dd6982c802cdd6982c8024dd6982c801244444444444b3001306500c899822983200709981600580e4590620c164004c160004c15c004c158004c154004c150004c14c004c148004c144004c140004c13c004c128dd5000c590471826000c5904a18241baa0048acc004cdc3a401c005132598009826800c4c966002607a60926ea80062646644b3001305100189981b1bac30500012259800801402a2646644b300130560018992cc004c118c148dd5000c4c8c96600260b20051300730590088b20ac375c60ae00260a66ea80062c8280c1540062c8298dd71829800982a0009bac305200241411641386eb4c138004c13c004c128dd5000c590471826000c5904a18241baa0048acc004cdc3a40200051323259800982700140162c8258dd7182600098241baa0048b208a41148229045208a41148229045208a1823804c590450c10c004c108004c104004c100004c0fc004c0e8dd5000c5903718109810181c9baa30273039375460780031640e93001007981d981e181e181e181e181e181c1baa03ea60103d8798000402d03440e46074606e6ea8c094c0dcdd5000c54cc0d5241253c65787065637465643e2043445043726561746f72204e46542069732070726573656e742e001640d06072606c6ea80122c81986eb0c0d0004888c966002604c0031323259800981c80140122c81b0dd7181b80098199baa0038acc004c0a80062646644b3001303a00189980f9bac30390012259800801401e33001009981d80144c004c0f000900920728b206e375a606e002607000260666ea800e2c818103018189baa002302f375404b132332259800981298189baa0018992cc004c0a8c0c8dd5000c4cc89660026072003132598009814981a9baa00189919912cc004c0f40062660446eb0c0f00048966002005132598009817981d9baa001899191980080098071bab3028303e375406844b30010018a508acc004cdc79bae30420010038a518998010011821800a07841006eb8c0fcc0f0dd5000c5903919198008009bac302a303c375400e44b30010018a60103d87a80008992cc006600266ebc00530103d87a8000a50a5140ed100189980180198210012076325980099b8f375c60820020171302d33040304130420014bd7045300103d87a800040ec6eb0c10000503e44c8c8cc896600260860071300530430068b2080375c60800026eb8c100008c100004dd6181f00120788b2074375a60740026076002606c6ea80062c8198c074c070c0d4dd51811981a9baa30380018b206c375c606c60666ea800660026eb0c084c0ccdd5014cc08cc0ccdd501cd30103d879800040191640c0606a60646ea8c0d4c0c8dd5181018191baa3035303237540031640bc6002002660106eb0c0ccc0c0dd5013010912cc004006297ae08998199818181a00099801001181a800a06440b08160888c8cc0740108c008c080c0c8dd5000acc004c08cc0bcdd5000c48cc020dd5980f98189baa00100389180e4c004dd5980f98189baa0019bae303430313754007375c603e60626ea800d01e205a222223232330010010072259800800c528456600264b300130040018acc004cdd7980e981b1baa0010078cc004dd59812181b1baa001803401500a452820668a5040cc607000314a3133002002303900140c881b0c03c0103013301400530120044590080c028004c014dd5005452689b2b200415330024911d3c65787065637465643e204e6f204344507320617265207370656e742e001601"
5243
5305
  };
5244
5306
 
5245
5307
  // src/contracts/cdp-creator/scripts.ts
@@ -5313,14 +5375,14 @@ function castPollShardParams(params) {
5313
5375
  var _pollManagerValidator = {
5314
5376
  type: "PlutusScriptV3",
5315
5377
  description: "Generated by Aiken",
5316
- cborHex: "592507592504010100229800aba2aba1aba0aab9faab9eaab9dab9cab9a4888888896600264653001300900198049805000cdc3a400530090024888966002600460126ea800e33001300a3754007370e90024dc3a40013009375400891111991192cc004c01401226464b30013017002801c590141bad301500130113754017159800980480244c8c966002602e0050038b2028375a602a00260226ea802e2b30013006004899192cc004c05c00a0071640506eb4c054004c044dd5005c5900e201c40382b30013004300f375400313259800980298081baa0018cc004c050c044dd5000c8c054c0580064446466446600400400244b3001001801c4c8cc896600266e4401c00a2b30013371e00e0051001803202e899802802980f002202e375c602e0026eb4c060004c068005018191919800800803112cc00400600713233225980099b910090028acc004cdc78048014400600c80c226600a00a603e00880c0dd7180c0009bab3019001301b0014064297adef6c6014800244646600200200644b30010018a5eb8226644b3001300500289980c80119802002000c4cc010010005014180c000980c800a02c9b804800a44b30010018800c54cc044008400501048c054c058c058c058c058006444b300130080018a5eb7bdb182264646600200297adef6c602259800800c4cc064cdd81ba9006374c00697adef6c608994c004dd7180b800cdd5980c000cc0700092225980099b9000a00389980e99bb037520146e9801c0162b30013371e01400713301d337606ea4028dd3003800c4cc074cdd81ba9003374c0046600c00c00280c10180c0680050181919800800a5eb7bdb1808966002003133018337606ea4010dd4001a5eb7bdb1822653001375c602c003375a602e003301b00248896600266e4002000e26603866ec0dd48041ba80070058acc004cdc7804001c4cc070cdd81ba9008375000e00313301c337606ea400cdd400119803003000a02e405c3019001405c808a4602a602c602c602c602c602c602c602c003374a90004dd2a40052232598009804000c566002601060266ea800a2980103d87a80008a6103d879800040451598009804800c566002601260266ea800a2980103d87a80008a6103d87b8000404513322598009807000c4c96600266e2000c0062980103d87980008acc004cdc4000801c530103d87b80008a6103d87a8000405080a0dd6980c980b1baa0048acc004c028006298103d87b80008a6103d8798000404c8098dd6980b980a1baa00330133754004808901118091baa0029180a980b180b180b180b180b000c966002600e60226ea80062602a60246ea80062c807a4464b30013008001899192cc004c06800a00916405c6eb8c060004c050dd5001c56600260180031323259800980d00140122c80b8dd7180c000980a1baa0038b2022404460246ea800a446466002002006446600600260040052232598009804000c4c8c96600260340050048b202e375c603000260286ea800e2b3001300c0018acc004c050dd5001c00a2c80aa2c808901118091baa002912cc004c01cc048dd500144c8c8cc896600260360070058b2030375c60300026eb8c060008c060004c04cdd500145901048966002600e60246ea800a264646644b3001301b003802c590181bad3018001375a6030004603000260266ea800a2c808244b300130073012375400513232332259800980d801c0162c80c0dd6980c0009bad3018002301800130133754005164041222232330010010052259800800c4cc064cdd81ba9005375000897adef6c608994c004dd7180b800cdd6980c000cc0700092225980099b9000900389980e99bb037520126ea00200162b30013371e01200719800804c02200523301e337606ea4028dd40008014400500744cc074cdd81ba900337500046600c00c00280c10180c06800501848888c8cc0040040148966002003133019337606ea4014dd300225eb7bdb1822653001375c602e00337566030003301c00248896600266e4002400e26603a66ec0dd48049ba60080058acc004cdc7804801c6600201300880148cc078cdd81ba900a374c0020051001401d13301d337606ea400cdd300119803003000a0304060301a0014061259800800c528c5282026891111192cc004c02c00600513003001405066e0001000e4646600200200444b30010018a5eb7bdb1822646602e66ec0c050004dd319198008009bab30160022259800800c52f5bded8c11323301a33760602e0026ea0cdc0a40006eb4c060004cc00c00cc070008c06800501819801801980c801180b800a02a9180a980b180b000cdc7a4410098081baa00b9180a980b180b180b180b180b180b180b180b180b000c8c054c058c058c058c058c058c058c058c0580066e9520044888888888888888888888888888888a600244605530010029bae303530323754003375c604060646ea800501f489660020031480022603a66004004606c002819a453001375c606a60646ea800a6eb8c080c0c8dd5001400501a48c05ccc0ccc966002605460626ea8006264b3001302b30323754604260666ea8c0d8c0ccdd5001c4c060cc0d4dd4000a5eb82260306606a6ea0c0780052f5c08180dd6981a98191baa0018800a05e303430313754606860626ea8004cc0ccc966002605460626ea8006264b3001302b30323754604260666ea8c084c0ccdd5001c4c060cc0d4dd4000a5eb82260306606a6ea0cdc0000a400297ae040c06eb4c0d4c0c8dd5000c400502f181a18189baa301f3031375400297ae091180c1981a180c1981a180b9981a1ba80024bd701981a4c00528d30103d87a8000a60103d879800040bc97ae033034301833034301733034375000297ae0330349800a51a60103d87a8000a60103d879800040bc97ae04bd7048966002604c60626ea800a2646464b3001303900289980b181c0018992cc004c0a8006264b3001303b001899192cc004c0b4006264b3001303e00189980d981e800804c5903b181c9baa0028acc004c0c400626464653001375a607e003375a607e007375a607e0049112cc004c10c01201d164100303f001303e001303937540051640d881b0c0dcdd5000981d000c59038181b1baa0028acc004c0b80062b3001303637540050058b206e8b206640cc60686ea80062c81b0c0dc004c0dc004c0c8dd500145902f4888c96600260500031323259800981d00140122c81b8dd7181c000981a1baa0038acc004c0b00062646644b3001303b00189980b9bac303a0012259800801401e33001009981e00144c004c0f400900920748b2070375a6070002607200260686ea800e2c818903118191baa00291192cc004c09c006264b30013038001899808981b800801c5903518199baa0038acc004c0ac006264b30013038001899809181b800801c5903518199baa0038acc004c0a000626464b300130390028024590361bae3037001303337540071640c0818103018189baa00291194c0040060070024004444b30010028800c4ca6002009303a003cc00400a6eb8c0d40066eacc0d80064444464b3001301500180144c00c00503919194c00400600d0054004444b30010028800c4ca60020093044003cc00400a6eb8c0fc0066eb4c10000600a80d900418210012080501340408020c0e00090364a60026eb8c0d0c0c4dd5000cdd7180f98189baa001a400480ca4464660020026eb0c014c0ccdd5001912cc00400629422b30013371e6eb8c0dc00400e2946266004004607000281890354dd7980c98181baa027488888888888a6002444646605800846004605e60826ea8005660026066607c6ea800624660206eacc0b8c100dd5000801c48cdc42400130013756605c60806ea80066eb8c10cc100dd5001cdd7181718201baa00340b481e2601601722332259800992cc004c0d800629462b300130390018a518a5040f881f0c0fcdd519812182198201baa00230433040375400313259800981a800c528c566002607200314a314a081f103e181f9baa33024302e30403754004605c60806ea8006294103d18058011805800cc01801a4464b300130330018992cc004c110006264b3001303530403754003132323259800982400144cc03cc11c00c4cc09000489660020050098992cc004c0ecc118dd5000c4c8c8ca60026eb4c1340066eb8c13400e6eb8c13400922259800982880244c020c1440262c8270609a0026098002608e6ea80062c8220c1240090474590451bac30460013046001304137540031640f86086003164104607e6ea800e2b300130370018acc004c0fcdd5001c00a2c82022c81e103c181e9baa002911111919800800998170032cc004c0d8c104dd5002c48c8cdd7982398221baa304730443754004002608c60866ea801a246466ebcc11cc110dd5001000982318219baa00640fc44b30010018a508acc004c96600266ebcc068c110dd500080344c96600200314a31598009824800c4c8ca60026eb8c1280066eb4c128c12c0066eb8c12800922259800980f800c566002603e007159800981f18249baa00a8acc004cdc4a400000513371200490404df7014528208e899b89480000090474528208e8a50411c304a0013758609000314a082310461919800800998069bab303330453754004603800c44b30010018a5eb82264664466446600400400244b30010018801c4c8cc138dd3998271ba90053304e304b0013304e304c0014bd701980180198280011827000a098375660920066eb8c118004cc00c00cc12c008c1240050474528208230460018a518998010011823800a08041109111111919192cc004c0e406633001375a6090608a6ea80fe2904044bd48c124c128c128c12800646092609460946094609460946094609460946094609400398009bac3048304537540793033304537540974c103d8798000402491111192cc004c13c00a2653001332298008014dd7182898271baa0019bae303c304e375400281d8dd5981d18261baa303a304c3754002600a60986ea814b30013758609e60986ea810e609e60986ea814a98103d87980004041337106eb4c010c130dd501d803a444b30013053002899192cc004c114c140dd5000c4c8c8c8c8ca60026eb4c1640066eb4c1640166eb4c16400e6eb4c164009222259800982f002c4cc060c17402056600266088920125476f7620696e707574206d75737420757365207468652072696768742072656465656d657200323322598009828800c4c8c8c8ca600260c8003375a60c8009375c60c80069112cc004c1a001226604260ce00a266048006013164194306400130630013062001305d3754007159800982a800c4c8c96600260c60050048b20c0375a60c200260ba6ea800e2b300130520018acc004c174dd5001c00a2c82f22b30013370e9003000c56600260ba6ea800e00516417916416882d105a20b413375e0026080660ba6ea00592f5c060b46ea8004c966002609e60b46ea8006260bc60b66ea80062c82c0c8c8cc004004dd59817982e1baa0532259800800c530103d87a80008992cc004cdd7802182e800c4c110cc180c1780052f5c11330030033062002416c60c000282f0c0fccc170c174c168dd5005a5eb822b3001330444911d496e76616c696420696e707574206265696e672076616c696461746564003375e09860ba60b46ea803e2b3001330444901205468652070726f706f73616c20697320696e20766f74696e6720706572696f6400337106eb4c0f4c168dd502480ac5660026608892010f496e636f7272656374207054696d65003301c3041305a37540a26604c66e04054dd6981e982d1baa0603370002a6eb4c0f4c168dd50304566002660889211b416c6c207368617264732073686f756c64206265206d657267656400598008064528c4cdc39bad3041305a37540926eb4c0b0c168dd5024a0ae8acc004cc111241274f6e6c79206f776e65722063616e20636c6f73652061206e6f6e2d6578706972656420706f6c6c00598008064528c4cc080144dd71824182d1baa049415d159800acc00660020194a14a282ba26464b3001337126eb4c17cc180c180c180c180c180c180c180c180c180c180c180c180c170dd502598009bad304a305c3754005133710905046831bad305f305c3754b300130503001375a609460b86ea800a2980105d8799f00ff0089918219982f9ba8337026eb4c180c174dd51980998219982f9830182e9baa0034bd70180098219982f980a982e9baa304b305d375401a97ae0375a60c060ba6ea8cc04cc10ccc17cc12cc174dd5001a5eb80c004c10ccc17cdd418011bad304b305d375400697ae04bd701192cc004c148c174dd5000c4c110cc180c184c178dd5000a5eb822c82d8c96600266e2000520008a60103d87a80008acc004cdc4800a40051304433060375000297ae089822198301ba8329800800c00a66e0cc12800920044004444b30013371200400310028cc00400e0033370666e00004cdc1802000a4008801905e25eb8105b20b6337046eb4c180c174dd5000a80ba0b28a5041646e00dd6982f182d9baa0013043305a375409314a082ba2b300133044490118496e636f72726563742055706772616465206f75747075740098009bac3030305a37540a3303f3305c30403305c303f3305c3043305a37540c097ae03305c4c103d87a80004bd7025eb826056660b86080660b860ba60b46ea8124cc170c0c0c168dd50249982e1ba80153305c303d305a3754092660b860ba60bc60bc60bc60bc60bc60bc60bc60bc60bc60bc60bc60b46ea8124cc170c04cc168dd5024a5eb812f5c130213030305a37540c14c0103d87a800040651330444901394d757374206275726e203120706f6c6c20746f6b656e20616e64206d696e7420312075706461746520746f6b656e206966207375636365737300301f374c6604460626042609060b46ea8180c084c0c0c168dd5030452820ae8acc004cc11124011e4d757374206275726e203120706f6c6c20746f6b656e206966206661696c00301f374c60626042609060b46ea8182266088921294d7573742070617920494e4459206465706f73697420746f207472656173757279206966206661696c0098009bac3030305a37540a3303f3305c30403305c303f3305c3041305a37540c097ae03305c4c103d87a80004bd7025eb8298107d87b9fd87980ff00998141809982d1baa06000ea6103d87a8000406514a082b9057452820ae8a50415d14a082ba2941057452820ae8a50415d16416c3059001305800130570013056001305137540031641386064604c60a06ea8c0f8c140dd500098290014590500c13800a2c826088c0c8cc138dd419b83337046eb4c13cc130dd500128031bad304f304c375400297ae04566002607a033198009bad30483045375407f23049304a304a304a304a304a304a001cc004dd6182418229baa03c981998229baa04ba60103d879800040249112cc004c1300062646644b3001330354911d496e76616c696420696e707574206265696e672076616c696461746564003375e07a609c60966ea80062b3001330354901244d757374206d696e74206120706f6c6c546f6b656e20666f722065616368207368617264003010374c66032607260966ea814400a2b30013303549010f496e636f7272656374207054696d65003300d3032304b37540846602e66e04018dd6981718259baa0513370000c6eb4c0b8c12cdd5028c5660026606a9212b43616e2774206372656174652073686172642061667465722070726f706f73696e6720656e642074696d65003371000c6eb4c078c12cdd501d45660026606a9201434e756d206f66206372656174656420736861726473202b206e756d206f66206e6577207368617264732073686f756c64206265203c3d2070546f74616c536861726473003371266e00dd6980298259baa03a002375a603a60966ea80ea2b3001330354912041207368617264206f75747075742068617320696e76616c696420646174756d0032330010010042259800800c528c56600264660140022b30013046304d375400313232325980099b87375a60a860a26ea8100dd6982a001c56600266e1cdd6981a18289baa040375a60a800315980099baf30540024c0106d8799f0000ff00899baf30543055001305430513754607e60a26ea801e294104e4528209c8a50413860a800260a6002609c6ea8c144c138dd5000c5282096302f3023304d375460a000313300200230510018a50412882722b300133035491354e657720506f6c6c4d616e61676572206f75747075742063616e206f6e6c79206368616e67652070437265617465645368617264730098009bac3021304b375408530303304d304e304b3754607260966ea80052f5c1301c3304d30313304d323232323232303733053305400633053305400533053305400433053305400333053305400233053305400133053375066e00dd6980598289baa0400083055305500130540013053001305200130510013050001304b375407497ae04bd704dd5981c98259baa3039304b37540034c103d879800040291330354901274f6e6c792070726f706f73616c2063726561746f722063616e20637265617465207368617264730033011042375c607260966ea80ea2941048452820908a50412114a082422941048452820908a50412060180026098004660686eb0c078c120dd501f92cc004cdd7982618249baa001302f3304b302e3304b30033049375409e97ae03304b4c103d87a80004bd7044cdd79ba632330010013756607060946ea8008896600200314bd6f7b63044ca60026eb8c12c0066eacc13000660a00049112cc004cdc8a45000038acc004c09000e200310054131133051337606ea400cdd300119803003000a0981827000a098374c6020606e60926ea813e2941046459049233001375a6090608a6ea80fe44b30010018a4d13259800800c5268992cc004cdc81bae3048304c003375c60900031330040043304b001304d0028a99823a49326b65797320696e206173736f63696174697665206c697374206172656e277420696e20617363656e64696e67206f726465720016411860960028248c12c0050484896600200314800226064660040046096002824244605a660926ea0cdc01bad304a304737540046eb4c128c11cdd5000998249ba8337006eb4c0d4c11cdd50011bad30353047375400297ae099198008009bac30493046375407a44b30010018a60103d87a80008992cc004cdd7982598241baa00103a8981719825000a5eb8226600600660980048228c12800504824444464b3001303f304a375400513232980099803003000cc8cc004004008896600200314bd708106d8799f0000ff008101a00044cc88cc14ccc024c150004c150c154008cc14cdd319912cc004c11c0062005198008015220100991900118050009982a99bb04c01014000375000297adef6c6091111192cc004c0c8006005130030014158653001004a4500803c8888a600200b003802400a00280310342818205a41406eacc150c15400660026eacc0fcc144dd5181f98289baa3054002a4500a4410040f897ae0375860a40026600400460a6002828260a0609a6ea8011222598009981d24916506f6c6c20746f6b656e206e6f742070726573656e7400330203756607c60a06ea8c0f8c140dd5000981f18281baa0568acc004cc0e924012a4d757374206275726e206120706f6c6c546f6b656e20666f72206561636820736861726420696e707574003015374c6603c607c60a06ea8158cdc0a40000071598009981d2490f496e636f7272656374207054696d65003301230373050375408e6603866e0402cdd6981998281baa056337000166eb4c0ccc140dd502b4566002660749212943616e2774206d6572676520736861726473206265666f726520766f74696e6720656e642074696d6500337106eb4c0ccc140dd501f805c5660026607492011e496e76616c6964206e657720506f6c6c4d616e61676572206f75747075740098009bac30263050375408f303533052305330503754607c60a06ea80052f5c1302133052303633052323232323232303c330583059006330583059005330583059004330583059003330583300e303f3056375408a60b2010660b060b2004660b060b2002660b06ea0cdc01bad303d3056375408a01260b460b400260b200260b060b000260ae00260ac00260aa00260a06ea80fd2f5c097ae09980c1bab303e30503754607c60a06ea8004dd59829982a001530103d8798000403d13303a49013043616e206f6e6c7920636f6e73756d65206e756d5368617264496e70757473202b203120706f6c6c206d616e61676572003370e602600a607600714a0826a294104d4528209a8a50413514a08268646600200200444b30010018a5eb822646644b3001304930503754005133005005001899829982a18289baa00233005005001413864660180022b30013048304f37540031325980099b87375a60a80026eb4c150c144dd502044c0dccc14cdd39982980199829982a182a800a5eb812f5c114c0103d87a8000413860a06ea8c14cc140dd5000c5300103d87a800041346062604a609e6ea8c0f4c13cdd500098298011828800a09e98009bac304e304b37540853039304b37540a34c0103d8798000403d16412060080084108821088c9660026076003132598009826000c4c966002607a60906ea80062646464646464646464646464653001375a60b2003375a60b201b375c60b2019305900a982c804cdd6982c8044dd6982c803cdd6982c8034dd6982c802cdd6982c8024dd6982c801cdd6982c8012444444444444b3001306600d89980f983280b89981100489981f00400ec590630c164004c160004c15c004c158004c154004c150004c14c004c148004c144004c140004c13c004c138004c124dd5000c590461825800c5904918239baa0038acc004c0fc006264b3001304c0018992cc004c0f4c120dd5000c4c8c8c8ca600260a0003375a60a0009375a60a00049112cc004c15001226605860a600c2660360060171641443050001304f001304e001304937540031641186096003164124608e6ea800e2c822104418229baa002223259800981d000c4c966002609600313259800981e18239baa00189919191919194c004c1440066eb8c14401a60a200930510039828801244444b30013057006899818182b005099818001899818001099818000899818002807c590540c144004c140004c13c004c138004c134004c120dd5000c590451825000c5904818231baa0038acc004c0f8006264b3001304b0018992cc004c0f0c11cdd5000c4c8c8c8c8c8ca600260a2003375c60a200d30510049828801cc1440092222259800982b80344cc0c0c1580284cc0c000c4cc0c00084cc0c00044cc0c001403e2c82a060a200260a0002609e002609c002609a00260906ea80062c8228c1280062c8240c118dd5001c5660026076003132598009825800c4c9660026078608e6ea800626464646464646464653001375a60a8003375c60a8013375a60a800f3054006982a002cc15001260a800730540024888888896600260ba013133037305c0101330220051330370041330360031330360021330360010158b20b4182a000982980098290009828800982800098278009827000982680098241baa0018b208a304a0018b20903046375400715980099b8748018006264b3001304b0018992cc004c0f0c11cdd5000c4c8c8c8c8c8c8c8c8ca60026eb4c1500066eb8c1500266eb4c15001e60a800d3054005982a0024c15000e60a8004911111112cc004c17402626606e60b802026604400a26606e00826606c00626606c00426606c00202b16416830540013053001305200130510013050001304f001304e001304d001304837540031641146094003164120608c6ea800e2b30013370e9004000c4c966002609600313259800981e18239baa00189919191919191919194c004dd7182a000cdd7182a004cc15001e60a800d3054005982a0024dd6982a001cdd6982a001244444444b3001305d00989981b982e00809981b00309981b00289981b00209981c00180ac5905a0c150004c14c004c148004c144004c140004c13c004c138004c134004c120dd5000c590451825000c5904818231baa0038acc004cdc3a4014003132598009825800c4c9660026078608e6ea8006264646464646464646464653001375c60ac003375c60ac0173056009982b0044c15801e64b300130540018acc004cdc4a400860a600316898261829800a0a28b20aa375460ac00d3259800982a000c56600266e25200430530018b44c130c14c0050514590551baa3056005982b0024dd6982b001cdd6982b00124444444444b3001306100b89981d983000a09981d00409981d00389981d00309981e00180cc5905e0c158004c154004c150004c14c004c148004c144004c140004c13c004c138004c134004c120dd5000c590451825000c5904818231baa0038acc004cdc3a4018003132598009825800c4cc014c12800400e2c8240c118dd5001c56600266e1d200e0018992cc004c12c006264b3001303c304737540031323322598009827800c4cc0acdd61827000912cc00400a013132332259800982a000c4c966002608a60a06ea800626464b3001305700289803982b8044590541bae30550013051375400316413860a60031641446eb8c144004c148004dd61828001209c8b2098375a6098002609a00260906ea80062c8228c1280062c8240c118dd5001c56600266e1d2010001899192cc004c13000a0091641246eb8c128004c118dd5001c590432086410c82190432086410c821904318221baa0022259800981c18219baa00289919191919191919191919194c004c14c0066eb4c14c0326eb4c14c02e6eb4c14c02a6eb4c14c0266eb4c14c0226eb4c14c01e6eb4c14c01a6eb4c14c0166eb4c14c0126eb4c14c0092222222222259800982f80644cc0e8c1780384cc07002c0622c82e060a600260a400260a200260a0002609e002609c002609a002609800260960026094002609200260886ea800a2c82084528201c3013301037540031640346022008602260240088b200e180480098021baa0098a4d13656400401"
5378
+ cborHex: "59250f59250c010100229800aba2aba1aba0aab9faab9eaab9dab9cab9a4888888896600264653001300900198049805000cdc3a400530090024888966002600460126ea800e33001300a3754007370e90024dc3a40013009375400891111991192cc004c01401226464b30013017002801c590141bad301500130113754017159800980480244c8c966002602e0050038b2028375a602a00260226ea802e2b30013006004899192cc004c05c00a0071640506eb4c054004c044dd5005c5900e201c40382b30013004300f375400313259800980298081baa0018cc004c050c044dd5000c8c054c0580064446466446600400400244b3001001801c4c8cc896600266e4401c00a2b30013371e00e0051001803202e899802802980f002202e375c602e0026eb4c060004c068005018191919800800803112cc00400600713233225980099b910090028acc004cdc78048014400600c80c226600a00a603e00880c0dd7180c0009bab3019001301b0014064297adef6c6014800244646600200200644b30010018a5eb8226644b3001300500289980c80119802002000c4cc010010005014180c000980c800a02c9b804800a44b30010018800c54cc044008400501048c054c058c058c058c058006444b300130080018a5eb7bdb182264646600200297adef6c602259800800c4cc064cdd81ba9006374c00697adef6c608994c004dd7180b800cdd5980c000cc0700092225980099b9000a00389980e99bb037520146e9801c0162b30013371e01400713301d337606ea4028dd3003800c4cc074cdd81ba9003374c0046600c00c00280c10180c0680050181919800800a5eb7bdb1808966002003133018337606ea4010dd4001a5eb7bdb1822653001375c602c003375a602e003301b00248896600266e4002000e26603866ec0dd48041ba80070058acc004cdc7804001c4cc070cdd81ba9008375000e00313301c337606ea400cdd400119803003000a02e405c3019001405c808a4602a602c602c602c602c602c602c602c003374a90004dd2a40052232598009804000c566002601060266ea800a2980103d87a80008a6103d879800040451598009804800c566002601260266ea800a2980103d87a80008a6103d87b8000404513322598009807000c4c96600266e2000c0062980103d87980008acc004cdc4000801c530103d87b80008a6103d87a8000405080a0dd6980c980b1baa0048acc004c028006298103d87b80008a6103d8798000404c8098dd6980b980a1baa00330133754004808901118091baa0029180a980b180b180b180b180b000c966002600e60226ea80062602a60246ea80062c807a4464b30013008001899192cc004c06800a00916405c6eb8c060004c050dd5001c56600260180031323259800980d00140122c80b8dd7180c000980a1baa0038b2022404460246ea800a446466002002006446600600260040052232598009804000c4c8c96600260340050048b202e375c603000260286ea800e2b3001300c0018acc004c050dd5001c00a2c80aa2c808901118091baa002912cc004c01cc048dd500144c8c8cc896600260360070058b2030375c60300026eb8c060008c060004c04cdd500145901048966002600e60246ea800a264646644b3001301b003802c590181bad3018001375a6030004603000260266ea800a2c808244b300130073012375400513232332259800980d801c0162c80c0dd6980c0009bad3018002301800130133754005164041222232330010010052259800800c4cc064cdd81ba9005375000897adef6c608994c004dd7180b800cdd6980c000cc0700092225980099b9000900389980e99bb037520126ea00200162b30013371e01200719800804c02200523301e337606ea4028dd40008014400500744cc074cdd81ba900337500046600c00c00280c10180c06800501848888c8cc0040040148966002003133019337606ea4014dd300225eb7bdb1822653001375c602e00337566030003301c00248896600266e4002400e26603a66ec0dd48049ba60080058acc004cdc7804801c6600201300880148cc078cdd81ba900a374c0020051001401d13301d337606ea400cdd300119803003000a0304060301a0014061259800800c528c5282026891111192cc004c02c00600513003001405066e0001000e4646600200200444b30010018a5eb7bdb1822646602e66ec0c050004dd319198008009bab30160022259800800c52f5bded8c11323301a33760602e0026ea0cdc0a40006eb4c060004cc00c00cc070008c06800501819801801980c801180b800a02a9180a980b180b000cdc7a4410098081baa00b9180a980b180b180b180b180b180b180b180b180b000c8c054c058c058c058c058c058c058c058c0580066e9520044888888888888888888888888888888a600244605530010029bae303530323754003375c604060646ea800501f489660020031480022603a66004004606c002819a453001375c606a60646ea800a6eb8c080c0c8dd5001400501a48c05ccc0ccc966002605460626ea8006264b3001302b30323754604260666ea8c0d8c0ccdd5001c4c060cc0d4dd4000a5eb82260306606a6ea0c0780052f5c08180dd6981a98191baa0018800a05e303430313754606860626ea8004cc0ccc966002605460626ea8006264b3001302b30323754604260666ea8c084c0ccdd5001c4c060cc0d4dd4000a5eb82260306606a6ea0cdc0000a400297ae040c06eb4c0d4c0c8dd5000c400502f181a18189baa301f3031375400297ae091180c1981a180c1981a180b9981a1ba80024bd701981a4c00528d30103d87a8000a60103d879800040bc97ae033034301833034301733034375000297ae0330349800a51a60103d87a8000a60103d879800040bc97ae04bd7048966002604c60626ea800a2646464b3001303900289980b181c0018992cc004c0a8006264b3001303b001899192cc004c0b4006264b3001303e00189980d981e800804c5903b181c9baa0028acc004c0c400626464653001375a607e003375a607e007375a607e0049112cc004c10c01201d164100303f001303e001303937540051640d881b0c0dcdd5000981d000c59038181b1baa0028acc004c0b80062b3001303637540050058b206e8b206640cc60686ea80062c81b0c0dc004c0dc004c0c8dd500145902f4888c96600260500031323259800981d00140122c81b8dd7181c000981a1baa0038acc004c0b00062646644b3001303b00189980b9bac303a0012259800801401e33001009981e00144c004c0f400900920748b2070375a6070002607200260686ea800e2c818903118191baa00291192cc004c09c006264b30013038001899808981b800801c5903518199baa0038acc004c0ac006264b30013038001899809181b800801c5903518199baa0038acc004c0a000626464b300130390028024590361bae3037001303337540071640c0818103018189baa00291194c0040060070024004444b30010028800c4ca6002009303a003cc00400a6eb8c0d40066eacc0d80064444464b3001301500180144c00c00503919194c00400600d0054004444b30010028800c4ca60020093044003cc00400a6eb8c0fc0066eb4c10000600a80d900418210012080501340408020c0e00090364a60026eb8c0d0c0c4dd5000cdd7180f98189baa001a400480ca4464660020026eb0c014c0ccdd5001912cc00400629422b30013371e6eb8c0dc00400e2946266004004607000281890354dd7980c98181baa027488888888888a6002444646605800846004605e60826ea8005660026066607c6ea800624660206eacc0b8c100dd5000801c48cdc42400130013756605c60806ea80066eb8c10cc100dd5001cdd7181718201baa00340b481e2601601722332259800992cc004c0d800629462b300130390018a518a5040f881f0c0fcdd519812182198201baa00230433040375400313259800981a800c528c566002607200314a314a081f103e181f9baa33024302e30403754004605c60806ea8006294103d18058011805800cc01801a4464b300130330018992cc004c110006264b3001303530403754003132323259800982400144cc03cc11c00c4cc09000489660020050098992cc004c0ecc118dd5000c4c8c8ca60026eb4c1340066eb8c13400e6eb8c13400922259800982880244c020c1440262c8270609a0026098002608e6ea80062c8220c1240090474590451bac30460013046001304137540031640f86086003164104607e6ea800e2b300130370018acc004c0fcdd5001c00a2c82022c81e103c181e9baa00291111191919800800803912cc00400629422b300132598009802000c56600266ebcc06cc114dd5000803c4c96600200314a31598009825000c4c8ca60026eb8c12c0066eb4c12cc1300066eb8c12c009222598009810000c5660026040007159800981f98251baa00b8acc004cdc4a400000513371200490404df70145282090899b8948000009048452820908a504120304b0013758609200314a082390471919800800998071bab303430463754004603a00e44b30010018a5eb82264664466446600400400244b30010018801c4c8cc13cdd3998279ba90053304f304c0013304f304d0014bd701980180198288011827800a09a375660940066eb8c11c004cc00c00cc130008c128005048452820848a504108608e00314a313300200230480014104822966002606a60806ea8012246466ebcc118c10cdd5182318219baa00200130453042375400b12323375e608c60866ea8008004c114c108dd5002a07c4888888c8c8c9660026072033198009bad30483045375407f22302d33049375066e0ccdc11bad304a30473754004904044bd1bad304a3047375400297ae091824982518251825000c8c124c128c128c128c128c128c128c128c128c128c128007300137586090608a6ea80f26066608a6ea812e98103d87980004024911112cc004c1380062653001332298008014dd7182818269baa0019bae303b304d375400281d0dd5981c98259baa3039304b3754002600860966ea814730013758609c60966ea810a609c60966ea814698103d8798000403d337106eb4c00cc12cdd501d0032444b30013052002899192cc004c110c13cdd5000c4c8c8c8c8ca60026eb4c1600066eb4c1600166eb4c16000e6eb4c160009222259800982e802c4cc05cc17002056600266086920125476f7620696e707574206d75737420757365207468652072696768742072656465656d657200323322598009828000c4c8c8c8ca600260c6003375a60c6009375c60c60069112cc004c19c01226604060cc00a266046006013164190306300130620013061001305c3754007159800982a000c4c8c96600260c40050048b20be375a60c000260b86ea800e2b300130510018acc004c170dd5001c00a2c82ea2b30013370e9003000c56600260b86ea800e00516417516416482c905920b213375e002607e660b86ea00552f5c060b26ea8004c966002609c60b26ea8006260ba60b46ea80062c82b8c8c8cc004004dd59817182d9baa0522259800800c530103d87a80008992cc004cdd7802182e000c4c10ccc17cc1740052f5c11330030033061002416860be00282e8c0f8cc16cc170c164dd5005a5eb822b3001330434911d496e76616c696420696e707574206265696e672076616c696461746564003375e09660b860b26ea803e2b3001330434901205468652070726f706f73616c20697320696e20766f74696e6720706572696f6400337106eb4c0f0c164dd502400a45660026608692010f496e636f7272656374207054696d65003301b3040305937540a06604a66e04050dd6981e182c9baa05f337000286eb4c0f0c164dd502fc566002660869211b416c6c207368617264732073686f756c64206265206d657267656400598008064528c4cdc39bad3040305937540906eb4c0acc164dd502420ac8acc004cc10d241274f6e6c79206f776e65722063616e20636c6f73652061206e6f6e2d6578706972656420706f6c6c00598008064528c4cc07c140dd71823982c9baa0484159159800acc00660020194a14a282b226464b3001337126eb4c178c17cc17cc17cc17cc17cc17cc17cc17cc17cc17cc17cc17cc16cdd502518009bad3049305b3754005133710905046831bad305e305b3754b3001304f3001375a609260b66ea800a2980105d8799f00ff0089918211982f1ba8337026eb4c17cc170dd51980b18211982f182f982e1baa0034bd70180098211982f180a182e1baa304a305c375401a97ae0375a60be60b86ea8cc058c108cc178c128c170dd5001a5eb80c004c108cc178dd418011bad304a305c375400697ae04bd701192cc004c144c170dd5000c4c10ccc17cc180c174dd5000a5eb822c82d0c96600266e2000520008a60103d87a80008acc004cdc4800a4005130433305f375000297ae0898219982f9ba8329800800c00a66e0cc12400920044004444b30013371200400310028cc00400e0033370666e00004cdc1802000a4008801905d25eb8105a20b4337046eb4c17cc170dd5000a410112f482c229410581b80375a60ba60b46ea8004c108c164dd5024452820ac8acc004cc10d24118496e636f72726563742055706772616465206f75747075740098009bac302f305937540a1303e3305b303f3305b303e3305b3042305937540be97ae03305b4c103d87a80004bd7025eb826054660b6607e660b660b860b26ea8120cc16cc0bcc164dd50241982d9ba80143305b303c30593754090660b660b860ba60ba60ba60ba60ba60ba60ba60ba60ba60ba60ba60b26ea8120cc16cc048c164dd502425eb812f5c13020302f305937540bf4c0103d87a800040611330434901394d757374206275726e203120706f6c6c20746f6b656e20616e64206d696e7420312075706461746520746f6b656e206966207375636365737300301e374c6604260606040608e60b26ea817cc080c0bcc164dd502fc52820ac8acc004cc10d24011e4d757374206275726e203120706f6c6c20746f6b656e206966206661696c00301e374c60606040608e60b26ea817e266086921294d7573742070617920494e4459206465706f73697420746f207472656173757279206966206661696c0098009bac302f305937540a1303e3305b303f3305b303e3305b3040305937540be97ae03305b4c103d87a80004bd7025eb8298107d87b9fd87980ff00998139809182c9baa05f00ea6103d87a8000406114a082b1056452820ac8a50415914a082b22941056452820ac8a5041591641683058001305700130560013055001305037540031641346062604a609e6ea8c0f4c13cdd5000982880145904f0c1340062c8259159800981e80cc660026eb4c120c114dd501fc8c124c128c128c128c128c128c128007300137586090608a6ea80f26066608a6ea812e980103d879800040249112cc004c1300062646644b3001330354911d496e76616c696420696e707574206265696e672076616c696461746564003375e07a609c60966ea80062b3001330354901244d757374206d696e74206120706f6c6c546f6b656e20666f722065616368207368617264003010374c66032607260966ea814400a2b30013303549010f496e636f7272656374207054696d65003300d3032304b37540846602e66e04018dd6981718259baa0513370000c6eb4c0b8c12cdd5028c5660026606a9212b43616e2774206372656174652073686172642061667465722070726f706f73696e6720656e642074696d65003371000c6eb4c078c12cdd501d45660026606a9201434e756d206f66206372656174656420736861726473202b206e756d206f66206e6577207368617264732073686f756c64206265203c3d2070546f74616c536861726473003371266e00dd6980298259baa03a002375a603a60966ea80ea2b3001330354912041207368617264206f75747075742068617320696e76616c696420646174756d0032330010010042259800800c528c56600264660140022b30013046304d375400313232325980099b87375a60a860a26ea8100dd6982a001c56600266e1cdd6981a18289baa040375a60a800315980099baf30540024c0106d8799f0000ff00899baf30543055001305430513754607e60a26ea801e294104e4528209c8a50413860a800260a6002609c6ea8c144c138dd5000c5282096302f3023304d375460a000313300200230510018a50412882722b300133035491354e657720506f6c6c4d616e61676572206f75747075742063616e206f6e6c79206368616e67652070437265617465645368617264730098009bac3021304b375408530303304d304e304b3754607260966ea80052f5c1301c3304d30313304d323232323232303733053305400633053305400533053305400433053305400333053305400233053305400133053375066e00dd6980598289baa0400083055305500130540013053001305200130510013050001304b375407497ae04bd704dd5981c98259baa3039304b37540034c103d879800040291330354901274f6e6c792070726f706f73616c2063726561746f722063616e20637265617465207368617264730033011042375c607260966ea80ea2941048452820908a50412114a082422941048452820908a50412060180026098004660686eb0c078c120dd501f92cc004cdd7982618249baa001302f3304b302e3304b30033049375409e97ae03304b4c103d87a80004bd7044cdd79ba632330010013756607060946ea8008896600200314bd6f7b63044ca60026eb8c12c0066eacc13000660a00049112cc004cdc8a45000038acc004c09000e200310054131133051337606ea400cdd300119803003000a0981827000a098374c6020606e60926ea813e2941046459049233001375a6090608a6ea80fe44b30010018a4d13259800800c5268992cc004cdc81bae3048304c003375c60900031330040043304b001304d0028a99823a49326b65797320696e206173736f63696174697665206c697374206172656e277420696e20617363656e64696e67206f726465720016411860960028248c12c0050484896600200314800226064660040046096002824244605a660926ea0cdc01bad304a304737540046eb4c128c11cdd5000998249ba8337006eb4c0d4c11cdd50011bad30353047375400297ae099198008009bac30493046375407a44b30010018a60103d87a80008992cc004cdd7982598241baa00103a8981719825000a5eb8226600600660980048228c12800504824444464b3001303f304a375400513232980099803003000cc8cc004004008896600200314bd708106d8799f0000ff008101a00044cc88cc14ccc024c150004c150c154008cc14cdd319912cc004c11c0062005198008015220100991900118050009982a99bb04c01014000375000297adef6c6091111192cc004c0c8006005130030014158653001004a4500803c8888a600200b003802400a00280310342818205a41406eacc150c15400660026eacc0fcc144dd5181f98289baa3054002a4500a4410040f897ae0375860a40026600400460a6002828260a0609a6ea8011222598009981d24916506f6c6c20746f6b656e206e6f742070726573656e7400330203756607c60a06ea8c0f8c140dd5000981f18281baa0568acc004cc0e924012a4d757374206275726e206120706f6c6c546f6b656e20666f72206561636820736861726420696e707574003015374c6603c607c60a06ea8158cdc0a40000071598009981d2490f496e636f7272656374207054696d65003301230373050375408e6603866e0402cdd6981998281baa056337000166eb4c0ccc140dd502b4566002660749212943616e2774206d6572676520736861726473206265666f726520766f74696e6720656e642074696d6500337106eb4c0ccc140dd501f805c5660026607492011e496e76616c6964206e657720506f6c6c4d616e61676572206f75747075740098009bac30263050375408f303533052305330503754607c60a06ea80052f5c1302133052303633052323232323232303c330583059006330583059005330583059004330583059003330583300e303f3056375408a60b2010660b060b2004660b060b2002660b06ea0cdc01bad303d3056375408a01260b460b400260b200260b060b000260ae00260ac00260aa00260a06ea80fd2f5c097ae09980c1bab303e30503754607c60a06ea8004dd59829982a001530103d8798000403d13303a49013043616e206f6e6c7920636f6e73756d65206e756d5368617264496e70757473202b203120706f6c6c206d616e61676572003370e602600a607600714a0826a294104d4528209a8a50413514a08268646600200200444b30010018a5eb822646644b3001304930503754005133005005001899829982a18289baa00233005005001413864660180022b30013048304f37540031325980099b87375a60a80026eb4c150c144dd502044c0dccc14cdd39982980199829982a182a800a5eb812f5c114c0103d87a8000413860a06ea8c14cc140dd5000c5300103d87a800041346062604a609e6ea8c0f4c13cdd500098298011828800a09e98009bac304e304b37540853039304b37540a34c0103d8798000403d16412060080084108821088c9660026076003132598009826000c4c966002607a60906ea80062646464646464646464646464653001375a60b2003375a60b201b375c60b2019305900a982c804cdd6982c8044dd6982c803cdd6982c8034dd6982c802cdd6982c8024dd6982c801cdd6982c8012444444444444b3001306600d89980f983280b89981100489981f00400ec590630c164004c160004c15c004c158004c154004c150004c14c004c148004c144004c140004c13c004c138004c124dd5000c590461825800c5904918239baa0038acc004c0fc006264b3001304c0018992cc004c0f4c120dd5000c4c8c8c8ca600260a0003375a60a0009375a60a00049112cc004c15001226605860a600c2660360060171641443050001304f001304e001304937540031641186096003164124608e6ea800e2c822104418229baa002223259800981d000c4c966002609600313259800981e18239baa00189919191919194c004c1440066eb8c14401a60a200930510039828801244444b30013057006899818182b005099818001899818001099818000899818002807c590540c144004c140004c13c004c138004c134004c120dd5000c590451825000c5904818231baa0038acc004c0f8006264b3001304b0018992cc004c0f0c11cdd5000c4c8c8c8c8c8ca600260a2003375c60a200d30510049828801cc1440092222259800982b80344cc0c0c1580284cc0c000c4cc0c00084cc0c00044cc0c001403e2c82a060a200260a0002609e002609c002609a00260906ea80062c8228c1280062c8240c118dd5001c5660026076003132598009825800c4c9660026078608e6ea800626464646464646464653001375a60a8003375c60a8013375a60a800f3054006982a002cc15001260a800730540024888888896600260ba013133037305c0101330220051330370041330360031330360021330360010158b20b4182a000982980098290009828800982800098278009827000982680098241baa0018b208a304a0018b20903046375400715980099b8748018006264b3001304b0018992cc004c0f0c11cdd5000c4c8c8c8c8c8c8c8c8ca60026eb4c1500066eb8c1500266eb4c15001e60a800d3054005982a0024c15000e60a8004911111112cc004c17402626606e60b802026604400a26606e00826606c00626606c00426606c00202b16416830540013053001305200130510013050001304f001304e001304d001304837540031641146094003164120608c6ea800e2b30013370e9004000c4c966002609600313259800981e18239baa00189919191919191919194c004dd7182a000cdd7182a004cc15001e60a800d3054005982a0024dd6982a001cdd6982a001244444444b3001305d00989981b982e00809981b00309981b00289981b00209981c00180ac5905a0c150004c14c004c148004c144004c140004c13c004c138004c134004c120dd5000c590451825000c5904818231baa0038acc004cdc3a4014003132598009825800c4c9660026078608e6ea8006264646464646464646464653001375c60ac003375c60ac0173056009982b0044c15801e64b300130540018acc004cdc4a400860a600316898261829800a0a28b20aa375460ac00d3259800982a000c56600266e25200430530018b44c130c14c0050514590551baa3056005982b0024dd6982b001cdd6982b00124444444444b3001306100b89981d983000a09981d00409981d00389981d00309981e00180cc5905e0c158004c154004c150004c14c004c148004c144004c140004c13c004c138004c134004c120dd5000c590451825000c5904818231baa0038acc004cdc3a4018003132598009825800c4cc014c12800400e2c8240c118dd5001c56600266e1d200e0018992cc004c12c006264b3001303c304737540031323322598009827800c4cc0acdd61827000912cc00400a013132332259800982a000c4c966002608a60a06ea800626464b3001305700289803982b8044590541bae30550013051375400316413860a60031641446eb8c144004c148004dd61828001209c8b2098375a6098002609a00260906ea80062c8228c1280062c8240c118dd5001c56600266e1d2010001899192cc004c13000a0091641246eb8c128004c118dd5001c590432086410c82190432086410c821904318221baa0022259800981c18219baa00289919191919191919191919194c004c14c0066eb4c14c0326eb4c14c02e6eb4c14c02a6eb4c14c0266eb4c14c0226eb4c14c01e6eb4c14c01a6eb4c14c0166eb4c14c0126eb4c14c0092222222222259800982f80644cc0e8c1780384cc07002c0622c82e060a600260a400260a200260a0002609e002609c002609a002609800260960026094002609200260886ea800a2c82084528201c3013301037540031640346022008602260240088b200e180480098021baa0098a4d13656400401"
5317
5379
  };
5318
5380
 
5319
5381
  // src/validators/poll-shard-validator.ts
5320
5382
  var _pollShardValidator = {
5321
5383
  type: "PlutusScriptV3",
5322
5384
  description: "Generated by Aiken",
5323
- cborHex: "590ee1590ede010100229800aba2aba1aba0aab9faab9eaab9dab9cab9a4888888896600264653001300900198049805000cdc3a400530090024888966002600460126ea800e2653001300e00198071807800cdc3a400091119912cc004c00c006264b30013015001899192cc004c0180062b3001301337540050058b20288acc004c02c0062b3001301337540050058b20288b2020404060226ea8004c0500062c8090c040dd500545660026010003132332259800980b800c4c966002600e60266ea8006264646644b3001301c0038054590191bad3019001375c6032004603200260286ea80062c8088c0580062c80a0dd6980a000980a80098081baa00a8b201a40342b30013001300d375400513259800980398071baa0018cc004c048c03cdd5000c896600200310018a998078010800a01c91809980a180a180a000cdd2a4001374a900148c04cc050c050c050c050c050c050c050c050c05000644646600200200644b30010018a508acc004c00cc0580062946266004004602e002808101448c04cc0500066e1d20049ba548011222222222232598009806980c9baa0148cc004c074c068dd500a4888c8cc88cc008008004896600200300389919912cc004cdc8803801456600266e3c01c00a20030064081133005005302700440806eb8c080004dd698108009811800a0423232330010010062259800800c00e2646644b30013372201200515980099b8f0090028800c01902144cc014014c0a00110211bae3021001375660440026048002811052f5bded8c029000488c8cc00400400c896600200314bd7044cc8966002600a00513302200233004004001899802002000a03a30210013022001407d2301e301f301f0019180f180f980f980f980f980f980f980f800a44444646644b3001302600289919912cc004c0a400626464b3001301f30263754003132598009816000c4c966002603860506ea800626464646644b30013032003899198008009bac30320052259800800c5660026046605e6ea801226464b30013036002899912cc004cc0912411d496e76616c696420696e707574206265696e672076616c696461746564003375e052606e60686ea804a2b3001330244901225468652070726f706f73616c206578636565647320766f74696e6720706572696f64003232332259800981800144c966002606260706ea8c08cc0e4dd51811981c9baa005899b88001002899b8900100240d86eb4c0ecc0e0dd5001c566002604200514a114a281a9035181a9baa001375a6032606c6ea809cc0e0c0d4dd5180f981a9baa0013016303437540571598009981224811c54686520706f6c6c206f757470757420697320696e636f72726563740098009bac3017303437540573021330360114bd704c070cc0d8c084cc0d8c8c08ccc0dcc0e0004cc0dcc9660026052606a6ea807226048660706ea0cdc01bad3039303637540020066074606c6ea800626048660706072606c6ea8004cc0e0dd419b80375a6040606c6ea800400d2f5c08198c07cc0d4dd5013181c981c800981a1baa0254bd7025eb826eacc078c0d0dd5180f181a1baa012a6103d8798000404d159800998122490e4d697865642076657273696f6e73003375e606e60686ea8c0dcc0d0dd5180f181a1baa00f30213303630233034375407497ae08acc004cc091240127546865207472616e73616374696f6e206d757374206265207369676e6564206279206f776e6572003232330010013758607260746074607460746074607460746074606c6ea80b4896600200314a115980099b8f375c607400200714a3133002002303b00140d081c0dd7181b981a1baa00c8acc004cc09124011a5573657220766f74656420666f7220706f6c6c206265666f7265009800991919800800802112cc00400629422b30013370e6eb4c0e8dd6181d000801c528c4cc008008c0ec0050342070375a606e60686ea80969429450314566002660489201124d757374206d696e74206e6f20746f6b656e003375e606e607060706070607060686ea80ad300101a0008acc004cc0912401245374616b696e67506f736974696f6e206d757374207570646174652070726f7065726c790098009bac30173034375405730213303630223303630213303630233034375407497ae0330364c103d87a80004bd7025eb8260386606c60426606c6460466606e60700026606e6e9ccc88c8cc004004018896600200313303b374e660766ea0010cc0ec00d2f5c097ae08994c004dd6981e800cc0f4c0f8006607c0049112cc004cdc380180444cc0fcdd39981f9ba80033303f0074bd70000c4cc0fcdd39981f9ba80033303f0024bd7019803003000a0741bac303c00140e86eb4c0e0c0d4dd501318119981b9ba80023303730183035375404c97ae0303930390013034375401897ae04bd704dd5980f181a1baa301e3034375401f4c0103d87a8000404d1330244901275374616b696e6720506f736974696f6e206d75737420757365204c6f636b2072656465656d657200323322598009815000c4c8c966002607a0050048b2074375c6076002606e6ea800e2b3001302f0018acc004c0dcdd5001c00a2c81c22b300130200018acc004c0dcdd5001c00a2c81c22b30013370e9003000c4c8c966002607a0050048b2074375a6076002606e6ea800e2b30013370e9004000c566002606e6ea800e0051640e115980099b87480280062b3001303737540070028b20708acc004cdc3a4018003159800981b9baa003801459038459034206840d081a1034206840d0266ebc00530103d87e80003034375400266036606e60686ea803cdd59810181a1baa02b8a5040c514a0818a2941031452820628a5040c514a0818a2941031452820623259800981598191baa00189919198008009bac301f3035375401a44b30010018a5eb8226644b30013371000a6eb4c0ecc0f0c0e0dd5181d981e00144cc0e8dd380119802002000c4cc0100100050351bac3039001303a00140dc6eb4c0d8c0ccdd5000c59030181a98191baa303530323754602860646ea80a4cc8a6002005375c606e60686ea80066eb8c078c0d0dd5000a0323756603860646ea8c070c0c8dd5006980a98191baa0388b2066375a606800260606ea80122c816a2646644b300130370018992cc004c09cc0ccdd5000c4c8c8cc8966002607800713300a00a303c0098b2072375a60720026eb4c0e4008c0e4004c0d0dd5000c59031181b000c590341bad3034001303500137586066002818a2c8178c0bc004dd718178019817800981700098149baa0018b204c302b0018b20523027375400316409064b30013010302637540031302a302737540031640906012604c6ea8c040c098dd50009814000c59026181318119baa300d3023375400330013758604c60466ea806a601a60466ea80a698103d87980004010604a00516408d30013758604660406ea805e604660406ea809a98103d8798000400444444660206601200ab300130183024375400912323375e6054604e6ea8c0a8c09cdd5001000981498131baa005891919baf302a302737540040026052604c6ea801502212cc004cdd7980498131baa0010048992cc00400629462b3001302b001899194c004dd71816000cdd698161816800cdd718160012444b30013371e002911008acc004cdc7801a441008acc004c07cc0acdd5004456600266e252000002899b89002482026fb80a294102944cdc4a4000004814a29410294528205218160009bac302a0018a5040a08140c8cc004004ca60020033756602460506ea800e646600200200c44b30010018a5eb7bdb1822646605a66ec0c0a8004dd319198008009bab302c0022259800800c52f5bded8c11323303033760605a0026ea0cdc0a40006eb4c0b8004cc00c00cc0c8008c0c000502e1980180198178011816800a0564004444b30010028800c4c8cc8a600200d30310059919800800802912cc00400626606266ec0dd48021ba60034bd6f7b63044ca60026eb8c0bc0066eacc0c000660680049112cc004cdc8004001c4cc0d4cdd81ba9008374c00e00b15980099b8f0080038992cc0056600200314a314a081aa2005133036337606ea4024dd30008012062329800800c022006800888966002005100189919914c00401a607a00b32330010010052259800800c4cc0f4cdd81ba9004375000697adef6c608994c004dd7181d800cdd6981e000cc1000092225980099b9000800389982099bb037520106ea001c0162b30013371e010007132598009819800c400a26608466ec0dd48049ba800100240f466e0001c00a26608266ec0dd48019ba80023300600600140f081e0607c00281e10061bae3036001375a606e002607200481ba26606a66ec0dd48019ba60023300600600140c08180606400281810061bae302a00137566056002605a0048158896600200314bd7044c8cc88cc88cc00800800489660020031003899198181ba733030375200a66060605a00266060605c00297ae0330030033032002303000140b86eacc0ac00cdd718140009980180198168011815800a0528a50408c444646600e00846004601c60486ea800566002602a60426ea800624603730013756601a60466ea80066eb8c098c08cdd5001cdd7180698119baa0034021123371090004c004dd5980698119baa0019bae302630233754007375c601a60466ea800d008203e44c8cc88cc03524013953686f756c642063616c6c206120506f6c6c4d616e6167657220696e7075742077697468204d657267655368617264732072656465656d657200323322598009809800c4c8c966002604c0050048b2046375a604800260406ea800e2b30013018001899192cc004c09800a00916408c6eb4c090004c080dd5001c56600260120031323259800981300140122c8118dd6981200098101baa0038b203a407480e856600266ebc004c018cc080dd4001a5eb822660126eb0c084c078dd500a92cc004cdd78019811180f9baa001899baf3022301f37546012603e6ea8004c038c07cdd5008452820388a50406c603a6ea8004cc010004dd59804980e9baa014375a603c002603c603e00260346ea805101711192cc004c03cc06cdd5000c4c07cc070dd5000c59019191919800800801912cc004006298103d87a80008992cc004cdd7802180f000c4c034cc084c07c0052f5c113300300330230024070604200280f8c020cc0740092f5c08a5040306022601c6ea800a2c8058c034dd50040c028dd5001c590070c024004c010dd5004c52689b2b20021"
5385
+ cborHex: "590ee0590edd010100229800aba2aba1aba0aab9faab9eaab9dab9cab9a4888888896600264653001300900198049805000cdc3a400530090024888966002600460126ea800e2653001300e00198071807800cdc3a400091119912cc004c00c006264b30013015001899192cc004c0180062b3001301337540050058b20288acc004c02c0062b3001301337540050058b20288b2020404060226ea8004c0500062c8090c040dd500545660026010003132332259800980b800c4c966002600e60266ea8006264646644b3001301c0038054590191bad3019001375c6032004603200260286ea80062c8088c0580062c80a0dd6980a000980a80098081baa00a8b201a40342b30013001300d375400513259800980398071baa0018cc004c048c03cdd5000c896600200310018a998078010800a01c91809980a180a180a000cdd2a4001374a900148c04cc050c050c050c050c050c050c050c050c05000644646600200200644b30010018a508acc004c00cc0580062946266004004602e002808101448c04cc0500066e1d20049ba548011222222222232598009806980c9baa0148cc004c074c068dd500a4888c8cc88cc008008004896600200300389919912cc004cdc8803801456600266e3c01c00a20030064081133005005302700440806eb8c080004dd698108009811800a0423232330010010062259800800c00e2646644b30013372201200515980099b8f0090028800c01902144cc014014c0a00110211bae3021001375660440026048002811052f5bded8c02900048c078c07cc07c0064603c603e603e603e603e603e603e603e00291111919912cc004c09400a2646644b30013028001899192cc004c078c094dd5000c4c966002605600313259800980d98139baa001899191919912cc004c0c400e264660020026eb0c0c40148966002003159800981118171baa004899192cc004c0d400a26644b30013302349011d496e76616c696420696e707574206265696e672076616c696461746564003375e050606c60666ea804a2b3001330234901225468652070726f706f73616c206578636565647320766f74696e6720706572696f64003232332259800981780144c9660026060606e6ea8c088c0e0dd51811181c1baa005899b88001002899b8900100240d46eb4c0e8c0dcdd5001c566002604000514a114a281a1034181a1baa001375a6032606a6ea8098c0dcc0d0dd5180f181a1baa00130163033375405515980099811a4811c54686520706f6c6c206f757470757420697320696e636f72726563740098009bac3017303337540553020330350114bd704c06ccc0d4c080cc0d4c8c088cc0d8c0dc004cc0d8c966002605060686ea806e260466606e6ea0cdc01bad3038303537540020066072606a6ea8006260466606e6070606a6ea8004cc0dcdd419b80375a603e606a6ea800400d2f5c08190c078c0d0dd5012981c181c00098199baa0244bd7025eb826eacc074c0ccdd5180e98199baa012a6103d8798000404d15980099811a490e4d697865642076657273696f6e73003375e606c60666ea8c0d8c0ccdd5180e98199baa00f30203303530223033375407297ae08acc004cc08d240127546865207472616e73616374696f6e206d757374206265207369676e6564206279206f776e6572003232330010013758607060726072607260726072607260726072606a6ea80b0896600200314a115980099b8f375c607200200714a3133002002303a00140cc81b8dd7181b18199baa00c8acc004cc08d24011a5573657220766f74656420666f7220706f6c6c206265666f7265009800991919800800802112cc00400629422b30013370e6eb4c0e4dd6181c800801c528c4cc008008c0e8005033206e375a606c60666ea80929429450304566002660469201124d757374206d696e74206e6f20746f6b656e003375e606c606e606e606e606e60666ea80a9300101a0008acc004cc08d2401245374616b696e67506f736974696f6e206d757374207570646174652070726f7065726c790098009bac30173033375405530203303530213303530203303530223033375407297ae0330354c103d87a80004bd7025eb8260366606a60406606a6460446606c606e0026606c6e9ccc88c8cc004004018896600200313303a374e660746ea0010cc0e800d2f5c097ae08994c004dd6981e000cc0f0c0f4006607a0049112cc004cdc380180444cc0f8dd39981f1ba80033303e0074bd70000c4cc0f8dd39981f1ba80033303e0024bd7019803003000a0721bac303b00140e46eb4c0dcc0d0dd501298111981b1ba80023303630183034375404a97ae0303830380013033375401897ae04bd704dd5980e98199baa301d3033375401f4c0103d87a8000404d1330234901275374616b696e6720506f736974696f6e206d75737420757365204c6f636b2072656465656d657200323322598009814800c4c8c96600260780050048b2072375c6074002606c6ea800e2b3001302e0018acc004c0d8dd5001c00a2c81ba2b3001301f0018acc004c0d8dd5001c00a2c81ba2b30013370e9003000c4c8c96600260780050048b2072375a6074002606c6ea800e2b30013370e9004000c566002606c6ea800e0051640dd15980099b87480280062b3001303637540070028b206e8acc004cdc3a4018003159800981b1baa003801459037459033206640cc8199033206640cc266ebc00530103d87e80003033375400266034606c60666ea803cdd5980f98199baa02a8a5040c114a081822941030452820608a5040c114a081822941030452820603259800981518189baa00189919198008009bac301e3034375401a44b30010018a5eb8226644b30013371000a6eb4c0e8c0ecc0dcdd5181d181d80144cc0e4dd380119802002000c4cc0100100050341bac3038001303900140d86eb4c0d4c0c8dd5000c5902f181a18189baa303430313754602860626ea80a0cc8a6002005375c606c60666ea80066eb8c074c0ccdd5000a0303756603660626ea8c06cc0c4dd5006980a98189baa0378b2064375a6066002605e6ea80122c81622646644b300130360018992cc004c098c0c8dd5000c4c8c8cc8966002607600713300a00a303b0098b2070375a60700026eb4c0e0008c0e0004c0ccdd5000c59030181a800c590331bad303300130340013758606400281822c8170c0b8004dd718170019817000981680098141baa0018b204a302a0018b20503026375400316408c64b3001300f30253754003130293026375400316408c6012604a6ea8c03cc094dd50009813800c59025181298111baa300c3022375400330013758604a60446ea8066601860446ea80a298103d879800040106048005164089300137586044603e6ea805a6044603e6ea809698103d8798000400444444646602000c4b300130020018acc004cdd7980518131baa0010058992cc00400629462b3001302b001899194c004dd71816000cdd698161816800cdd718160012444b30013371e002911008acc004cdc7801a441008acc004c07cc0acdd5004c56600266e252000002899b89002482026fb80a294102944cdc4a4000004814a29410294528205218160009bac302a0018a5040a08140c8cc004004ca60020033756602460506ea800e646600200200e44b30010018a5eb7bdb1822646605a66ec0c0a8004dd319198008009bab302c0022259800800c52f5bded8c11323303033760605a0026ea0cdc0a40006eb4c0b8004cc00c00cc0c8008c0c000502e1980180198178011816800a0564004444b30010028800c4c8cc8a600200d30310059919800800802912cc00400626606266ec0dd48021ba60034bd6f7b63044ca60026eb8c0bc0066eacc0c000660680049112cc004cdc8004001c4cc0d4cdd81ba9008374c00e00b15980099b8f0080038992cc0056600200314a314a081aa2005133036337606ea4024dd30008012062329800800c022006800888966002005100189919914c00401a607a00b32330010010052259800800c4cc0f4cdd81ba9004375000697adef6c608994c004dd7181d800cdd6981e000cc1000092225980099b9000800389982099bb037520106ea001c0162b30013371e010007132598009819800c400a26608466ec0dd48049ba800100240f466e0001c00a26608266ec0dd48019ba80023300600600140f081e0607c00281e10061bae3036001375a606e002607200481ba26606a66ec0dd48019ba60023300600600140c08180606400281810061bae302a00137566056002605a0048158896600200314bd7044c8cc88cc88cc00800800489660020031003899198181ba733030375200a66060605a00266060605c00297ae0330030033032002303000140b86eacc0ac00cdd718140009980180198168011815800a0528a50408d14a0811966002602e60466ea8012246466ebcc0a4c098dd5181498131baa00200130283025375400b12323375e6052604c6ea8008004c0a0c094dd5002a0422223232330010010052259800800c52f5c113322598009802980818131baa00289981400119802002000c4cc01001000502318138009814000a04a59800980a18101baa00189180d4c004dd5980618111baa0019bae302530223754007375c601860446ea800d007448cdc42400130013756601860446ea80066eb8c094c088dd5001cdd7180618111baa003401c80f113233223300d4913953686f756c642063616c6c206120506f6c6c4d616e6167657220696e7075742077697468204d657267655368617264732072656465656d657200323322598009809800c4c8c966002604c0050048b2046375a604800260406ea800e2b30013018001899192cc004c09800a00916408c6eb4c090004c080dd5001c56600260120031323259800981300140122c8118dd6981200098101baa0038b203a407480e856600266ebc004c018cc080dd4001a5eb822660126eb0c084c078dd500a92cc004cdd78019811180f9baa001899baf3022301f37546012603e6ea8004c038c07cdd5008452820388a50406c603a6ea8004cc010004dd59804980e9baa014375a603c002603c603e00260346ea805101711192cc004c03cc06cdd5000c4c07cc070dd5000c59019191919800800801912cc004006298103d87a80008992cc004cdd7802180f000c4c034cc084c07c0052f5c113300300330230024070604200280f8c020cc0740092f5c08a5040306022601c6ea800a2c8058c034dd50040c028dd5001c590070c024004c010dd5004c52689b2b20021"
5324
5386
  };
5325
5387
 
5326
5388
  // src/contracts/poll/scripts.ts
@@ -5371,185 +5433,25 @@ var mkPollShardValidatorFromSP = (params) => {
5371
5433
  };
5372
5434
  };
5373
5435
 
5374
- // src/contracts/poll/types-poll-new.ts
5375
- var import_evolution15 = require("@evolution-sdk/evolution");
5376
- var import_cardano_offchain_common14 = require("@3rd-eye-labs/cardano-offchain-common");
5377
- var import_fp_ts13 = require("fp-ts");
5378
- var import_ts_pattern15 = require("ts-pattern");
5379
- var PollStatusSchema = import_evolution15.TSchema.Struct({
5380
- yesVotes: import_evolution15.TSchema.Integer,
5381
- noVotes: import_evolution15.TSchema.Integer
5382
- });
5383
- var PollManagerContentSchema = import_evolution15.TSchema.Struct({
5384
- pollId: import_evolution15.TSchema.Integer,
5385
- pollOwner: import_evolution15.TSchema.ByteArray,
5386
- content: ProposalContentSchema,
5387
- treasuryWithdrawal: import_evolution15.TSchema.NullOr(TreasuryWithdrawalSchema),
5388
- status: PollStatusSchema,
5389
- votingEndTime: import_evolution15.TSchema.Integer,
5390
- createdShardsCount: import_evolution15.TSchema.Integer,
5391
- talliedShardsCount: import_evolution15.TSchema.Integer,
5392
- totalShardsCount: import_evolution15.TSchema.Integer,
5393
- proposingEndTime: import_evolution15.TSchema.Integer,
5394
- expirationTime: import_evolution15.TSchema.Integer,
5395
- protocolVersion: import_evolution15.TSchema.Integer,
5396
- minimumQuorum: import_evolution15.TSchema.Integer
5397
- });
5398
- var PollShardContentSchema = import_evolution15.TSchema.Struct({
5399
- pollId: import_evolution15.TSchema.Integer,
5400
- status: PollStatusSchema,
5401
- votingEndTime: import_evolution15.TSchema.Integer,
5402
- managerAddress: import_cardano_offchain_common14.AddressSchema
5403
- });
5404
- var PollDatumSchema = import_evolution15.TSchema.Union(
5405
- import_evolution15.TSchema.Struct(
5406
- {
5407
- PollManager: PollManagerContentSchema
5408
- },
5409
- { flatInUnion: true }
5410
- ),
5411
- import_evolution15.TSchema.Struct({ PollShard: PollShardContentSchema }, { flatInUnion: true })
5412
- );
5413
- var VoteOptionSchema = import_evolution15.TSchema.Union(
5414
- import_evolution15.TSchema.Literal("Yes", { flatInUnion: true }),
5415
- import_evolution15.TSchema.Literal("No", { flatInUnion: true })
5416
- );
5417
- var PollShardRedeemerSchema = import_evolution15.TSchema.Union(
5418
- import_evolution15.TSchema.Struct({ Vote: VoteOptionSchema }, { flatInUnion: true }),
5419
- import_evolution15.TSchema.Struct(
5420
- {
5421
- MergeShards: import_evolution15.TSchema.Struct(
5422
- {
5423
- currentTime: import_evolution15.TSchema.Integer,
5424
- pollManagerRef: import_cardano_offchain_common14.OutputReferenceSchema
5425
- },
5426
- { flatFields: true }
5427
- )
5428
- },
5429
- { flatInUnion: true }
5430
- )
5431
- );
5432
- var PollManagerRedeemerSchema = import_evolution15.TSchema.Union(
5433
- import_evolution15.TSchema.Struct(
5434
- {
5435
- EndPoll: import_evolution15.TSchema.Struct(
5436
- { currentTime: import_evolution15.TSchema.Integer },
5437
- { flatFields: true }
5438
- )
5439
- },
5440
- { flatInUnion: true }
5441
- ),
5442
- import_evolution15.TSchema.Struct(
5443
- {
5444
- CreateShards: import_evolution15.TSchema.Struct(
5445
- { currentTime: import_evolution15.TSchema.Integer },
5446
- { flatFields: true }
5447
- )
5448
- },
5449
- { flatInUnion: true }
5450
- ),
5451
- import_evolution15.TSchema.Struct(
5452
- {
5453
- MergeShardsManager: import_evolution15.TSchema.Struct(
5454
- { currentTime: import_evolution15.TSchema.Integer },
5455
- { flatFields: true }
5456
- )
5457
- },
5458
- { flatInUnion: true }
5459
- )
5460
- );
5461
- function serialisePollManagerRedeemer(r) {
5462
- return import_evolution15.Data.withSchema(PollManagerRedeemerSchema).toCBORHex(r);
5463
- }
5464
- function serialisePollShardRedeemer(r) {
5465
- return import_evolution15.Data.withSchema(PollShardRedeemerSchema).toCBORHex(r);
5466
- }
5467
- function parsePollManager(datum) {
5468
- try {
5469
- return (0, import_ts_pattern15.match)(
5470
- import_evolution15.Data.withSchema(PollDatumSchema, DEFAULT_SCHEMA_OPTIONS).fromCBORHex(
5471
- datum
5472
- )
5473
- ).with({ PollManager: import_ts_pattern15.P.select() }, (res) => import_fp_ts13.option.some(res)).otherwise(() => import_fp_ts13.option.none);
5474
- } catch (_) {
5475
- return import_fp_ts13.option.none;
5476
- }
5477
- }
5478
- function parsePollManagerOrThrow(datum) {
5479
- return import_fp_ts13.function.pipe(
5480
- parsePollManager(datum),
5481
- import_fp_ts13.option.match(() => {
5482
- throw new Error("Expected a poll manager datum.");
5483
- }, import_fp_ts13.function.identity)
5484
- );
5485
- }
5486
- function parsePollShard(datum) {
5487
- try {
5488
- return (0, import_ts_pattern15.match)(
5489
- import_evolution15.Data.withSchema(PollDatumSchema, DEFAULT_SCHEMA_OPTIONS).fromCBORHex(
5490
- datum
5491
- )
5492
- ).with({ PollShard: import_ts_pattern15.P.select() }, (res) => import_fp_ts13.option.some(res)).otherwise(() => import_fp_ts13.option.none);
5493
- } catch (_) {
5494
- return import_fp_ts13.option.none;
5495
- }
5496
- }
5497
- function parsePollShardOrThrow(datum) {
5498
- return import_fp_ts13.function.pipe(
5499
- parsePollShard(datum),
5500
- import_fp_ts13.option.match(() => {
5501
- throw new Error("Expected a poll shard datum.");
5502
- }, import_fp_ts13.function.identity)
5503
- );
5504
- }
5505
- function serialisePollDatum(d) {
5506
- return import_evolution15.Data.withSchema(PollDatumSchema).toCBORHex(d);
5507
- }
5508
-
5509
- // src/contracts/poll/helpers.ts
5510
- function q(pollStatus, e) {
5511
- if (pollStatus.yesVotes + pollStatus.noVotes === 0n)
5512
- return { getOnChainInt: 0n };
5513
- else {
5514
- const q2 = ocdDiv(
5515
- { getOnChainInt: pollStatus.yesVotes },
5516
- { getOnChainInt: BigInt(Math.floor(Math.sqrt(Number(e)))) }
5517
- ).getOnChainInt - ocdDiv(
5518
- { getOnChainInt: pollStatus.noVotes },
5519
- {
5520
- getOnChainInt: BigInt(
5521
- Math.floor(
5522
- Math.sqrt(Number(pollStatus.yesVotes + pollStatus.noVotes))
5523
- )
5524
- )
5525
- }
5526
- ).getOnChainInt;
5527
- return { getOnChainInt: BigInt(q2) };
5528
- }
5529
- }
5530
- function pollPassQuorum(pollStatus, electorate, minQuorum) {
5531
- return pollStatus.yesVotes + pollStatus.noVotes >= minQuorum && q(pollStatus, electorate).getOnChainInt > 50000n;
5532
- }
5533
-
5534
5436
  // src/contracts/collector/transactions.ts
5535
5437
  var import_lucid22 = require("@lucid-evolution/lucid");
5536
5438
 
5537
5439
  // src/contracts/collector/types-new.ts
5538
- var import_evolution16 = require("@evolution-sdk/evolution");
5539
- var CollectorRedeemerSchema = import_evolution16.TSchema.Union(
5540
- import_evolution16.TSchema.Literal("Collect", { flatInUnion: true }),
5541
- import_evolution16.TSchema.Literal("DistributeToStakers", { flatInUnion: true }),
5542
- import_evolution16.TSchema.Literal("UpgradeVersion", { flatInUnion: true })
5440
+ var import_evolution15 = require("@evolution-sdk/evolution");
5441
+ var CollectorRedeemerSchema = import_evolution15.TSchema.Union(
5442
+ import_evolution15.TSchema.Literal("Collect", { flatInUnion: true }),
5443
+ import_evolution15.TSchema.Literal("DistributeToStakers", { flatInUnion: true }),
5444
+ import_evolution15.TSchema.Literal("UpgradeVersion", { flatInUnion: true })
5543
5445
  );
5544
5446
  function serialiseCollectorRedeemer(r) {
5545
- return import_evolution16.Data.withSchema(
5447
+ return import_evolution15.Data.withSchema(
5546
5448
  CollectorRedeemerSchema,
5547
5449
  DEFAULT_SCHEMA_OPTIONS
5548
5450
  ).toCBORHex(r);
5549
5451
  }
5550
5452
 
5551
5453
  // src/contracts/collector/transactions.ts
5552
- var import_cardano_offchain_common15 = require("@3rd-eye-labs/cardano-offchain-common");
5454
+ var import_cardano_offchain_common14 = require("@3rd-eye-labs/cardano-offchain-common");
5553
5455
  async function collectorFeeTx(fee, lucid, params, tx, collectorOref) {
5554
5456
  const collectorUtxo = matchSingle(
5555
5457
  await lucid.utxosByOutRef([collectorOref]),
@@ -5564,7 +5466,7 @@ async function collectorFeeTx(fee, lucid, params, tx, collectorOref) {
5564
5466
  tx.collectFrom([collectorUtxo], serialiseCollectorRedeemer("Collect")).pay.ToContract(
5565
5467
  collectorUtxo.address,
5566
5468
  { kind: "inline", value: import_lucid22.Data.void() },
5567
- (0, import_lucid22.addAssets)(collectorUtxo.assets, (0, import_cardano_offchain_common15.mkLovelacesOf)(fee))
5469
+ (0, import_lucid22.addAssets)(collectorUtxo.assets, (0, import_cardano_offchain_common14.mkLovelacesOf)(fee))
5568
5470
  ).readFrom([collectorRefScriptUtxo]);
5569
5471
  return collectorRefScriptUtxo;
5570
5472
  }
@@ -5578,95 +5480,95 @@ var import_fp_ts15 = require("fp-ts");
5578
5480
  var import_ts_pattern17 = require("ts-pattern");
5579
5481
 
5580
5482
  // src/contracts/staking/types-new.ts
5581
- var import_evolution17 = require("@evolution-sdk/evolution");
5582
- var import_fp_ts14 = require("fp-ts");
5583
- var import_ts_pattern16 = require("ts-pattern");
5584
- var StakingPosLockedAmtSchema = import_evolution17.TSchema.Array(
5585
- import_evolution17.TSchema.Tuple([
5586
- import_evolution17.TSchema.Integer,
5587
- import_evolution17.TSchema.Struct({
5588
- voteAmt: import_evolution17.TSchema.Integer,
5589
- votingEnd: import_evolution17.TSchema.Integer
5483
+ var import_evolution16 = require("@evolution-sdk/evolution");
5484
+ var import_fp_ts13 = require("fp-ts");
5485
+ var import_ts_pattern15 = require("ts-pattern");
5486
+ var StakingPosLockedAmtSchema = import_evolution16.TSchema.Array(
5487
+ import_evolution16.TSchema.Tuple([
5488
+ import_evolution16.TSchema.Integer,
5489
+ import_evolution16.TSchema.Struct({
5490
+ voteAmt: import_evolution16.TSchema.Integer,
5491
+ votingEnd: import_evolution16.TSchema.Integer
5590
5492
  })
5591
5493
  ])
5592
5494
  );
5593
- var RewardSnapshotSchema = import_evolution17.TSchema.Struct({
5594
- snapshotAda: import_evolution17.TSchema.Integer
5495
+ var RewardSnapshotSchema = import_evolution16.TSchema.Struct({
5496
+ snapshotAda: import_evolution16.TSchema.Integer
5595
5497
  });
5596
- var StakingPositionSchema = import_evolution17.TSchema.Struct({
5597
- owner: import_evolution17.TSchema.ByteArray,
5498
+ var StakingPositionSchema = import_evolution16.TSchema.Struct({
5499
+ owner: import_evolution16.TSchema.ByteArray,
5598
5500
  lockedAmount: StakingPosLockedAmtSchema,
5599
5501
  positionSnapshot: RewardSnapshotSchema
5600
5502
  });
5601
- var StakingManagerSchema = import_evolution17.TSchema.Struct({
5602
- totalStake: import_evolution17.TSchema.Integer,
5503
+ var StakingManagerSchema = import_evolution16.TSchema.Struct({
5504
+ totalStake: import_evolution16.TSchema.Integer,
5603
5505
  managerSnapshot: RewardSnapshotSchema
5604
5506
  });
5605
- var StakingDatumSchema = import_evolution17.TSchema.Union(
5507
+ var StakingDatumSchema = import_evolution16.TSchema.Union(
5606
5508
  StakingManagerSchema,
5607
5509
  StakingPositionSchema
5608
5510
  );
5609
- var StakingRedeemerSchema = import_evolution17.TSchema.Union(
5610
- import_evolution17.TSchema.Struct(
5511
+ var StakingRedeemerSchema = import_evolution16.TSchema.Union(
5512
+ import_evolution16.TSchema.Struct(
5611
5513
  {
5612
- CreateStakingPosition: import_evolution17.TSchema.Struct(
5613
- { creatorPkh: import_evolution17.TSchema.ByteArray },
5514
+ CreateStakingPosition: import_evolution16.TSchema.Struct(
5515
+ { creatorPkh: import_evolution16.TSchema.ByteArray },
5614
5516
  { flatFields: true }
5615
5517
  )
5616
5518
  },
5617
5519
  { flatInUnion: true }
5618
5520
  ),
5619
- import_evolution17.TSchema.Literal("UpdateTotalStake", { flatInUnion: true }),
5620
- import_evolution17.TSchema.Literal("Distribute", { flatInUnion: true }),
5621
- import_evolution17.TSchema.Struct(
5521
+ import_evolution16.TSchema.Literal("UpdateTotalStake", { flatInUnion: true }),
5522
+ import_evolution16.TSchema.Literal("Distribute", { flatInUnion: true }),
5523
+ import_evolution16.TSchema.Struct(
5622
5524
  {
5623
- AdjustStakedAmount: import_evolution17.TSchema.Struct(
5624
- { adjustAmount: import_evolution17.TSchema.Integer },
5525
+ AdjustStakedAmount: import_evolution16.TSchema.Struct(
5526
+ { adjustAmount: import_evolution16.TSchema.Integer },
5625
5527
  { flatFields: true }
5626
5528
  )
5627
5529
  },
5628
5530
  { flatInUnion: true }
5629
5531
  ),
5630
- import_evolution17.TSchema.Literal("Unstake", { flatInUnion: true }),
5631
- import_evolution17.TSchema.Literal("Lock", { flatInUnion: true }),
5632
- import_evolution17.TSchema.Literal("UpgradeVersion", { flatInUnion: true })
5532
+ import_evolution16.TSchema.Literal("Unstake", { flatInUnion: true }),
5533
+ import_evolution16.TSchema.Literal("Lock", { flatInUnion: true }),
5534
+ import_evolution16.TSchema.Literal("UpgradeVersion", { flatInUnion: true })
5633
5535
  );
5634
5536
  function serialiseStakingRedeemer(r) {
5635
- return import_evolution17.Data.withSchema(
5537
+ return import_evolution16.Data.withSchema(
5636
5538
  StakingRedeemerSchema,
5637
5539
  DEFAULT_SCHEMA_OPTIONS
5638
5540
  ).toCBORHex(r);
5639
5541
  }
5640
5542
  function parseStakingPosition(datum) {
5641
5543
  try {
5642
- return (0, import_ts_pattern16.match)(
5643
- import_evolution17.Data.withSchema(StakingDatumSchema, DEFAULT_SCHEMA_OPTIONS).fromCBORHex(
5544
+ return (0, import_ts_pattern15.match)(
5545
+ import_evolution16.Data.withSchema(StakingDatumSchema, DEFAULT_SCHEMA_OPTIONS).fromCBORHex(
5644
5546
  datum
5645
5547
  )
5646
- ).with({ owner: import_ts_pattern16.P.any }, (res) => import_fp_ts14.option.some(res)).otherwise(() => import_fp_ts14.option.none);
5548
+ ).with({ owner: import_ts_pattern15.P.any }, (res) => import_fp_ts13.option.some(res)).otherwise(() => import_fp_ts13.option.none);
5647
5549
  } catch (_) {
5648
- return import_fp_ts14.option.none;
5550
+ return import_fp_ts13.option.none;
5649
5551
  }
5650
5552
  }
5651
5553
  function parseStakingPositionOrThrow(datum) {
5652
- return import_fp_ts14.function.pipe(
5554
+ return import_fp_ts13.function.pipe(
5653
5555
  parseStakingPosition(datum),
5654
- import_fp_ts14.option.match(() => {
5556
+ import_fp_ts13.option.match(() => {
5655
5557
  throw new Error("Expected a StakingPosition datum.");
5656
- }, import_fp_ts14.function.identity)
5558
+ }, import_fp_ts13.function.identity)
5657
5559
  );
5658
5560
  }
5659
5561
  function parseStakingManagerDatum(datum) {
5660
- return (0, import_ts_pattern16.match)(
5661
- import_evolution17.Data.withSchema(StakingDatumSchema, DEFAULT_SCHEMA_OPTIONS).fromCBORHex(
5562
+ return (0, import_ts_pattern15.match)(
5563
+ import_evolution16.Data.withSchema(StakingDatumSchema, DEFAULT_SCHEMA_OPTIONS).fromCBORHex(
5662
5564
  datum
5663
5565
  )
5664
- ).with({ totalStake: import_ts_pattern16.P.any }, (res) => res).otherwise(() => {
5566
+ ).with({ totalStake: import_ts_pattern15.P.any }, (res) => res).otherwise(() => {
5665
5567
  throw new Error("Expected a StakingPosition datum.");
5666
5568
  });
5667
5569
  }
5668
5570
  function serialiseStakingDatum(d) {
5669
- return import_evolution17.Data.withSchema(StakingDatumSchema, DEFAULT_SCHEMA_OPTIONS).toCBORHex(
5571
+ return import_evolution16.Data.withSchema(StakingDatumSchema, DEFAULT_SCHEMA_OPTIONS).toCBORHex(
5670
5572
  d
5671
5573
  );
5672
5574
  }
@@ -5681,7 +5583,7 @@ var import_lucid23 = require("@lucid-evolution/lucid");
5681
5583
  var _stakingValidator = {
5682
5584
  type: "PlutusScriptV3",
5683
5585
  description: "Generated by Aiken",
5684
- cborHex: "591dfb591df8010100229800aba2aba1aba0aab9faab9eaab9dab9cab9a4888888896600264653001300900198049805000cdc3a400530090024888966002600460126ea800e33001300a3754007370e90004dc3a4009370e90034dc3a4010911114c004c0480166024602600b2232598009803800c4c8c96600260300050048b202a375c602c00260246ea800e2b3001300a0018acc004c048dd5001c00a2c809a2b300130060018acc004c048dd5001c00a2c809a2b30013005001899192cc004c06000a0091640546eb4c058004c048dd5001c566002600800315980098091baa003801459013456600266e1d200a0018acc004c048dd5001c00a2c809a2b30013370e9006000c56600260246ea800e00516404d16403c807900f201e403c807900f18081baa0024888cc004030660026e9520009180b180b800c888c8cc88cc008008004896600200300389919912cc004cdc8803801456600266e3c01c00a20030064061133005005301f00440606eb8c060004dd6980c800980d800a0323232330010010062259800800c00e2646644b30013372201200515980099b8f0090028800c01901944cc014014c0800110191bae301900137566034002603800280d052f5bded8c029000488c8cc00400400c896600200314bd7044cc8966002600a00513301a00233004004001899802002000a02a3019001301a001405d259800980398091baa0018980b18099baa0018b20209180b180b980b980b980b800c88c8cc00400400c88cc00c004c00800a44646600200200644b30010018a508acc004cdc79bae30190010038a51899801001180d000a026405d23016301730170019baf4c0103d87a800048888888888c8cc896600266e1d200c301e3754033132332259800980b98109baa0018992cc004c06cc088dd5000c4cc8966002605200313259800980d98129baa00189919912cc004c0b40062660226eb0c0b0004896600200513259800981098159baa00189980998061bab3015302c37540466eb8c0bcc0b0dd5000c5902919198008009bac3019302c375400e44b30010018a60103d87a80008992cc006600260260034a14a2815a2003133003003303200240ac64b30013371e6eb8c0c400402e26038660606062606400297ae08a6103d87a800040ac6eb0c0c000502e44c8c8cc896600260660071300530330068b2060375c60600026eb8c0c0008c0c0004dd6181700120588b2054375a60540026056002604c6ea80062c8118c03cc02cc094dd5180918129baa30280018b204c375c604c60466ea800660026eb0c040c08cdd500d4c030c08cdd5014d30103d87980004019164080604a60446ea8c094c088dd5180798111baa30253022375400316407c6002002660046eb0c08cc080dd500b808912cc004006297ae089981198101812000998010011812800a0448acc004c050c078dd5007c4cc88c8cc89660026032003132598009814800c4cc010c0a000400e2c8130c090dd5002c5660026038003132598009814800c4c9660026036604a6ea800626464646644b3001302f0038998099bac302e004225980080144cc03401002e2646644b300130340018992cc004c098c0c0dd5000c4c8c8cc8966002607200713009303900a8b206c375a606c0026eb4c0d8008c0d8004c0c4dd5000c5902e1819800c590311bad303100130320013758606000481722c8160c0b0004dd718160019816000981580098131baa0018b204630280018b204c3024375400b16408481086600260426ea807244b30010018800c54cc088008400502148a6002005375c604e60486ea80066eb8c044c090dd5000a02091198059bac3027302830283028302830283028302830283024375400400322259800980d000c52f5bded8c113232330010014bd6f7b630112cc00400626605466ec0dd48031ba60034bd6f7b63044ca60026eb8c0a00066eacc0a4006605a0049112cc004cdc8005001c4cc0b8cdd81ba900a374c00e00b15980099b8f00a00389981719bb037520146e9801c00626605c66ec0dd48019ba60023300600600140a4814860560028148c8cc0040052f5bded8c044b300100189981499bb037520086ea000d2f5bded8c113298009bae30270019bad302800198160012444b30013372001000713302d337606ea4020dd4003802c56600266e3c02000e26605a66ec0dd48041ba800700189981699bb037520066ea0008cc01801800502820501815000a0504089222232330010010052259800800c4cc0a8cdd81ba9005375000897adef6c608994c004dd71814000cdd69814800cc0b40092225980099b9000900389981719bb037520126ea00200162b30013371e01200719800804c02200523302f337606ea4028dd40008014400500744cc0b8cdd81ba900337500046600c00c00281490290c0ac00502948888c8cc004004014896600200313302a337606ea4014dd300225eb7bdb1822653001375c605000337566052003302d00248896600266e4002400e26605c66ec0dd48049ba60080058acc004cdc7804801c6600201300880148cc0bccdd81ba900a374c0020051001401d13302e337606ea400cdd300119803003000a05240a4302b00140a5259800800c528c5282048891111192cc004c07400600513003001409466e0001000e4646600200200444b30010018a5eb7bdb1822646605066ec0c094004dd319198008009bab30270022259800800c52f5bded8c11323302b3376060500026ea0cdc0a40006eb4c0a4004cc00c00cc0b4008c0ac0050291980180198150011814000a04c92cc004c060c088dd5000c48c8cdd7981418129baa302830253754004002604e60486ea800a246466ebcc0a0c094dd5001000981398121baa0024081374a90024dd2a400491111111111114c004a60026eb8c0ccc0c0dd5000cdd7180e98181baa001a4004805244653001001801c0090011112cc00400a200313298008024c0e400f30010029bae30340019bab303500191111192cc004c0480060051300300140e06465300100180340150011112cc00400a200313298008024c10c00f30010029bae303e0019bad303f001802a0304010608200481f9404100d2008303700240d52298009bae303430313754005375c603c60626ea800a002805a4466038004600a002911119192cc004c0a804e264b3001302b3035375402f1323298009980d000814cc0ecc0e0dd500ccdd6181d981e181e0012444b30013030303a37540071323322598009821000c4cc8966002608800313232598009980fa4811d496e76616c696420696e707574206265696e672076616c696461746564003375e608a60846ea801cc114c108dd500245660026603e9201375472616e73616374696f6e206d757374206265207369676e6564206279206f776e6572206f66207374616b696e6720706f736974696f6e003301d03900d8acc004cc07d241204d757374206d696e742065786163746c792031207374616b696e67546f6b656e003375e605660846ea80e4dd31809981798211baa0488acc004cc07d24011f496e636f7272656374205374616b696e674d616e61676572206f75747075740098008044c050cc1100192f5c1301533044303033044303033044375066e00dd6982298211baa00900130463042375401297ae04bd704dd5981798211baa302f304237540094c0103d8798000403913301f490120496e636f7272656374205374616b696e67506f736974696f6e206f757470757400598009980b180a1982200325eb8000a2b30013375e605060846ea8008c054cc110c050cc110c0c0cc110dd48069982226101800033044302f3042375401297ae04bd7025eb82330013756605e60846ea800a660246026605e60846ea8120cc044c0a0c108dd5024000d30103d87a8000403d14a081fa294103f4528207e8a5040fd14a081fa294103f1980e9bab302e30413754002604e60826ea811cc10c0062c8208c104004cc0a4cc030010c040cc1000092f5c04660466eacc0b0c0fcdd50009816181f9baa0458b207e303f303c3754605260786ea8006600200b303f303c37540854c103d8798000407c607c60766ea800e2c81c06eb0c0e8004c0d8dd5016c5282066375c6070606a6ea80be264b3001302e0148acc004c0acc0d4dd500bc4c8c8c966002605c60706ea800626644b3001303f00189919198160008acc004cc0692411f4d7573742061646a75737420706f736974696f6e206f7220756e7374616b650032598009818000c528c566002606200314a314a081d903b181e1baa00189980d24810e4d697865642076657273696f6e73003375e60566607e0086607e980103d87a80004bd701820181e9baa302a303d375400514a081d0cc01cc0fcc0f0dd50009bab303f304030403040304030403040304030403040006303e0018b2078303c30393754607860726ea8c098c0e4dd5181e181c9baa00198008014c098c0e4dd501fd300103d879800040711640d8660340020526eb0c0e8004c0d8dd5016c52820668994c0044cdc12800a800cdd7a6101a00094c005220100a44100800a024488966002605c0311598009817981c9baa01b8cc004c0f4c0e8dd500dc8966002003149a264b30010018a4d1325980099b90375c607a60820066eb8c0f4006266008008660800026084005153303c4901326b65797320696e206173736f63696174697665206c697374206172656e277420696e20617363656e64696e67206f72646572001640ec608000281f0c10000503d4888c8cc004004010896600200310048998019821000998010011821800a08094c00400691100a44100409d2232330010010032259800800c528c5660026006608200313300200230420018a5040ec81fa44b30010018a40011337009001198010011820000a07a981d1baa03148888888ca6002660480020673758608a608c608c0053003003488966002607460886ea800e330013048304537540073017330473048304930493049304930493045375409697ae0cc0040126090608a6ea812e980103d879800040a09112cc004c1300062664466446644b30013302b4911d496e76616c696420696e707574206265696e672076616c696461746564003375e60a2609c6ea8024c144c138dd5000c5660026605692011643616e206e6f74206d696e7420616e7920746f6b656e0030163037304e375408b15980099815a4810f4e6f20494e4459207374616b657273003371090001bad3051304e375402915980099815a492c436f6c6c6563746f7220696e70757473206d75737420757365207468652072696768742072656465656d657200330100062323322598009823800c56600260a46ea800e00516414d1598009825000c56600260a46ea800e00516414d1598009823000c56600260a46ea800e00516414d16413c827904f0981a80098279baa0013301a3052304f37540026eacc148c14cc14cc14cc14cc14cc14cc14cc14cc14cc13cdd5023456600266056920126436f6c6c6563746f72206f7574707574732063616e20636f6e7461696e206f6e6c7920414441003301000523375e6078609e6ea8004dd3180b18091bab303c304f375400315980099815a481404661696c20746f2072657475726e207468652073616d65206e756d626572206f66205554784f7320746f2074686520636f6c6c6563746f722061646472657373005980099b87300a006300a0058998080029181a181e18279baa3052304f375400314a0825a2b30013302b49013e4d6f7265207468616e20393525206f66207468652064697374726962757461626c652076616c75652068617320746f206265206469737472696275746564003371000666e0c0112028899815a4811f496e636f7272656374205374616b696e674d616e61676572206f7574707574009800805cc080cc140c144c138dd5181d98271baa0094bd704c084cc140c0f0cc140c0f0cc140c144c138dd500a19828181e198281ba8337006eb4c144c138dd5181d98271baa0143370666e08009405cdd6982898271baa0144bd7025eb812f5c097ae0992cc004c11000e200319800800d2210099190011980a80a8009982899bb04c01014000375000697adef6c6091111192cc004c0b0006005130030014148653001004a4500804c8888a600200b003802400a002803102e2815204e41306eacc0ecc138dd5181d98271baa001a60103d87a8000406914a0825a294104b452820968a50412d14a0825a294104b4528209633702004002609e00b3001002a40012233700002601e6eacc0e4c130dd5181c98261baa00240393001001a40012233700002601e6eacc0e4c130dd5001201c3303300723375e609860926ea8c130c124dd5181b18249baa0010033301600530363304a0024bd7045904922c82106eb0c11000514a081ba3300122230043370666e08cdc09bad3040303d37540046eb4c100c0f4dd5001800a803488c966002606a60786ea8006264646600200200a44b30010018a5eb8226644b30013371000a6eb4c114c118c108dd51822982300144cc110dd380119802002000c4cc01001000503f1bac3043001304400141046eb4c100c0f4dd5000c5903a181f981e1baa303f303c37540032303e303f303f303f303f303f303f303f001488966002606003713259800981b181e9baa01f89919914c004dd618220014dd5982218229822982298229822982298228014cc08c0040ca608860826ea8089222259800981d18221baa00289919912cc004c13000626644b3001304e001899192cc004c104c12cdd5000c4c96600260a20031323302d001133225980099816a4811d496e76616c696420696e707574206265696e672076616c696461746564003375e60a660a06ea802cc14cc140dd500445660026605a92010e4d697865642076657273696f6e73003375e60a660a06ea8028c14cc140dd5182998281baa303d3050375400d15980099816a49295374616b696e67206d616e61676572206973206e6f7420636f6e73756d656420636f72726563746c79003233040001130360013301b30533050375400c01d15980099816a48126546865207472616e73616374696f6e206973206e6f74207369676e6564206279206f776e6572003302b047375c60a660a06ea80322b30013302d490120457863656564206d6178696d756d207769746864726177616c20616d6f756e740033712646600200200444b30010018a400113233225980099b880020018800c40090521bad30563053375460ac60ae0026600600660ae0046eb0c15400505319b800020138acc004cc0b524011f496e636f7272656374205374616b696e674d616e61676572206f7574707574009800807cc088cc1480292f5c1302333052303e33052303e33052375066e00dd6982998281baa00301330543050375400697ae04bd704cc080dd5981e98281baa303d3050375400c604b3001303630503754019303d3050375400700240594c0103d8798000407115980099816a491643616e206e6f74206d696e7420616e7920746f6b656e00301830393050375408f13302d49120496e636f7272656374205374616b696e67506f736974696f6e206f7574707574009800807cc088cc1480292f5c1302333052302233052303e33052305330503754018660a46e9c004cc148c0f4c140dd5001a5eb812f5c097ae0998101bab303d30503754607a60a06ea8020cc07cc0d8c140dd502b009d30103d87a8000407114a0826a294104d4528209a8a50413514a0826a294104d4528209a3302a37566076609c6ea8c0ecc138dd5004981a18271baa0543301337586076609c6ea8028c048c138dd50229828000c5904e18261baa0018b209230353031304b3754607060966ea8004c1340062c8258c12c0066002011304b3048375409d4c103d879800040ad1641246092608c6ea8c0ccc118dd5000cc00401a6066608c6ea813298103d879800040a46090608a6ea800a2c8210608660860026eb0c108004c0f8dd501ac5282076375a6080607a6ea80de2b3001302f01b8acc004c0d4c0f0dd500f44cc88cc8a60026eb0c11000a6eacc110c114c114c114c114c114c114c11400a660460020653044304137540453004004488889660026076608a6ea800e2646644b3001304d001899912cc004c13c00626464b30013042304c3754003132598009829000c4c8cc0b80044c9660026605a9211d496e76616c696420696e707574206265696e672076616c696461746564003375e60a660a06ea8028c14cc140dd5003c5660026605a92010e4d697865642076657273696f6e73003375e60a660a06ea8024c14cc140dd5182998281baa303d3050375400b15980099816a49295374616b696e67206d616e61676572206973206e6f7420636f6e73756d656420636f72726563746c79003233040001130360013301b30533050375400a01d15980099816a48126546865207472616e73616374696f6e206973206e6f74207369676e6564206279206f776e6572003302b047375c60a660a06ea80322b30013302d49011b43616e206e6f7420756e7374616b65206c6f636b65642066756e64003045300b330153758607a60a06ea8030c050c140dd5023c5660026605a9201184d757374206275726e2031207374616b696e67546f6b656e003375e607260a06ea811cdd318129810981e98281baa056899816a4811f496e636f7272656374205374616b696e674d616e61676572206f7574707574009800807cc088cc1480252f5c1302333052303e33052303e33052375066e04dd6982998281baa00200130543050375400497ae04bd704cc080dd5981e98281baa303d3050375400a604b3001303630503754019303d3050375400500140594c0103d8798000407114a0826a294104d4528209a8a50413514a0826a294104d198159bab303c304f37546078609e6ea8024c0d4c13cdd502a9828800c5904f18269baa0018b209430363032304c3754607260986ea8004c1380062c8260c1300066002013304c3049375409f4c103d879800040b11641286094608e6ea8c0d0c11cdd5000cc00401e6068608e6ea813698103d879800040a86092608c6ea800e2c8218608660860026eb0c1080048966002003148002266e0120023300200230430014100607a6ea80d2294103a456600266e1d200a01b8acc004c0d4c0f0dd500f44c8c96600260860031598009980e249094d75737420766f74650032332259800981b800c4c966002608e0031323259800981d000c566002608a6ea800a00b164119159800981e800c566002608a6ea800a00b1641191641088210c10cdd50009823000c5904418211baa0038acc004c0e80062646644b300130490018992cc004c0ecc114dd5000c4c8c8cc8966002609c00700a8b2096375a60960026eb8c12c008c12c004c118dd5000c590431824000c590461bad30460013047001304237540071640fc81f8566002606a607e6ea80062946294103d181f9baa0013300a3042303f375460840026eacc108c10cc10cc10cc10cc10cc10cc10cc10cc10c00a2660389201124d757374206d696e74206e6f20746f6b656e0030073028303f375406d14a081e22c820260026eb0c1040066082608460846084607c6ea811298103d87980004084607a6ea80d2294103a454cc0ed24010472646d72001640e881d103a1037052080897a40cc4464b3001302d303737540031303b303837540031640d464646600200200644b30010018a6103d87a80008992cc004cdd7802181d000c4c0a4cc0f4c0ec0052f5c1133003003303f00240e0607a00281d8c024cc0e40092f5c0819088888c8cc004004cc094018c038014896600200314a1159800992cc004cdd79811181e1baa0010068cc004dd59814981e1baa001802c01100945282072303e0018a51899801001181f800a07040f044464b30010018a518acc004c0ec006264653001375c6078003375a6078607a003375c60780049112cc004cdc7800a441008acc004cdc7801a441008acc004c0c4c0ecdd5003c56600266e252000002899b89002482026fb80a294103944cdc4a400000481ca294103945282072181e0009bac303a0018a5040e081c0c8cc004004cc01c010c03000c896600200314bd7044c8cc88cc88cc00800800489660020031003899198201ba733040375200a66080607a00266080607c00297ae0330030033042002304000140f86eacc0ec00cdd7181c00099801801981e801181d800a0720c084dd5001912cc004c060c088dd500144c8cc8966002605400313300630290010048b204e375a604e002605000260466ea800a2c8100c088c07cdd5007912cc004c058c080dd500144c8c966002604e0050038b2048375a604a00260426ea800a2c80f22c80e101c111191980600211801180798111baa00159800980a980f9baa00189198029bab300e30213754002007123371090004c004dd5980718109baa0019bae302430213754007375c601c60426ea800d00d203a2232330010010032259800800c5300103d87a80008992cc004cdd7981298111baa0010048980819812000a5eb82266006006604c00480f8c09000502211180b4c00400a6eb8c084c078dd5000cdd71805980f1baa001402822c8038601200260086ea802629344d95900101"
5586
+ cborHex: "591dff591dfc010100229800aba2aba1aba0aab9faab9eaab9dab9cab9a4888888896600264653001300900198049805000cdc3a400530090024888966002600460126ea800e33001300a3754007370e90004dc3a4009370e90034dc3a4010911114c004c0480166024602600b2232598009803800c4c8c96600260300050048b202a375c602c00260246ea800e2b3001300a0018acc004c048dd5001c00a2c809a2b300130060018acc004c048dd5001c00a2c809a2b30013005001899192cc004c06000a0091640546eb4c058004c048dd5001c566002600800315980098091baa003801459013456600266e1d200a0018acc004c048dd5001c00a2c809a2b30013370e9006000c56600260246ea800e00516404d16403c807900f201e403c807900f18081baa0024888cc004030660026e9520009180b180b800c888c8cc88cc008008004896600200300389919912cc004cdc8803801456600266e3c01c00a20030064061133005005301f00440606eb8c060004dd6980c800980d800a0323232330010010062259800800c00e2646644b30013372201200515980099b8f0090028800c01901944cc014014c0800110191bae301900137566034002603800280d052f5bded8c029000488c8cc00400400c896600200314bd7044cc8966002600a00513301a00233004004001899802002000a02a3019001301a001405d259800980398091baa0018980b18099baa0018b20209180b180b980b980b980b800c88c8cc00400400c88cc00c004c00800a44646600200200644b30010018a508acc004cdc79bae30190010038a51899801001180d000a026405d23016301730170019baf4c0103d87a800048888888888c8cc896600266e1d200c301e3754033132332259800980b98109baa0018992cc004c06cc088dd5000c4cc8966002605200313259800980d98129baa00189919912cc004c0b40062660226eb0c0b0004896600200513259800981098159baa00189980998061bab3015302c37540466eb8c0bcc0b0dd5000c5902919198008009bac3019302c375400e44b30010018a60103d87a80008992cc006600260260034a14a2815a2003133003003303200240ac64b30013371e6eb8c0c400402e26038660606062606400297ae08a6103d87a800040ac6eb0c0c000502e44c8c8cc896600260660071300530330068b2060375c60600026eb8c0c0008c0c0004dd6181700120588b2054375a60540026056002604c6ea80062c8118c03cc02cc094dd5180918129baa30280018b204c375c604c60466ea800660026eb0c040c08cdd500d4c030c08cdd5014d30103d87980004019164080604a60446ea8c094c088dd5180798111baa30253022375400316407c6002002660046eb0c08cc080dd500b808912cc004006297ae089981198101812000998010011812800a0448acc004c050c078dd5007c4cc88c8cc89660026032003132598009814800c4cc010c0a000400e2c8130c090dd5002c5660026038003132598009814800c4c9660026036604a6ea800626464646644b3001302f0038998099bac302e004225980080144cc03401002e2646644b300130340018992cc004c098c0c0dd5000c4c8c8cc8966002607200713009303900a8b206c375a606c0026eb4c0d8008c0d8004c0c4dd5000c5902e1819800c590311bad303100130320013758606000481722c8160c0b0004dd718160019816000981580098131baa0018b204630280018b204c3024375400b16408481086600260426ea807244b30010018800c54cc088008400502148a6002005375c604e60486ea80066eb8c044c090dd5000a02091198059bac3027302830283028302830283028302830283024375400400322259800980d000c52f5bded8c113232330010014bd6f7b630112cc00400626605466ec0dd48031ba60034bd6f7b63044ca60026eb8c0a00066eacc0a4006605a0049112cc004cdc8005001c4cc0b8cdd81ba900a374c00e00b15980099b8f00a00389981719bb037520146e9801c00626605c66ec0dd48019ba60023300600600140a4814860560028148c8cc0040052f5bded8c044b300100189981499bb037520086ea000d2f5bded8c113298009bae30270019bad302800198160012444b30013372001000713302d337606ea4020dd4003802c56600266e3c02000e26605a66ec0dd48041ba800700189981699bb037520066ea0008cc01801800502820501815000a0504089222232330010010052259800800c4cc0a8cdd81ba9005375000897adef6c608994c004dd71814000cdd69814800cc0b40092225980099b9000900389981719bb037520126ea00200162b30013371e01200719800804c02200523302f337606ea4028dd40008014400500744cc0b8cdd81ba900337500046600c00c00281490290c0ac00502948888c8cc004004014896600200313302a337606ea4014dd300225eb7bdb1822653001375c605000337566052003302d00248896600266e4002400e26605c66ec0dd48049ba60080058acc004cdc7804801c6600201300880148cc0bccdd81ba900a374c0020051001401d13302e337606ea400cdd300119803003000a05240a4302b00140a5259800800c528c5282048891111192cc004c07400600513003001409466e0001000e4646600200200444b30010018a5eb7bdb1822646605066ec0c094004dd319198008009bab30270022259800800c52f5bded8c11323302b3376060500026ea0cdc0a40006eb4c0a4004cc00c00cc0b4008c0ac0050291980180198150011814000a04c92cc004c060c088dd5000c48c8cdd7981418129baa302830253754004002604e60486ea800a246466ebcc0a0c094dd5001000981398121baa0024081374a90024dd2a400491111111111114c004a60026eb8c0ccc0c0dd5000cdd7180e98181baa001a4004805244653001001801c0090011112cc00400a200313298008024c0e400f30010029bae30340019bab303500191111192cc004c0480060051300300140e06465300100180340150011112cc00400a200313298008024c10c00f30010029bae303e0019bad303f001802a0304010608200481f9404100d2008303700240d52298009bae303430313754005375c603c60626ea800a002805a4466038004600a002911119192cc004c0a804e264b3001302b3035375402f1323298009980d000814cc0ecc0e0dd500ccdd6181d981e181e0012444b30013030303a37540071323322598009821000c4cc8966002608800313232598009980fa4811d496e76616c696420696e707574206265696e672076616c696461746564003375e608a60846ea801cc114c108dd500245660026603e9201375472616e73616374696f6e206d757374206265207369676e6564206279206f776e6572206f66207374616b696e6720706f736974696f6e003301d03900d8acc004cc07d241204d757374206d696e742065786163746c792031207374616b696e67546f6b656e003375e605660846ea80e4dd31809981798211baa0488acc004cc07d24011f496e636f7272656374205374616b696e674d616e61676572206f75747075740098008044c050cc1100192f5c1301533044303033044303033044375066e00dd6982298211baa00900130463042375401297ae04bd704dd5981798211baa302f304237540094c0103d8798000403913301f490120496e636f7272656374205374616b696e67506f736974696f6e206f757470757400598009980b180a1982200325eb8000a2b30013375e605060846ea8008c054cc110c050cc110c0c0cc110dd48069982226101800033044302f3042375401297ae04bd7025eb82330013756605e60846ea800a660246026605e60846ea8120cc044c0a0c108dd5024000d30103d87a8000403d14a081fa294103f4528207e8a5040fd14a081fa294103f1980e9bab302e30413754002604e60826ea811cc10c0062c8208c104004cc0a4cc030010c040cc1000092f5c04660466eacc0b0c0fcdd50009816181f9baa0458b207e303f303c3754605260786ea8006600200b303f303c37540854c103d8798000407c607c60766ea800e2c81c06eb0c0e8004c0d8dd5016c5282066375c6070606a6ea80be264b3001302e0148acc004c0acc0d4dd500bc4c8c8c966002605c60706ea800626644b3001303f00189919198160008acc004cc0692411f4d7573742061646a75737420706f736974696f6e206f7220756e7374616b650032598009818000c528c566002606200314a314a081d903b181e1baa00189980d24810e4d697865642076657273696f6e73003375e60566607e0086607e980103d87a80004bd701820181e9baa302a303d375400514a081d0cc01cc0fcc0f0dd50009bab303f304030403040304030403040304030403040006303e0018b2078303c30393754607860726ea8c098c0e4dd5181e181c9baa00198008014c098c0e4dd501fd300103d879800040711640d8660340020526eb0c0e8004c0d8dd5016c5282066899912cc004c0b005a2b3001302d3037375403319800981d981c1baa019912cc00400629344c966002003149a264b3001337206eb8c0ecc0fc00cdd7181d800c4cc010010cc0f8004c10000a2a66074921326b65797320696e206173736f63696174697665206c697374206172656e277420696e20617363656e64696e67206f72646572001640e4607c00281e0c0f800503b4888c8cc004004010896600200310048998019820000998010011820800a07c94c00400691100a4410040952232330010010032259800800c528c5660026006607e00313300200230400018a5040e481ea44b30010018a4001133700900119801001181f000a076981c1baa02f48888888ca60026604400206337586086608860880053003003488966002607060846ea800e330013046304337540073015330453046304730473047304730473043375409297ae0cc004012608c60866ea8126980103d879800040989112cc004c1280062664466446644b3001330294911d496e76616c696420696e707574206265696e672076616c696461746564003375e609e60986ea8024c13cc130dd5000c5660026605292011643616e206e6f74206d696e7420616e7920746f6b656e0030153035304c375408715980099814a4810f4e6f20494e4459207374616b657273003371090001bad304f304c375402915980099814a492c436f6c6c6563746f7220696e70757473206d75737420757365207468652072696768742072656465656d657200330100062323322598009822800c56600260a06ea800e0051641451598009824000c56600260a06ea800e0051641451598009822000c56600260a06ea800e005164145164134826904d0981980098269baa001330183050304d37540026eacc140c144c144c144c144c144c144c144c144c144c134dd5022456600266052920126436f6c6c6563746f72206f7574707574732063616e20636f6e7461696e206f6e6c7920414441003301000523375e6074609a6ea8004dd3180b98091bab303a304d375400315980099814a481404661696c20746f2072657475726e207468652073616d65206e756d626572206f66205554784f7320746f2074686520636f6c6c6563746f722061646472657373005980099b87300a006300a00589980800291819181d18269baa3050304d375400314a0824a2b30013302949013e4d6f7265207468616e20393525206f66207468652064697374726962757461626c652076616c75652068617320746f206265206469737472696275746564003371000666e0c0112028899814a4811f496e636f7272656374205374616b696e674d616e61676572206f7574707574009800805cc078cc138c13cc130dd5181c98261baa0094bd704c07ccc138c0e8cc138c0e8cc138c13cc130dd500a19827181d198271ba8337006eb4c13cc130dd5181c98261baa0143370666e080092080c0a8ca9a3a375a609e60986ea80512f5c097ae04bd7025eb8264b300130420038800c660020034890099190011980a80a8009982799bb04c01014000375000697adef6c6091111192cc004c0a8006005130030014140653001004a4500804c8888a600200b003802400a002803102c2814204a41286eacc0e4c130dd5181c98261baa001a60103d87a8000406114a0824a2941049452820928a50412514a0824a29410494528209233702004002609a00b3001002a40012233700002601e6eacc0dcc128dd5181b98251baa00240393001001a40012233700002601e6eacc0dcc128dd5001201c3303100723375e6094608e6ea8c128c11cdd5181a18239baa001003330140053034330480024bd7045904722c82006eb0c10800514a081aa3300122230053370666e08cdc09bad303e303b37540046eb4c0f8c0ecdd5001800a410181519534752232598009819981d1baa0018991919800800802912cc004006297ae0899912cc004cdc40029bad304330443040375460866088005133042374e0046600800800313300400400140f46eb0c104004c10800503f1bad303e303b37540031640e0607a60746ea8c0f4c0e8dd5000c8c0f0c0f4c0f4c0f4c0f4c0f4c0f4c0f400522259800981700cc4c966002606860766ea80762646645300137586084005375660846086608660866086608660866086005330210010309821181f9baa0204888966002607060846ea800a2646644b3001304a001899912cc004c13000626464b3001303f30493754003132598009827800c4c8cc0ac0044cc8966002660569211d496e76616c696420696e707574206265696e672076616c696461746564003375e60a2609c6ea802cc144c138dd500445660026605692010e4d697865642076657273696f6e73003375e60a2609c6ea8028c144c138dd5182898271baa303b304e375400d15980099815a49295374616b696e67206d616e61676572206973206e6f7420636f6e73756d656420636f72726563746c7900323303e00113034001330193051304e375400c01d15980099815a48126546865207472616e73616374696f6e206973206e6f74207369676e6564206279206f776e65720033029045375c60a2609c6ea80322b30013302b490120457863656564206d6178696d756d207769746864726177616c20616d6f756e740033712646600200200444b30010018a400113233225980099b880020018800c40090501bad30543051375460a860aa0026600600660aa0046eb0c14c00505119b800020138acc004cc0ad24011f496e636f7272656374205374616b696e674d616e61676572206f7574707574009800807cc080cc1400292f5c1302133050303c33050303c33050375066e00dd6982898271baa0030133052304e375400697ae04bd704cc078dd5981d98271baa303b304e375400c604730013034304e3754019303b304e375400700240594c0103d8798000406915980099815a491643616e206e6f74206d696e7420616e7920746f6b656e0030173037304e375408b13302b49120496e636f7272656374205374616b696e67506f736974696f6e206f7574707574009800807cc080cc1400292f5c1302133050302033050303c330503051304e3754018660a06e9c004cc140c0ecc138dd5001a5eb812f5c097ae09980f1bab303b304e37546076609c6ea8020cc074c0d0c138dd502a009d30103d87a8000406914a0825a294104b452820968a50412d14a0825a294104b45282096330283756607260986ea8c0e4c130dd5004981918261baa052330133758607260986ea8028c048c130dd50219827000c5904c18251baa0018b208e3033302f30493754606c60926ea8004c12c0062c8248c12400660020113049304637540994c103d879800040a516411c608e60886ea8c0c4c110dd5000cc00401a606260886ea812a98103d8798000409c608c60866ea800a2c8200608260820026eb0c100004c0f0dd5019c5282072375a607c60766ea80d62b3001302d0198acc004c0ccc0e8dd500e44cc88cc8a60026eb0c10800a6eacc108c10cc10cc10cc10cc10cc10cc10c00a660420020613042303f3754041300400448888966002607260866ea800e2646644b3001304b001899912cc004c13400626464b30013040304a3754003132598009828000c4c8cc0b00044c966002660569211d496e76616c696420696e707574206265696e672076616c696461746564003375e60a2609c6ea8028c144c138dd5003c5660026605692010e4d697865642076657273696f6e73003375e60a2609c6ea8024c144c138dd5182898271baa303b304e375400b15980099815a49295374616b696e67206d616e61676572206973206e6f7420636f6e73756d656420636f72726563746c7900323303e00113034001330193051304e375400a01d15980099815a48126546865207472616e73616374696f6e206973206e6f74207369676e6564206279206f776e65720033029045375c60a2609c6ea80322b30013302b49011b43616e206e6f7420756e7374616b65206c6f636b65642066756e64003043300b3301537586076609c6ea8030c050c138dd5022c566002660569201184d757374206275726e2031207374616b696e67546f6b656e003375e606e609c6ea8114dd31811980f981d98271baa054899815a4811f496e636f7272656374205374616b696e674d616e61676572206f7574707574009800807cc080cc1400252f5c1302133050303c33050303c33050375066e04dd6982898271baa0020013052304e375400497ae04bd704cc078dd5981d98271baa303b304e375400a604730013034304e3754019303b304e375400500140594c0103d8798000406914a0825a294104b452820968a50412d14a0825a294104b198149bab303a304d37546074609a6ea8024c0ccc134dd50299827800c5904d18259baa0018b209030343030304a3754606e60946ea8004c1300062c8250c1280066002013304a3047375409b4c103d879800040a91641206090608a6ea8c0c8c114dd5000cc00401e6064608a6ea812e98103d879800040a0608e60886ea800e2c8208608260820026eb0c1000048966002003148002266e01200233002002304100140f860766ea80ca2941038456600266e1d200a0198acc004c0ccc0e8dd500e44c8c96600260820031598009980d249094d75737420766f74650032332259800981a800c4c966002608a0031323259800981c000c56600260866ea800a00b164111159800981d800c56600260866ea800a00b1641111641008200c104dd50009822000c5904218201baa0038acc004c0e00062646644b300130470018992cc004c0e4c10cdd5000c4c8c8cc8966002609800700a8b2092375a60920026eb8c124008c124004c110dd5000c590411823000c590441bad30440013045001304037540071640f481e85660026066607a6ea80062946294103b181e9baa001330083040303d375460800026eacc100c104c104c104c104c104c104c104c104c10400a2660349201124d757374206d696e74206e6f20746f6b656e0030063026303d375406914a081d22c81f260026eb0c0fc006607e60806080608060786ea810a98103d8798000407c60766ea80ca2941038454cc0e524010472646d72001640e081c1038103514c00522100a44100800a022375e98101a00040cc4464b3001302d303737540031303b303837540031640d464646600200200644b30010018a60103d87a80008992cc004cdd7802181d000c4c0a4cc0f4c0ec0052f5c1133003003303f00240e0607a00281d8c024cc0e40092f5c0819088888c8c8cc00400401c896600200314a1159800992cc004c0100062b30013375e6046607a6ea800401e3300137566054607a6ea800600d005402914a081d2294103a181f800c528c4cc008008c100005039207a300d0042223259800800c528c56600260760031323298009bae303c0019bad303c303d0019bae303c00248896600266e3c005221008acc004cdc7801a441008acc004c0c4c0ecdd5003c56600266e252000002899b89002482026fb80a294103944cdc4a400000481ca294103945282072181e0009bac303a0018a5040e081c0c8cc004004cc01c010c03000c896600200314bd7044c8cc88cc88cc00800800489660020031003899198201ba733040375200a66080607a00266080607c00297ae0330030033042002304000140f86eacc0ec00cdd7181c00099801801981e801181d800a0720c084dd5001912cc004c060c088dd500144c8cc8966002605400313300630290010048b204e375a604e002605000260466ea800a2c8100c088c07cdd5007912cc004c058c080dd500144c8c966002604e0050038b2048375a604a00260426ea800a2c80f22c80e101c111191980600211801180798111baa00159800980a980f9baa00189198029bab300e30213754002007123371090004c004dd5980718109baa0019bae302430213754007375c601c60426ea800d00d203a2232330010010032259800800c5300103d87a80008992cc004cdd7981298111baa0010048980819812000a5eb82266006006604c00480f8c09000502211180b4c00400a6eb8c084c078dd5000cdd71805980f1baa001402822c8038601200260086ea802629344d95900101"
5685
5587
  };
5686
5588
 
5687
5589
  // src/contracts/staking/scripts.ts
@@ -5781,34 +5683,194 @@ function calculateAdaReward(currentSnapshotAda, oldSnapshotAda, existingIndyAmou
5781
5683
  return (currentSnapshotAda - oldSnapshotAda) * existingIndyAmount / rewardSnapshotPrecision;
5782
5684
  }
5783
5685
 
5784
- // src/contracts/version-registry/types-new.ts
5785
- var import_evolution18 = require("@evolution-sdk/evolution");
5786
- var VersionRecordDatumSchema = import_evolution18.TSchema.Struct({
5787
- upgradeId: import_evolution18.TSchema.Integer,
5788
- /// Underlying representation of the following mapping: ValidatorHash -> UpgradePath
5789
- upgradePaths: import_evolution18.TSchema.Array(
5790
- import_evolution18.TSchema.Tuple([import_evolution18.TSchema.ByteArray, import_evolution18.TSchema.ByteArray])
5791
- )
5792
- });
5793
- function serialiseVersionRecordDatum(d) {
5794
- return import_evolution18.Data.withSchema(
5795
- VersionRecordDatumSchema,
5796
- DEFAULT_SCHEMA_OPTIONS
5797
- ).toCBORHex(d);
5798
- }
5799
-
5800
- // src/contracts/gov/transactions.ts
5801
- var import_cardano_offchain_common17 = require("@3rd-eye-labs/cardano-offchain-common");
5802
- async function createProposal(proposalContent, treasuryWithdrawal, sysParams, lucid, currentSlot, govOref, allIAssetOrefs) {
5803
- const network = lucid.config().network;
5804
- const currentTime = BigInt((0, import_lucid25.slotToUnixTime)(network, currentSlot));
5805
- const ownAddr = await lucid.wallet().address();
5806
- const pkh = (0, import_lucid25.paymentCredentialOf)(ownAddr);
5807
- const govRefScriptUtxo = matchSingle(
5808
- await lucid.utxosByOutRef([
5809
- fromSystemParamsScriptRef(
5810
- sysParams.scriptReferences.governanceValidatorRef
5811
- )
5686
+ // src/contracts/poll/helpers.ts
5687
+ function q(pollStatus, e) {
5688
+ if (pollStatus.yesVotes + pollStatus.noVotes === 0n)
5689
+ return { getOnChainInt: 0n };
5690
+ else {
5691
+ const q2 = ocdDiv(
5692
+ { getOnChainInt: pollStatus.yesVotes },
5693
+ { getOnChainInt: BigInt(Math.floor(Math.sqrt(Number(e)))) }
5694
+ ).getOnChainInt - ocdDiv(
5695
+ { getOnChainInt: pollStatus.noVotes },
5696
+ {
5697
+ getOnChainInt: BigInt(
5698
+ Math.floor(
5699
+ Math.sqrt(Number(pollStatus.yesVotes + pollStatus.noVotes))
5700
+ )
5701
+ )
5702
+ }
5703
+ ).getOnChainInt;
5704
+ return { getOnChainInt: BigInt(q2) };
5705
+ }
5706
+ }
5707
+ function pollPassQuorum(pollStatus, electorate, minQuorum) {
5708
+ return pollStatus.yesVotes + pollStatus.noVotes >= minQuorum && q(pollStatus, electorate).getOnChainInt > 50000n;
5709
+ }
5710
+
5711
+ // src/contracts/version-registry/types-new.ts
5712
+ var import_evolution17 = require("@evolution-sdk/evolution");
5713
+ var VersionRecordDatumSchema = import_evolution17.TSchema.Struct({
5714
+ upgradeId: import_evolution17.TSchema.Integer,
5715
+ /// Underlying representation of the following mapping: ValidatorHash -> UpgradePath
5716
+ upgradePaths: import_evolution17.TSchema.Array(
5717
+ import_evolution17.TSchema.Tuple([import_evolution17.TSchema.ByteArray, import_evolution17.TSchema.ByteArray])
5718
+ )
5719
+ });
5720
+ function serialiseVersionRecordDatum(d) {
5721
+ return import_evolution17.Data.withSchema(
5722
+ VersionRecordDatumSchema,
5723
+ DEFAULT_SCHEMA_OPTIONS
5724
+ ).toCBORHex(d);
5725
+ }
5726
+
5727
+ // src/contracts/poll/types-poll-new.ts
5728
+ var import_evolution18 = require("@evolution-sdk/evolution");
5729
+ var import_cardano_offchain_common15 = require("@3rd-eye-labs/cardano-offchain-common");
5730
+ var import_fp_ts14 = require("fp-ts");
5731
+ var import_ts_pattern16 = require("ts-pattern");
5732
+ var PollStatusSchema = import_evolution18.TSchema.Struct({
5733
+ yesVotes: import_evolution18.TSchema.Integer,
5734
+ noVotes: import_evolution18.TSchema.Integer
5735
+ });
5736
+ var PollManagerContentSchema = import_evolution18.TSchema.Struct({
5737
+ pollId: import_evolution18.TSchema.Integer,
5738
+ pollOwner: import_evolution18.TSchema.ByteArray,
5739
+ content: ProposalContentSchema,
5740
+ treasuryWithdrawal: import_evolution18.TSchema.NullOr(TreasuryWithdrawalSchema),
5741
+ status: PollStatusSchema,
5742
+ votingEndTime: import_evolution18.TSchema.Integer,
5743
+ createdShardsCount: import_evolution18.TSchema.Integer,
5744
+ talliedShardsCount: import_evolution18.TSchema.Integer,
5745
+ totalShardsCount: import_evolution18.TSchema.Integer,
5746
+ proposingEndTime: import_evolution18.TSchema.Integer,
5747
+ expirationTime: import_evolution18.TSchema.Integer,
5748
+ protocolVersion: import_evolution18.TSchema.Integer,
5749
+ minimumQuorum: import_evolution18.TSchema.Integer
5750
+ });
5751
+ var PollShardContentSchema = import_evolution18.TSchema.Struct({
5752
+ pollId: import_evolution18.TSchema.Integer,
5753
+ status: PollStatusSchema,
5754
+ votingEndTime: import_evolution18.TSchema.Integer,
5755
+ managerAddress: import_cardano_offchain_common15.AddressSchema
5756
+ });
5757
+ var PollDatumSchema = import_evolution18.TSchema.Union(
5758
+ import_evolution18.TSchema.Struct(
5759
+ {
5760
+ PollManager: PollManagerContentSchema
5761
+ },
5762
+ { flatInUnion: true }
5763
+ ),
5764
+ import_evolution18.TSchema.Struct({ PollShard: PollShardContentSchema }, { flatInUnion: true })
5765
+ );
5766
+ var VoteOptionSchema = import_evolution18.TSchema.Union(
5767
+ import_evolution18.TSchema.Literal("Yes", { flatInUnion: true }),
5768
+ import_evolution18.TSchema.Literal("No", { flatInUnion: true })
5769
+ );
5770
+ var PollShardRedeemerSchema = import_evolution18.TSchema.Union(
5771
+ import_evolution18.TSchema.Struct({ Vote: VoteOptionSchema }, { flatInUnion: true }),
5772
+ import_evolution18.TSchema.Struct(
5773
+ {
5774
+ MergeShards: import_evolution18.TSchema.Struct(
5775
+ {
5776
+ currentTime: import_evolution18.TSchema.Integer,
5777
+ pollManagerRef: import_cardano_offchain_common15.OutputReferenceSchema
5778
+ },
5779
+ { flatFields: true }
5780
+ )
5781
+ },
5782
+ { flatInUnion: true }
5783
+ )
5784
+ );
5785
+ var PollManagerRedeemerSchema = import_evolution18.TSchema.Union(
5786
+ import_evolution18.TSchema.Struct(
5787
+ {
5788
+ EndPoll: import_evolution18.TSchema.Struct(
5789
+ { currentTime: import_evolution18.TSchema.Integer },
5790
+ { flatFields: true }
5791
+ )
5792
+ },
5793
+ { flatInUnion: true }
5794
+ ),
5795
+ import_evolution18.TSchema.Struct(
5796
+ {
5797
+ CreateShards: import_evolution18.TSchema.Struct(
5798
+ { currentTime: import_evolution18.TSchema.Integer },
5799
+ { flatFields: true }
5800
+ )
5801
+ },
5802
+ { flatInUnion: true }
5803
+ ),
5804
+ import_evolution18.TSchema.Struct(
5805
+ {
5806
+ MergeShardsManager: import_evolution18.TSchema.Struct(
5807
+ { currentTime: import_evolution18.TSchema.Integer },
5808
+ { flatFields: true }
5809
+ )
5810
+ },
5811
+ { flatInUnion: true }
5812
+ )
5813
+ );
5814
+ function serialisePollManagerRedeemer(r) {
5815
+ return import_evolution18.Data.withSchema(PollManagerRedeemerSchema).toCBORHex(r);
5816
+ }
5817
+ function serialisePollShardRedeemer(r) {
5818
+ return import_evolution18.Data.withSchema(PollShardRedeemerSchema).toCBORHex(r);
5819
+ }
5820
+ function parsePollManager(datum) {
5821
+ try {
5822
+ return (0, import_ts_pattern16.match)(
5823
+ import_evolution18.Data.withSchema(PollDatumSchema, DEFAULT_SCHEMA_OPTIONS).fromCBORHex(
5824
+ datum
5825
+ )
5826
+ ).with({ PollManager: import_ts_pattern16.P.select() }, (res) => import_fp_ts14.option.some(res)).otherwise(() => import_fp_ts14.option.none);
5827
+ } catch (_) {
5828
+ return import_fp_ts14.option.none;
5829
+ }
5830
+ }
5831
+ function parsePollManagerOrThrow(datum) {
5832
+ return import_fp_ts14.function.pipe(
5833
+ parsePollManager(datum),
5834
+ import_fp_ts14.option.match(() => {
5835
+ throw new Error("Expected a poll manager datum.");
5836
+ }, import_fp_ts14.function.identity)
5837
+ );
5838
+ }
5839
+ function parsePollShard(datum) {
5840
+ try {
5841
+ return (0, import_ts_pattern16.match)(
5842
+ import_evolution18.Data.withSchema(PollDatumSchema, DEFAULT_SCHEMA_OPTIONS).fromCBORHex(
5843
+ datum
5844
+ )
5845
+ ).with({ PollShard: import_ts_pattern16.P.select() }, (res) => import_fp_ts14.option.some(res)).otherwise(() => import_fp_ts14.option.none);
5846
+ } catch (_) {
5847
+ return import_fp_ts14.option.none;
5848
+ }
5849
+ }
5850
+ function parsePollShardOrThrow(datum) {
5851
+ return import_fp_ts14.function.pipe(
5852
+ parsePollShard(datum),
5853
+ import_fp_ts14.option.match(() => {
5854
+ throw new Error("Expected a poll shard datum.");
5855
+ }, import_fp_ts14.function.identity)
5856
+ );
5857
+ }
5858
+ function serialisePollDatum(d) {
5859
+ return import_evolution18.Data.withSchema(PollDatumSchema).toCBORHex(d);
5860
+ }
5861
+
5862
+ // src/contracts/gov/transactions.ts
5863
+ var import_cardano_offchain_common17 = require("@3rd-eye-labs/cardano-offchain-common");
5864
+ async function createProposal(proposalContent, treasuryWithdrawal, sysParams, lucid, currentSlot, govOref, allIAssetOrefs) {
5865
+ const network = lucid.config().network;
5866
+ const currentTime = BigInt((0, import_lucid25.slotToUnixTime)(network, currentSlot));
5867
+ const ownAddr = await lucid.wallet().address();
5868
+ const pkh = (0, import_lucid25.paymentCredentialOf)(ownAddr);
5869
+ const govRefScriptUtxo = matchSingle(
5870
+ await lucid.utxosByOutRef([
5871
+ fromSystemParamsScriptRef(
5872
+ sysParams.scriptReferences.governanceValidatorRef
5873
+ )
5812
5874
  ]),
5813
5875
  (_) => new Error("Expected a single Gov Ref Script UTXO")
5814
5876
  );
@@ -5914,9 +5976,7 @@ async function createProposal(proposalContent, treasuryWithdrawal, sysParams, lu
5914
5976
  )
5915
5977
  )
5916
5978
  )
5917
- ).validFrom(Number(currentTime) - ONE_SECOND).validTo(
5918
- Number(currentTime) + Number(sysParams.govParams.gBiasTime) - ONE_SECOND
5919
- ).addSigner(ownAddr),
5979
+ ).validFrom(Number(currentTime) - ONE_SECOND).validTo(Number(currentTime + sysParams.govParams.gBiasTime) - ONE_SECOND).addSigner(ownAddr),
5920
5980
  newPollId
5921
5981
  ];
5922
5982
  }
@@ -5958,7 +6018,7 @@ async function createShardsChunks(chunkSize, pollManagerOref, sysParams, current
5958
6018
  );
5959
6019
  const pollNft = fromSystemParamsAsset(sysParams.govParams.pollToken);
5960
6020
  const tx = lucid.newTx().validFrom(Number(currentTime) - ONE_SECOND).validTo(
5961
- Number(currentTime) + Number(sysParams.pollManagerParams.pBiasTime) - ONE_SECOND
6021
+ Number(currentTime + sysParams.pollManagerParams.pBiasTime) - ONE_SECOND
5962
6022
  ).mintAssets((0, import_cardano_offchain_common16.mkAssetsOf)(pollNft, shardsCount), import_lucid26.Data.void()).readFrom([pollAuthTokenPolicyRefScriptUtxo, pollManagerRefScriptUtxo]).collectFrom(
5963
6023
  [pollManagerUtxo],
5964
6024
  serialisePollManagerRedeemer({ CreateShards: { currentTime } })
@@ -6138,7 +6198,7 @@ async function mergeShards(pollManagerOref, shardsOutRefs, sysParams, lucid, cur
6138
6198
  )(shardUtxos);
6139
6199
  const pollNft = fromSystemParamsAsset(sysParams.govParams.pollToken);
6140
6200
  return lucid.newTx().validFrom(Number(currentTime) - ONE_SECOND).validTo(
6141
- Number(currentTime) + Number(sysParams.pollManagerParams.pBiasTime) - ONE_SECOND
6201
+ Number(currentTime + sysParams.pollManagerParams.pBiasTime) - ONE_SECOND
6142
6202
  ).readFrom([
6143
6203
  pollShardRefScriptUtxo,
6144
6204
  pollManagerRefScriptUtxo,
@@ -6616,6 +6676,10 @@ async function executeProposal(executeOref, govOref, treasuryWithdrawalOref, all
6616
6676
  fromSystemParamsAsset(sysParams.executeParams.collateralAssetToken),
6617
6677
  1n
6618
6678
  );
6679
+ const firstCollateralAsset = await findFirstCollateralAsset(
6680
+ allCollateralAssetsOrefsOfIAsset,
6681
+ lucid
6682
+ );
6619
6683
  tx.readFrom([
6620
6684
  iassetRefScriptUtxo,
6621
6685
  collateralAssetTokenPolicyRefScriptUtxo
@@ -6690,6 +6754,25 @@ async function executeProposal(executeOref, govOref, treasuryWithdrawalOref, all
6690
6754
  }
6691
6755
  )
6692
6756
  );
6757
+ if (!(0, import_cardano_offchain_common16.isSameAssetClass)(newCollateralAsset.collateralAsset, import_cardano_offchain_common16.adaAssetClass)) {
6758
+ import_fp_ts15.function.pipe(
6759
+ newReferencedCollateralAsset,
6760
+ import_fp_ts15.option.match(
6761
+ () => {
6762
+ },
6763
+ (referencedAsset) => referencedAsset.firstCollateralAsset ? {} : import_fp_ts15.function.pipe(
6764
+ firstCollateralAsset,
6765
+ import_fp_ts15.option.match(
6766
+ () => {
6767
+ },
6768
+ (firstAsset) => {
6769
+ tx.readFrom([firstAsset.utxo]);
6770
+ }
6771
+ )
6772
+ )
6773
+ )
6774
+ );
6775
+ }
6693
6776
  }).with(
6694
6777
  { UpdateCollateralAsset: import_ts_pattern17.P.select() },
6695
6778
  async (updateCollateralContent) => {
@@ -6925,9 +7008,7 @@ async function executeProposal(executeOref, govOref, treasuryWithdrawalOref, all
6925
7008
  );
6926
7009
  }).otherwise(() => {
6927
7010
  });
6928
- tx.readFrom([upgradeTokenPolicyRefScriptUtxo, executeRefScriptUtxo]).validFrom(Number(currentTime) - ONE_SECOND).validTo(
6929
- Number(currentTime) + Number(sysParams.govParams.gBiasTime) - ONE_SECOND
6930
- ).collectFrom([executeUtxo], import_lucid26.Data.void()).mintAssets(
7011
+ tx.readFrom([upgradeTokenPolicyRefScriptUtxo, executeRefScriptUtxo]).validFrom(Number(currentTime) - ONE_SECOND).validTo(Number(currentTime + sysParams.govParams.gBiasTime) - ONE_SECOND).collectFrom([executeUtxo], import_lucid26.Data.void()).mintAssets(
6931
7012
  (0, import_cardano_offchain_common16.mkAssetsOf)(fromSystemParamsAsset(sysParams.govParams.upgradeToken), -1n),
6932
7013
  import_lucid26.Data.void()
6933
7014
  ).addSigner(ownAddr).setMinFee(922932n);
@@ -6961,7 +7042,7 @@ var import_lucid28 = require("@lucid-evolution/lucid");
6961
7042
  var _governanceValidator = {
6962
7043
  type: "PlutusScriptV3",
6963
7044
  description: "Generated by Aiken",
6964
- cborHex: "593056593053010100229800aba2aba1aba0aab9faab9eaab9dab9cab9a4888888896600264653001300900198049805000cdc3a400530090024888966002600460126ea800e33001300a3754007223233001001003223300300130020029b87480026e2520049b874801a6e1d200e9b874801260126ea8011222222229800980a8044c054c0580224464b30013009001899192cc004c06c00a0091640606eb8c064004c054dd5001c566002601a003159800980a9baa00380145901645901220243013375400522232598009805000c4c8c96600260380050048b2032375c6034002602c6ea800e2b3001300e00189919912cc004c07400626601c6eb0c07000489660020050078cc004026603c00513001301f002402480e22c80d0dd6980d000980d800980b1baa0038b2026404c60286ea800a44b300130083013375400513232332259800980e001c0162c80c8dd6980c8009bad30190023019001301437540051640452232598009804800c4c8c96600260360050048b2030375c6032002602a6ea800e2b3001300d001899192cc004c06c00a0091640606eb8c064004c054dd5001c590122024301337540052259800980418099baa0028991919912cc004c07000e00b1640646eb8c064004dd7180c801180c800980a1baa0028b202248888888c8c8cc8966002602201913232323298009812000cdd698120024dd71812001a444b3001302800489919912cc004c06c00a264b3001302c0018992cc004c074c0a0dd5000c4c8c8c8c8c8ca60026064003375c606400d30320049819001cc0c80092222259800981c00344cc078c0dc0284cc07800c4cc0780084cc0780044cc07801403a2c81a8606400260620026060002605e002605c00260526ea80062c8130c0ac0062c8148c09cdd5001c566002603e005132598009816000c4c966002603a60506ea80062646464646465300130320019bae303200698190024c0c800e6064004911112cc004c0e001a26603c606e01426603c00626603c00426603c00226603c00a01d1640d4303200130310013030001302f001302e0013029375400316409860560031640a4604e6ea800e2b300130170028992cc004c0b0006264b3001301d30283754003132323232323232323298009bad30350019bae30350099bad3035007981a8034c0d4016606a0093035003981a801244444444b3001303e009899811181e80809980f00289981100209981200189981200109981200080a45903b0c0d4004c0d0004c0cc004c0c8004c0c4004c0c0004c0bc004c0b8004c0a4dd5000c590261815800c5902918139baa0038acc004c06400a264b3001302c0018992cc004c074c0a0dd5000c4c8c8c8c8c8c8c8c8ca60026eb4c0d40066eb8c0d40266eb4c0d401e606a00d3035005981a8024c0d400e606a004911111112cc004c0f8026266044607a02026603c00a2660440082660480062660480042660480020291640ec303500130340013033001303200130310013030001302f001302e0013029375400316409860560031640a4604e6ea800e2b30013370e900400144c966002605800313259800980e98141baa00189919191919191919194c004dd7181a800cdd7181a804cc0d401e606a00d3035005981a8024dd6981a801cdd6981a801244444444b3001303e009899811181e80809981200309981200289981200209981300180a45903b0c0d4004c0d0004c0cc004c0c8004c0c4004c0c0004c0bc004c0b8004c0a4dd5000c590261815800c5902918139baa0038acc004cdc3a4014005132598009816000c4c966002603a60506ea8006264646464646464646464653001375c606e003375c606e0173037009981b8044c0dc01e64b300130350018acc004c0a0c0d00062d1302d303400140c91640d86ea8c0dc01a64b300130350018acc004c0a0c0d00062d1302d303400140c91640d86ea8c0dc016606e009375a606e007375a606e00491111111112cc004c10802e26604c608202826605001026605000e26605000c2660540060311640fc30370013036001303500130340013033001303200130310013030001302f001302e0013029375400316409860560031640a4604e6ea800e2b30013370e900600144c966002605800313300e302b0010028b205230273754007159800980c00144c966002605800313259800980e98141baa00189919912cc004c0c00062660426eb0c0bc004896600200500889919912cc004c0d4006264b30013026303137540031323259800981c00144c01cc0e00222c81a8dd7181b00098191baa0018b205e30340018b2064375c606400260660026eb0c0c400902f45902d1bad302d001302e0013029375400316409860560031640a4604e6ea800e2b30013370e900800144c8c966002605a0050038b2054375c6056002604e6ea800e2c8121024204840908121024204840908120c090dd50008992cc004c068006264b3001302b0018992cc004c070c09cdd5000c4c8c8c966002605e0051332259800981098161baa00289919192cc004c0d000a2660326066006264b300130250018992cc004c0d800626464b300130280018992cc004c0e400626603c60700020131640d860686ea800a2b3001302c00189919194c004dd6981d000cdd6981d001cdd6981d0012444b3001303e00480745903b0c0e8004c0e4004c0d0dd5001459031206230323754002606a0031640cc60626ea800a2b300130290018acc004c0c4dd500140162c81922c817102e18179baa0018b206230320013032001302d37540051640a8605c00626604000244b300100280944c9660026044605a6ea800626464653001375a6068003375c6068007375c60680049112cc004c0e00122601060700131640d430340013033001302e37540031640ac606000481722c8160dd61816800981680098141baa0018b204a302a0018b20503026375400b159800980f000c566002604c6ea801601716409d16408c8118c090dd50021813802c590250c090004c08c004c088004c074dd500bc566002602a0191323259800981180140122c8100dd69810800980e9baa0178acc004c0340322b3001301d375402f0028b203c8acc004c03c0322b3001301d375402f0028b203c8b2034406880d101a0cc004dd2a40012301f30203020001911919800800801912cc00400629422b30013371e6eb8c08800400e2946266004004604600280e102048c07cc0800064446466446600400400244b3001001801c4c8cc896600266e4401c00a2b30013371e00e0051001803204289980280298140022042375c60420026eb4c088004c090005022191919800800803112cc00400600713233225980099b910090028acc004cdc78048014400600c811226600a00a60520088110dd718110009bab30230013025001408c297adef6c6014800244646600200200644b30010018a5eb8226644b3001300500289981180119802002000c4cc01001000501e18110009811800a0409b88480024b3001300c301b37540031301f301c37540031640652301f30203020302030200014888888888c8cc89660026032604c6ea80862646644b3001301e3029375400313259800981198151baa001899912cc004c0c4006264b30013022302d3754003132332259800981a800c4cc098dd6181a000912cc00400a264b3001302830333754003133017300c3756602260686ea80acdd7181b981a1baa0018b206232330010013758602c60686ea801c896600200314c0103d87a80008992cc006600266ebc00530103d87a8000a50a5140cd1001899801801981d0012066325980099b8f375c60720020171301b330383039303a0014bd7045300103d87a800040cc6eb0c0e000503644c8c8cc8966002607600713005303b0068b2070375c60700026eb8c0e0008c0e0004dd6181b00120688b2064375a60640026066002605c6ea80062c8158c02cc044c0b4dd5180798169baa30300018b205c375c605c60566ea800660026eb0c034c0acdd50114c020c0acdd5018d30103d879800040191640a0605a60546ea8c0b4c0a8dd5180618151baa302d302a375400316409c6002002660046eb0c0acc0a0dd500f80b112cc004006297ae089981598141816000998010011816800a0548acc004c06cc098dd500a44c9660026038604e6ea8006264646464653001375a6060003375a606000b375a6060007375a606000491112cc004c0d401626602e6068010264b300130263031375400313233225980099800a48113496e636f727265637420476f7620696e70757400330113756602e606a6ea8c05cc0d4dd5001981c181a9baa03b8cc004c0d0dd5017c8888c8cc004004014896600200313303d337606ea4014dd400225eb7bdb1822653001375c6076003375a6078003304000248896600266e4002400e26608266ec0dd48049ba80080058acc004cdc7804801c6600201300880148cc108cdd81ba900a37500020051001401d133041337606ea400cdd400119803003000a07840f0303e00140f1222232330010010052259800800c4cc0f4cdd81ba9005374c00897adef6c608994c004dd7181d800cdd5981e000cc1000092225980099b9000900389982099bb037520126e980200162b30013371e01200719800804c022005233042337606ea4028dd30008014400500744cc104cdd81ba9003374c0046600c00c00281e103c0c0f800503c496600200314a314a081ba24444464b3001302f00180144c00c00503819b800040039b81480026e2520009112cc004c0b0006297adef6c608991919800800a5eb7bdb180896600200313303d337606ea4018dd3001a5eb7bdb1822653001375c607600337566078003304000248896600266e4002800e26608266ec0dd48051ba60070058acc004cdc7805001c4cc104cdd81ba900a374c00e003133041337606ea400cdd300119803003000a07840f0303e00140f0646600200297adef6c602259800800c4cc0f0cdd81ba9004375000697adef6c608994c004dd7181d000cdd6981d800cc0fc0092225980099b9000800389982019bb037520106ea001c0162b30013371e010007133040337606ea4020dd4003800c4cc100cdd81ba900337500046600c00c00281d903b0c0f400503b206a914c00400a6eb8c0e8c0dcdd5000cdd7180c981b9baa001406123039303a303a303a303a303a303a303a303a303a0019181c981d181d181d181d181d181d000cdd2a4005374a90024dd79809181a9baa02c488888888888888cc88cc896600260760251980098239baa041912cc00400629344c966002003149a264b3001337206eb8c128c13800cdd71825000c4cc010010cc134004c13c00a2a66092921326b65797320696e206173736f63696174697665206c697374206172656e277420696e20617363656e64696e67206f7264657200164120609a0028258c13400504a4dc024005223259800981f000c566002607c60926ea800a298103d87a80008a6103d8798000411d159800981d000c566002607460926ea800a2980103d87a80008a6103d87b8000411d13322598009822000c4c96600266e2000c0062980103d87980008acc004cdc4000801c530103d87b80008a6103d87a800041288250dd6982798261baa0048acc004c100006298103d87b80008a6103d879800041248248dd6982698251baa00330493754004823904718241baa002912cc004c0f4006298103d87a80008acc004cdc4000a40011302e3304b302e3304b3750601e004660966ea0c03c0052f5c097ae089817198259817198259ba80023304b375000297ae04bd70208c4119225980099b900020018a60103d87980008acc004cdc7801000c530103d87a80008a6103d87b8000411882324605a660946ea0004cc12930010101004bd704888cc88cc010cdc11bad304f002375a609e60a000266e08dd698278009bad304f3050002304a375400660946ea800646096609860986098609860986098609860986098609800314820225ea46096609860986098609860980032304b304c304c304c001918259826182618261826182618261826000c8c12cc130c130c130c130c130c130c130c1300064464b30013001480422b30013001480022900044cdc724508010204081020408000002411d1598009800a40811337049040021980180199b800024803e266e092080808080203300300333700004901fa08e411c6e200066ebd300103d8798000912cc004006297ae0899198261ba9001330030033233001001304f0032259800800c52f5c11332259800cc004cdc7801002d28528a0968998281ba900233004004001899802002000a096375c609e00260a00028268dd71826000a0949bac304a304b304b3047375407c9111111111111111114c004c17404a6eb4c17004a60220232259800800c520008980919801001182f800a0b89181f9982e192cc004c14cc168dd5000c4c96600260a860b66ea8c0f8c170dd5182f982e1baa0038980e1982f1ba80014bd7044c070cc178dd41809800a5eb810591bad305e305b37540031001416060ba60b46ea8c174c168dd50009982e192cc004c14cc168dd5000c4c96600260a860b66ea8c0f8c170dd5181f182e1baa0038980e1982f1ba80014bd7044c070cc178dd419b80001480052f5c082c8dd6982f182d9baa0018800a0b0305d305a3754607860b46ea80052f5c12222259800998152492c44656274206d696e74696e672066656520726174696f206973206265747765656e205b30252c20313030255d0059800cc005300106d8799f0001ff009119b89002001802a0208cc0040164466e240080066022900120208a50416d15980099815249344c69717569646174696f6e2070726f63657373696e672066656520726174696f206973206265747765656e205b30252c2035255d0032598009829982f1baa0018acc006600298106d8799f0001ff009119b89002001802a0228cc0040164466e2400800660c460be6ea8005011452820b88b20b8330134802920c8018acc004cc0a924013953746162696c69747920706f6f6c207769746864726177616c2066656520726174696f206973206265747765656e205b30252c20313030255d0059800cc005300106d8799f0001ff009119b89002001801a0208cc00400e4466e240080066022900120208a50416d1598009981524933526564656d7074696f6e207265696d62757273656d656e7420726174696f20696e206265747765656e205b30252c203235255d0032598009829982f1baa0018acc006600298106d8799f0001ff009119b89002001801a0228cc00400e4466e2400800660c460be6ea8005011452820b88b20b833013480c920c801899815248134526564656d7074696f6e2070726f63657373696e672066656520726174696f20696e206265747765656e205b30252c203130255d0032598009829982f1baa0018acc006600298106d8799f0001ff009119b8900200180120228cc00400a4466e2400800660c460be6ea8005011452820b88b20b8330134805120c8018a50416d14a082da294105b452820b69192cc004c13cc168dd5000c4c178c16cdd5000c54cc1652401263c65787065637465643e2044656e6f6d696e61746f722063616e6e6f74206265207a65726f2e001641606601e6eb4c174c168dd50009bad303c305a375400322225980099814a4811e524d52206973206265747765656e205b313030252c2031305f303030255d0059800cc004c04120029119b89002001802201e8cc0040124466e240080066020906400a01e8a50416915980099814a491d4d52206973206265747765656e205b313030252c2031305f303030255d0059800cc004c04120029119b89002001801a01e8cc00400e4466e240080066020906400a01e8a50416915980099814a491f4d61696e74656e616e636520726174696f206d757374206265203e3d204c52009800801c88cdc4800801400900f456600266052921214c69717569646174696f6e20726174696f206d757374206265203e3d20313030250098009808240052233712004003002403d133029491174d696e20636f6c6c61746572616c20706f73697469766500303c0018a50416914a082d2294105a452820b491111112cc004cc0b12401236941737365742063616e6e6f74206265206120636f6c6c61746572616c20617373657400980099b8f375c60c660c06ea801c00694294505d45660026605892012c436f6c6c61746572616c20617373657420746f2069417373657420726174696f20697320706f73697469766500300a332233225980099b880020018a6103d87980008acc004cdc40008014530103d87b80008a6103d87a800041848308cdc11bad3065002375a60ca60cc00266e08dd698328009bad3065306600230603754980106d8799f0001ff003060375400d159800acc004cc0b12401274d696e74696e672066656520726174696f206973206265747765656e205b30252c20313030255d0059800cc005300106d8799f0001ff009119b89002001802a0248cc0040164466e240080066026900120248a50417513302c49012a526564656d7074696f6e2066656520726174696f206973206265747765656e205b30252c20313030255d0059800cc005300106d8799f0001ff009119b8900200180220248cc0040124466e240080066026900120248a50417514a082ea2b30013302c491224d696e206d696e74696e6720616d6f756e74206973206e6f6e2d6e65676174697665003025003899816249254d696e20726564656d7074696f6e20616d6f756e74206973206e6f6e2d6e656761746976650030250028a50417514a082ea294105d452820ba4888888888cc8a600260ce0053067306800298009bad304630643754608c60c86ea80f66eb8c19c02d222259800acc004c180c19cdd5001c528c4c8c9660026606c921415472656173757279207769746864726177616c2063616e6e6f742062652061626f7665207769746864726177616c206c696d697420666f72206c6f76656c61636500337133001001a44100a44100412c6eb4c05cc1a8dd5182618351baa0438acc004cc0d924013d5472656173757279207769746864726177616c2063616e6e6f742062652061626f7665207769746864726177616c206c696d697420666f7220494e445900337126605a002603060d46ea81c0dd6980b18351baa304c306a37540871598009981b249295472656173757279207769746864726177616c2076616c75652063616e6e6f7420626520656d70747900980099baf374c002980101a000a50a51419d1598009981b249355472656173757279207769746864726177616c2063616e6e6f7420726571756573742044414f206964656e7469747920746f6b656e00305e3302d001302c306a37540e11598009981b24812f5472656173757279207769746864726177616c2063616e20636f6e7461696e206d6178206f6620382061737365747300337126601c01c6eb0c130c1a8dd5001240211330364901355472656173757279207769746864726177616c2063616e20636f6e7461696e206f6e6c7920706f73697469766520616d6f756e74730032330010013758609a60d66ea800c896600200314a315980098259bad306f30703070306c375460de00313300200230700018a5041a4836a2941067452820ce8a50419d14a0833a2941067191980080099198008009bac304d306b375400644b30010018a5eb822660dc6e9cc8c8cc1c0c1c4008cc1c0c1c4004cc1c0c1c4c1c80052f5c060e200260d86ea8c1bc004cc008008c1c000506d112cc004006297adef6c60899194c004dd71838000cdd698381838800ccc010010c1c400e6eb8c1c00092222598009832801c400a33001002800cc8c8008c05c004cc1cccdd81ba9004375000697adef6c6091111192cc004c0fc0060051300300141d06530010048054026444453001005801c0120050014018820940f503a20dc18380009bac306e00141b060d660d06ea800d06545660026606892011b496e636f727265637420476f7665726e616e6365206f75747075740098008084c0a0cc1a80d52f5c130273306a3232304f3306c375060426eb4c1b4c1a8dd50219983618368011983618368009983618369837000998361ba83021375a608e60d46ea810d2f5c060da00260d860d06ea81052f5c13022306b306837540dd4c0103d87a8000408d1598009981a24927546865207472616e73616374696f6e206d757374206265207369676e6564206279206f776e6572003304b3758602860d06ea817c0062b30013303449012850726f706f73616c20696e636f6d70617469626c6520776974682063757272656e742073746174650059800982c98339baa004899b87375a60d660d06ea8c1acc1a0dd5002180f9bad304c3068375408314a2832a2b30013303449010d496e76616c6964207054696d6500332259800992cc004c16c00629462b300130630018a518a5041a08340c1a4dd519810183698351baa002306d306a375400313259800982f800c528c56600260c600314a314a0834106818349baa33020304c306a3754004609860d46ea800629410671805980a98341baa05f300b304d3306a304d3306a30283306a375066e04038dd6980a18341baa06e4bd70198354c00528d30103d87a8000a60103d8798000419497ae03306a304d3306a30283306a3750600a6eb4c050c1a0dd503725eb80cc1aa6002946980103d87a8000a60103d8798000419497ae04bd704566002660689201245472616e73616374696f6e206d696e742065786163746c79203120706f6c6c546f6b656e003026374c6044609460d06ea81ba2b300133034490113496e76616c696420506f6c6c206f75747075740098008084c0a0cc1a8c134cc1a8c0a0cc1a8c0a4c1a0dd503725eb80cc1a9300103d87a80004bd7025eb82604e660d4609a660d4609a660d46ea0c07cdd6983598341baa0413306a3752002660d4008660d4006660d498106d8799f0000ff003306a3750004660d49810100003306a4c10100003306a301730683754609460d06ea8104cc1a8dd418029bad304530683754609460d06ea8104cc1a8dd419b80002375a602c60d06ea8c128c1a0dd502099835182618341baa0413306a302930683754609460d06ea81052f5c097ae04bd704cc090c088c128c1a0dd5037194c004dd7183618349baa0019bae304b30693754003337046eb4c1b0c1a4dd5182598349baa04233014014375a608c60d26ea810902d180b18341baa06ea60103d87a8000408d13259800982e800c4c8c8c8c8cc8966003300130103072005980818390024c040c1c800e602060e4005301030723073002404515980098319bad301d306f375409114a313259800983a000c4c96600266ebcc0c4cc1ccc078c1c4dd503ba5eb80c1d0c1c4dd5183a18389baa30533071375400313259800983318389baa0018992cc004c1dc006264b300130683073375400313232323232323232329800984000800cdd7184000804cdd69840008044c2000401a61000200b308001004984000801cc96600260fc0031598009838983e800c5a260ec60fa00283da2c83f8dd5184000801244444444b3001308901009899837984400807899837802899837802099837801899837801099838804099828a4812469417373657420776974682073616d65206e616d6520616c7265616479206578697374730059800acc004c1f4c21004dd518191842809baa012898179981c80b9bae308801308501375402514a084100a29462b30013375e6607202e6eb8c22004c21404dd5009260103d87b80008992cc004c1e8c21404dd5000c4c0c0cc0e8060dd71844809843009baa0018a51420c046062610a026ea804a2941082012104028b210c02184000800983f800983f000983e800983e000983d800983d000983c800983a1baa0018b20e230760018b20e8307237540031641bc609e60aa60e26ea8c14cc1c4dd5000c54cc1bd2401193c65787065637465643e204d697865642076657273696f6e73001641b860e60031641c53001375860a260de6ea819a604060de6ea81d698103d879800041288362294106c18388009bae30700043070001306f001306e0013069375460d860d26ea80162b300130610018991919194c004c038c1c0012601c60e0007300e307000298071838000cc038c1c0c1c400500f183800098378009837000983698349baa306c3069375400b159800982c800c4c8c8c8c9660033001300e3070003980718380014c038c1c00066eb4c1c0c1c400500d456600260c260d86ea8c1c00122942294506a452820d43070001306f001306e306e001306d306d306d3069375460d860d26ea80162b3001305b00189919194c004c034c1bc00e601a60de005300d306f0019bad306f3070001403060de00260dc00260da60da60da60da60da60d26ea8c1b0c1a4dd5002c56600266e1d2008001899191919194c004c1c4016601e60e2009300f3071003980798388014dd69838800cdd698389839000cdd7180e98371baa074403460e260e200260e000260de00260dc00260da60d26ea8c1b0c1a4dd5002c56600266e1d200a001899191919194c004c1c4016601e60e2009300f3071003980798388014dd69838800cdd698389839000cdd7180e98371baa074403460e260e260e260e200260e000260de00260dc00260da60d26ea8c1b0c1a4dd5002c56600266e1d200c0018992cc004cc0d924012a50726f706f73616c206465706f73697420696e2072616e6765205b302c2031305f30303020494e44595d005980098179bad306d306a37540031337126eb4c1b4c1a8dd500099b82482827005406a294106745660026606c92128566f74696e6720706572696f6420696e2072616e6765205b3120686f75722c2031206d6f6e74685d005980099b8948202eadc0cdd6982618351baa001899b89375a609860d46ea80052080a0f6a7138a50419d1598009981b249264566666563746976652064656c617920696e2072616e6765205b302c20313220686f7572735d005980098179bad304e306a37540031337126eb4c138c1a8dd5000a410171325314a0833a2b30013303649012b45787069726174696f6e20706572696f6420696e2072616e6765205b31206461792c2031206d6f6e74685d005980099b8948203c2c948dd6980c18351baa001899b89375a603060d46ea80052080a0f6a7138a50419d1598009981b2492b50726f706f73696e6720706572696f6420696e2072616e6765205b3120686f75722c2031206d6f6e74685d005980099b8948202eadc0cdd6982398351baa001899b89375a608e60d46ea80052080a0f6a7138a50419d1598009981b2492950726f706f73696e6720706572696f64203c20566f74696e6720706572696f64202d203120686f757200337106eb4c11cc1a8dd500099b80375a609860d46ea800520ffb9b7038acc004cc0d92411f546f74616c2073686172647320696e2072616e6765205b312c20313030305d005980099b8948008dd6980c98351baa001899b89375a603260d46ea800520d00f8a50419d1598009981b249234d696e2071756f72756d20696e2072616e6765205b302c2031306d696c20494e44595d005980098179bad302b306a37540031337126eb4c0acc1a8dd500099b82482036b1025406a294106745660026606c92127456c6563746f7261746520696e2072616e6765205b31356d696c2c2033356d696c20494e44595d005980099b8933704904043d387280d1bad301b306a37540031337126eb4c06cc1a8dd500099b8248202eec085406a294106745660026606c921384d6178207472656173757279206c6f76656c616365207370656e6420696e2072616e6765205b302c2034352062696c6c696f6e204144415d005980098179bad3017306a37540031337126eb4c05cc1a8dd500099b824820222b28f3c09406a294106744cc0d92401354d617820747265617375727920494e4459207370656e6420696e2072616e6765205b302c203335206d696c6c696f6e20494e44595d005980098179bad3016306a37540031337126eb4c058c1a8dd500099b8248202eec085406a2941067452820ce8a50419d14a0833a2941067452820ce8a50419d14a0833a2941067452820ce8a50419c60d860d26ea80162b3001305a0018991981b2491d43616e6e6f7420636f6e7461696e206475706c6963617465206b657973003375e6e9ccc04c04c004dd380099198008009bac306d306e306a375460da60d46ea8018896600200314bd7044cc1b4c1b8dd61837000998010011837800a0d889981aa491e5465787450726f706f73616c2773206c656e677468206973203c3d20363400337126e34dd7183618349baa005482000506620cc4198833106620cc41988330c19cdd5002452820ca8a50419514a0832a2941065452820ca8a50419514a0832860cc0126e000208acc004c0fc04a26644b3001304d0018992cc004cc05924010e4d697865642076657273696f6e73003375e609a60946ea8c134c128dd5181618251baa001300a3304c300b304a37540a097ae08acc004cc05924012e706f6c6c206d616e6167657220696e707574206d75737420757365207468652072696768742072656465656d657200323322598009820800c4c8c96600260a60050048b20a0375a60a2002609a6ea800e2b30013045001899192cc004c14c00a0091641406eb4c144004c134dd5001c566002607a0031323259800982980140122c8280dd6982880098269baa0038b2094412882504cdd78009818198269ba80044bd7018251baa0013259800981f98251baa0018982718259baa0018b20903232330010013756601c60986ea810c896600200314c0103d87a80008992cc004cdd78021826800c4c0cccc140c1380052f5c11330030033052002412c60a00028270c028cc130c134c128dd5000a5eb822b30013301649114496e636f727265637420676f76206f75747075740098009bac302e304a3754083300a3304c0174bd704c024cc130c8c8c8c0c8cc13cc14000ccc13cc140008cc13cc140004cc13cc140c144004cc13cdd419b80375a6054609a6ea809920014bd701828000982780098251baa0234bd704c010c134c128dd5028530103d87a8000401513301649013b4d757374206275726e203120706f6c6c20746f6b656e20616e64206f7074696f6e616c6c79206d696e7420616e207570677261646520746f6b656e005980098041ba63300630073004302c304a37540a06008605c60946ea81422946260106e98c01cc010c0b0c128dd5028208e8a50411d14a0823a29410471826000c5904a1bad304a30473754083300137586094608e6ea80fa6052608e6ea8136980103d87980004089159800981b80944cc04d24011d5370656e642065786163746c792031205570677261646520546f6b656e00303f323322330020020012259800800c52000899b8033002002304e0013300d3756605860946ea8c0b0c128dd51826800801a0963758609660906ea80fcc0acc11cdd5026c54cc1152410472646d72001641108221044111111919800800998158032cc004c0fcc128dd5002c48c8cdd7982818269baa3050304d3754004002609e60986ea801a246466ebcc140c134dd5001000982798261baa006412044b30010018a508acc004c96600266ebcc0c4c134dd500080344c96600200314a31598009829000c4c8ca60026eb8c14c0066eb4c14cc1500066eb8c14c0092225980099b8f001489008acc004cdc7801a441008acc004c11cc148dd50054566002603000513371200490404df701452820a08980c00120a08a50414114a0828060a60026eb0c144006294104f209e32330010013300a37566060609c6ea8008c02c018896600200314bd7044c8cc88cc88cc008008004896600200310038991982b9ba733057375200a660ae60a8002660ae60aa00297ae0330030033059002305700141546eacc14800cdd7182780099801801982a0011829000a0a08a504128609e00314a3133002002305000141248268a60026eb8c124c118dd5000cdd7181418231baa001a400480508c8cc004004008896600200314bd6f7b63044c8cc124cdd818230009ba632330010013756609000444b30010018a5eb7bdb1822646609866ec0c124004dd418081bad304a00133003003304e002304c00141286600600660960046092002823888ca60020030038012002222598008014400626530010049826801e6002005375c609000337566092003222223259800980b800c00a260060028260c8ca6002003006802a00222259800801440062653001004982b801e6002005375c60a4003375a60a600300540748020c154009053280aa02440106096004824914a08190c0d8c0ccdd5180a98199baa0012259800800c40062a6606600420028190c0d4c0c8dd5000c5902f198059bac30343031375405003f1640c83030001302f001302e001302d001302837540031640946054604e6ea80522c8121024111191980480211801180618151baa00159800980e18139baa00189198029bab300b3029375400200712300898009bab300b30293754003375c605860526ea800e6eb8c02cc0a4dd5001a014409444646600200200644b30010018a6103d87a80008992cc004cdd7981698151baa0010048980799816000a5eb82266006006605c0048138c0b000502a11180f4c00400a6eb8c0a4c098dd5000cdd7180418131baa001401c2232598009809000c4c966002604600313300930220010038b2040301e3754007159800980b000c4c966002604600313300730220010038b2040301e37540071598009807000c4c8c96600260480050048b2042375c6044002603c6ea800e2c80d901b2036301c375400444b30013010301b3754005132323232323232323232323298009815800cdd698158064dd69815805cdd698158054dd69815804cdd698158044dd69815803cdd698158034dd69815802cdd698158024dd69815801244444444444b3001303700c89980f981b00709980d00580c4590340c0ac004c0a8004c0a4004c0a0004c09c004c098004c094004c090004c08c004c088004c084004c070dd50014590191802002116401c300900130043754013149a26cac8009"
7045
+ cborHex: "59304059303d010100229800aba2aba1aba0aab9faab9eaab9dab9cab9a4888888896600264653001300900198049805000cdc3a400530090024888966002600460126ea800e33001300a3754007223233001001003223300300130020029b87480026e2520049b874801a6e1d200e9b874801260126ea8011222222229800980a8044c054c0580224464b30013009001899192cc004c06c00a0091640606eb8c064004c054dd5001c566002601a003159800980a9baa00380145901645901220243013375400522232598009805000c4c8c96600260380050048b2032375c6034002602c6ea800e2b3001300e00189919912cc004c07400626601c6eb0c07000489660020050078cc004026603c00513001301f002402480e22c80d0dd6980d000980d800980b1baa0038b2026404c60286ea800a44b300130083013375400513232332259800980e001c0162c80c8dd6980c8009bad30190023019001301437540051640452232598009804800c4c8c96600260360050048b2030375c6032002602a6ea800e2b3001300d001899192cc004c06c00a0091640606eb8c064004c054dd5001c590122024301337540052259800980418099baa0028991919912cc004c07000e00b1640646eb8c064004dd7180c801180c800980a1baa0028b202248888888c8c8cc8966002602201913232323298009812000cdd698120024dd71812001a444b3001302800489919912cc004c06c00a264b3001302c0018992cc004c074c0a0dd5000c4c8c8c8c8c8ca60026064003375c606400d30320049819001cc0c80092222259800981c00344cc078c0dc0284cc07800c4cc0780084cc0780044cc07801403a2c81a8606400260620026060002605e002605c00260526ea80062c8130c0ac0062c8148c09cdd5001c566002603e005132598009816000c4c966002603a60506ea80062646464646465300130320019bae303200698190024c0c800e6064004911112cc004c0e001a26603c606e01426603c00626603c00426603c00226603c00a01d1640d4303200130310013030001302f001302e0013029375400316409860560031640a4604e6ea800e2b300130170028992cc004c0b0006264b3001301d30283754003132323232323232323298009bad30350019bae30350099bad3035007981a8034c0d4016606a0093035003981a801244444444b3001303e009899811181e80809980f00289981100209981200189981200109981200080a45903b0c0d4004c0d0004c0cc004c0c8004c0c4004c0c0004c0bc004c0b8004c0a4dd5000c590261815800c5902918139baa0038acc004c06400a264b3001302c0018992cc004c074c0a0dd5000c4c8c8c8c8c8c8c8c8ca60026eb4c0d40066eb8c0d40266eb4c0d401e606a00d3035005981a8024c0d400e606a004911111112cc004c0f8026266044607a02026603c00a2660440082660480062660480042660480020291640ec303500130340013033001303200130310013030001302f001302e0013029375400316409860560031640a4604e6ea800e2b30013370e900400144c966002605800313259800980e98141baa00189919191919191919194c004dd7181a800cdd7181a804cc0d401e606a00d3035005981a8024dd6981a801cdd6981a801244444444b3001303e009899811181e80809981200309981200289981200209981300180a45903b0c0d4004c0d0004c0cc004c0c8004c0c4004c0c0004c0bc004c0b8004c0a4dd5000c590261815800c5902918139baa0038acc004cdc3a4014005132598009816000c4c966002603a60506ea8006264646464646464646464653001375c606e003375c606e0173037009981b8044c0dc01e64b300130350018acc004c0a0c0d00062d1302d303400140c91640d86ea8c0dc01a64b300130350018acc004c0a0c0d00062d1302d303400140c91640d86ea8c0dc016606e009375a606e007375a606e00491111111112cc004c10802e26604c608202826605001026605000e26605000c2660540060311640fc30370013036001303500130340013033001303200130310013030001302f001302e0013029375400316409860560031640a4604e6ea800e2b30013370e900600144c966002605800313300e302b0010028b205230273754007159800980c00144c966002605800313259800980e98141baa00189919912cc004c0c00062660426eb0c0bc004896600200500889919912cc004c0d4006264b30013026303137540031323259800981c00144c01cc0e00222c81a8dd7181b00098191baa0018b205e30340018b2064375c606400260660026eb0c0c400902f45902d1bad302d001302e0013029375400316409860560031640a4604e6ea800e2b30013370e900800144c8c966002605a0050038b2054375c6056002604e6ea800e2c8121024204840908121024204840908120c090dd50008992cc004c068006264b3001302b0018992cc004c070c09cdd5000c4c8c8c966002605e0051332259800981098161baa00289919192cc004c0d000a2660326066006264b300130250018992cc004c0d800626464b300130280018992cc004c0e400626603c60700020131640d860686ea800a2b3001302c00189919194c004dd6981d000cdd6981d001cdd6981d0012444b3001303e00480745903b0c0e8004c0e4004c0d0dd5001459031206230323754002606a0031640cc60626ea800a2b300130290018acc004c0c4dd500140162c81922c817102e18179baa0018b206230320013032001302d37540051640a8605c00626604000244b300100280944c9660026044605a6ea800626464653001375a6068003375c6068007375c60680049112cc004c0e00122601060700131640d430340013033001302e37540031640ac606000481722c8160dd61816800981680098141baa0018b204a302a0018b20503026375400b159800980f000c566002604c6ea801601716409d16408c8118c090dd50021813802c590250c090004c08c004c088004c074dd500bc566002602a0191323259800981180140122c8100dd69810800980e9baa0178acc004c0340322b3001301d375402f0028b203c8acc004c03c0322b3001301d375402f0028b203c8b2034406880d101a0cc004dd2a40012301f30203020001911919800800801912cc00400629422b30013371e6eb8c08800400e2946266004004604600280e102048c07cc0800064446466446600400400244b3001001801c4c8cc896600266e4401c00a2b30013371e00e0051001803204289980280298140022042375c60420026eb4c088004c090005022191919800800803112cc00400600713233225980099b910090028acc004cdc78048014400600c811226600a00a60520088110dd718110009bab30230013025001408c297adef6c601480026e21200092cc004c030c06cdd5000c4c07cc070dd5000c5901948c07cc080c080c080c0800052222222232332259800980c18129baa02089919912cc004c074c0a0dd5000c4c966002604460526ea800626644b300130300018992cc004c084c0b0dd5000c4c8cc896600260680031330253758606600244b30010028992cc004c09cc0c8dd5000c4cc058c030dd5980898199baa02a375c606c60666ea80062c8180c8cc004004dd6180a98199baa0072259800800c5300103d87a80008992cc006600266ebc00530103d87a8000a50a5140c91001899801801981c8012064325980099b8f375c60700020171301a33037303830390014bd7045300103d87a800040c86eb0c0dc00503544c8c8cc8966002607400713005303a0068b206e375c606e0026eb8c0dc008c0dc004dd6181a80120668b2062375a60620026064002605a6ea80062c8150c02cc040c0b0dd5180718161baa302f0018b205a375c605a60546ea800660026eb0c030c0a8dd5010cc020c0a8dd5018530103d8798000401916409c605860526ea8c0b0c0a4dd5180598149baa302c302937540031640986002002660046eb0c0a8c09cdd500f00a912cc004006297ae089981518139815800998010011816000a0528acc004c068c094dd5009c4c9660026036604c6ea8006264646464653001375a605e003375a605e00b375a605e007375a605e00491112cc004c0d001626602c6066010264b300130253030375400313233225980099800a48113496e636f727265637420476f7620696e70757400330113756602c60686ea8c058c0d0dd5001981b981a1baa03a8cc004c0ccdd501748888c8cc004004014896600200313303c337606ea4014dd400225eb7bdb1822653001375c6074003375a6076003303f00248896600266e4002400e26608066ec0dd48049ba80080058acc004cdc7804801c6600201300880148cc104cdd81ba900a37500020051001401d133040337606ea400cdd400119803003000a07640ec303d00140ed222232330010010052259800800c4cc0f0cdd81ba9005374c00897adef6c608994c004dd7181d000cdd5981d800cc0fc0092225980099b9000900389982019bb037520126e980200162b30013371e01200719800804c022005233041337606ea4028dd30008014400500744cc100cdd81ba9003374c0046600c00c00281d903b0c0f400503b496600200314a314a081b224444464b3001302e00180144c00c00503719b800040039b81480026e2520009112cc004c0ac006297adef6c608991919800800a5eb7bdb180896600200313303c337606ea4018dd3001a5eb7bdb1822653001375c607400337566076003303f00248896600266e4002800e26608066ec0dd48051ba60070058acc004cdc7805001c4cc100cdd81ba900a374c00e003133040337606ea400cdd300119803003000a07640ec303d00140ec646600200297adef6c602259800800c4cc0eccdd81ba9004375000697adef6c608994c004dd7181c800cdd6981d000cc0f80092225980099b9000800389981f99bb037520106ea001c0162b30013371e01000713303f337606ea4020dd4003800c4cc0fccdd81ba900337500046600c00c00281d103a0c0f000503a2068914c00400a6eb8c0e4c0d8dd5000cdd7180c181b1baa001405d230383039303930393039303930393039303930390019181c181c981c981c981c981c981c800cdd2a4005374a90024dd79809181a1baa02b488888888888888cc88cc896600260740251980098231baa040912cc00400629344c966002003149a264b3001337206eb8c124c13400cdd71824800c4cc010010cc130004c13800a2a66090921326b65797320696e206173736f63696174697665206c697374206172656e277420696e20617363656e64696e67206f726465720016411c60980028250c1300050494dc024005223259800981e800c566002607a60906ea800a298103d87a80008a6103d87980004119159800981c800c566002607260906ea800a2980103d87a80008a6103d87b8000411913322598009821800c4c96600266e2000c0062980103d87980008acc004cdc4000801c530103d87b80008a6103d87a800041248248dd6982718259baa0048acc004c0fc006298103d87b80008a6103d879800041208240dd6982618249baa00330483754004823104618239baa002912cc004c0f0006298103d87a80008acc004cdc4000a40011302d3304a302d3304a3750601e004660946ea0c03c0052f5c097ae089816998251816998251ba80023304a375000297ae04bd70208a4115225980099b900020018a60103d87980008acc004cdc7801000c530103d87a80008a6103d87b80004114822a46058660926ea0004cc12530010101004bd704888cc88cc010cdc11bad304e002375a609c609e00266e08dd698270009bad304e304f0023049375400660926ea80064609460966096609660966096609660966096609660960032304a304b304b304b304b304b00191825182598259825800c8c128c12cc12cc12cc12cc12cc12cc12c00646094609660966096609660966096609660960032232598009800a40211598009800a4001148002266e3922010801020408102040800000241191598009800a40811337049040021980180199b800024803e266e092080808080203300300333700004901fa08c41186e200066ebd300103d8798000912cc004006297ae0899198259ba9001330030033233001001304e0032259800800c52f5c11332259800cc004cdc7801002d28528a0948998279ba900233004004001899802002000a094375c609c002609e0028260dd71825800a0929bac3049304a304a3046375407a911111111111111114c004c16c0466eb4c16804660200212259800800c520008980899801001182e800a0b49181e9982d192cc004c144c160dd5000c4c96600260a460b26ea8c0f0c168dd5182e982d1baa0038980d9982e1ba80014bd7044c06ccc170dd41809000a5eb810571bad305c305937540031001415860b660b06ea8c16cc160dd50009982d192cc004c144c160dd5000c4c96600260a460b26ea8c0f0c168dd5181e182d1baa0038980d9982e1ba80014bd7044c06ccc170dd419b80001480052f5c082b8dd6982e182c9baa0018800a0ac305b30583754607460b06ea80052f5c1222225980099814a4812c44656274206d696e74696e672066656520726174696f206973206265747765656e205b30252c20313030255d0059800cc005300106d8799f0001ff009119b89002001802a01e8cc0040164466e2400800660209001201e8a50416515980099814a49344c69717569646174696f6e2070726f63657373696e672066656520726174696f206973206265747765656e205b30252c2035255d0032598009828982e1baa0018acc006600298106d8799f0001ff009119b89002001802a0208cc0040164466e2400800660c060ba6ea8005010452820b48b20b4330124802920c8018acc004cc0a524013953746162696c69747920706f6f6c207769746864726177616c2066656520726174696f206973206265747765656e205b30252c20313030255d0059800cc005300106d8799f0001ff009119b89002001801a01e8cc00400e4466e2400800660209001201e8a50416515980099814a4933526564656d7074696f6e207265696d62757273656d656e7420726174696f20696e206265747765656e205b30252c203235255d0032598009828982e1baa0018acc006600298106d8799f0001ff009119b89002001801a0208cc00400e4466e2400800660c060ba6ea8005010452820b48b20b433012480c920c801899814a48134526564656d7074696f6e2070726f63657373696e672066656520726174696f20696e206265747765656e205b30252c203130255d0032598009828982e1baa0018acc006600298106d8799f0001ff009119b8900200180120208cc00400a4466e2400800660c060ba6ea8005010452820b48b20b4330124805120c8018a50416514a082ca2941059452820b29192cc004c134c160dd5000c4c170c164dd5000c54cc15d2401263c65787065637465643e2044656e6f6d696e61746f722063616e6e6f74206265207a65726f2e001641586601c6eb4c16cc160dd50009bad303a305837540032222598009981424811e524d52206973206265747765656e205b313030252c2031305f303030255d0059800cc004c03d20029119b89002001802201c8cc0040124466e24008006601e906400a01c8a504161159800998142491d4d52206973206265747765656e205b313030252c2031305f303030255d0059800cc004c03d20029119b89002001801a01c8cc00400e4466e24008006601e906400a01c8a504161159800998142491f4d61696e74656e616e636520726174696f206d757374206265203e3d204c52009800801c88cdc4800801400900e456600266050921214c69717569646174696f6e20726174696f206d757374206265203e3d20313030250098009807a400522337120040030024039133028491174d696e20636f6c6c61746572616c20706f73697469766500303b0018a50416114a082c22941058452820b091111112cc004cc0ad2401236941737365742063616e6e6f74206265206120636f6c6c61746572616c20617373657400980099b8f375c60c260bc6ea801c00694294505b45660026605692012c436f6c6c61746572616c20617373657420746f2069417373657420726174696f20697320706f73697469766500300a332233225980099b880020018a6103d87980008acc004cdc40008014530103d87b80008a6103d87a8000417c82f8cdc11bad3063002375a60c660c800266e08dd698318009bad30633064002305e3754980106d8799f0001ff00305e375400d159800acc004cc0ad2401274d696e74696e672066656520726174696f206973206265747765656e205b30252c20313030255d0059800cc005300106d8799f0001ff009119b89002001802a0228cc0040164466e240080066024900120228a50416d13302b49012a526564656d7074696f6e2066656520726174696f206973206265747765656e205b30252c20313030255d0059800cc005300106d8799f0001ff009119b8900200180220228cc0040124466e240080066024900120228a50416d14a082da2b30013302b491224d696e206d696e74696e6720616d6f756e74206973206e6f6e2d6e65676174697665003024003899815a49254d696e20726564656d7074696f6e20616d6f756e74206973206e6f6e2d6e656761746976650030240028a50416d14a082da294105b452820b64888888888cc8a600260ca0053065306600298009bad304430623754608860c46ea80f26eb8c19402d222259800acc004c178c194dd5001c528c4c8c9660026606a921415472656173757279207769746864726177616c2063616e6e6f742062652061626f7665207769746864726177616c206c696d697420666f72206c6f76656c61636500337133001001a44100a4410041246eb4c05cc1a0dd5182518341baa0428acc004cc0d524013d5472656173757279207769746864726177616c2063616e6e6f742062652061626f7665207769746864726177616c206c696d697420666f7220494e4459003371266058002603060d06ea81b8dd6980b18341baa304a306837540851598009981aa49295472656173757279207769746864726177616c2076616c75652063616e6e6f7420626520656d70747900980099baf374c002980101a000a50a5141951598009981aa49355472656173757279207769746864726177616c2063616e6e6f7420726571756573742044414f206964656e7469747920746f6b656e00305c3302c001302b306837540dd1598009981aa4812f5472656173757279207769746864726177616c2063616e20636f6e7461696e206d6178206f6620382061737365747300337126601c01c6eb0c128c1a0dd5001240211330354901355472656173757279207769746864726177616c2063616e20636f6e7461696e206f6e6c7920706f73697469766520616d6f756e74730032330010013758609660d26ea800c896600200314a315980098251bad306d306e306e306a375460da003133002002306e0018a50419c835a2941065452820ca8a50419514a0832a2941065191980080099198008009bac304b3069375400644b30010018a5eb822660d86e9cc8c8cc1b8c1bc008cc1b8c1bc004cc1b8c1bcc1c00052f5c060de00260d46ea8c1b4004cc008008c1b800506b112cc004006297adef6c60899194c004dd71837000cdd698371837800ccc010010c1bc00e6eb8c1b80092222598009831801c400a33001002800cc8c8008c05c004cc1c4cdd81ba9004375000697adef6c6091111192cc004c0f80060051300300141c86530010048054026444453001005801c0120050014018820140f103920d818370009bac306c00141a860d260cc6ea800d06345660026606692011b496e636f727265637420476f7665726e616e6365206f75747075740098008084c09ccc1a00d12f5c13026330683232304d3306a375060406eb4c1acc1a0dd50211983518358011983518358009983518359836000998351ba83020375a608c60d06ea81092f5c060d600260d460cc6ea81012f5c130213069306637540d94c0103d87a8000408915980099819a4927546865207472616e73616374696f6e206d757374206265207369676e6564206279206f776e657200330493758602860cc6ea81740062b30013303349012850726f706f73616c20696e636f6d70617469626c6520776974682063757272656e742073746174650059800982b98329baa004899b87375a60d260cc6ea8c1a4c198dd5002180f1bad304a3066375408114a2831a2b30013303349010d496e76616c6964207054696d6500332259800992cc004c16400629462b300130610018a518a5041988330c19cdd51980f983598341baa002306b3068375400313259800982e800c528c56600260c200314a314a0833106618339baa3301f304a30683754004609460d06ea800629410651805980a98331baa05d300b304b33068304b33068302733068375066e04038dd6980a18331baa06c4bd70198344c00528d30103d87a8000a60103d8798000418c97ae033068304b330683027330683750600a6eb4c050c198dd503625eb80cc1a26002946980103d87a8000a60103d8798000418c97ae04bd704566002660669201245472616e73616374696f6e206d696e742065786163746c79203120706f6c6c546f6b656e003025374c6042609060cc6ea81b22b300133033490113496e76616c696420506f6c6c206f75747075740098008084c09ccc1a0c12ccc1a0c09ccc1a0c0a0c198dd503625eb80cc1a1300103d87a80004bd7025eb82604c660d06096660d06096660d06ea0c078dd6983498331baa040330683752002660d0008660d0006660d098106d8799f0000ff00330683750004660d0981010000330684c101000033068301730663754609060cc6ea8100cc1a0dd418029bad304430663754609060cc6ea8100cc1a0dd419b80002375a602c60cc6ea8c120c198dd502019834182518331baa04033068302830663754609060cc6ea81012f5c097ae04bd704cc08cc084c120c198dd5036194c004dd7183518339baa0019bae304930673754003337046eb4c1a8c19cdd5182498339baa04133014014375a608a60ce6ea810502c180b18331baa06ca60103d87a8000408913259800982d800c4c8c8c8c8cc8966003300130103070005980818380024c040c1c000e602060e0005301030703071002404515980098309bad301d306d375408f14a3132598009839000c4c96600266ebcc0c0cc1c4c078c1bcdd503aa5eb80c1c8c1bcdd5183918379baa3051306f375400313259800983218379baa0018992cc004c1d4006264b300130663071375400313232323232323232329800983f000cdd7183f004cdd6983f0044c1f801a60fc00b307e004983f001cc96600260f80031598009837983d800c5a260e860f600283ca2c83e8dd5183f001244444444b300130870100989983698430080789983680289983680209983680189983680109983780409982824812469417373657420776974682073616d65206e616d6520616c7265616479206578697374730059800acc004c1ecc20804dd518191841809baa012898179981c00b9bae308601308301375402514a084000a29462b30013375e6607002e6eb8c21804c20c04dd5009260103d87b80008992cc004c1e0c20c04dd5000c4c0c0cc0e4060dd71843809842009baa0018a5142040460626106026ea804a2941080012100028b210802183f000983e800983e000983d800983d000983c800983c000983b80098391baa0018b20de30740018b20e4307037540031641b4609c60a660de6ea8c144c1bcdd5000c54cc1b52401193c65787065637465643e204d697865642076657273696f6e73001641b060e20031641bd30013758609e60da6ea8192603e60da6ea81ce98103d879800041248352294106a18378009bae306e004306e001306d001306c0013067375460d460ce6ea80162b3001305f0018991919194c004c038c1b8012601c60dc007300e306e00298071837000cc038c1b8c1bc00500f183700098368009836000983598339baa306a3067375400b159800982b800c4c8c8c8c9660033001300e306e003980718370014c038c1b80066eb4c1b8c1bc00500d456600260be60d46ea8c1b801229422945068452820d0306e001306d001306c306c001306b306b306b3067375460d460ce6ea80162b3001305900189919194c004c034c1b400e601a60da005300d306d0019bad306d306e001403060da00260d800260d660d660d660d660d660ce6ea8c1a8c19cdd5002c56600266e1d2008001899191919194c004c1bc016601e60de009300f306f003980798378014dd69837800cdd698379838000cdd7180e98361baa072403460de60de00260dc00260da00260d800260d660ce6ea8c1a8c19cdd5002c56600266e1d200a001899191919194c004c1bc016601e60de009300f306f003980798378014dd69837800cdd698379838000cdd7180e98361baa072403460de60de60de60de00260dc00260da00260d800260d660ce6ea8c1a8c19cdd5002c56600266e1d200c0018992cc004cc0d524012a50726f706f73616c206465706f73697420696e2072616e6765205b302c2031305f30303020494e44595d005980098171bad306b306837540031337126eb4c1acc1a0dd5000a410121bf809514a0832a2b300133035490128566f74696e6720706572696f6420696e2072616e6765205b3120686f75722c2031206d6f6e74685d005980099b8948202eadc0cdd6982518341baa001899b89375a609460d06ea80052080a0f6a7138a5041951598009981aa49264566666563746976652064656c617920696e2072616e6765205b302c20313220686f7572735d005980098171bad304c306837540031337126eb4c130c1a0dd5000a410171325314a0832a2b30013303549012b45787069726174696f6e20706572696f6420696e2072616e6765205b31206461792c2031206d6f6e74685d005980099b8948203c2c948dd6980c18341baa001899b89375a603060d06ea80052080a0f6a7138a5041951598009981aa492b50726f706f73696e6720706572696f6420696e2072616e6765205b3120686f75722c2031206d6f6e74685d005980099b8948202eadc0cdd6982318341baa001899b89375a608c60d06ea80052080a0f6a7138a5041951598009981aa492950726f706f73696e6720706572696f64203c20566f74696e6720706572696f64202d203120686f757200337106eb4c118c1a0dd500099b80375a609460d06ea800520ffb9b7038acc004cc0d52411f546f74616c2073686172647320696e2072616e6765205b312c20313030305d005980099b8948008dd6980c98341baa001899b89375a603260d06ea800520d00f8a5041951598009981aa49234d696e2071756f72756d20696e2072616e6765205b302c2031306d696c20494e44595d005980098171bad302a306837540031337126eb4c0a8c1a0dd5000a4101012bcf138c0914a0832a2b300133035490127456c6563746f7261746520696e2072616e6765205b31356d696c2c2033356d696c20494e44595d005980099b8948203037f6a3ba418dd6980d18341baa001899b89375a603460d06ea80052080c089a9a2f50f8a5041951598009981aa49384d6178207472656173757279206c6f76656c616365207370656e6420696e2072616e6765205b302c2034352062696c6c696f6e204144415d005980098171bad3017306837540031337126eb4c05cc1a0dd5000a41010149ddbda1df3e0314a0832a26606a921354d617820747265617375727920494e4459207370656e6420696e2072616e6765205b302c203335206d696c6c696f6e20494e44595d005980098171bad3016306837540031337126eb4c058c1a0dd5000a410181135345ea1f14a0832a2941065452820ca8a50419514a0832a2941065452820ca8a50419514a0832a2941065452820ca306a3067375400b159800982c000c4c8cc0d52411d43616e6e6f7420636f6e7461696e206475706c6963617465206b657973003375e6e9ccc04c04c004dd380099198008009bac306b306c3068375460d660d06ea8018896600200314bd7044cc1acc1b0dd61836000998010011836800a0d489981a2491e5465787450726f706f73616c2773206c656e677468206973203c3d20363400337126e34dd7183518339baa005482000506420c84190832106420c841908320c194dd5002452820c68a50418d14a0831a2941063452820c68a50418d14a0831860c80126e000208acc004c0f804a26644b3001304c0018992cc004cc05924010e4d697865642076657273696f6e73003375e609860926ea8c130c124dd5181598249baa001300a3304b300b3049375409e97ae08acc004cc05924012e706f6c6c206d616e6167657220696e707574206d75737420757365207468652072696768742072656465656d657200323322598009820000c4c8c96600260a40050048b209e375a60a000260986ea800e2b30013044001899192cc004c14800a00916413c6eb4c140004c130dd5001c56600260780031323259800982900140122c8278dd6982800098261baa0038b2092412482484cdd78009817998261ba80044bd7018249baa0013259800981f18249baa0018982698251baa0018b208e3232330010013756601c60966ea8108896600200314c0103d87a80008992cc004cdd78021826000c4c0c8cc13cc1340052f5c113300300330510024128609e0028268c028cc12cc130c124dd5000a5eb822b30013301649114496e636f727265637420676f76206f75747075740098009bac302d30493754081300a3304b0174bd704c024cc12cc8c8c8c0c4cc138c13c00ccc138c13c008cc138c13c004cc138c13cc140004cc138dd419b80375a605460986ea809920014bd701827800982700098249baa0234bd704c010c130c124dd5027d30103d87a8000401513301649013b4d757374206275726e203120706f6c6c20746f6b656e20616e64206f7074696f6e616c6c79206d696e7420616e207570677261646520746f6b656e005980098041ba63300630073004302b3049375409e6008605a60926ea813e2946260106e98c01cc010c0acc124dd5027a08c8a50411914a0823229410461825800c590491bad304930463754081300137586092608c6ea80f66050608c6ea8132980103d87980004089159800981b00944cc04d24011d5370656e642065786163746c792031205570677261646520546f6b656e00303e323322330020020012259800800c52000899b8033002002304d0013300d3756605660926ea8c0acc124dd51826000801a09437586094608e6ea80f8c0a8c118dd5026454cc1112410472646d720016410c821904311111191919800800803912cc00400629422b300132598009802000c56600266ebcc0c4c134dd5000803c4c96600200314a31598009829000c4c8ca60026eb8c14c0066eb4c14cc1500066eb8c14c0092225980099b8f001489008acc004cdc7801a441008acc004c11cc148dd5005c566002603200513371200490404df701452820a08980c80120a08a50414114a0828060a60026eb0c144006294104f209e32330010013300b37566060609c6ea8008c03001c896600200314bd7044c8cc88cc88cc008008004896600200310038991982b9ba733057375200a660ae60a8002660ae60aa00297ae0330030033059002305700141546eacc14800cdd7182780099801801982a0011829000a0a08a50412914a08250c13c006294626600400460a0002824904d2cc004c0f4c120dd5002448c8cdd7982718259baa304e304b3754004002609a60946ea8016246466ebcc138c12cdd5001000982698251baa005411853001375c6090608a6ea80066eb8c09cc114dd5000d200240284646600200200444b30010018a5eb7bdb1822646609066ec0c114004dd319198008009bab30470022259800800c52f5bded8c11323304b3376060900026ea0c040dd698248009980180198268011825800a09233003003304a0023048001411844653001001801c0090011112cc00400a200313298008024c13000f30010029bae30470019bab304800191111192cc004c05c00600513003001412c6465300100180340150011112cc00400a200313298008024c15800f30010029bae30510019bad3052001802a03a401060a8004829140550122008304a00241208a5040c4606a60646ea8c050c0c8dd5000912cc00400620031533032002100140c4606860626ea80062c8170cc02cdd6181998181baa02701e8b2062181780098170009816800981600098139baa0018b204830293026375402716408c8118888c8c8cc004004014896600200314bd7044cc8966002600a601c60586ea800a26605c0046600800800313300400400140a4605a002605c0028159660026036604c6ea8006246600a6eacc028c0a0dd5000801c48c02260026eacc028c0a0dd5000cdd7181598141baa0039bae300a302837540068049024111919800800801912cc004006298103d87a80008992cc004cdd7981618149baa0010048980719815800a5eb82266006006605a0048130c0ac00502911180ecc00400a6eb8c0a0c094dd5000cdd7180398129baa00140182232598009809000c4c966002604600313300930220010038b2040301e3754007159800980b000c4c966002604600313300730220010038b2040301e37540071598009807000c4c8c96600260480050048b2042375c6044002603c6ea800e2c80d901b2036301c375400444b30013010301b3754005132323232323232323232323298009815800cdd698158064dd69815805cdd698158054dd69815804cdd698158044dd69815803cdd698158034dd69815802cdd698158024dd69815801244444444444b3001303700c89980f981b00709980d00580c4590340c0ac004c0a8004c0a4004c0a0004c09c004c098004c094004c090004c08c004c088004c084004c070dd50014590191802002116401c300900130043754013149a26cac8009"
6965
7046
  };
6966
7047
 
6967
7048
  // src/contracts/gov/scripts.ts
@@ -7722,6 +7803,9 @@ async function adjustStakingPosition(stakingPositionRef, amount, params, lucid,
7722
7803
  kind: "inline",
7723
7804
  value: serialiseStakingDatum({
7724
7805
  ...stakingPositionOut.datum,
7806
+ positionSnapshot: {
7807
+ snapshotAda: stakingManagerOut.datum.managerSnapshot.snapshotAda
7808
+ },
7725
7809
  lockedAmount: newLockedAmount
7726
7810
  })
7727
7811
  },
@@ -7946,7 +8030,7 @@ function castInterestOracleParams(params) {
7946
8030
  var _interestOracleValidator = {
7947
8031
  type: "PlutusScriptV3",
7948
8032
  description: "Generated by Aiken",
7949
- cborHex: "59097e59097b010100229800aba2aba1aba0aab9faab9eaab9dab9cab9a4888888896600264653001300900198049805000cdc3a400530090024888966002600460126ea800e2653001300e00198071807800cdc3a40009112cc004c004c034dd500444c8c8c966002602a00513259800980298089baa001899192cc004c06000a2b3001300730133754011133223322598009805980b9baa0028cc004c06cc060dd500148c070c07400644b30010018800c54cc06000840050172444b300133001491205458206973206e6f74207369676e6564206279206f7261636c65206f776e6572003232330010013758604060426042604260426042604260426042603a6ea8050896600200314a115980099b8f375c604200200714a31330020023022001406c80f8dd71801180d9baa0218992cc004cc009240115496e636f72726563742074782076616c6964697479003322980091192cc004c0500062b300130143020375400514c103d87a80008a6103d879800040791598009802000c566002600860406ea800a2980103d87a80008a6103d87b800040791332259800980d800c4c96600266e2000c0062980103d87980008acc004cdc4000801c530103d87b80008a6103d87a800040848108dd6981318119baa0048acc004c058006298103d87b80008a6103d879800040808100dd6981218109baa0033020375400480f101e180f9baa002980118109811181118111811181118111811180f1baa01598011804998101804998101801998101ba8337026eb4c014c078dd500c1bad3021301e375404897ae0330209800a51a60103d87a8000a60103d8798000406c97ae033020300933020300333020375066e00dd69802980f1baa018375a6042603c6ea80912f5c06604130014a34c103d87a8000a60103d8798000406c97ae04bd702444b300132598009802800c528c566002603400314a314a080f901f18101baa33003302430213754004604860426ea8006264b300130150018a518acc004c0680062946294101f203e3020375466006601060426ea8008c020c084dd5000c528203c118041980f992cc004c058c074dd5000c4c966002602e603c6ea8c018c07cdd51811180f9baa00389802198109ba80014bd7044c010cc084dd419b80001480092f5c080e0dd69810980f1baa0018800a0363020301d37546040603a6ea8004cc07cc966002602c603a6ea8006264b30013017301e3754600c603e6ea8c018c07cdd5001c4c010cc084dd4000a5eb8226008660426ea0cdc0000a400297ae040706eb4c084c078dd5000c400501b1810180e9baa3004301d375400297ae0370e900244c9660026600692012643757272656e742074696d652068617320746f206265203e3d206c6173745f736574746c656400337126eb4c004c074dd50031bad3004301d375402f133225980099802a492b496e74657265737420726174652068617320746f20626520696e2072616e6765205b30252c20313030255d005980098009bad3022301f37546044603e6ea8066266e24dd69811180f9baa3022301f375403266e09200250028a50407113300549120496e746572657374206f7261636c65206f757470757420696e636f72726563740098009bac30223023302300b9802198109805198109811180f9baa3022301f3754600c603e6ea801ccc08530103d87a80004bd7025eb8266e95200433021300a33021375066e00dd69811180f9baa008325980099b88375a600860406ea8024006266e0ccdc199b823370466e04004dd6980218101baa009375a604660406ea8c01cc080dd5004a41010141ede959b7c03690405844fdf500a801c54cc0792401015a001640746eb4c018c07cdd500c998109811180f9baa019330213006301f375403297ae04bd704dd59803180f9baa3006301f375400e91111919800800991919800800803912cc004006297ae0899912cc004c01400a26605600466008008003133004004001409860540026056002814166002602e60466ea8012246466ebcc0a4c098dd5181498131baa00200130283025375400b12323375e6052604c6ea8008004c0a0c094dd5002a0422259800800c528456600264b30013375e6014604c6ea8004016264b30010018a518acc004c0ac006264653001375c6058003375a6058605a003375c60580049112cc004cdc7800a45008acc004cdc7801a441008acc004c07cc0acdd5260103d87a80008acc004c03800a266e2400920809bee028a5040a51300e00240a514a0814a29410290c0b0004dd61815000c528205040a064660020026530010019bab300f3028375400732330010010072259800800c52f5bded8c11323302d3376060540026e98c8cc004004dd59816001112cc004006297adef6c608991981819bb0302d001375066e052000375a605c00266006006606400460600028170cc00c00cc0bc008c0b400502b20022225980080144006264664530010069818802cc8cc0040040148966002003133031337606ea4010dd3001a5eb7bdb1822653001375c605e00337566060003303400248896600266e4002000e26606a66ec0dd48041ba60070058acc004cdc7804001c4c966002b30010018a518a5040d5100289981b19bb037520126e98004009031194c0040060110034004444b30010028800c4c8cc8a600200d303d0059919800800802912cc00400626607a66ec0dd48021ba80034bd6f7b63044ca60026eb8c0ec0066eb4c0f000660800049112cc004cdc8004001c4cc104cdd81ba9008375000e00b15980099b8f0080038992cc004c0cc0062005133042337606ea4024dd4000801207a3370000e005133041337606ea400cdd400119803003000a07840f0303e00140f08030dd7181b0009bad3037001303900240dd133035337606ea400cdd300119803003000a06040c0303200140c08030dd718150009bab302b001302d00240ac44b30010018a5eb82264664466446600400400244b30010018801c4c8cc0c0dd3998181ba900533030302d00133030302e0014bd701980180198190011818000a05c375660560066eb8c0a0004cc00c00cc0b4008c0ac0050294528204630280018a518998010011814800a04440988a5040702904044bd1b8948002294101a1181018109810800c5282032374a90014528203045901519198008009bac301a0032259800800c5300103d87a80008992cc004cdd7980e180c9baa00100e898021980d800a5eb82266006006603a00480b0c06c005019180c980b1baa00a301437540166e9520008b20228b202a375a602c00260246ea80062c8078c05000e2c8090dd69809800980980098071baa0088b201618051baa0038b200e180480098021baa0098a4d1365640041"
8033
+ cborHex: "59095259094f010100229800aba2aba1aba0aab9faab9eaab9dab9cab9a4888888896600264653001300900198049805000cdc3a400530090024888966002600460126ea800e2653001300e00198071807800cdc3a40009112cc004c004c034dd500444c8c8c966002602a00513259800980298089baa001899192cc004c06000a2b3001300730133754011133223322598009805980b9baa0028cc004c06cc060dd500148c070c07400644b30010018800c54cc06000840050172444b300133001491205458206973206e6f74207369676e6564206279206f7261636c65206f776e6572003232330010013758604060426042604260426042604260426042603a6ea8050896600200314a115980099b8f375c604200200714a31330020023022001406c80f8dd71801180d9baa0218992cc004cc009240115496e636f72726563742074782076616c6964697479003322980091192cc004c0500062b300130143020375400514c103d87a80008a6103d879800040791598009802000c566002600860406ea800a2980103d87a80008a6103d87b800040791332259800980d800c4c96600266e2000c0062980103d87980008acc004cdc4000801c530103d87b80008a6103d87a800040848108dd6981318119baa0048acc004c058006298103d87b80008a6103d879800040808100dd6981218109baa0033020375400480f101e180f9baa002980118109811181118111811181118111811180f1baa01598011804998101804998101801998101ba8337026eb4c014c078dd500c1bad3021301e375404897ae0330209800a51a60103d87a8000a60103d8798000406c97ae033020300933020300333020375066e00dd69802980f1baa018375a6042603c6ea80912f5c06604130014a34c103d87a8000a60103d8798000406c97ae04bd702444b300132598009802800c528c566002603400314a314a080f901f18101baa33003302430213754004604860426ea8006264b300130150018a518acc004c0680062946294101f203e3020375466006601060426ea8008c020c084dd5000c528203c118041980f992cc004c058c074dd5000c4c966002602e603c6ea8c018c07cdd51811180f9baa00389802198109ba80014bd7044c010cc084dd419b80001480092f5c080e0dd69810980f1baa0018800a0363020301d37546040603a6ea8004cc07cc966002602c603a6ea8006264b30013017301e3754600c603e6ea8c018c07cdd5001c4c010cc084dd4000a5eb8226008660426ea0cdc0000a400297ae040706eb4c084c078dd5000c400501b1810180e9baa3004301d375400297ae0370e900244c9660026600692012643757272656e742074696d652068617320746f206265203e3d206c6173745f736574746c656400337126eb4c004c074dd50031bad3004301d375402f13259800998022492b496e74657265737420726174652068617320746f20626520696e2072616e6765205b30252c20313030255d005980098009bad3021301e37546042603c6ea8062266e24dd69810980f1baa3021301e3754030904044bd45282036899802248120496e746572657374206f7261636c65206f757470757420696e636f72726563740098009bac30213022302200a9801998101804998101810980f1baa3021301e3754600a603c6ea8018cc08130103d87a80004bd7025eb8266e95200433020300933020375066e00dd69810980f1baa007325980099b88375a6006603e6ea8020006266e0ccdc199b823370466e04004dd69801980f9baa008375a6044603e6ea8c018c07cdd5004241010141ede959b7c03690405844fdf500a410112f5153301d4901015a001640706eb4c014c078dd500c198101810980f1baa018330203005301e375403097ae04bd704dd59802980f1baa3005301e375400c9111191919800800803112cc00400629422b300132598009802000c56600266ebcc028c098dd500080344c96600200314a31598009815800c4c8ca60026eb8c0b00066eb4c0b0c0b40066eb8c0b00092225980099b8f0014881008acc004cdc7801a441008acc004c07cc0acdd5260103d87a80008acc004c03c00a266e2400920809bee028a5040a51300f00240a514a0814a29410290c0b0004dd61815000c528205040a064660020026530010019bab300f3028375400732330010010082259800800c52f5bded8c11323302d3376060540026e98c8cc004004dd59816001112cc004006297adef6c608991981819bb0302d001375066e052000375a605c00266006006606400460600028170cc00c00cc0bc008c0b400502b20022225980080144006264664530010069818802cc8cc0040040148966002003133031337606ea4010dd3001a5eb7bdb1822653001375c605e00337566060003303400248896600266e4002000e26606a66ec0dd48041ba60070058acc004cdc7804001c4c966002b30010018a518a5040d5100289981b19bb037520126e98004009031194c0040060110034004444b30010028800c4c8cc8a600200d303d0059919800800802912cc00400626607a66ec0dd48021ba80034bd6f7b63044ca60026eb8c0ec0066eb4c0f000660800049112cc004cdc8004001c4cc104cdd81ba9008375000e00b15980099b8f0080038992cc004c0cc0062005133042337606ea4024dd4000801207a3370000e005133041337606ea400cdd400119803003000a07840f0303e00140f08030dd7181b0009bad3037001303900240dd133035337606ea400cdd300119803003000a06040c0303200140c08030dd718150009bab302b001302d00240ac44b30010018a5eb82264664466446600400400244b30010018801c4c8cc0c0dd3998181ba900533030302d00133030302e0014bd701980180198190011818000a05c375660560066eb8c0a0004cc00c00cc0b4008c0ac005029452820468a50408c605000314a313300200230290014088813166002602a60426ea800e246466ebcc09cc090dd5181398121baa00200130263023375400912323375e604e60486ea8008004c098c08cdd5002203e45282036371290004528203423020302130210018a5040646e9520028a5040608b202a32330010013758603400644b30010018a60103d87a80008992cc004cdd7980e180c9baa00100e898021980d800a5eb82266006006603a00480b0c06c005019180c980b1baa00a301437540166e9520008b20228b202a375a602c00260246ea80062c8078c05000e2c8090dd69809800980980098071baa0088b201618051baa0038b200e180480098021baa0098a4d1365640041"
7950
8034
  };
7951
8035
 
7952
8036
  // src/contracts/interest-oracle/scripts.ts
@@ -8102,7 +8186,7 @@ var import_lucid40 = require("@lucid-evolution/lucid");
8102
8186
  var _interestCollectionValidator = {
8103
8187
  type: "PlutusScriptV3",
8104
8188
  description: "Generated by Aiken",
8105
- cborHex: "592434592431010100229800aba2aba1aba0aab9faab9eaab9dab9cab9a488888888cc896600264653001300b00198059806000cdc3a4005300b0024888966002600460166ea800e33001300c3754007370e90034dc3a4001370e90024c02cdd5002244444646644b300130060048acc004c050dd5006400a2c80aa2b3001300a0048991919194c004dd6980d800cdd6980d8024dd6980d801cdd6980d80124444b3001302000580545901d0c06c004c068004c064004c050dd50064566002600a009159800980a1baa00c8014590154566002600e009159800980a1baa00c801459015456600266e1d20080048acc004c050dd5006400a2c80aa2c8089011202240448088660026e95200092cc004c010c048dd5000c4c058c04cdd5000c5901048c058c05cc05cc05cc05c0064602c602e003222323322330020020012259800800c00e2646644b30013372200e00515980099b8f0070028800c01901844cc014014c07c0110181bae3018001375a6032002603600280c8c8c8cc004004018896600200300389919912cc004cdc8804801456600266e3c02400a20030064065133005005302000440646eb8c064004dd5980d000980e000a03414bd6f7b6300a40012232330010010032259800800c52f5c11332259800980280144cc068008cc01001000626600800800280a8c064004c0680050174dc4240012301630173017001911919800800801912cc00400629422b30013371e6eb8c06400400e294626600400460340028099017488c8cc00400400c88cc00c004c00800a60226ea802a44b30010018800c54cc04800840050114dd2a40052301630173017301730173017301730173017301700148888888888888a600244646600200200644b30010018a60103d87a80008992cc004cdd7981418129baa0010048980999813800a5eb8226600600660520048110c09c005025488c0626002005375c604a60446ea80066eb8c034c088dd5000a0189119805801119baf302630233754604c60466ea8c038c08cdd5000801488c966002602a60446ea80062604c60466ea80062c8100c8c8cc00400400c896600200314c103d87a80008992cc004cdd78021812800c4c050cc0a0c0980052f5c1133003003302a002408c60500028130c010cc0900092f5c09111192cc004c05c02633001223259800980d000c4c8c966002605c0050048b2056375a605800260506ea800e2b3001301e001899192cc004c0b800a0091640ac6eb4c0b0004c0a0dd5001c566002603200315980098141baa003801459029459025204a4094604c6ea800a6018604a6ea80ae6020604a6ea80ae6600a6eb0c0a0c094dd500d00a24444b3001301b302837540031323259800800c09a2b3001302f0018992cc00400605113259800981880144c8cc89660026044003132323298009bad3036001981b800cdd6981b001cdd6981b00124444b3001303b003899809181d001804c590380c0d8004c0d4004c0c0dd5001c566002604c0031323259800981b00140122c8198dd6981a00098181baa0038acc004c0840062b3001303037540070028b20628acc004c08c0062646644b30013037001899807181b000802c590341bad303400130350013030375400715980099b87480200062b3001303037540070028b20628acc004cdc3a401400313259800981a800c4c966002604860626ea8006264646644b3001303a0038044590371bad3037001375c606e004606e00260646ea80062c8178c0d00062c8190c0c0dd5001c56600266e1d200c0018acc004c0c0dd5001c00a2c818a2b30013370e9007000c4c8c966002606c0050048b2066375a606800260606ea800e2b30013370e9008000c4c8c966002606c0050048b2066375a606800260606ea800e2b30013370e9009000c56600260606ea800e0051640c51640b4816902d205a40b4816902d205a40b4816856600266022921205370656e74205554784f2063616e6e6f7420686176652061646d696e204e4654009800998069bab3019302e37546032605c6ea801401e94294502b44cc0452412b43445020696e70757420646f6573206e6f74206861766520616e20616c6c6f7765642072656465656d65720032598009810800c528c566002604a00314a31598009810000c528c56600266e1d200c0018a518a5040b0816102c2058302d375400314a08158c0b4dd500099805181818169baa0013756601c605a6ea808a0528170c0bc00502d4c004dd6181718159baa020802d30103d87a8000401d02640b08160cc020dd6181698151baa01f302d302a3754605a60546ea8c054c0a8dd5000981618149baa0018b204c4660024b300130183025375400312323375e605660506ea8c0acc0a0dd5001000981518139baa002891919baf302b302837540040026054604e6ea800902348888c8cc004004014896600200313302d337606ea4014dd400225eb7bdb1822653001375c6056003375a6058003303000248896600266e4002400e26606266ec0dd48049ba80080058acc004cdc7804801c6600201300880148cc0c8cdd81ba900a37500020051001401d133031337606ea400cdd400119803003000a05840b0302e00140b1222232330010010052259800800c4cc0b4cdd81ba9005374c00897adef6c608994c004dd71815800cdd59816000cc0c00092225980099b9000900389981899bb037520126e980200162b30013371e01200719800804c022005233032337606ea4028dd30008014400500744cc0c4cdd81ba9003374c0046600c00c002816102c0c0b800502c496600200314a314a0813a24444464b3001301d00180144c00c00502819b8000400391192cc004c06800626464b3001302e00280245902b1bae302c00130283754007159800980f000c56600260506ea800e0051640a51640948128c098dd50014dc0240049111111192cc004c08c04633001302d375404b2259800981098171baa0028991919912cc004c0dc00e00b1640d06eb8c0d0004dd7181a001181a00098179baa0028b2058912cc00400629344c966002003149a264b3001337206eb8c0c0c0d000cdd71818000c4cc010010cc0cc004c0d400a2a6605e921326b65797320696e206173736f63696174697665206c697374206172656e277420696e20617363656e64696e67206f72646572001640b860660028188c0cc00503048896600200514c0103d87a80008acc004c0880062603c66064606600497ae08cc00400e6068005337000029000a00640b4818a44b30013021302e375400513232332259800981b801c0162c81a0dd6981a0009bad30340023034001302f37540051640b114820225ea4464b300130220018acc004c088c0bcdd50014530103d87a80008a6103d879800040b51598009810800c5660026042605e6ea800a2980103d87a80008a6103d87b800040b513322598009814000c4c96600266e2000c0062980103d87980008acc004cdc4000801c530103d87b80008a6103d87a800040c08180dd6981a98191baa0048acc004c090006298103d87b80008a6103d879800040bc8178dd6981998181baa003302f3754004816902d18171baa0029180e19818192cc004c094c0b8dd5000c4c966002604c605e6ea8c06cc0c0dd5181998181baa00389809198191ba80014bd7044c048cc0c8dd41802800a5eb8102d1bad3032302f3754003100140b06062605c6ea8c0c4c0b8dd500099818192cc004c094c0b8dd5000c4c966002604c605e6ea8c06cc0c0dd5180d98181baa00389809198191ba80014bd7044c048cc0c8dd419b80001480052f5c08168dd6981918179baa0018800a0583031302e37546032605c6ea80052f5c1230313032303230323032303230323032001911112cc004cc0340100162b30013375e603260646ea801400e330013756603a60646ea8016005001401914a0817a294102f48c0c4c0c8c0c8c0c8c0c8c0c8c0c800646062606460646064606460640029111111111114c004c0f40326eb4c0f0032601401530090094888a60026082009375a6080009225980099b8800148002298103d87a8000899801801000a078488a60026eb4c10c00e6eb4c10cc11000e660026eb0c10cc100dd501a8012444b30013035304237540031325980099baf3047304437540020671332259800981c18229baa001899912cc004c0e8c11cdd5000c4c966002660506eacc0d0c124dd5181a18249baa001304c304d304d304d3049375409f13259800982018249baa0018992cc004c13c00626464b3001303f304c3754005132323232323232323232329800982d800cdd7182d805cdd6982d804cc16c02260b600f305b006982d802cc16c0126eb4c16c00e64b300130590018acc004cdc4a400860b00031689827982c000a0ac8b20b4375460b600491111111112cc004c19802e26606860ca02826644b300130560018992cc004c1a400626606860d000200716419860c86ea80262b3001305a0018992cc004c1a400626606e60d000200716419860c86ea80262b30013055001899192cc004c1a800a00916419c6eb8c1a0004c190dd5004c5906120c2418426606800c26606200a266062008266062006264b300130550018992cc004c1a000626606c60ce00203116419460c66ea802e2b300130590018acc004c18cdd5005c05e2c83222c830106018309baa00a3061375400f16418c305b001305a00130590013058001305700130560013055001305400130530013052001304d3754005164128264b3001303f304c375400313259800998169bab3039304e37546072609c6ea8004c0e8c138dd5001c4c9660026082609c6ea800626464646644b300130580038992cc004c11cc150dd5000c4c8c96600260b60051323232598009981ea490f4261642074782076616c696469747900332259800992cc004c13800629462b300130530018a518a50416882d0c16cdd519814982f982e1baa002305f305c3754003132598009827800c528c56600260a600314a314a082d105a182d9baa330293047305c3754004608e60b86ea8006294105918131812982d1baa04f302630483305c30483305c303c3305c375060066eb4c08cc168dd503025eb80cc172600294698103d87a8000a60103d8798000415c97ae03305c30483305c303c3305c375066e00080dd69811982d1baa0604bd701982e4c00528d300103d87a8000a60103d8798000415c97ae04bd7045660026607a9201274d757374206f6e6c79206d696e742074686520616363756d756c6174656420696e746572657374003375e608c60b46ea813cdd319912cc004c13800e297adef6c608991919800800a5eb7bdb1808966002003133061337606ea4014dd3001a5eb7bdb1822653001375c60be003375660c0003306400248896600266e4002400e2660ca66ec0dd48049ba60070058acc004cdc7804801c4cc194cdd81ba9009374c00e003133065337606ea400cdd300119803003000a0c0418030620014180646600200297adef6c602259800800c4cc180cdd81ba9003375000a97adef6c608994c004dd7182f000cdd6982f800cc18c0092225980099b9000700389983219bb0375200e6ea00240162b30013371e00e007133064337606ea401cdd4004800c4cc190cdd81ba900337500046600c00c00282f905f0c18400505f20b2375c604460b46ea8180dd7182e982d1baa00f8acc004cc0f52401205370656e74205554784f2063616e6e6f7420686176652061646d696e204e46540098009981c9bab3045305a3754608a60b46ea805cc114c168dd5030528528a0ae89981ea48146436f6e74696e75696e67206f7574707574206d7573742068617665206e6f20646174756d20616e6420686f6c642074686520616363756d756c6174656420696e74657265737400980080a4c0f0cc170c120cc170058cc171300103d87a80004bd7025eb8298107d87b9fd87980ff00cc004dd59822982d1baa3045305a375402f375c604460b46ea81826eb8c174c168dd5007a444b3001304f0048801c66002007002991900118118009982f99bb037520026ea00112f5bded8c1222223259800981d800c00a260060028300ca600200900780548888a600200b003802400a002803103d281ca06c4168a6103d87a8000409114a082ba2941057452820ae375a60b86530010019bac305d305a375409f4bd7081010000810101008103d8798000200222259800801440063300100398300014ca60026eb4c18000660a660b86ea8c180c1840066eb4c18000a60c000691112cc004cc100dd5982618309baa304c30613754002609060c26ea819e264b30013370e900718309baa0018992cc004c19c00626644b3001305730643754003132598009835000c4c8c96600260b460ce6ea800a26464646465300130700019bae30700049838001cdd6983800124444b30013075005899823983a0048998218010992cc004c190006264646644b3001307a003807c590771bad3077001375a60ee00460ee00260e46ea80162b300130680018991919912cc004c1e800e01f1641dc6eb4c1dc004dd6983b801183b80098391baa0058b20de41bc60e06ea80122c839060e000260de00260dc00260da00260d06ea800a2c83284c8c8c8ca60026eb4c1b800660dc60de003375c60dc007306e002488896600260c260dc6ea800e26464b30015980099b8f004375c60e860e26ea809a266ebc00cc170c1c4dd5013452820dc8acc004cdc419b80001375a607860e26ea81dc0de264b3001305a0018992cc004c194c1c8dd5000c566003300130763073375400330553307530763073375460bc60e66ea804d2f5c13374a90021983a98309983a98309983a983b0061983a9ba90063307500533075375066e00020008cc1d4c184cc1d4dd401c9983a9ba801b4bd7025eb812f5c097ae09bab305e3073375460bc60e66ea804e98103d879800040f5133075375066e00050008cc1d4dd4182400b1983acc00405698103d87a8000a60103d879800041c097ae08a99838a481333c65787065637465643e20457870656374206120636f727265637479207570646174656420636f6e74696e75696e6720434450001641c11533071491333c65787065637465643e205468657265206973206120636f6e74696e75696e67206f757470757420666f722074686520434450001641c0660666eb0c164c1c8dd503380ac54cc1c124012a3c65787065637465643e20546865726520697320736f6d65206163637275656420696e7465726573742e001641bc64b3001337120026eb4c1d4c1c8dd5012456600266e20dd6982c98391baa024038899b803370666e08cdc09bad30753072375404800200e904040507b7a566df00d99b833370666e08cdc1180d9bad3059307237540486eb4c1d4c1c8dd5182e98391baa02400748202c227efa80541022a660e092010155001641bd15980099b88002038899b833370666e08cdc1180d8011bad30753072375460ba60e46ea809001d2080b089fbea0150408a998382490156001641bc8378dd6983a183a801454cc1bd24012d3c65787065637465643e20497420697320746f6f20736f6f6e20746f20736574746c6520696e7465726573742e001641b9153306f491413c65787065637465643e20416c6c20434450732061726520666f72207468652073616d652069417373657420616e6420636f6c6c61746572616c2061737365742e001641b86eb4c1cc004c1bcdd5001c5906c0c1b8004c1b4004c1b0004c19cdd50009834800c5906718329baa0018b20c4375a60cc00260a0609460c66ea8c138c18cdd5001c5906418311baa0018b20be3303e3064306137540026eacc108c184dd502b456600266ebcc190c184dd5183218309baa304c3061375400203b159800cc00400e94294505e44cc18cdd4001198319ba8004330639800a51a60103d87a8000a60103d8798000417897ae08a9982fa4812845787065637420612073696e676c6520696e74657265737420636f6c6c6563746f7220696e707574001641791330633750004660c66ea0010cc18e60020074c103d87a8000a60103d8798000417897ae0417882f060c0002801905d19b80375a60b660b06ea80296600266e20dd6981f982c1baa00a01e899b833370666e08cdc118009bad303f305837540146eb4c16cc160dd51821982c1baa00a482020283dbd2b36f806d2080b089fbea0150268a9982b249015a001641546e040762c82c0dd6982c800982a9baa0018b20a430570048b20aa375a60aa0026eb4c15400cc154004c150004c13cdd5000c5904c181d981a98271baa3039304e3754003153304c4914c3c65787065637465643e205468652070726f7669646564207265662e20696e70757420696e64657820636f72726573706f6e647320746f2074686520696e746572657374206f7261636c652e0016412c60a0609a6ea80062a660969201473c65787065637465643e2054686572652069732061207265662e20696e707574206174207468652070726f766964656420696e746572657374206f7261636c6520696e6465782e001641286601a6eb0c0dcc130dd50208059827000c5904c18251baa0018b208e3036303030493754606860926ea80062a6608e92014d3c65787065637465643e205468652070726f7669646564207265662e20696e70757420696e64657820636f72726573706f6e647320746f2074686520636f6c6c61746572616c2061737365742e00164118609660906ea80062a6608c92014e3c65787065637465643e2054686572652069732061207265662e20696e707574206174207468652070726f766964656420636f6c6c61746572616c20617373657420696e70757420696e6465782e001641146092608c6ea8004cc01cdd6181898231baa03b0068a998222481493c65787065637465643e20546865206669727374206f75747075742069732074686520696e74657265737420636f6c6c656374696f6e20636f6e74696e75696e67206f75747075742e0016410c608e60886ea8c11cc110dd5181798221baa001330053758605660886ea80e520008a99821249413c65787065637465643e205468652070726f766964656420696e70757420696e64657820636f72726573706f6e647320746f20746865206f776e20696e7075742e00164104608c60866ea80062a6608292013d3c65787065637465643e20546865726520697320616e20696e707574206174207468652070726f7669646564206f776e20696e70757420696e6465782e001641001132329800912cc004c08cc0c0dd500144c966002606c00313300430350010028b2066303137540051640b92303330343034303430343034303430343034001911919800800801912cc004c094c0c8dd5000c4cc06400cdd7181b18199baa00189919b89375a606e00264660020026eb0c0e0c0e4008896600200314800226644b30013300700700289806800c4005035181c80099801001181d000a06e30333754002818122259800981180b44cc8966002604c60666ea8006264b3001303900189919198040008acc004cc069241235265666572656e636564205554784f206d75737420686176652061646d696e204e4654003301637566044606e6ea8c088c0dcdd5001002c4cc0692412041646d696e206d756c7469736967206d757374206265207361746973666965640033006303a303737540026eb0c01cc0dcdd5016452820683023301d303637546042606c6ea8004c0e00062c81b0cc048dd6180f981a1baa029303730343754606e60686ea8c07cc0d0dd5181b981a1baa0018b2062301d30323754070660246eb0c0d4c0c8dd5013810c566002604a02d19800912cc0040062900044c024cc008008c0e00050354c074c0c8dd501c4c078c0c8dd501c4cc048dd6181a98191baa02702148888c8c8c966002605660706ea80122646466018002264b300130400018991991198080010992cc004cc08d24011e5370656e74205554784f206d75737420686176652061646d696e204e4654003301f3756605660806ea8c0acc100dd5003806c56600266046920125466f756e646174696f6e206d756c7469736967206d75737420626520736174697366696564003300f30433044304430443044304430443044304430443044304430403754605660806ea8008dd6180818201baa0358acc004cc08d2401234e65772061646d696e67206d756c74697369672063616e6e6f7420626520656d7074790030080018acc004cc08d241244e65772061646d696e206d756c7469736967206d75737420626520736174697366696564003300f0013758602060806ea80d62b300133023490121436f6e74696e75696e672076616c7565206d757374206265207468652073616d650098009bab302b304037540093756605660806ea8c0acc100dd5003d300103d87a800040511330234901244f6c6420616e64206e657720646174756d73206d75737420626520646966666572656e7400980099baf006003a50a5140f514a081ea294103d4528207a8a5040f514a081e8c108c0fcdd500118151812181e9baa00132598009821000c4c9660026062607c6ea8006264646464653001375a608e003375a608e00b375a608e007375a608e00491112cc004c130016264b3001303b3048375400313232323232323232323232329800982c000cdd6982c0064dd6982c005cdd6982c0054dd6982c004cdd6982c0044dd6982c003cdd6982c0034dd6982c002cdd6982c0024dd6982c001244444444444b3001306400c89981b183180709981900588114590610c160004c15c004c158004c154004c150004c14c004c148004c144004c140004c13c004c138004c124dd5000c5904618258044590490c11c004c118004c114004c110004c0fcdd5000c5903c18159812981f1baa3029303e375460820031640fd300137586050607a6ea80ca0134c103d87980004064607e0031640f4660486eb0c088c0ecdd5018180b180e9981e981f181d9baa3026303b375400497ae030273021303a3754604a60746ea8004c0f0c0e4dd50024590361800800912cc004c0acc0e0dd5000c528c4c8cc8966002604800515980099b89002300600189919800800801112cc00400629462b30013300700730410018998010011821000c528207640fd14a081ca29410391bad303d0013758607a607c00260726ea8005036180200222646644b3001302730343754003132598009816181a9baa001899912cc004c0f0006264b3001302b303837540031323322598009820000c4cc084dd6181f800912cc00400a264b30013031303e3754003133025300c37566056607e6ea80d0dd71821181f9baa0018b2078323300100137586054607e6ea801c896600200314c103d87a80008992cc006600266ebc00530103d87a8000a50a5140f910018998018019822801207c325980099b8f375c60880020171302f33043304430450014bd7045300103d87a800040f86eb0c10c00504144c8c8cc8966002608c0071300530460068b2086375c60860026eb8c10c008c10c004dd61820801207e8b207a375a607a002607c00260726ea80062c81b0c094c07cc0e0dd51811981c1baa303b0018b2072375c6072606c6ea800660026eb0c084c0d8dd5015cc0e4c0d8dd501e530103d879800040491640cc6070606a6ea8c0e0c0d4dd51810181a9baa3038303537540031640c86002002660266eb0c0d8c0ccdd5014011112cc004006297ae089981b1819981b80099801001181c000a06a40bc8178600200244464b30013023001899192cc004c0dc00a0091640d06eb8c0d4004c0c4dd5001c566002604e003132332259800981c000c4cc064dd6181b800912cc00400a00f19800804cc0e400a26002607400480490374590351bad30350013036001303137540071640b88170c0bcdd500120542223259800800c528c56600260680031323298009bae30350019bad303530360019bae303500248896600266e3c0052201008acc004cdc7801a441008acc004c09cc0d0dd5003c56600266e252000002899b89002482026fb80a294103244cdc4a40000048192294103245282064181a8009bac30330018a5040c48188c8cc004004ca60020030059919800800802912cc004006297adef6c608991981b19bb03033001374c64660020026eacc0d4008896600200314bd6f7b63044c8cc0e4cdd8181b0009ba83370290001bad303700133003003303b002303900140dc660060066070004606c00281a10011112cc00400a200313298008024c0e000f30010029bae30330019bab303400191111192cc004c0480060051300300140dc6465300100180340150011112cc00400a200313298008024c10800f30010029bae303d0019bad303e001802a0304010608000481f1404100d2008303600240d044b30010018a5eb82264664466446600400400244b30010018801c4c8cc0e4dd39981c9ba90053303930360013303930370014bd7019801801981d801181c800a06e375660680066eb8c0c4004cc00c00cc0d8008c0d00050321022111191980880211801180a18149baa00159800980c98131baa00189198039bab30133028375400200712301098009bab301330283754003375c605660506ea800e6eb8c04cc0a0dd5001a0244090180a980b003180a002a2c80486016002600c6ea802e29344d9590030a998012492f3c65787065637465643e2053696e676c652043445020696e70757420696e20746865207472616e73616374696f6e2e001615330024913f3c65787065637465643e2053696e676c6520696e74657265737420636f6c6c656374696f6e20696e70757420696e20746865207472616e73616374696f6e2e001601"
8189
+ cborHex: "592437592434010100229800aba2aba1aba0aab9faab9eaab9dab9cab9a488888888cc896600264653001300b00198059806000cdc3a4005300b0024888966002600460166ea800e33001300c3754007370e90034dc3a4001370e90024c02cdd5002244444646644b300130060048acc004c050dd5006400a2c80aa2b3001300a0048991919194c004dd6980d800cdd6980d8024dd6980d801cdd6980d80124444b3001302000580545901d0c06c004c068004c064004c050dd50064566002600a009159800980a1baa00c8014590154566002600e009159800980a1baa00c801459015456600266e1d20080048acc004c050dd5006400a2c80aa2c8089011202240448088660026e95200092cc004c010c048dd5000c4c058c04cdd5000c5901048c058c05cc05cc05cc05c0064602c602e003222323322330020020012259800800c00e2646644b30013372200e00515980099b8f0070028800c01901844cc014014c07c0110181bae3018001375a6032002603600280c8c8c8cc004004018896600200300389919912cc004cdc8804801456600266e3c02400a20030064065133005005302000440646eb8c064004dd5980d000980e000a03414bd6f7b6300a40012232330010010032259800800c52f5c11332259800980280144cc068008cc01001000626600800800280a8c064004c0680050174dc4240012301630173017001911919800800801912cc00400629422b30013371e6eb8c06400400e294626600400460340028099017488c8cc00400400c88cc00c004c00800a60226ea802a44b30010018800c54cc04800840050114dd2a40052301630173017301730173017301730173017301700148888888888888a600244646600200200644b30010018a60103d87a80008992cc004cdd7981418129baa0010048980999813800a5eb8226600600660520048110c09c005025488c0626002005375c604a60446ea80066eb8c034c088dd5000a0189119805801119baf302630233754604c60466ea8c038c08cdd5000801488c966002602a60446ea80062604c60466ea80062c8100c8c8cc00400400c896600200314c103d87a80008992cc004cdd78021812800c4c050cc0a0c0980052f5c1133003003302a002408c60500028130c010cc0900092f5c09111192cc004c05c02633001223259800980d000c4c8c966002605c0050048b2056375a605800260506ea800e2b3001301e001899192cc004c0b800a0091640ac6eb4c0b0004c0a0dd5001c566002603200315980098141baa003801459029459025204a4094604c6ea800a6018604a6ea80ae6020604a6ea80ae6600a6eb0c0a0c094dd500d00a24444b3001301b302837540031323259800800c09a2b3001302f0018992cc00400605113259800981880144c8cc89660026044003132323298009bad3036001981b800cdd6981b001cdd6981b00124444b3001303b003899809181d001804c590380c0d8004c0d4004c0c0dd5001c566002604c0031323259800981b00140122c8198dd6981a00098181baa0038acc004c0840062b3001303037540070028b20628acc004c08c0062646644b30013037001899807181b000802c590341bad303400130350013030375400715980099b87480200062b3001303037540070028b20628acc004cdc3a401400313259800981a800c4c966002604860626ea8006264646644b3001303a0038044590371bad3037001375c606e004606e00260646ea80062c8178c0d00062c8190c0c0dd5001c56600266e1d200c0018acc004c0c0dd5001c00a2c818a2b30013370e9007000c4c8c966002606c0050048b2066375a606800260606ea800e2b30013370e9008000c4c8c966002606c0050048b2066375a606800260606ea800e2b30013370e9009000c56600260606ea800e0051640c51640b4816902d205a40b4816902d205a40b4816856600266022921205370656e74205554784f2063616e6e6f7420686176652061646d696e204e4654009800998069bab3019302e37546032605c6ea801401e94294502b44cc0452412b43445020696e70757420646f6573206e6f74206861766520616e20616c6c6f7765642072656465656d65720032598009810800c528c566002604a00314a31598009810000c528c56600266e1d200c0018a518a5040b0816102c2058302d375400314a08158c0b4dd500099805181818169baa0013756601c605a6ea808a0528170c0bc00502d4c004dd6181718159baa020802d30103d87a8000401d02640b08160cc020dd6181698151baa01f302d302a3754605a60546ea8c054c0a8dd5000981618149baa0018b204c4660024b300130183025375400312323375e605660506ea8c0acc0a0dd5001000981518139baa002891919baf302b302837540040026054604e6ea800902348888c8cc004004014896600200313302d337606ea4014dd400225eb7bdb1822653001375c6056003375a6058003303000248896600266e4002400e26606266ec0dd48049ba80080058acc004cdc7804801c6600201300880148cc0c8cdd81ba900a37500020051001401d133031337606ea400cdd400119803003000a05840b0302e00140b1222232330010010052259800800c4cc0b4cdd81ba9005374c00897adef6c608994c004dd71815800cdd59816000cc0c00092225980099b9000900389981899bb037520126e980200162b30013371e01200719800804c022005233032337606ea4028dd30008014400500744cc0c4cdd81ba9003374c0046600c00c002816102c0c0b800502c496600200314a314a0813a24444464b3001301d00180144c00c00502819b8000400391192cc004c06800626464b3001302e00280245902b1bae302c00130283754007159800980f000c56600260506ea800e0051640a51640948128c098dd50014dc0240049111111192cc004c08c04633001302d375404b2259800981098171baa0028991919912cc004c0dc00e00b1640d06eb8c0d0004dd7181a001181a00098179baa0028b2058912cc00400629344c966002003149a264b3001337206eb8c0c0c0d000cdd71818000c4cc010010cc0cc004c0d400a2a6605e921326b65797320696e206173736f63696174697665206c697374206172656e277420696e20617363656e64696e67206f72646572001640b860660028188c0cc00503048896600200514c0103d87a80008acc004c0880062603c66064606600497ae08cc00400e6068005337000029000a00640b4818a44b30013021302e375400513232332259800981b801c0162c81a0dd6981a0009bad30340023034001302f37540051640b12232598009811000c5660026044605e6ea800a298103d87a80008a6103d879800040b51598009810800c5660026042605e6ea800a2980103d87a80008a6103d87b800040b513322598009814000c4c96600266e2000c0062980103d87980008acc004cdc4000801c530103d87b80008a6103d87a800040c08180dd6981a98191baa0048acc004c090006298103d87b80008a6103d879800040bc8178dd6981998181baa003302f3754004816902d18171baa0029180e19818192cc004c094c0b8dd5000c4c966002604c605e6ea8c06cc0c0dd5181998181baa00389809198191ba80014bd7044c048cc0c8dd41802800a5eb8102d1bad3032302f3754003100140b06062605c6ea8c0c4c0b8dd500099818192cc004c094c0b8dd5000c4c966002604c605e6ea8c06cc0c0dd5180d98181baa00389809198191ba80014bd7044c048cc0c8dd419b80001480052f5c08168dd6981918179baa0018800a0583031302e37546032605c6ea80052f5c1230313032303230323032303230323032001911112cc004cc0340100162b30013375e603260646ea801400e330013756603a60646ea8016005001401914a0817a294102f48c0c4c0c8c0c8c0c8c0c8c0c8c0c80064606260646064606460646064002911111111114c004c0f002e6eb4c0ec02e601201330080084888a60026080009375a607e009225980099b88001480022980103d87a8000899801801000a076488a60026eb4c10800e6eb4c108c10c00e660026eb0c108c0fcdd501a0012444b30013034304137540031325980099baf3046304337540020651332259800981b98221baa001899912cc004c0e4c118dd5000c4c9660026604e6eacc0ccc120dd5181998241baa001304b304c304c304c3048375409d13259800981f98241baa0018992cc004c13800626464b3001303e304b3754005132323232323232323232329800982d000cdd7182d005cdd6982d004cc16802260b400f305a006982d002cc1680126eb4c16800e64b300130580018acc004cdc4a400860ae0031689827182b800a0aa8b20b2375460b400491111111112cc004c19402e26606660c802826644b300130550018992cc004c1a000626606660ce00200716419460c66ea80262b300130590018992cc004c1a000626606c60ce00200716419460c66ea80262b30013054001899192cc004c1a400a0091641986eb8c19c004c18cdd5004c5906020c0418026606600c26606000a266060008266060006264b300130540018992cc004c19c00626606a60cc00203116419060c46ea802e2b300130580018acc004c188dd5005c05e2c831a2c82f905f18301baa00a3060375400f164188305a001305900130580013057001305600130550013054001305300130520013051001304c3754005164124264b3001303e304b375400313259800998161bab3038304d37546070609a6ea8004c0e4c134dd5001c4c9660026080609a6ea800626464646644b300130570038992cc004c118c14cdd5000c4c8c96600260b40051323232598009981e2490f4261642074782076616c696469747900332259800992cc004c13400629462b300130520018a518a50416482c8c168dd519814982f182d9baa002305e305b3754003132598009827000c528c56600260a400314a314a082c9059182d1baa330293046305b3754004608c60b66ea8006294105818131812982c9baa04e302630473305b30473305b303b3305b375060066eb4c08cc164dd502fa5eb80cc16e600294698103d87a8000a60103d8798000415897ae03305b30473305b303b3305b375066e00080dd69811982c9baa05f4bd701982dcc00528d300103d87a8000a60103d8798000415897ae04bd704566002660789201274d757374206f6e6c79206d696e742074686520616363756d756c6174656420696e746572657374003375e608a60b26ea8138dd319912cc004c13400e297adef6c608991919800800a5eb7bdb1808966002003133060337606ea4014dd3001a5eb7bdb1822653001375c60bc003375660be003306300248896600266e4002400e2660c866ec0dd48049ba60070058acc004cdc7804801c4cc190cdd81ba9009374c00e003133064337606ea400cdd300119803003000a0be417c3061001417c646600200297adef6c602259800800c4cc17ccdd81ba9003375000a97adef6c608994c004dd7182e800cdd6982f000cc1880092225980099b9000700389983199bb0375200e6ea00240162b30013371e00e007133063337606ea401cdd4004800c4cc18ccdd81ba900337500046600c00c00282f105e0c18000505e20b0375c604460b26ea817cdd7182e182c9baa00f8acc004cc0f12401205370656e74205554784f2063616e6e6f7420686176652061646d696e204e46540098009981c1bab304430593754608860b26ea805cc110c164dd502fd28528a0ac89981e248146436f6e74696e75696e67206f7574707574206d7573742068617665206e6f20646174756d20616e6420686f6c642074686520616363756d756c6174656420696e74657265737400980080a4c0eccc16cc11ccc16c058cc16d300103d87a80004bd7025eb8298107d87b9fd87980ff00cc004dd59822182c9baa30443059375402f375c604460b26ea817e6eb8c170c164dd5007a444b3001304e0048801c66002007002991900118118009982f19bb037520026ea00112f5bded8c1222223259800981d000c00a2600600282f8ca600200900780548888a600200b003802400a002803103c281c206a4164a6103d87a8000409114a082b22941056452820ac375a60b66530010019bac305c3059375409d4bd7081010000810101008103d87980002002222598008014400633001003982f8014ca60026eb4c17c00660a460b66ea8c17cc1800066eb4c17c00a60be00691112cc004cc0fcdd5982598301baa304b30603754002608e60c06ea819a264b30013370e900718301baa0018992cc004c19800626644b3001305630633754003132598009834800c4c8c96600260b260cc6ea800a264646464653001306f0019bae306f0049837801cdd6983780124444b3001307400589982318398048998210010992cc004c18c006264646644b30013079003807c590761bad3076001375a60ec00460ec00260e26ea80162b300130670018991919912cc004c1e400e01f1641d86eb4c1d8004dd6983b001183b00098389baa0058b20dc41b860de6ea80122c838860de00260dc00260da00260d800260ce6ea800a2c83204c8c8c8ca60026eb4c1b400660da60dc003375c60da007306d002488896600260c060da6ea800e26464b30015980099b8f004375c60e660e06ea809a266ebc00cc16cc1c0dd5013452820da8acc004cdc419b80001375a607860e06ea81d80de264b300130590018992cc004c190c1c4dd5000c566003300130753072375400330543307430753072375460ba60e46ea804d2f5c13374a90021983a18301983a18301983a183a8061983a1ba90063307400533074375066e00020008cc1d0c180cc1d0dd401c9983a1ba801b4bd7025eb812f5c097ae09bab305d3072375460ba60e46ea804e98103d879800040f5133074375066e00050008cc1d0dd4182380b1983a4c00405698103d87a8000a60103d879800041bc97ae08a998382481333c65787065637465643e20457870656374206120636f727265637479207570646174656420636f6e74696e75696e6720434450001641bd1533070491333c65787065637465643e205468657265206973206120636f6e74696e75696e67206f757470757420666f722074686520434450001641bc660666eb0c160c1c4dd503300ac54cc1bd24012a3c65787065637465643e20546865726520697320736f6d65206163637275656420696e7465726573742e001641b864b3001337120026eb4c1d0c1c4dd5012456600266e20dd6982c18389baa024038899b803370666e08cdc09bad30743071375404800200e904040507b7a566df00d99b833370666e08cdc1180d9bad3058307137540486eb4c1d0c1c4dd5182e18389baa02400748202c227efa8052080897a8a99837a4810155001641b915980099b88002038899b833370666e08cdc1180d8011bad30743071375460b860e26ea809001d2080b089fbea014820225ea2a660de92010156001641b88370dd69839983a001454cc1b924012d3c65787065637465643e20497420697320746f6f20736f6f6e20746f20736574746c6520696e7465726573742e001641b5153306e491413c65787065637465643e20416c6c20434450732061726520666f72207468652073616d652069417373657420616e6420636f6c6c61746572616c2061737365742e001641b46eb4c1c8004c1b8dd5001c5906b0c1b4004c1b0004c1ac004c198dd50009834000c5906618321baa0018b20c2375a60ca002609e609260c46ea8c134c188dd5001c5906318309baa0018b20bc3303d3063306037540026eacc104c180dd502ac56600266ebcc18cc180dd5183198301baa304b3060375400203b159800cc00400e94294505d44cc188dd4001198311ba8004330629800a51a60103d87a8000a60103d8798000417497ae08a9982f24812845787065637420612073696e676c6520696e74657265737420636f6c6c6563746f7220696e707574001641751330623750004660c46ea0010cc18a60020074c103d87a8000a60103d8798000417497ae0417482e860be002801905c19b80375a60b460ae6ea80296600266e20dd6981f182b9baa00a01e899b833370666e08cdc118009bad303e305737540146eb4c168c15cdd51821182b9baa00a482020283dbd2b36f806d2080b089fbea014820225ea2a660aa9201015a001641506e040762c82b8dd6982c000982a1baa0018b20a230560048b20a8375a60a80026eb4c15000cc150004c14c004c138dd5000c5904b181d181a18269baa3038304d3754003153304b4914c3c65787065637465643e205468652070726f7669646564207265662e20696e70757420696e64657820636f72726573706f6e647320746f2074686520696e746572657374206f7261636c652e00164128609e60986ea80062a660949201473c65787065637465643e2054686572652069732061207265662e20696e707574206174207468652070726f766964656420696e746572657374206f7261636c6520696e6465782e001641246601a6eb0c0d8c12cdd50200059826800c5904b18249baa0018b208c3035302f30483754606660906ea80062a6608c92014d3c65787065637465643e205468652070726f7669646564207265662e20696e70757420696e64657820636f72726573706f6e647320746f2074686520636f6c6c61746572616c2061737365742e001641146094608e6ea80062a6608a92014e3c65787065637465643e2054686572652069732061207265662e20696e707574206174207468652070726f766964656420636f6c6c61746572616c20617373657420696e70757420696e6465782e001641106090608a6ea8004cc01cdd6181818229baa03a0068a99821a481493c65787065637465643e20546865206669727374206f75747075742069732074686520696e74657265737420636f6c6c656374696f6e20636f6e74696e75696e67206f75747075742e00164108608c60866ea8c118c10cdd5181718219baa001330053758605460866ea80e120008a99820a49413c65787065637465643e205468652070726f766964656420696e70757420696e64657820636f72726573706f6e647320746f20746865206f776e20696e7075742e00164100608a60846ea80062a6608092013d3c65787065637465643e20546865726520697320616e20696e707574206174207468652070726f7669646564206f776e20696e70757420696e6465782e001640fc1132329800912cc004c08cc0c0dd500144c966002606c00313300430350010028b2066303137540051640b92303330343034303430343034303430343034001911919800800801912cc004c094c0c8dd5000c4cc06400cdd7181b18199baa00189919b89375a606e00264660020026eb0c0e0c0e4008896600200314800226644b30013300700700289806800c4005035181c80099801001181d000a06e30333754002818122259800981180b44cc8966002604c60666ea8006264b3001303900189919198040008acc004cc069241235265666572656e636564205554784f206d75737420686176652061646d696e204e4654003301637566044606e6ea8c088c0dcdd5001002c4cc0692412041646d696e206d756c7469736967206d757374206265207361746973666965640033006303a303737540026eb0c01cc0dcdd5016452820683023301d303637546042606c6ea8004c0e00062c81b0cc048dd6180f981a1baa029303730343754606e60686ea8c07cc0d0dd5181b981a1baa0018b2062301d30323754070660246eb0c0d4c0c8dd5013810c566002604a02d19800912cc0040062900044c024cc008008c0e00050354c074c0c8dd501c4c078c0c8dd501c4cc048dd6181a98191baa02702148888c8c8c966002605660706ea80122646466018002264b300130400018991991198080010992cc004cc08d24011e5370656e74205554784f206d75737420686176652061646d696e204e4654003301f3756605660806ea8c0acc100dd5003806c56600266046920125466f756e646174696f6e206d756c7469736967206d75737420626520736174697366696564003300f30433044304430443044304430443044304430443044304430403754605660806ea8008dd6180818201baa0358acc004cc08d2401234e65772061646d696e67206d756c74697369672063616e6e6f7420626520656d7074790030080018acc004cc08d241244e65772061646d696e206d756c7469736967206d75737420626520736174697366696564003300f0013758602060806ea80d62b300133023490121436f6e74696e75696e672076616c7565206d757374206265207468652073616d650098009bab302b304037540093756605660806ea8c0acc100dd5003d300103d87a800040511330234901244f6c6420616e64206e657720646174756d73206d75737420626520646966666572656e7400980099baf006003a50a5140f514a081ea294103d4528207a8a5040f514a081e8c108c0fcdd500118151812181e9baa00132598009821000c4c9660026062607c6ea8006264646464653001375a608e003375a608e00b375a608e007375a608e00491112cc004c130016264b3001303b3048375400313232323232323232323232329800982c000cdd6982c0064dd6982c005cdd6982c0054dd6982c004cdd6982c0044dd6982c003cdd6982c0034dd6982c002cdd6982c0024dd6982c001244444444444b3001306400c89981b183180709981900588114590610c160004c15c004c158004c154004c150004c14c004c148004c144004c140004c13c004c138004c124dd5000c5904618258044590490c11c004c118004c114004c110004c0fcdd5000c5903c18159812981f1baa3029303e375460820031640fd300137586050607a6ea80ca0134c103d87980004064607e0031640f4660486eb0c088c0ecdd5018180b180e9981e981f181d9baa3026303b375400497ae030273021303a3754604a60746ea8004c0f0c0e4dd50024590361800800912cc004c0acc0e0dd5000c528c4c8cc8966002604800515980099b89002300600189919800800801112cc00400629462b30013300700730410018998010011821000c528207640fd14a081ca29410391bad303d0013758607a607c00260726ea8005036180200222646644b3001302730343754003132598009816181a9baa001899912cc004c0f0006264b3001302b303837540031323322598009820000c4cc084dd6181f800912cc00400a264b30013031303e3754003133025300c37566056607e6ea80d0dd71821181f9baa0018b2078323300100137586054607e6ea801c896600200314c103d87a80008992cc006600266ebc00530103d87a8000a50a5140f910018998018019822801207c325980099b8f375c60880020171302f33043304430450014bd7045300103d87a800040f86eb0c10c00504144c8c8cc8966002608c0071300530460068b2086375c60860026eb8c10c008c10c004dd61820801207e8b207a375a607a002607c00260726ea80062c81b0c094c07cc0e0dd51811981c1baa303b0018b2072375c6072606c6ea800660026eb0c084c0d8dd5015cc0e4c0d8dd501e530103d879800040491640cc6070606a6ea8c0e0c0d4dd51810181a9baa3038303537540031640c86002002660266eb0c0d8c0ccdd5014011112cc004006297ae089981b1819981b80099801001181c000a06a40bc8178600200244464b30013023001899192cc004c0dc00a0091640d06eb8c0d4004c0c4dd5001c566002604e003132332259800981c000c4cc064dd6181b800912cc00400a00f19800804cc0e400a26002607400480490374590351bad30350013036001303137540071640b88170c0bcdd500120542223259800800c528c56600260680031323298009bae30350019bad303530360019bae303500248896600266e3c0052201008acc004cdc7801a441008acc004c09cc0d0dd5003c56600266e252000002899b89002482026fb80a294103244cdc4a40000048192294103245282064181a8009bac30330018a5040c48188c8cc004004ca60020030059919800800802912cc004006297adef6c608991981b19bb03033001374c64660020026eacc0d4008896600200314bd6f7b63044c8cc0e4cdd8181b0009ba83370290001bad303700133003003303b002303900140dc660060066070004606c00281a10011112cc00400a200313298008024c0e000f30010029bae30330019bab303400191111192cc004c0480060051300300140dc6465300100180340150011112cc00400a200313298008024c10800f30010029bae303d0019bad303e001802a0304010608000481f1404100d2008303600240d044b30010018a5eb82264664466446600400400244b30010018801c4c8cc0e4dd39981c9ba90053303930360013303930370014bd7019801801981d801181c800a06e375660680066eb8c0c4004cc00c00cc0d8008c0d00050321022111191980880211801180a18149baa00159800980c98131baa00189198039bab30133028375400200712301098009bab301330283754003375c605660506ea800e6eb8c04cc0a0dd5001a0244090180a980b003180a002a2c80486016002600c6ea802e29344d9590030a998012492f3c65787065637465643e2053696e676c652043445020696e70757420696e20746865207472616e73616374696f6e2e001615330024913f3c65787065637465643e2053696e676c6520696e74657265737420636f6c6c656374696f6e20696e70757420696e20746865207472616e73616374696f6e2e001601"
8106
8190
  };
8107
8191
 
8108
8192
  // src/contracts/interest-collection/scripts.ts
@@ -8184,7 +8268,7 @@ var import_lucid43 = require("@lucid-evolution/lucid");
8184
8268
  var _collectorValidator = {
8185
8269
  type: "PlutusScriptV3",
8186
8270
  description: "Generated by Aiken",
8187
- cborHex: "590ca2590c9f010100229800aba2aba1aba0aab9faab9eaab9dab9cab9a4888888896600264653001300900198049805000cdc3a400530090024888966002600460126ea800e33001300a3754007370e90024dc3a40013009375400891111919912cc004c0140122b3001301137540170028b20248acc004c0240122b3001301137540170028b20248acc004c0180122b3001301137540170028b20248b201c40388070660026e95200091809980a180a000c88c8cc00400400c896600200314bd7044cc8966002600a00513301700233004004001899802002000a024301600130170014051222323322330020020012259800800c00e2646644b30013372200e00515980099b8f0070028800c01901544cc014014c0700110151bae3015001375a602c002603000280b0c8c8cc004004018896600200300389919912cc004cdc8804801456600266e3c02400a20030064059133005005301d00440586eb8c058004dd5980b800980c800a02e14bd6f7b6300a400123013301400198071baa009912cc0040062003153300f00210014038911111119912cc004c03001233001222232330010010052259800800c4cc080cdd81ba9005375000897adef6c608994c004dd7180f000cdd6980f800cc08c0092225980099b9000900389981219bb037520126ea00200162b30013371e01200719800804c022005233025337606ea4028dd40008014400500744cc090cdd81ba900337500046600c00c00280f901f0c08400501f48888c8cc0040040148966002003133020337606ea4014dd300225eb7bdb1822653001375c603c0033756603e003302300248896600266e4002400e26604866ec0dd48049ba60080058acc004cdc7804801c6600201300880148cc094cdd81ba900a374c0020051001401d133024337606ea400cdd300119803003000a03e407c3021001407d259800800c528c5282034891111192cc004c04800600513003001406c66e0001000e44b30010018a4d13259800800c5268992cc004cdc81bae301b301f003375c60360031330040043301e00130200028a9980d2481326b65797320696e206173736f63696174697665206c697374206172656e277420696e20617363656e64696e67206f7264657200164064603c00280e0c07800501b4cc008dd6180d980c1baa00f00a4888889660026024603a6ea80062646644b30013300c49012f4d757374207370656e642073696e676c6520636f6c6c6563746f7220696e7075742077697468206f6e6c792041444100332259800800c00a2b3001302700189919baf301130243754602260486ea8004dd3192cc004c064006297adef6c608991919800800a5eb7bdb180896600200313302a337609801014000374c00697adef6c608994c004dd71814000cdd59814800cc0b40092225980099b904890000389981719bb04c01014000374c00e00b1598009806001c4cc0b8cdd82601014000374c00e00313302e337606ea400cdd300119803003000a05240a4302b00140a4646600200297adef6c602259800800c4cc0a4cdd8261014000375000697adef6c608994c004dd71813800cdd69814000cc0b00092225980099b904890000389981699bb04c01014000375000e00b1598009805801c4cc0b4cdd82601014000375000e00313302d337606ea400cdd400119803003000a05040a0302a00140a0811260026eacc044c090dd5180898121baa001a44100a441004048604c00300240908120528198081bac302430213754030466ebcc094c088dd5181298111baa300f3022375400200713300c4901364d7573742070726f6475636520636f6c6c6563746f72206f7574707574207769746820696e63726561736564204144412076616c756500329800912cc00400629422b3001325980099baf301530253754002980107d87b9fd87980ff008992cc00400629462b3001302a001899194c004dd71815800cdd698159816000cdd718158012444b3001300b0018acc004c02c00e2b3001301f302a375498103d87a80008acc004cdc4a400000513371200490404df70145282050899b8948000009028452820508a5040a0302b0013758605200314a081390271919800800994c0040066eacc050c09cdd5001cc8cc00400401c896600200314bd6f7b63044c8cc0b0cdd818148009ba632330010013756605600444b30010018a5eb7bdb1822646605e66ec0c0b0004dd419b8148000dd698168009980180198188011817800a05a33003003302e002302c00140a880088896600200510018994c004012605c00798008014dd71814800cdd59815000c88888c966002602c00300289801800a05a32329800800c01a00a80088896600200510018994c004012607000798008014dd71819800cdd6981a000c01501c2008303600240d0a0288089004181600120542259800800c52f5c113233223322330020020012259800800c400e2646605e6e9ccc0bcdd4802998179816000998179816800a5eb80cc00c00cc0c4008c0bc00502d1bab302a003375c604e0026600600660580046054002814229410221813800c528c4cc008008c0a0005021204a99ba548008cc090c04ccc09000ccc091300103d87a80004bd7025eb826eb0c048c088dd500ca4446600600666028002b300130193024375400512323375e6054604e6ea8c0a8c09cdd5001000981498131baa003891919baf302a302737540040026052604c6ea800d0220c966002942200319800800d221009919001198038038009981219bb04c010140004c010101004bd6f7b630488888c966002601c00300289801800a04a329800802522100a4005222229800802c00e009002800a00c4040a018804901f1bab300e30213754601c60426ea800e294101e1811180f9baa3022301f37546018603e6ea8004dc7a45003021301e375400316406c8acc004c04001226466008921334d757374207370656e64207374616b696e67206d616e61676572207769746820446973747269627574652072656465656d657200332259800800c00a2b3001301f00189919912cc004c04800626464b300130240028024590211bae3022001301e3754007159800980b000c566002603c6ea800e00516407d1598009809800c566002603c6ea800e00516407d15980099b874801800626464b300130240028024590211bad3022001301e375400715980099b87480200062b3001301e37540070028b203e8acc004cdc3a4014003159800980f1baa00380145901f456600266e1d200c0018acc004c078dd5001c00a2c80fa2c80d901b2036406c80d901b203613375e00298103d87b8000301b375400264b30013010301b37540031301f301c37540031640646464660020026eacc080c084c084c084c084c084c084c084c084c084c074dd500a112cc004006298103d87a80008992cc004cdd7802180f000c4c040cc084c07c0052f5c113300300330230024070604200280f8cdd2a40046603a603c60366ea8c0780052f5c1002407080e0528198041bac301c301937540204660066eacc01cc068dd51803980d1baa001002301b3018375403d13298009800800ccc00cdd6180e180c9baa01000b9804980c9baa01f488966002602060366ea800a264b30013015301c375400313322598009811800c4c9660026028603e6ea80062646644b30013027001899198008009bac30270022259800800c4c9660026034604a6ea80062646466002002601e6eacc0acc0b0c0b0c0b0c0b0c0a0dd500f912cc00400629422b30013371e6eb8c0b000400e2946266004004605a002813102a1bae30293026375400316408c64660020026eb0c04cc098dd5003912cc004006298103d87a80008992cc006600266ebc00530103d87a8000a50a51409510018998018019816001204a325980099b8f375c6056002017130193302a302b302c0014bd7045300103d87a800040946eb0c0a800502844c8c8cc8966002605a007133006006302d0058b2054375c60540026eb8c0a8008c0a8004dd61814000a04c8b2048375a6048002604a00260406ea80062c80e8c966002602a603e6ea80062604660406ea80062c80e8c03cc07cdd51806180f9baa30220018b2040375c6040603a6ea8004c8cc034dd61805980f1baa01523002300c301f3754002b30013011301c375498103d879800089198039bab300b301e3754002007123371090004c004dd59805980f1baa0019bae3021301e3754007375c6016603c6ea800d00c20348b2034301f301c3754603e60386ea8c024c070dd5180f980e1baa0028b2032112cc004006297ae089980e180c980e80099801001180f000a036405480a888c8cc00400400c896600200314c103d87a80008992cc004cdd7980f180d9baa001004898061980e800a5eb82266006006603e00480c0c07400501b1118084c00400a6eb8c06cc060dd5000cdd71802980c1baa00140183012301300530110044590070c024004c010dd5004c52689b2b200201"
8271
+ cborHex: "590caa590ca7010100229800aba2aba1aba0aab9faab9eaab9dab9cab9a4888888896600264653001300900198049805000cdc3a400530090024888966002600460126ea800e33001300a3754007370e90024dc3a40013009375400891111919912cc004c0140122b3001301137540170028b20248acc004c0240122b3001301137540170028b20248acc004c0180122b3001301137540170028b20248b201c40388070660026e95200091809980a180a000c88c8cc00400400c896600200314bd7044cc8966002600a00513301700233004004001899802002000a024301600130170014051222323322330020020012259800800c00e2646644b30013372200e00515980099b8f0070028800c01901544cc014014c0700110151bae3015001375a602c002603000280b0c8c8cc004004018896600200300389919912cc004cdc8804801456600266e3c02400a20030064059133005005301d00440586eb8c058004dd5980b800980c800a02e14bd6f7b6300a400123013301400198071baa009912cc0040062003153300f00210014038911111119912cc004c03001233001222232330010010052259800800c4cc080cdd81ba9005375000897adef6c608994c004dd7180f000cdd6980f800cc08c0092225980099b9000900389981219bb037520126ea00200162b30013371e01200719800804c022005233025337606ea4028dd40008014400500744cc090cdd81ba900337500046600c00c00280f901f0c08400501f48888c8cc0040040148966002003133020337606ea4014dd300225eb7bdb1822653001375c603c0033756603e003302300248896600266e4002400e26604866ec0dd48049ba60080058acc004cdc7804801c6600201300880148cc094cdd81ba900a374c0020051001401d133024337606ea400cdd300119803003000a03e407c3021001407d259800800c528c5282034891111192cc004c04800600513003001406c66e0001000e44b30010018a4d13259800800c5268992cc004cdc81bae301b301f003375c60360031330040043301e00130200028a9980d2481326b65797320696e206173736f63696174697665206c697374206172656e277420696e20617363656e64696e67206f7264657200164064603c00280e0c07800501b4cc008dd6180d980c1baa00f00a4888889660026024603a6ea80062646644b30013300c49012f4d757374207370656e642073696e676c6520636f6c6c6563746f7220696e7075742077697468206f6e6c792041444100332259800800c00a2b3001302700189919baf301130243754602260486ea8004dd3192cc004c064006297adef6c608991919800800a5eb7bdb180896600200313302a337609801014000374c00697adef6c608994c004dd71814000cdd59814800cc0b40092225980099b904890000389981719bb04c01014000374c00e00b1598009806001c4cc0b8cdd82601014000374c00e00313302e337606ea400cdd300119803003000a05240a4302b00140a4646600200297adef6c602259800800c4cc0a4cdd8261014000375000697adef6c608994c004dd71813800cdd69814000cc0b00092225980099b904890000389981699bb04c01014000375000e00b1598009805801c4cc0b4cdd82601014000375000e00313302d337606ea400cdd400119803003000a05040a0302a00140a0811260026eacc044c090dd5180898121baa001a44100a441004048604c00300240908120528198081bac302430213754030466ebcc094c088dd5181298111baa300f3022375400200713300c4901364d7573742070726f6475636520636f6c6c6563746f72206f7574707574207769746820696e63726561736564204144412076616c7565003233223322330020020012259800800c528456600264b300130050018acc004cdd7980b98139baa0014c0107d87b9fd87980ff008992cc00400629462b3001302c001899194c004dd71816800cdd698169817000cdd718168012444b3001300d0018acc004c03400e2b30013021302c375498103d87a80008acc004cdc4a400000513371200490404df70145282054899b894800000902a452820548a5040a8302d0013758605600314a081490291919800800994c0040066eacc058c0a4dd5001cc8cc00400401c896600200314bd6f7b63044c8cc0b8cdd818158009ba632330010013756605a00444b30010018a5eb7bdb1822646606266ec0c0b8004dd419b8148000dd698178009980180198198011818800a05e330030033030002302e00140b080088896600200510018994c004012606000798008014dd71815800cdd59816000c88888c966002603000300289801800a05e32329800800c01a00a80088896600200510018994c004012607400798008014dd7181a800cdd6981b000c01501e2008303800240d8a02c8099004181700120582259800800c52f5c113233223322330020020012259800800c400e264660626e9ccc0c4dd4802998189817000998189817800a5eb80cc00c00cc0cc008c0c400502f1bab302c003375c605200266006006605c0046058002815229410244528204830290018a518998010011815000a046409c6eb0c050c090dd500dacc004c058c084dd5000c48c8cdd7981398121baa302730243754004002604c60466ea800a246466ebcc09cc090dd5001000981318119baa002407c64b30014a110018cc0040069101009919001198040040009981299bb04c010140004c010101004bd6f7b630488888c966002601e00300289801800a04c329800802522100a4005222229800802c00e009002800a00c4044a01a80510201bab300f30223754601e60446ea8010cdd2a4004660466024660460046604698103d87a80004bd7025eb82294101e1811180f9baa3022301f37546018603e6ea8004dc7a441003021301e375400316406c8acc004c04001226466008921334d757374207370656e64207374616b696e67206d616e61676572207769746820446973747269627574652072656465656d657200332259800800c00a2b3001301f00189919912cc004c04800626464b300130240028024590211bae3022001301e3754007159800980b000c566002603c6ea800e00516407d1598009809800c566002603c6ea800e00516407d15980099b874801800626464b300130240028024590211bad3022001301e375400715980099b87480200062b3001301e37540070028b203e8acc004cdc3a4014003159800980f1baa00380145901f456600266e1d200c0018acc004c078dd5001c00a2c80fa2c80d901b2036406c80d901b203613375e00298103d87b8000301b375400264b30013010301b37540031301f301c37540031640646464660020026eacc080c084c084c084c084c084c084c084c084c084c074dd500a112cc004006298103d87a80008992cc004cdd7802180f000c4c040cc084c07c0052f5c113300300330230024070604200280f8cdd2a40046603a603c60366ea8c0780052f5c1002407080e0528198041bac301c301937540204660066eacc01cc068dd51803980d1baa001002301b3018375403d13298009800800ccc00cdd6180e180c9baa01000b9804980c9baa01f488966002602060366ea800a264b30013015301c375400313322598009811800c4c9660026028603e6ea80062646644b30013027001899198008009bac30270022259800800c4c9660026034604a6ea80062646466002002601e6eacc0acc0b0c0b0c0b0c0b0c0a0dd500f912cc00400629422b30013371e6eb8c0b000400e2946266004004605a002813102a1bae30293026375400316408c64660020026eb0c04cc098dd5003912cc004006298103d87a80008992cc006600266ebc00530103d87a8000a50a51409510018998018019816001204a325980099b8f375c6056002017130193302a302b302c0014bd7045300103d87a800040946eb0c0a800502844c8c8cc8966002605a007133006006302d0058b2054375c60540026eb8c0a8008c0a8004dd61814000a04c8b2048375a6048002604a00260406ea80062c80e8c966002602a603e6ea80062604660406ea80062c80e8c03cc07cdd51806180f9baa30220018b2040375c6040603a6ea8004c8cc034dd61805980f1baa01523002300c301f3754002b30013011301c375498103d879800089198039bab300b301e3754002007123371090004c004dd59805980f1baa0019bae3021301e3754007375c6016603c6ea800d00c20348b2034301f301c3754603e60386ea8c024c070dd5180f980e1baa0028b2032112cc004006297ae089980e180c980e80099801001180f000a036405480a888c8cc00400400c896600200314c103d87a80008992cc004cdd7980f180d9baa001004898061980e800a5eb82266006006603e00480c0c07400501b1118084c00400a6eb8c06cc060dd5000cdd71802980c1baa00140183012301300530110044590070c024004c010dd5004c52689b2b200201"
8188
8272
  };
8189
8273
 
8190
8274
  // src/contracts/collector/scripts.ts
@@ -8217,7 +8301,7 @@ var import_lucid45 = require("@lucid-evolution/lucid");
8217
8301
  var _treasuryValidator = {
8218
8302
  type: "PlutusScriptV3",
8219
8303
  description: "Generated by Aiken",
8220
- cborHex: "592288592285010100229800aba2aba1aba0aab9faab9eaab9dab9cab9a4888888896600264653001300900198049805000cdc3a400530090024888966002600460126ea800e33001300a3754007370e90004dc3a4009370e90034dc3a401091111194c00488c966002601000315980098099baa0038014590144566002601600315980098099baa0038014590144566002600e00315980098099baa0038014590144566002600c00315980098099baa0038014590144566002600a0031323232329800980d000cdd6980d001cdd6980d0012444b3001301e004899805980e8038acc004c03cc064dd5001c4c8c8cc8966002604400700d8b203e375a603e0026eb8c07c008c07c004c068dd5001c5901745901b0c068004c064004c060004c04cdd5001c56600266e1d200a0018acc004c04cdd5001c00a2c80a22c808101020204040808101018089baa0029809980a0034c04c0192223300300d198009ba5480024602e6030003222323322330020020012259800800c00e2646644b30013372200e00515980099b8f0070028800c01901944cc014014c0800110191bae3019001375a6034002603800280d0c8c8cc004004018896600200300389919912cc004cdc8804801456600266e3c02400a20030064069133005005302100440686eb8c068004dd5980d800980e800a03614bd6f7b6300a40012232330010010032259800800c52f5c11332259800980280144cc06c008cc01001000626600800800280b0c068004c06c0050184dc424001259800980418099baa0018980b980a1baa0018b20229180b980c180c000c88c8cc00400400c88cc00c004c00800a60246ea803644b30010018800c54cc04c008400501248888c8cc004004014896600200313301b337606ea4014dd400225eb7bdb1822653001375c6032003375a6034003301e00248896600266e4002400e26603e66ec0dd48049ba80080058acc004cdc7804801c6600201300880148cc080cdd81ba900a37500020051001401d13301f337606ea400cdd400119803003000a0344068301c0014069222232330010010052259800800c4cc06ccdd81ba9005374c00897adef6c608994c004dd7180c800cdd5980d000cc0780092225980099b9000900389980f99bb037520126e980200162b30013371e01200719800804c022005233020337606ea4028dd30008014400500744cc07ccdd81ba9003374c0046600c00c00280d101a0c07000501a496600200314a314a080aa24444464b3001300e00180144c00c00501619b8000400391919800800801112cc004006297ae08991991199119801001000912cc00400620071323301e374e6603c6ea4014cc078c06c004cc078c0700052f5c0660060066040004603c00280e0dd5980c8019bae301600133003003301b0023019001405d232330010010022259800800c52f5bded8c11323301933760602c0026e98c8cc004004dd5980c001112cc004006297adef6c608991980e19bb03019001375066e052000375a603400266006006603c004603800280d0cc00c00cc06c008c0640050174966002601260266ea8006246466ebcc064c058dd5180c980b1baa00200130183015375400512323375e6032602c6ea8008004c060c054dd500120229b8f489009b894800244b3001300a3014375400513232332259800980e801c0162c80d0dd6980d0009bad301a002301a001301537540051640492232598009805800c4c8c96600260380050048b2032375c6034002602c6ea800e2b3001300e0018acc004c058dd5001c00a2c80ba2c8099013180a1baa00291192cc004c02c00626464b3001301c0028024590191bae301a001301637540071598009807000c4c8c96600260380050048b2032375c6034002602c6ea800e2c8099013180a1baa002912cc00400629344c966002003149a264b3001337206eb8c058c06800cdd7180b000c4cc010010cc064004c06c00a2a6602a921326b65797320696e206173736f63696174697665206c697374206172656e277420696e20617363656e64696e67206f7264657200164050603200280b8c064005016488c8cc00400400c896600200314bd7044cc064dd39801980d00099801001180d800a0309ba54800922222222222222222222222229800911919800800801912cc0040062980103d87a80008992cc004cdd7981a18189baa0010048980f19819800a5eb82266006006606a0048170c0cc0050314888c8cc0680108c008c074c0c4dd5000acc004c090c0b8dd5000c48c0a260026eacc070c0c0dd5000cdd7181998181baa0039bae301c3030375400680da24603330013756603860606ea80066eb8c0ccc0c0dd5001cdd7180e18181baa003406c816244653001001801c0090011112cc00400a200313298008024c0d800f30010029bae30310019bab303200191111192cc004c0640060051300300140d46465300100180340150011112cc00400a200313298008024c10000f30010029bae303b0019bad303c001802a03e4010607c00481e1405d0142008303400240c9223301800223375e6064605e6ea8c0c8c0bcdd5180d98179baa001002911980c0011805800c88c966002604800313259800981a000c4cc028c0cc00400e2c8188c0bcdd5001c566002604e00313259800981a000c4cc084c0cc00400e2c8188c0bcdd5001c56600260460031323259800981a80140122c8190dd7181980098179baa0038b205840b08160c0b4dd50014888c966002604a0031323259800981b00140122c8198dd7181a00098181baa0038acc004c0a00062646644b3001303700189980c9bac30360012259800801401e33001009981c00144c004c0e4009009206c8b2068375a6068002606a00260606ea800e2c816902d18171baa00291192cc004c090006264b300130340018992cc004c098c0c0dd5000c4c8c8c966002607000513322598009815981a9baa00289919192cc004c0f400a2660226078006264b3001302f0018992cc004c0fc00626464b300130320018992cc004c10800626602c60820020131640fc607a6ea800a2b3001303500189919194c004dd69821800cdd69821801cdd698218012444b300130470048074590440c10c004c108004c0f4dd500145903a2074303b3754002607c0031640f060746ea800a2b300130320018acc004c0e8dd500140162c81da2c81b9037181c1baa0018b2074303b001303b001303637540051640cc606e00626603400244b3001002804c4c9660026058606c6ea800626464653001375a607a003375c607a007375c607a0049112cc004c1040122601060820131640f8303d001303c001303737540031640d0607200481ba2c81a8dd6181b000981b00098189baa0018b205c30330018b2062302f37540071598009813800c566002605e6ea800e0051640c11640b08160c0b4dd50014c00c00d2222222229800911192cc00400629462b3001303d001899194c004dd7181f000cdd6981f181f800cdd7181f0012444b3001301a0018acc004c06800e2b30013033303d375400f159800980c80144cdc48012410137dc0514a081da2603200481da294103b45282076181f0009bac303c0018a5040e881d0c05ccc02800cc05800a60060072222598009817000c401233001004801cc8c8008c018004cc0eccdd81ba9002375000297adef6c6091111192cc004c0800060051300300140f0653001004804401e444453001005801c01200500140188111407901b206c488a60024444464660020026605000c603600a44b30010018a508acc004c96600266ebcc09cc100dd50008034660026eacc0b0c100dd5000c016008805a294103d1821000c528c4cc008008c10c00503c2080911112cc004cc0680100162b30013375e6048607a6ea801400e3300137566052607a6ea8016005001402114a081d2294103a488c9660026060003132598009820000c4c966002606460786ea80062646464646465300130460019bae304600698230024c11800e608c004911112cc004c13001a266044609601426604400626604400426604400226604400a01f16412430460013045001304400130430013042001303d37540031640e8607e0031640f460766ea800e2b300130330018992cc004c100006264b30013032303c3754003132323232323298009823000cdd718230034c118012608c007304600248888966002609800d133022304b00a13302200313302200213302200113302200500f8b209218230009822800982200098218009821000981e9baa0018b2074303f0018b207a303b37540071598009817800c4c9660026080003132598009819181e1baa00189919191919191919194c004dd69824800cdd71824804cdd69824803cc12401a609200b30490049824801cc12400922222222598009829004c4cc0fcc1440404cc0740144cc0fc0104cc0a000c4cc0a00084cc0a00040562c827860920026090002608e002608c002608a002608800260860026084002607a6ea80062c81d0c0fc0062c81e8c0ecdd5001c566002605c003132598009820000c4c966002606460786ea800626464646464646464653001375a6092003375c6092013375a609200f30490069824802cc124012609200730490024888888896600260a401313303f305101013301d00513303f0041330280031330280021330280010158b209e18248009824000982380098230009822800982200098218009821000981e9baa0018b2074303f0018b207a303b37540071598009816800c4c9660026080003132598009819181e1baa00189919191919191919194c004dd71824800cdd71824804cc12401e609200d304900598248024dd69824801cdd69824801244444444b3001305200989981f982880809981400309981400289981400209981380180ac5904f0c124004c120004c11c004c118004c114004c110004c10c004c108004c0f4dd5000c5903a181f800c5903d181d9baa0038acc004cdc3a4014003132598009820000c4c966002606460786ea8006264646464646464646464653001375c6096003375c6096017304b00998258044c12c01e64b300130490018acc004cdc4a4008609000316898209824000a08c8b20943754609600d32598009824800c56600266e25200430480018b44c104c12000504645904a1baa304b00598258024dd69825801cdd6982580124444444444b3001305600b899821982a80a09981600409981600389981600309981580180cc590530c12c004c128004c124004c120004c11c004c118004c114004c110004c10c004c108004c0f4dd5000c5903a181f800c5903d181d9baa0038acc004cdc3a4018003132598009820000c4c966002606460786ea800626464646464646464646464653001304c0019bad304c00c9bad304c00b9bad304c00a9bad304c0099bad304c0089bad304c0079bad304c0069bad304c0059bad304c0049bad304c0024888888888896600260b001913302d305700e13301e00b01b8b20aa18260009825800982500098248009824000982380098230009822800982200098218009821000981e9baa0018b2074303f0018b207a303b375400715980099b8748038006264b300130400018992cc004c0c8c0f0dd5000c4c8cc896600260880031330263758608600244b3001002804c4c8cc8966002609200313259800981d98229baa001899192cc004c13000a2600e60980111641246eb8c128004c118dd5000c590431824000c590461bae304600130470013758608a004821a2c8208dd698208009821000981e9baa0018b2074303f0018b207a303b375400715980099b874804000626464b3001304100280245903e1bae303f001303b37540071640e081c1038207040e081c1038207040e060726ea800a4646600200200444b30010018a5eb7bdb1822646530013300400430410039bae30400029bae30400019bad30403041001401860800026eb0c0f800503c24444b300130310218992cc004c0c8c0f0dd5000c4c8cc896600260880031323259800981b98209baa00189919191919194c004c12c0066eb4c12c0126eb4c12c00e6eb4c12c0092222598009828002c4c8cc04cc1400284cc068014566002608460986ea801626464b3001330334901205769746864726177616c2076616c75652063616e6e6f7420626520656d70747900980099baf4c101a000374c0034a14a282622b30013303349012245787065637473206a757374203120696e7075742066726f6d20747265617375727900332259800800c00a2b300130550018a5180120a441482940cc080dd6182918279baa0460118acc004cc0cd2401245472656173757279207769746864726177616c206f757470757420696e636f727265637400980099912cc004006005159800982a800c4c15000600482910520a99826a4928457870656374732073696e676c65206f757470757420746f207769746864726177616c206164647200163301f3758606c609e6ea8118c090cc144c148c13cdd500125eb826048660a260a4609e6ea80092f5c13374a9002198289ba7330514c11a5818496e6469676f54726561737572795769746864726177616c00330513052304f375401e97ae04bd704006980103d87a800040591325980099baf374c002980101a0008a518acc004c8cc004004c0c0008896600200314a115980099b88375a60aa60ac60ac6eb0c15400520008a51899801001182b000a09e414d153304e491224e6f7420656e6f7567682066756e647320696e20747265617375727920696e707574001689981a24811c5472656173757279206f757470757420697320696e636f72726563740098009bac30373050375408f302533052303d33052012330523037305037540ac97ae04bd70530107d87b9fd87980ff00800d300103d87a80004060826904d198109bab303b304f37546076609e6ea8048c0b4006294104c452820988a5041306026660486eb0c0e8c138dd50009191919829982a00119829982a00099829982a182a800a5eb80c150004c13cdd5000982818269baa0058b2094375a609e015164134304b001304a001304900130480013047001304237540031640fc6052605060826ea8c0b4c104dd50009821800c590411820981f1baa3041303e37546054607c6ea800660026eb0c104c0f8dd501acc104c0f8dd50225300103d879800040446080607a6ea80062c81d0cc040dd6181f981e1baa03302a8cc0048966002003148002266e01200233002002304200140fd22232330010010042259800800c4012266006608800266004004608a002821244646600200200644b30010018a518acc004c00cc10c006266004004608800314a081e9041488c9660026068607c6ea800626084607e6ea80062c81e0c8c8cc00400400c896600200314c0103d87a80008992cc004cdd78021820800c4c0bccc110c1080052f5c1133003003304600240fc60880028210c04ccc1000092f5c1230403041304130413041304130413041304130410019b88480092222223259800981d81444c966002607260866ea80062646644b3001303c30463754003132323232323298009828000cdd698280024dd69828001cdd6982800124444b300130550058991980c182a80509980f802899912cc004c124c14cdd5003c4c966002660729213d43616e6e6f742062652075736564207768656e207769746864726177616c2076616c7565206861732073696e676c65206173736574206f72206e6f6e65003014301330340018acc004cc0e52412d416c6c206f776e20696e70757473206861766520746f20757365207468652072696768742072656465656d657200330170032323304700113375e002980103d87a8000330173059305637540026eacc058c158dd5026c566002660729201374f6e65206f75747075742068617320746f2068617665207468652076616c7565206f662074726561737572795f7769746864726177616c0098009bac303c30553754099302a330570104bd70530107d87b9fd87980ff00800d300103d87a800040751598009981ca4923416c6c207370656e742076616c75652068617320746f2062652070616964206261636b009800cc00400a97adef6c6091198148009bab30433057375400480c33001003a5eb7bdb18244660520026eacc10cc15cdd51821982b9baa00240614c103d87a80004081133039490126416c6c206f776e206f7574707574732068617320746f206861766520766f696420646174756d003301700223375e607a60ac6ea800530107d87b9fd87980ff008a50414914a082922941052452820a430193302a3758608060a86ea8c15cc150dd5003919191982c982d0011982c982d0009982c982d182d800a5eb80c168004c154dd5000c59051198119bac30553052375409201c660446eb0c0e4c148dd502498139982a006a5eb80dd6982a0054590520c140004c13c004c138004c134004c130004c11cdd5000c5904418191982380099823981618229baa04b4bd701816981618229baa3031304537546644b3001001801456600260960031304a001801209041202a6608692012548617320746f207265666572656e63652073696e676c65206578656375746520696e707574001698009bac3031304537540793048304537540974c0103d87980004060608e60886ea8c11cc110dd5181818221baa3047304437540031641046602e6eb0c118c10cdd501d018c4c8cc896600260740571332259800981e98239baa0018991919912cc004c140cc074dd6182798261baa04300389919192cc004cc0cd24015d416c6c20696e70757473206d7573742068617665206d6f7265207468616e2031206e6f6e2d414441206173736574206f722031206e6f6e2d41444120617373657420616e64206d6f7265207468616e20327820414441206275666665720032598009807800c528c566002609000313371090405b6e02cc004016910100a4410040ed14a0826904d18069817180480245660026606692012f416c6c207468652076616c7565206e6565647320746f2062652073656e74206261636b20746f207472656173757279009800801401298103d87a8000406915980099819a494e45616368206e6f6e204144412061737365742069732073657061726174656420696e746f20697473206f776e20636f6e74696e75696e67206f7574707574207769746820766f696420646174756d003300a00123298009bac3038305137540913026330530074bd705300107d87b9fd87980ff00cc004dd7182a0014dd7182a000cdd6982a182a800a444b300130490018a5eb7bdb182264646600200297adef6c602259800800c4cc164cdd81ba9006374c00697adef6c608994c004dd7182b800cdd5982c000cc1700092225980099b9000a00389982e99bb037520146e9801c0162b30013371e01400713305d337606ea4028dd3003800c4cc174cdd81ba9003374c0046600c00c00282c10580c1680050581919800800a5eb7bdb1808966002003133058337606ea4010dd4001a5eb7bdb1822653001375c60ac003375a60ae003305b00248896600266e4002000e2660b866ec0dd48041ba80070058acc004cdc7804001c4cc170cdd81ba9008375000e00313305c337606ea400cdd400119803003000a0ae415c3059001415c82894c103d8798000406460a80031330334912354686572652063616e2062652031206f75747075742077697468206f6e6c7920414441003371266e04c02c00cc03400520028a50413114a08262294104c18169804000cc00400697adef6c6091198108009bab303b304f37540048080cc070dd6181998261baa04330213304e0024bd7045904d181b9982600099826181898251baa0504bd701bab3036304a3754606c60946ea8008c130c124dd5182618249baa303530493754002609660906ea80062c82288c8cc004004008896600200314bd6f7b63044ca60026eb8c1240066eacc128006609c0049112cc004cdc8a45000038acc004c0a400e20031005412913304f337606ea400cdd300119803003000a0941826000a0943301a37586092608c6ea80f40d22b3001303902b8992cc004c0f0c118dd5000c4c8c8cc89660026605e92012d416c6c206f776e20696e70757473206861766520746f20757365207468652072696768742072656465656d6572003300d0032323303d00113375e002980103d87c80003300d304f304c37540026eacc030c130dd5021c5660026605e92012554686572652068617320746f206265206174206c656173742032206f776e20696e7075747300300a30070038acc004cc0bd2411c5472656173757279206f757470757420697320696e636f727265637400980099912cc0040060051598009828800c4c140006004827104e0a99824a491e45787065637473206f6e6c792073696e676c65206f776e206f757470757400163301b3758606460966ea8108c080cc1340052f5c130203304d0014bd70530107d87b9fd87980ff008015300103d87a8000404913302f490132416c6c20696e70757473206861766520746f20636f6e7461696e207468652073616d65206d657267696e672061737365747300323300e0042330080022303798009bab303a304e37546074609c6ea800a6eb8c1440066eb8c144c1480050391815001452820908a50412114a0824260020034bd6f7b630488cc074004dd5981b98259baa3037304b37540048060c0d8cc12c008cc12cc0c0c124dd5027a5eb80cc064dd6182598241baa03f001304a304737546094608e6ea8c0ccc11cdd5182518239baa0018b20883301a37586092608c6ea80f40d22b3001303802b89919194c004dd69826000cc130c1340066603a6eb0c130c124dd502001bcc13000e6eb4c1300092222259800982198269baa003899192cc004cc0d1240116546f6f206d616e7920617373657420636c61737365730033712601c605e002900245660026606892011c436f6c6c656374656420616d6f756e7420697320706f7369746976650059800981c801c4c0ac01e294104d45660026606892012f416374696f6e206f726566206d75737420626520616e20696e70757420746f20746865207472616e73616374696f6e0059800982298279baa33024375860a660a06ea811c01a2946294104d44cc0d124011c5472656173757279206f757470757420697320696e636f72726563740098009bac30373050375408f302533052303d3305230533050375460a660a06ea8c0f0c140dd500119829181b98281baa0564bd7025eb8266e95200433052303d3305203e330520064bd7025eb820034c0103d87a8000406114a0826a294104d4528209a9800cc004dd5981d98279baa303b304f3754003375c60a4609e6ea800e6eb8c0ecc13cdd5001c009018522100a4410080320303051304e375400716412c304c001304b00130463754081132332259800981f18241baa0018992cc004c108c124dd5000c4cc896600260a000313259800982118261baa00189919912cc004c15000626606c6eb0c14c004896600200513259800982418291baa001899191980080098071bab305830593059305930593055375409844b30010018a508acc004cdc79bae30590010038a51899801001182d000a0a6415c6eb8c158c14cdd5000c5905019198008009bac303f3053375400e44b30010018a6103d87a80008992cc006600266ebc00530103d87a8000a50a5141491001899801801982c80120a4325980099b8f375c60b00020171304233057305830590014bd7045300103d87a800041486eb0c15c00505544c8c8cc896600260b400713005305a0068b20ae375c60ae0026eb8c15c008c15c004dd6182a80120a68b20a2375a60a200260a4002609a6ea80062c8250c0d0c0ccc130dd5181c18261baa304f0018b209a375c609a60946ea800660026eb0c0d8c128dd5020cc0d8c128dd5028530103d8798000407516411c609860926ea8c130c124dd5181a98249baa304c304937540031641186002002660366eb0c128c11cdd501f01a912cc004006297ae089982518239825800998010011826000a092410c82190431800800911919800800801912cc00400629462b3001300337586096003133002002304c0018a50411482488966002003148002266e01200233002002304900141188200c01801881c8044b300130063010375400513232332259800980c801c0162c80b0dd7180b0009bae30160023016001301137540051640388b200e180480098021baa0098a4d1365640041"
8304
+ cborHex: "592298592295010100229800aba2aba1aba0aab9faab9eaab9dab9cab9a4888888896600264653001300900198049805000cdc3a400530090024888966002600460126ea800e33001300a3754007370e90004dc3a4009370e90034dc3a401091111194c00488c966002601000315980098099baa0038014590144566002601600315980098099baa0038014590144566002600e00315980098099baa0038014590144566002600c00315980098099baa0038014590144566002600a0031323232329800980d000cdd6980d001cdd6980d0012444b3001301e004899805980e8038acc004c03cc064dd5001c4c8c8cc8966002604400700d8b203e375a603e0026eb8c07c008c07c004c068dd5001c5901745901b0c068004c064004c060004c04cdd5001c56600266e1d200a0018acc004c04cdd5001c00a2c80a22c808101020204040808101018089baa0029809980a0034c04c0192223300300d198009ba5480024602e6030003222323322330020020012259800800c00e2646644b30013372200e00515980099b8f0070028800c01901944cc014014c0800110191bae3019001375a6034002603800280d0c8c8cc004004018896600200300389919912cc004cdc8804801456600266e3c02400a20030064069133005005302100440686eb8c068004dd5980d800980e800a03614bd6f7b6300a40012232330010010032259800800c52f5c11332259800980280144cc06c008cc01001000626600800800280b0c068004c06c0050184dc424001259800980418099baa0018980b980a1baa0018b20229180b980c180c000c88c8cc00400400c88cc00c004c00800a60246ea803644b30010018800c54cc04c008400501248888c8cc004004014896600200313301b337606ea4014dd400225eb7bdb1822653001375c6032003375a6034003301e00248896600266e4002400e26603e66ec0dd48049ba80080058acc004cdc7804801c6600201300880148cc080cdd81ba900a37500020051001401d13301f337606ea400cdd400119803003000a0344068301c0014069222232330010010052259800800c4cc06ccdd81ba9005374c00897adef6c608994c004dd7180c800cdd5980d000cc0780092225980099b9000900389980f99bb037520126e980200162b30013371e01200719800804c022005233020337606ea4028dd30008014400500744cc07ccdd81ba9003374c0046600c00c00280d101a0c07000501a496600200314a314a080aa24444464b3001300e00180144c00c00501619b8000400391919800800801112cc004006297ae08991991199119801001000912cc00400620071323301e374e6603c6ea4014cc078c06c004cc078c0700052f5c0660060066040004603c00280e0dd5980c8019bae301600133003003301b0023019001405d232330010010022259800800c52f5bded8c11323301933760602c0026e98c8cc004004dd5980c001112cc004006297adef6c608991980e19bb03019001375066e052000375a603400266006006603c004603800280d0cc00c00cc06c008c0640050174966002601260266ea8006246466ebcc064c058dd5180c980b1baa00200130183015375400512323375e6032602c6ea8008004c060c054dd500120229b8f489009b894800244b3001300a3014375400513232332259800980e801c0162c80d0dd6980d0009bad301a002301a001301537540051640492232598009805800c4c8c96600260380050048b2032375c6034002602c6ea800e2b3001300e0018acc004c058dd5001c00a2c80ba2c8099013180a1baa00291192cc004c02c00626464b3001301c0028024590191bae301a001301637540071598009807000c4c8c96600260380050048b2032375c6034002602c6ea800e2c8099013180a1baa002912cc00400629344c966002003149a264b3001337206eb8c058c06800cdd7180b000c4cc010010cc064004c06c00a2a6602a921326b65797320696e206173736f63696174697665206c697374206172656e277420696e20617363656e64696e67206f7264657200164050603200280b8c064005016488c8cc00400400c896600200314bd7044cc064dd39801980d00099801001180d800a0309ba54800922222222222222222222222229800911919800800801912cc0040062980103d87a80008992cc004cdd7981a18189baa0010048980f19819800a5eb82266006006606a0048170c0cc0050314888c8cc0680108c008c074c0c4dd5000acc004c090c0b8dd5000c48c0a260026eacc070c0c0dd5000cdd7181998181baa0039bae301c3030375400680da24603330013756603860606ea80066eb8c0ccc0c0dd5001cdd7180e18181baa003406c816244653001001801c0090011112cc00400a200313298008024c0d800f30010029bae30310019bab303200191111192cc004c0640060051300300140d46465300100180340150011112cc00400a200313298008024c10000f30010029bae303b0019bad303c001802a03e4010607c00481e1405d0142008303400240c9223301800223375e6064605e6ea8c0c8c0bcdd5180d98179baa001002911980c0011805800c88c966002604800313259800981a000c4cc028c0cc00400e2c8188c0bcdd5001c566002604e00313259800981a000c4cc084c0cc00400e2c8188c0bcdd5001c56600260460031323259800981a80140122c8190dd7181980098179baa0038b205840b08160c0b4dd50014888c966002604a0031323259800981b00140122c8198dd7181a00098181baa0038acc004c0a00062646644b3001303700189980c9bac30360012259800801401e33001009981c00144c004c0e4009009206c8b2068375a6068002606a00260606ea800e2c816902d18171baa00291192cc004c090006264b300130340018992cc004c098c0c0dd5000c4c8c8c966002607000513322598009815981a9baa00289919192cc004c0f400a2660226078006264b3001302f0018992cc004c0fc00626464b300130320018992cc004c10800626602c60820020131640fc607a6ea800a2b3001303500189919194c004dd69821800cdd69821801cdd698218012444b300130470048074590440c10c004c108004c0f4dd500145903a2074303b3754002607c0031640f060746ea800a2b300130320018acc004c0e8dd500140162c81da2c81b9037181c1baa0018b2074303b001303b001303637540051640cc606e00626603400244b3001002804c4c9660026058606c6ea800626464653001375a607a003375c607a007375c607a0049112cc004c1040122601060820131640f8303d001303c001303737540031640d0607200481ba2c81a8dd6181b000981b00098189baa0018b205c30330018b2062302f37540071598009813800c566002605e6ea800e0051640c11640b08160c0b4dd50014c00c00d2222222229800911192cc00400629462b3001303d001899194c004dd7181f000cdd6981f181f800cdd7181f0012444b3001301a0018acc004c06800e2b30013033303d375400f159800980c80144cdc48012410137dc0514a081da2603200481da294103b45282076181f0009bac303c0018a5040e881d0c05ccc02800cc05800a60060072222598009817000c401233001004801cc8c8008c018004cc0eccdd81ba9002375000297adef6c6091111192cc004c0800060051300300140f0653001004804401e444453001005801c01200500140188111407901b206c488a60024444464646600200200e44b30010018a508acc004c966002600800315980099baf30283041375400200f198009bab302d30413754003006802a0188a5040f914a081f0c10c0062946266004004608800281e9041180d002488889660026603400800b15980099baf3024303d375400a007198009bab3029303d375400b002800a0108a5040e914a081d24464b300130300018992cc004c100006264b30013032303c3754003132323232323298009823000cdd718230034c118012608c007304600248888966002609800d133022304b00a13302200313302200213302200113302200500f8b209218230009822800982200098218009821000981e9baa0018b2074303f0018b207a303b37540071598009819800c4c9660026080003132598009819181e1baa00189919191919194c004c1180066eb8c11801a608c00930460039823001244444b3001304c0068998111825805099811001899811001099811000899811002807c590490c118004c114004c110004c10c004c108004c0f4dd5000c5903a181f800c5903d181d9baa0038acc004c0bc006264b300130400018992cc004c0c8c0f0dd5000c4c8c8c8c8c8c8c8c8ca60026eb4c1240066eb8c1240266eb4c12401e609200d304900598248024c12400e6092004911111112cc004c14802626607e60a202026603a00a26607e00826605000626605000426605000202b16413c30490013048001304700130460013045001304400130430013042001303d37540031640e8607e0031640f460766ea800e2b3001302e0018992cc004c100006264b30013032303c3754003132323232323232323298009bad30490019bae30490099bad304900798248034c124016609200930490039824801244444444b3001305200989981f982880809980e80289981f80209981400189981400109981400080ac5904f0c124004c120004c11c004c118004c114004c110004c10c004c108004c0f4dd5000c5903a181f800c5903d181d9baa0038acc004c0b4006264b300130400018992cc004c0c8c0f0dd5000c4c8c8c8c8c8c8c8c8ca60026eb8c1240066eb8c124026609200f30490069824802cc1240126eb4c12400e6eb4c12400922222222598009829004c4cc0fcc1440404cc0a00184cc0a00144cc0a00104cc09c00c0562c827860920026090002608e002608c002608a002608800260860026084002607a6ea80062c81d0c0fc0062c81e8c0ecdd5001c56600266e1d200a0018992cc004c100006264b30013032303c37540031323232323232323232323298009bae304b0019bae304b00b9825804cc12c022609600f32598009824800c56600266e25200430480018b44c104c12000504645904a1baa304b006992cc004c1240062b30013371290021824000c5a26082609000282322c8250dd51825802cc12c0126eb4c12c00e6eb4c12c009222222222259800982b005c4cc10cc1540504cc0b00204cc0b001c4cc0b00184cc0ac00c0662c82986096002609400260920026090002608e002608c002608a002608800260860026084002607a6ea80062c81d0c0fc0062c81e8c0ecdd5001c56600266e1d200c0018992cc004c100006264b30013032303c3754003132323232323232323232323298009826000cdd698260064dd69826005cdd698260054dd69826004cdd698260044dd69826003cdd698260034dd69826002cdd698260024dd69826001244444444444b3001305800c899816982b80709980f00580dc590550c130004c12c004c128004c124004c120004c11c004c118004c114004c110004c10c004c108004c0f4dd5000c5903a181f800c5903d181d9baa0038acc004cdc3a401c003132598009820000c4c966002606460786ea80062646644b300130440018998131bac3043001225980080140262646644b300130490018992cc004c0ecc114dd5000c4c8c966002609800513007304c0088b2092375c6094002608c6ea80062c8218c1200062c8230dd7182300098238009bac3045002410d1641046eb4c104004c108004c0f4dd5000c5903a181f800c5903d181d9baa0038acc004cdc3a40200031323259800982080140122c81f0dd7181f800981d9baa0038b207040e081c1038207040e081c1038207030393754005232330010010022259800800c52f5bded8c1132329800998020021820801cdd718200014dd71820000cdd698201820800a00c30400013758607c00281e12222598009818810c4c966002606460786ea80062646644b30013044001899192cc004c0dcc104dd5000c4c8c8c8c8c8ca60026096003375a6096009375a6096007375a609600491112cc004c1400162646602660a001426603400a2b30013042304c375400b132325980099819a481205769746864726177616c2076616c75652063616e6e6f7420626520656d70747900980099baf4c101a000374c0034a14a282622b30013303349012245787065637473206a757374203120696e7075742066726f6d20747265617375727900332259800800c00a2b300130550018a5180120a441482940cc080dd6182918279baa0460118acc004cc0cd2401245472656173757279207769746864726177616c206f757470757420696e636f727265637400980099912cc004006005159800982a800c4c15000600482910520a99826a4928457870656374732073696e676c65206f757470757420746f207769746864726177616c206164647200163301f3758606c609e6ea8118c090cc144c148c13cdd500125eb826048660a260a4609e6ea80092f5c13374a9002198289ba7330514c11a5818496e6469676f54726561737572795769746864726177616c00330513052304f375401e97ae04bd704006980103d87a800040591325980099baf374c002980101a0008a518acc004c8cc004004c0c0008896600200314a115980099b88375a60aa60ac60ac6eb0c15400520008a51899801001182b000a09e414d153304e491224e6f7420656e6f7567682066756e647320696e20747265617375727920696e707574001689981a24811c5472656173757279206f757470757420697320696e636f72726563740098009bac30373050375408f302533052303d33052012330523037305037540ac97ae04bd70530107d87b9fd87980ff00800d300103d87a80004060826904d198109bab303b304f37546076609e6ea8048c0b4006294104c452820988a5041306026660486eb0c0e8c138dd50009191919829982a00119829982a00099829982a182a800a5eb80c150004c13cdd5000982818269baa0058b2094375a609e015164134304b001304a001304900130480013047001304237540031640fc6052605060826ea8c0b4c104dd50009821800c590411820981f1baa3041303e37546054607c6ea800660026eb0c104c0f8dd501acc104c0f8dd50225300103d879800040446080607a6ea80062c81d0cc040dd6181f981e1baa03302a8cc0048966002003148002266e01200233002002304200140fd22232330010010042259800800c4012266006608800266004004608a002821244646600200200644b30010018a518acc004c00cc10c006266004004608800314a081e9041488c9660026068607c6ea800626084607e6ea80062c81e0c8c8cc00400400c896600200314c0103d87a80008992cc004cdd78021820800c4c0bccc110c1080052f5c1133003003304600240fc60880028210c04ccc1000092f5c1230403041304130413041304130413041304130410019b88480092222223259800981d81444c966002607260866ea80062646644b3001303c30463754003132323232323298009828000cdd698280024dd69828001cdd6982800124444b300130550058991980c182a80509980f802899912cc004c124c14cdd5003c4c966002660729213d43616e6e6f742062652075736564207768656e207769746864726177616c2076616c7565206861732073696e676c65206173736574206f72206e6f6e65003014301330340018acc004cc0e52412d416c6c206f776e20696e70757473206861766520746f20757365207468652072696768742072656465656d657200330170032323304700113375e002980103d87a8000330173059305637540026eacc058c158dd5026c566002660729201374f6e65206f75747075742068617320746f2068617665207468652076616c7565206f662074726561737572795f7769746864726177616c0098009bac303c30553754099302a330570104bd70530107d87b9fd87980ff00800d300103d87a800040751598009981ca4923416c6c207370656e742076616c75652068617320746f2062652070616964206261636b009800cc00400a97adef6c6091198148009bab30433057375400480c33001003a5eb7bdb18244660520026eacc10cc15cdd51821982b9baa00240614c103d87a80004081133039490126416c6c206f776e206f7574707574732068617320746f206861766520766f696420646174756d003301700223375e607a60ac6ea800530107d87b9fd87980ff008a50414914a082922941052452820a430193302a3758608060a86ea8c15cc150dd5003919191982c982d0011982c982d0009982c982d182d800a5eb80c168004c154dd5000c59051198119bac30553052375409201c660446eb0c0e4c148dd502498139982a006a5eb80dd6982a0054590520c140004c13c004c138004c134004c130004c11cdd5000c5904418191982380099823981618229baa04b4bd701816981618229baa3031304537546644b3001001801456600260960031304a001801209041202a6608692012548617320746f207265666572656e63652073696e676c65206578656375746520696e707574001698009bac3031304537540793048304537540974c0103d87980004060608e60886ea8c11cc110dd5181818221baa3047304437540031641046602e6eb0c118c10cdd501d018c4c8cc896600260740571332259800981e98239baa0018991919912cc004c140cc074dd6182798261baa04300389919192cc004cc0cd24015d416c6c20696e70757473206d7573742068617665206d6f7265207468616e2031206e6f6e2d414441206173736574206f722031206e6f6e2d41444120617373657420616e64206d6f7265207468616e20327820414441206275666665720032598009807800c528c566002609000313371090405b6e02cc004016910100a4410040ed14a0826904d18069817180480245660026606692012f416c6c207468652076616c7565206e6565647320746f2062652073656e74206261636b20746f207472656173757279009800801401298103d87a8000406915980099819a494e45616368206e6f6e204144412061737365742069732073657061726174656420696e746f20697473206f776e20636f6e74696e75696e67206f7574707574207769746820766f696420646174756d003300a00123298009bac3038305137540913026330530074bd705300107d87b9fd87980ff00cc004dd7182a0014dd7182a000cdd6982a182a800a444b300130490018a5eb7bdb182264646600200297adef6c602259800800c4cc164cdd81ba9006374c00697adef6c608994c004dd7182b800cdd5982c000cc1700092225980099b9000a00389982e99bb037520146e9801c0162b30013371e01400713305d337606ea4028dd3003800c4cc174cdd81ba9003374c0046600c00c00282c10580c1680050581919800800a5eb7bdb1808966002003133058337606ea4010dd4001a5eb7bdb1822653001375c60ac003375a60ae003305b00248896600266e4002000e2660b866ec0dd48041ba80070058acc004cdc7804001c4cc170cdd81ba9008375000e00313305c337606ea400cdd400119803003000a0ae415c3059001415c82894c103d8798000406460a80031330334912354686572652063616e2062652031206f75747075742077697468206f6e6c7920414441003371266e04c02c00cc03400520028a50413114a08262294104c18169804000cc00400697adef6c6091198108009bab303b304f37540048080cc070dd6181998261baa04330213304e0024bd7045904d181b9982600099826181898251baa0504bd701bab3036304a3754606c60946ea8008c130c124dd5182618249baa303530493754002609660906ea80062c82288c8cc004004008896600200314bd6f7b63044ca60026eb8c1240066eacc128006609c0049112cc004cdc8a45000038acc004c0a400e20031005412913304f337606ea400cdd300119803003000a0941826000a0943301a37586092608c6ea80f40d22b3001303902b8992cc004c0f0c118dd5000c4c8c8cc89660026605e92012d416c6c206f776e20696e70757473206861766520746f20757365207468652072696768742072656465656d6572003300d0032323303d00113375e002980103d87c80003300d304f304c37540026eacc030c130dd5021c5660026605e92012554686572652068617320746f206265206174206c656173742032206f776e20696e7075747300300a30070038acc004cc0bd2411c5472656173757279206f757470757420697320696e636f727265637400980099912cc0040060051598009828800c4c140006004827104e0a99824a491e45787065637473206f6e6c792073696e676c65206f776e206f757470757400163301b3758606460966ea8108c080cc1340052f5c130203304d0014bd70530107d87b9fd87980ff008015300103d87a8000404913302f490132416c6c20696e70757473206861766520746f20636f6e7461696e207468652073616d65206d657267696e672061737365747300323300e0042330080022303798009bab303a304e37546074609c6ea800a6eb8c1440066eb8c144c1480050391815001452820908a50412114a0824260020034bd6f7b630488cc074004dd5981b98259baa3037304b37540048060c0d8cc12c008cc12cc0c0c124dd5027a5eb80cc064dd6182598241baa03f001304a304737546094608e6ea8c0ccc11cdd5182518239baa0018b20883301a37586092608c6ea80f40d22b3001303802b89919194c004dd69826000cc130c1340066603a6eb0c130c124dd502001bcc13000e6eb4c1300092222259800982198269baa003899192cc004cc0d1240116546f6f206d616e7920617373657420636c61737365730033712601c605e002900245660026606892011c436f6c6c656374656420616d6f756e7420697320706f7369746976650059800981c801c4c0ac01e294104d45660026606892012f416374696f6e206f726566206d75737420626520616e20696e70757420746f20746865207472616e73616374696f6e0059800982298279baa33024375860a660a06ea811c01a2946294104d44cc0d124011c5472656173757279206f757470757420697320696e636f72726563740098009bac30373050375408f302533052303d3305230533050375460a660a06ea8c0f0c140dd500119829181b98281baa0564bd7025eb8266e95200433052303d33052303d3305203e4bd701982900325eb812f5c1001a60103d87a8000406114a0826a294104d4528209a9800cc004dd5981d98279baa303b304f3754003375c60a4609e6ea800e6eb8c0ecc13cdd5001c009018522100a4410080320303051304e375400716412c304c001304b00130463754081132332259800981f18241baa0018992cc004c108c124dd5000c4cc896600260a000313259800982118261baa00189919912cc004c15000626606c6eb0c14c004896600200513259800982418291baa001899191980080098071bab305830593059305930593055375409844b30010018a508acc004cdc79bae30590010038a51899801001182d000a0a6415c6eb8c158c14cdd5000c5905019198008009bac303f3053375400e44b30010018a6103d87a80008992cc006600266ebc00530103d87a8000a50a5141491001899801801982c80120a4325980099b8f375c60b00020171304233057305830590014bd7045300103d87a800041486eb0c15c00505544c8c8cc896600260b400713005305a0068b20ae375c60ae0026eb8c15c008c15c004dd6182a80120a68b20a2375a60a200260a4002609a6ea80062c8250c0d0c0ccc130dd5181c18261baa304f0018b209a375c609a60946ea800660026eb0c0d8c128dd5020cc0d8c128dd5028530103d8798000407516411c609860926ea8c130c124dd5181a98249baa304c304937540031641186002002660366eb0c128c11cdd501f01a912cc004006297ae089982518239825800998010011826000a092410c82190431800800911919800800801912cc00400629462b3001300337586096003133002002304c0018a50411482488966002003148002266e01200233002002304900141188200c01801881c8044b300130063010375400513232332259800980c801c0162c80b0dd7180b0009bae30160023016001301137540051640388b200e180480098021baa0098a4d1365640041"
8221
8305
  };
8222
8306
 
8223
8307
  // src/contracts/treasury/types.ts
@@ -8277,7 +8361,7 @@ var import_lucid47 = require("@lucid-evolution/lucid");
8277
8361
  var _executeValidator = {
8278
8362
  type: "PlutusScriptV3",
8279
8363
  description: "Generated by Aiken",
8280
- cborHex: "59332159331e010100229800aba2aba1aba0aab9faab9eaab9dab9cab9a48888888a60022a66004921203c65787065637465643e20694173736574206e6f74207265666572656e63656400168a99801249283c65787065637465643e2053696e676c6520636f6c6c61746572616c20617373657420696e70757400168a998012491e3c65787065637465643e2053696e676c652069617373657420696e70757400168a99801249193c65787065637465643e204d697865642076657273696f6e7300168a99801249523c65787065637465643e205768656e2066756e64732066726f6d207472656173757279207265717565737465642069742068617320746f207370656e642061207574786f2066726f6d20747265617375727900168a99801249243c65787065637465643e204f6e6c792073696e676c65206578656375746520696e707574001648888896600264653001300f00198079808000cdc3a4005300f00248889660026004601e6ea800e2664530013015002980a980b001566002600260226ea801a2b30013012375400d149a2c809a2c8079222598009802180a1baa00289919914c004c8cc00400400c896600200314c103d87a80008992cc004cdd7980f180d9baa001009898021980e800a5eb82266006006603e00480c0c07400501b4c06cc060dd5002cdd5980d980e180e180e180e180e180e180e180e180e001a444b3001300a301a37540071332233223259800800c05e2b30013024001899192cc004cc004dd5980398111baa300730223754008600e60446ea80a233001222323300a00423002300c30273754002b3001301430243754003123300537566016604c6ea800400e2466e21200098009bab300b30263754003375c6052604c6ea800e6eb8c02cc098dd5001a00c4089370e900248c098c09cc09c00644646600200200644660060026004005223259800980a000c4c8c96600260560050048b2050375c6052002604a6ea800e2b300130170018acc004c094dd5001c00a2c81322c811102218119baa002488888cc8a60026058005300100192cc004c01cc0a4dd5000c4c0b4c0a8dd5000c590272445300130013008302c3754602260586ea800e44b3001301d302d375400513232323232323232323232329800981e800cdd6981e8064dd6981e805cdd6981e8054dd6981e804cdd6981e8044dd6981e803cdd6981e8034dd6981e802cdd6981e8024dd6981e801244444444444b3001304900c89980f982400709980d80580c4590460c0f4004c0f0004c0ec004c0e8004c0e4004c0e0004c0dc004c0d8004c0d4004c0d0004c0cc004c0b8dd500145902b4c078c0acdd518179818002a444b3001301e302e37540071323232323298009bad30370019bad30370059bad30370039bad30370024888966002607800b13300b303b008198009181e181e981e981e800c8c0f0c0f4c0f4c0f4c0f4c0f4c0f4c0f40066e952002912cc00400620031533038002100140dd22598009814981c9baa0028991919912cc004c10800e00b1640fc6eb4c0fc004dd6981f801181f800981d1baa0028b206e912cc004c0a4c0e4dd500144c8c8cc896600260840070058b207e375c607e0026eb8c0fc008c0fc004c0e8dd50014590374dc3a400d370e90044dc3a4015370e90074dc3a40193712900224444444444446644b30013300b49125476f7620696e707574206d75737420757365207468652072696768742072656465656d6572005980080c44ca6002266ebc00530103d87b800098231baa00191192cc004c0e400626464b3001305000280245904d1bae304e001304a3754007159800981e000c4c8c96600260a00050048b209a375c609c00260946ea800e2c823904718241baa002488966002607200513232323298009828800cdd698288024dd71828801a444b3001305500489919912cc004c10c00a264b300130590018992cc004c114c154dd5000c4c8c8c8c8c8ca600260be003375c60be00d305f004982f801cc17c0092222259800983280344cc094c1900284cc09400c4cc0940084cc0940044cc09401403a2c831060be00260bc00260ba00260b800260b600260ac6ea80062c8298c1600062c82b0c150dd5001c566002608c00513259800982c800c4c966002608a60aa6ea800626464646464653001305f0019bae305f006982f8024c17c00e60be004911112cc004c19401a26604a60c801426604a00626604a00426604a00226604a00a01d164188305f001305e001305d001305c001305b0013056375400316414c60b000316415860a86ea800e2b300130310028992cc004c164006264b3001304530553754003132323232323232323298009bad30620019bae30620099bad306200798310034c18801660c400930620039831001244444444b3001306b009899815183500809981100289981500209981580189981580109981580080a4590680c188004c184004c180004c17c004c178004c174004c170004c16c004c158dd5000c59053182c000c59056182a1baa0038acc004c05800a264b300130590018992cc004c114c154dd5000c4c8c8c8c8c8c8c8c8ca60026eb4c1880066eb8c1880266eb4c18801e60c400d306200598310024c18800e60c4004911111112cc004c1ac02626605460d402026604400a2660540082660560062660560042660560020291641a0306200130610013060001305f001305e001305d001305c001305b0013056375400316414c60b000316415860a86ea800e2b300130150028992cc004c164006264b3001304530553754003132323232323232323298009bae30620019bae30620099831003cc18801a60c400b30620049bad30620039bad30620024888888896600260d601313302a306a01013302b00613302b00513302b0041330410030148b20d0183100098308009830000982f800982f000982e800982e000982d800982b1baa0018b20a630580018b20ac30543754007159800980a00144c96600260b2003132598009822982a9baa001899191919191919191919194c004dd71832000cdd71832005cc19002660c80113064007992cc004c1880062b3001301f30610018b44c150c18400505f4590631baa3064006992cc004c1880062b3001301f30610018b44c150c18400505f4590631baa306400598320024dd69832001cdd6983200124444444444b3001306f00b899817183700a09981780409981780389981780309982280180c45906c0c190004c18c004c188004c184004c180004c17c004c178004c174004c170004c16c004c158dd5000c59053182c000c59056182a1baa0038acc004c04800a264b30013059001899814182c000801459056182a1baa0038acc004c04c00a264b300130590018992cc004c114c154dd5000c4c8cc896600260ba003133034375860b800244b300100280444c8cc896600260c4003132598009827182f1baa001899192cc004c19400a2600e60ca0111641886eb8c18c004c17cdd5000c5905c1830800c5905f1bae305f0013060001375860bc00482e22c82d0dd6982d000982d800982b1baa0018b20a630580018b20ac3054375400715980099b874804000a26464b3001305a002801c590571bae305800130543754007164144828905120a24144828905120a2414460a26ea80044c966002608400313259800982c000c4c966002608860a86ea80062646464b3001305c002899912cc004c124c164dd500144c8c8c96600260c20051330143060003132598009826800c4c96600260c600313232598009828000c4c96600260cc00313301930650010098b20c6306137540051598009829800c4c8c8ca60026eb4c19c0066eb4c19c00e6eb4c19c009222598009835802403a2c834060ce00260cc00260c26ea800a2c82f105e182f9baa00130620018b20c0305e37540051598009828000c56600260bc6ea800a00b16417d16416c82d8c170dd5000c5905e182f800982f800982d1baa0028b20ae305b0031330330012259800801404e264b3001304a305a3754003132323298009bad30610019bae30610039bae306100248896600260ca0091300830650098b20c418308009830000982d9baa0018b20b0305d002416d1641646eb0c168004c168004c154dd5000c59052182b800c5905518299baa0058acc004c1140062b30013053375400b00c8b20a88b20a0414060a26ea8010c1500162c829060a200260a0002609e00260946ea80122b3001303c002899192cc004c14000a00b1641346eb4c138004c128dd50024566002604e00515980098251baa004801c5904b4566002601800515980098251baa004801c5904b459047208e411c8238660046092608c6ea80740b2294504344c96600266018921174d697865642070726f746f636f6c2076657273696f6e73003370e6eb4c08cc11cdd500d9bad30013047375405d15980099806249224d7573742065786563757465206166746572206566666563746976652064656c6179003259800981d18239baa001899b88337006eb4c090c120dd50179bad302430483754605a60906ea8070dd6982598241baa0018a5041146094608e6ea8c128c11cdd5180718239baa0388acc004cc03124011143616e6e6f742062652065787069726564003259800981d18239baa001899b89375a609660906ea8004cdc01bad30103048375405e6eb4c040c120dd5181698241baa01c8a5041146094608e6ea8c0b0c11cdd5180718239baa0388cc0048c12cc130c130c130c130c13000646096609860986098609860986098609860986098003370090014dd7a60103d879800048889660026644b3001303c304c3754600c609a6ea80d22b3001001822c4c96600260a40051323322598009820000c56600260a26ea800e0051641491598009821800c56600260a26ea800e0051641491598009817000c56600260a26ea800e0051641491598009809800c56600260a26ea800e0051641491598009809000c4c8c8c8ca600260b0003375a60b0007375a60b00049112cc004c17001226603660b600e2b3001304730573754007132323322598009830001c0362c82e8dd6982e8009bae305d002305d00130583754007164155164164305800130570013056001305137540071598009808800c56600260a26ea800e005164149164138827104e209c413882704c014004c138dd500099805182898271baa0013756600c609c6ea80fe08c8278c14000504e44cc04924014b5768656e206e6f207472656173757279207769746864726177616c207265717565737465642069742063616e2774207370656e6420616e79207574786f2066726f6d20747265617375727900303c33002002001412844b30010018a40011300433002002305100141386605c6eb0c138c12cdd501e180899826982718279827982798279827982798279827982798279827982798259baa0514bd704660024444646600200200a44b300100189982999bb0375200a6ea00112f5bded8c113298009bae30510019bad3052001982b0012444b300133720012007133057337606ea4024dd4004002c56600266e3c02400e33001009804400a4660b066ec0dd48051ba80010028800a00e89982b99bb037520066ea0008cc01801800505220a4182a000a0a491111919800800802912cc0040062660a666ec0dd48029ba60044bd6f7b63044ca60026eb8c1440066eacc14800660ac0049112cc004cdc8004801c4cc15ccdd81ba9009374c01000b15980099b8f0090038cc00402601100291982c19bb037520146e9800400a2002803a2660ae66ec0dd48019ba6002330060060014148829060a800282924b30010018a518a50413512222232598009820000c00a260060028270cdc0002001c8c8cc004004008896600200314bd6f7b63044c8cc144cdd818270009ba63233001001375660a000444b30010018a5eb7bdb182264660a866ec0c144004dd419b8148000dd6982900099801801982b001182a000a0a43300300330530023051001413d2332259800a508a5eb7bdb182264646600200297adef6c602259800800c4cc14ccdd81ba9005374c00697adef6c608994c004dd71828800cdd59829000cc1580092225980099b9000900389982b99bb037520126e9801c0162b30013371e012007133057337606ea4024dd3003800c4cc15ccdd81ba9003374c0046600c00c00282910520c1500050521919800800a5eb7bdb1808966002003133052337606ea400d3010101004bd6f7b63044ca60026eb8c1400066eb4c14400660aa0049112cc004cdc8003801c4cc158cdd81ba90074c010101000058acc004cdc7803801c4cc158cdd81ba90074c0101010000189982b19bb037520066ea0008cc01801800505120a21829800a0a2412c6eb8c13cc130dd50009bae3031304c3754003374a90022444444464b300133223301a49012c54686520646174756d206f6620676f7665726e616e6365206d757374207570646174652070726f7065726c79003232598009823000c6600200900398031982c99191918219982e182e8019982e182e8011982e182e8009982e1ba83011375a604460b46ea80b8c178c178004c174004c170004c15cdd5015a5eb82600e60b460ae6ea817698103d87a80004015159800980a800c6600200900398031982c9918209982d182d8009982d182d982c1baa003305c305c0013057375405697ae09803982d182b9baa05da60103d87a80004015159800980b000c6600200900398031982c991918211982d982e0011982d982e0009982d9ba83010375a606a60b26ea80b4c174c174004c170004c15cdd5015a5eb82600e60b460ae6ea817698103d87a8000401519800814d28528a0a8415082a1054182a9baa001303a305537540786eb0c158c15cc15cc14cdd5022180c9982a981e1982a982b18299baa305630533754607060a66ea80a8cc15530103d87a80004bd7025eb82264b300133019490122546865207472616e73616374696f6e206d757374206d696e742070726f7065726c79003375e601c60a86ea8114dd3191919912cc004c11c00633001980098049804181e982c1baa05e9809182c1baa05ea40048012606860b06ea817a900120048acc004c0d40063300130093008303d305837540bd3020305837540bd48009002456600260320031980098049804181e982c1baa05e9802982c1baa05ea400480122b300130170018cc004c024c020c0f4c160dd502f4c07cc160dd502f520024009130093008303d305837540bc82a905520aa41544446644b3001304a0038802c6600200b002991900118038009982e99bb037520026ea000d2f5bded8c1222223259800980a000c00a2600600282f0ca6002009007804c8888a600200b003802400a00280310162809201e41606eb8c170c164dd50011bae303e3059375400460aa6ea8c0ecc158dd501e9800800912cc00400629344c966002003149a264b3001337206eb8c15cc16c00cdd7182b800c4cc010010cc168004c17000a2a660ac9201326b65797320696e206173736f63696174697665206c697374206172656e277420696e20617363656e64696e67206f726465720016415460b400282c0c16800505744cc0652401104661696c656420657865637574696f6e009800981c982a1baa03b9182c182c982c982c982c982c982c982c982c800c8c160c164c164c164c164c164c164c164c164c164c16400644b3001304530553754005132323232323232323298009831000cdd71831004cdd698310044c18801a60c400b30620049831001cc96600260c0003159800980e982f800c5a260a460be00282ea2c8308dd51831001244444444b3001306b00989981598350078998158028998158020998158018998158010998208040094590680c188004c184004c180004c17c004c178004c174004c170004c16c004c158dd50014590534896600266e40008006298103d87980008acc004cdc7801000c530103d87a80008a6103d87b8000414c82992222232598009824800c4ca60026088660ba002660ba980103d87a80004bd704dd6182f182f982f982d9baa04c982f182d9baa0074888c966002660489212153746162696c697479506f6f6c206f757470757420697320696e636f7272656374009800801cc094cc184c120cc184c094cc184c024c17cdd5032a5eb80cc185300103d87a80004bd7025eb82601c660c26090660c26090660c260c460be6ea8008cc185300118d8799fd8799f1b0de0b6b3a7640000ffd8799f00ff0000ff00330614c10180004bd7025eb812f5c1300f3019305f37540cb4c103d87a8000403515980098271bad3027305f37540671330244912370726f706f73656420694173736574206f757470757420697320696e636f727265637400330014a2980103d87a8000899812248125496e636f72726563746c7920636f6e73756d6564207265666572656e6365206961737365740032598009832000c4c96600266ebc01cc190c184dd5183218309baa30463061375400313259800982898309baa0018992cc004c19c0062646601a002264b300130540018acc004c15cc190dd5181618329baa0028acc004cc0a92412370726f706f73656420694173736574206f757470757420697320696e636f727265637400330074a2609c660ce60d060ca6ea80092f5c113302a49123636f6e73756d656420694173736574206f757470757420697320696e636f7272656374009800804cc0accc19c0292f5c1301433067304e330673232323232323230553306e306f0073306e306f0063306e306f0053306e306f0043306e306f0033306e306f0023306e306f0013306e9800a50a6103d87a8000a60103d879800041a460e060e000260de00260dc00260da00260d800260d600260d400260ca6ea80092f5c097ae0980a982098329baa06ba6103d87a8000404d14a08312294106245660026084003159800992cc004c154c194dd5000c4c070cc038dd7183498331baa009375c60d260cc6ea80062945063180818329baa0028acc004cc0a92412370726f706f73656420694173736574206f757470757420697320696e636f727265637400330074a0602060ca6ea800a26605492123636f6e73756d656420694173736574206f757470757420697320696e636f7272656374009800804cc0accc19c0292f5c1301433067304e330673232323232323230553306e306f0073306e306f0063306e306f0053306e306f0043306e306f0033306e306f0023306e306f0013306e306f30700013306e30553306e306f306c375401e97ae04bd7018378009837000983680098360009835800983500098329baa0024bd7025eb82602a608260ca6ea81ae98103d87a8000404d14a083122941062454cc18d2411a537563682069617373657420616c726561647920657869737473001641888310c18cdd5198061bae30673064375400e6eb8c19cc190dd50009833000c5906418311baa0018b20be3036303d30613754608c60c26ea80060b482f0c18c0062c830a60026eb0c188c17cdd50284c0ecc17cdd5032d300103d879800040f482e2294105c114c004012604c660c400a97ae0980799831182499831182499831183198301baa003330624c101000033062304530603754006660c4607860c06ea800ccc188c0a0c180dd500199831180d18301baa00333062301930603754006660c53001002a6103d87a8000a60103d87980004174660c400297ae04bd7025eb826020607860c06ea819a98103d87a8000403830203305c3005305a37540c097ae08acc004c1300062653001375860bc60be60be00398009bac305e001981b982d9baa061a6103d879800040e530213305d3006305b37540c297ae0982f182d9baa007488896600260c60071325980099baf00330633060375460c660c06ea8c114c180dd5000c4c96600260a060c06ea8006264b30013066001899198060008acc004cdc79bae3066306337540026eb8c198c18cdd5002c566003300100898149983298261983280319832a6103d87a80004bd7025eb826024660ca6098660ca6464609c660ce60d0004660ce60d0002660ce609460ca6ea801ccc19cc104c194dd500399833981698329baa00733067301f3065375400e660ce603c60ca6ea801cc1a4c1a4c1a4c1a4c1a4c1a4004c1a0004c18cdd5000a5eb812f5c13013303f306337540d34c0103d87a8000404514a31533061491253c65787065637465643e20694173736574206f757470757420697320696e636f72726563740016418115330614911e3c65787065637465643e204e6f742072656c6576616e74206961737365740016418060ca00316418c60c26ea80062c82f0c0d4c0f0c180dd5182298301baa0018a9982f249283c65787065637465643e204d6f64696679696e67206e6f6e2d7570677261646564204941737365740016417460c4007164180305a375409713259800981c00146600260bc60b66ea801e4464b30013050305d3754003133006375c608660bc6ea800cdd71821982f1baa0028800a0b633005375c60c060ba6ea8008dd71830182e9baa00198109982e9803182d9baa0614bd704c16cdd5026244453001304833061002330614c103d87a80004bd704dd6183118319831800e60026eb0c188006607660be6ea819698103d879800040f49112cc0040060b9132598009833801456600266ebc018c198c18cdd5183318319baa30483063375400313259800982998319baa0018992cc004c1a40062646601e0022b30013371e6eb8c1a4c198dd50009bae306930663754017159800cc00401a6058660d000e97ae0980a99834182799834191828198349835000998349ba8301e375a609860ce6ea8008c1acc1ac004c198dd5000a5eb812f5c130163042306637540d94c103d87a800040511325980099b88375a609860ce6ea8009200e89925159800982b1bad304c30673754005159800cc004dd6183518339baa058981798339baa06da60103d8798000411515980099800a514c0103d87a80008a4d1533065491223c65787065637465643e2057726f6e6720636f6c6c61746572616c206f7574707574001641911533065491243c65787065637465643e204e6f20636f6c6c61746572616c20617373657420696e707574001641a113259800800c18e264b3001306d0028acc004cdd7806183618349baa306c30693754609c60d26ea8006264b3001305c30693754003132598009837800c4c8cc04800456600266e3cdd7183798361baa001375c60de60d86ea80462b30013259800982e000c56600260be60d86ea8c094c1b4dd500145660026606492012a70726f706f73656420636f6c6c61746572616c206173736574206f757470757420696e636f727265637400330074a260ac660de60a460da6ea80092f5c11330324912a636f6e73756d656420636f6c6c61746572616c206173736574206f757470757420696e636f7272656374009800806cc0cccc1bc0392f5c1301c3306f30333306f323232323232323232305f330783079009330783079008330783079007330783079006330783079005330783079004330783079003330783079002330783079001330789800a50a6103d87a8000a60103d879800041cc60f460f400260f200260f000260ee00260ec00260ea00260e800260e600260e400260da6ea80092f5c097ae0980e981a98369baa073a6103d87a8000406d14a08352294106a45660026094003159800992cc004c174c1b4dd5000c4c090cc048c14cc1b8dd5009983898371baa0018a5141ac602e60da6ea800a2b3001330324912a70726f706f73656420636f6c6c61746572616c206173736574206f757470757420696e636f727265637400330074a0602e60da6ea800a2660649212a636f6e73756d656420636f6c6c61746572616c206173736574206f757470757420696e636f7272656374009800806cc0cccc1bc0392f5c1301c3306f30333306f323232323232323232305f330783079009330783079008330783079007330783079006330783079005330783079004330783079003330783079002330783079001330783079307a00133078305f33078305b3076375403697ae04bd70183c800983c000983b800983b000983a800983a0009839800983900098369baa0024bd7025eb82603a606a60da6ea81ce98103d87a8000406d14a08352294106a454cc1ad241245375636820636f6c6c61746572616c20617373657420616c726561647920657869737473001641a88350c1acdd519808182898361baa0113051306c3754003149a2c834a2a660d4921283c65787065637465643e204e6f742072656c6576616e7420636f6c6c61746572616c206173736574001641a460dc0031641b060d46ea80062c8338c0f8c114c1a4dd5182718349baa00183120cc83220d4306b00141a53001375860d460ce6ea8162605e60ce6ea81b698103d8798000411483222a660ca921283c65787065637465643e204d617820636f6c6c61746572616c20617373657473207265616368656400164190453001008981719835004a5eb82602e660d4605c660d460a2660d460d660d06ea800ccc1a8c134c1a0dd500699835182218341baa00d3306a30303068375401a660d4604460d06ea8034cc1a8c084c1a0dd500699835180a98341baa00d3306a302f3068375401a660d4602660d06ea8034cc1aa60020054c103d87a8000a60103d87980004194660d400297ae04bd7025eb826030606060d06ea81ba98103d87a8000405915330644911e3c65787065637465643e2057726f6e6720696173736574206f75747075740016418d1533064491173c65787065637465643e2057726f6e67206961737365740016418c60d000316419860c86ea80062c8308c0e0c0fcc18cdd5182418319baa00182e20c082ea0c83065001418c4566002603a005132980098229982f0009982f26103d87a80004bd70660026eb0c17cc170dd5026cc090c170dd50315300103d879800040e9305f305c37540109112cc004c18c00a264b30013375e00a60c660c06ea8c18cc180dd5182298301baa0018992cc004c14cc180dd5000c4c96600260cc00313233009001159800acc004cdc79bae3066306337540026eb8c198c18cdd5002c4cdd7982418319baa00130483063375400b14a083022b300198009bac303f306337540a93029330650074bd704c048cc194c0a4cc194c8c8c8c13ccc1a0c1a400ccc1a0c1a4008cc1a0c1a4004cc1a0c0b8c198dd500419834181018331baa00833068301f30663754010660d0602660cc6ea8020cc1a0c0b4c198dd500419834180898331baa008306a306a306a306a306a306a306a001306900130680013063375400297ae04bd704c04cc0acc18cdd5034d30103d87a8000404514a315330614912c3c65787065637465643e20436f6c6c61746572616c206173736574206f757470757420696e636f7272656374001641811533061491263c65787065637465643e20697272656c6576616e7420636f6c6c61746572616c2061737365740016418060ca00316418c60c26ea80062c82f0c0d4c0f0c180dd5182298301baa00182ca0ba30620028b20c018109982e9803182d9baa0614bd704566002603800513322598009830800c4c96600260a060ba6ea80062b3001305e375400313259800800c16e264b300130640028992cc004c140c180dd5000c4c96600260cc0031323300c0011598009981424810c57726f6e6720694173736574003371e6eb8c198c18cdd50009bae306630633754011133028490117434450206f757470757420697320696e636f72726563740098009bac303f306337540a9302933065304c33065302933065301b306337540d297ae0330654c103d87a80004bd7025eb826024660ca6052660ca6098660ca60cc60c66ea8020cc194c120c18cdd500419832981f98319baa00833065302b30633754010660ca603a60c66ea8020cc1966002946980103d87a8000a60103d87980004180660cb30014a34c0103d87a8000a60103d87980004180660ca603860c66ea8020cc194c040c18cdd500419832981518319baa00833065300e3063375401097ae04bd7025eb826026602060c66ea81a6980103d87a8000404514a08300c1940062c8318c184dd5000c5905e181a981e18301baa30453060375400305c418460c4002830260026eb0c10cc178dd5027cc0e8c178dd50325300103d879800040f116417d16416c6603260c060ba6ea8c180004dd5980a982e9baa04e8b20bc305e305b375400f3001375860bc60b66ea8132602860b66ea818698103d879800040e5159800980d80144cc896600260c20031325980099baf3061305e375460c260bc6ea8c10cc178dd5000981219830180b182f1baa0644bd7044c96600266e1d2010305e3754003132598009832000c4cc896600260a860c26ea8006264b300130670018992cc004c14cc18cdd5000c4c8c8c8c8c8c8c8c8c8c8ca60026eb8c1c80066eb8c1c802e60e401330720089839003cc96600260e000315980098169837800c5a260c460de002836a2c8388dd518390034c96600260e000315980098169837800c5a260c460de002836a2c8388dd51839002cc1c80126eb4c1c800e6eb4c1c8009222222222259800983e805c4cc0f0c1f00504cc0f40204cc0f401c4cc0f40184cc14c00c5660026607c9211643445020696e70757420697320696e636f7272656374005980099b8f375c60f860f26ea8058dd7183e183c9baa01e899baf305e3079375402c60bc60f26ea807a294107644cc0f924117434450206f757470757420697320696e636f72726563740098009bac3055307937540d5303f3307b30623307b303f3307b3031307937540fe97ae03307b4c103d87a80004bd7025eb826050660f6607e660f66460c6660f860fa002660f860fa60fc002660f860ac60f46ea807ccc1f0c108c1e8dd500f9983e181a183d1baa01f3307c98009836183c9baa3033307a375403f4c0103d87a8000a60103d879800041dc660f93001306c30793754604e60f46ea807e980103d87a8000a60103d879800041dc660f8608260f46ea807ccc1f0c094c1e8dd500f9983e1819183d1baa01f3307c3024307a375403e97ae03079375402c97ae04bd704dd5982f183c9baa305e307937540394c0103d87a8000409d14a083b22c83d060e400260e200260e000260de00260dc00260da00260d800260d600260d400260d200260c86ea80062c8308c1980062c8320c188dd5000c5905f1bad30630013035303c30603754608a60c06ea800e2c8308c17cdd5000c5905c1980d1830982f1baa0013756602c60bc6ea813e2a660b892011a3c65787065637465643e204d697865642076657273696f6e732e0016416c60c000316417860bc60b66ea801e60026eb0c178c16cdd50264c020c16cdd5030d300103d879800040e5159800980d00144c8cc08524012176657273696f6e5265636f7264206f757470757420697320696e636f72726563740098009bac3038305c375409b30223305e30453305e30223305e305f30603060306030603060306030603060306030603060305c37540c497ae03305e4c103d87a80004bd7025eb826016660bc608a660bc60be60b86ea8004cc178dd399198008009bac3042305d375400444b30010018a5eb822660c06e9cc8cc184c188004cc184c188c17cdd518311831800a5eb80dd61830800998010011831000a0be4bd7025eb826018604660b86ea818a980103d87a8000402860bc60b66ea801e2b300130190028a518a51416082c105820b0416082c08966002609660b66ea800a264646464646464646464653001306a0019bae306a00b9bad306a00998350044c1a801e60d400d306a00598350024dd69835001cc96600260d000315980098129833800c5a260b460ce002832a2c8348dd5183500124444444444b3001307500b89981a183a00a09981600389981a00309981a80289981a80209981a8018992cc004c184006264b3001307700189981b183b00080c45907418391baa00b8acc004c1900062b3001307237540170178b20e68b20de41bc60e06ea802a2c839060d400260d200260d000260ce00260cc00260ca00260c800260c600260c400260c200260b86ea800a2c82c905720ae3058375400a8a504144460ae60b060b060b060b060b060b000314a0828088888c8cc004004cc0f001966002608e60ae6ea8016246466ebcc174c168dd5182e982d1baa002001305c3059375400d12323375e60ba60b46ea8008004c170c164dd500320aa2259800800c528456600264b30013375e606c60b46ea800401a264b30010018a518acc004c17c006264653001375c60c0003375a60c060c2003375c60c00049112cc004cdc7800a45008acc004cdc7801a441008acc004c13cc17cdd5005456600266e252000002899b89002482026fb80a294105d44cdc4a400000482ea294105d452820ba18300009bac305e0018a50417082e0c8cc004004ca60020033756608260b86ea800e601a00e80088896600200510018994c00401260c600798008014dd7182f000cdd5982f800c88888c966002603000300289801800a0c432329800800c01a00a80088896600200510018994c00401260da00798008014dd71834000cdd69834800c01501e2008306b00241a4a02c8099004183080120be2259800800c52f5c113233223322330020020012259800800c400e264660c86e9ccc190dd4802998321830800998321831000a5eb80cc00c00cc198008c1900050621bab305f003375c60b80026600600660c200460be00282ea2941057182e000c528c4cc008008c17400505620b445282090452820888a50411114a082208c128c12cc12cc12cc12c006294104311192cc004c0d8c118dd5000c4c128c11cdd5000c59044191919800800801912cc0040062980103d87a80008992cc004cdd78021824800c4c0cccc130c1280052f5c1133003003304e002411c60980028250c030cc1200092f5c04464b300130360018992cc004c1300062660186096002007164124608e6ea800e2b300130390018992cc004c1300062660166096002007164124608e6ea800e2b30013024001899192cc004c13400a0091641286eb8c12c004c11cdd5001c5904420884110608a6ea80091640e43037001303600130350013034001302f37540071640b019912cc0040060051598009816800c4cc0acc0b0004cc0ae600294698103d87a8000a60103d8798000409897ae0801205440a826644b30010018014566002605a00313302b302c0013302b9800a50a6103d87a8000a60103d8798000409897ae0801205440a82a6604a92130457870656374656420476f7620696e7075742065697468657220617320696e707574206f72207265662e20696e707574001698009bac300c30273754031302a3027375405b4c0103d879800040153001011981518139baa02da60103d8798000401444464b3001301a001899192cc004c0c400a0091640b86eb8c0bc004c0acdd5001c566002603a0031323322598009819000c4cc024dd61818800912cc00400a00f19800804cc0cc00a260026068004804903145902f1bad302f0013030001302b37540071640a08140c0a4dd500122a66040921283c65787065637465643e20526571756972657320617574686564206578656375746520696e7075740016407c44602b30010029bae302630233754003375c601060466ea800500311119199119801001000912cc00400600713233225980099b910070028acc004cdc78038014400600c813226600a00a605a0088130dd718130009bad30270013029001409c64646600200200c44b3001001801c4c8cc896600266e4402400a2b30013371e0120051001803204e8998028029817002204e375c604e0026eacc0a0004c0a80050280a5eb7bdb1805200080ba0424084660040126044603e6ea8c088c07cdd51802180f9baa001223300300223375e604660406ea8c08cc080dd5180298101baa0010023020301d375400a4603e604000244646600200200644b30010018a5eb8226644b3001300500289981180119802002000c4cc01001000501e18110009811800a0408b20301bac3019001374a9000180a9baa0068b202418081baa003370e900045900d0c03c004c028dd5007c52689b2b200e1"
8364
+ cborHex: "59341a593417010100229800aba2aba1aba0aab9faab9eaab9dab9cab9a48888888a60022a66004921203c65787065637465643e20694173736574206e6f74207265666572656e63656400168a99801249283c65787065637465643e2053696e676c6520636f6c6c61746572616c20617373657420696e70757400168a998012491e3c65787065637465643e2053696e676c652069617373657420696e70757400168a99801249193c65787065637465643e204d697865642076657273696f6e7300168a99801249523c65787065637465643e205768656e2066756e64732066726f6d207472656173757279207265717565737465642069742068617320746f207370656e642061207574786f2066726f6d20747265617375727900168a99801249243c65787065637465643e204f6e6c792073696e676c65206578656375746520696e707574001648888896600264653001300f00198079808000cdc3a4005300f00248889660026004601e6ea800e2664530013015002980a980b001566002600260226ea801a2b30013012375400d149a2c809a2c8079222598009802180a1baa00289919914c004c8cc00400400c896600200314c103d87a80008992cc004cdd7980f180d9baa001009898021980e800a5eb82266006006603e00480c0c07400501b4c06cc060dd5002cdd5980d980e180e180e180e180e180e180e180e180e001a444b3001300a301a37540071332233223259800800c05e2b30013024001899192cc004cc004dd5980398111baa300730223754008600e60446ea80a233001222323300a00423002300c30273754002b3001301430243754003123300537566016604c6ea800400e2466e21200098009bab300b30263754003375c6052604c6ea800e6eb8c02cc098dd5001a00c4089370e900248c098c09cc09c00644646600200200644660060026004005223259800980a000c4c8c96600260560050048b2050375c6052002604a6ea800e2b300130170018acc004c094dd5001c00a2c81322c811102218119baa002488888cc8a60026058005300100192cc004c01cc0a4dd5000c4c0b4c0a8dd5000c590272445300130013008302c3754602260586ea800e44b3001301d302d375400513232323232323232323232329800981e800cdd6981e8064dd6981e805cdd6981e8054dd6981e804cdd6981e8044dd6981e803cdd6981e8034dd6981e802cdd6981e8024dd6981e801244444444444b3001304900c89980f982400709980d80580c4590460c0f4004c0f0004c0ec004c0e8004c0e4004c0e0004c0dc004c0d8004c0d4004c0d0004c0cc004c0b8dd500145902b4c078c0acdd518179818002a444b3001301e302e37540071323232323298009bad30370019bad30370059bad30370039bad30370024888966002607800b13300b303b008198009181e181e981e981e800c8c0f0c0f4c0f4c0f4c0f4c0f4c0f4c0f40066e952002912cc00400620031533038002100140dd22598009814981c9baa0028991919912cc004c10800e00b1640fc6eb4c0fc004dd6981f801181f800981d1baa0028b206e912cc004c0a4c0e4dd500144c8c8cc896600260840070058b207e375c607e0026eb8c0fc008c0fc004c0e8dd50014590374dc3a400d370e90044dc3a4015370e90074dc3a40193712900224444444444446644b30013300b49125476f7620696e707574206d75737420757365207468652072696768742072656465656d6572005980080c44ca6002266ebc00530103d87b800098231baa00191192cc004c0e400626464b3001305000280245904d1bae304e001304a3754007159800981e000c4c8c96600260a00050048b209a375c609c00260946ea800e2c823904718241baa002488966002607200513232323298009828800cdd698288024dd71828801a444b3001305500489919912cc004c10c00a264b300130590018992cc004c114c154dd5000c4c8c8c8c8c8ca600260be003375c60be00d305f004982f801cc17c0092222259800983280344cc094c1900284cc09400c4cc0940084cc0940044cc09401403a2c831060be00260bc00260ba00260b800260b600260ac6ea80062c8298c1600062c82b0c150dd5001c566002608c00513259800982c800c4c966002608a60aa6ea800626464646464653001305f0019bae305f006982f8024c17c00e60be004911112cc004c19401a26604a60c801426604a00626604a00426604a00226604a00a01d164188305f001305e001305d001305c001305b0013056375400316414c60b000316415860a86ea800e2b300130310028992cc004c164006264b3001304530553754003132323232323232323298009bad30620019bae30620099bad306200798310034c18801660c400930620039831001244444444b3001306b009899815183500809981100289981500209981580189981580109981580080a4590680c188004c184004c180004c17c004c178004c174004c170004c16c004c158dd5000c59053182c000c59056182a1baa0038acc004c05800a264b300130590018992cc004c114c154dd5000c4c8c8c8c8c8c8c8c8ca60026eb4c1880066eb8c1880266eb4c18801e60c400d306200598310024c18800e60c4004911111112cc004c1ac02626605460d402026604400a2660540082660560062660560042660560020291641a0306200130610013060001305f001305e001305d001305c001305b0013056375400316414c60b000316415860a86ea800e2b300130150028992cc004c164006264b3001304530553754003132323232323232323298009bae30620019bae30620099831003cc18801a60c400b30620049bad30620039bad30620024888888896600260d601313302a306a01013302b00613302b00513302b0041330410030148b20d0183100098308009830000982f800982f000982e800982e000982d800982b1baa0018b20a630580018b20ac30543754007159800980a00144c96600260b2003132598009822982a9baa001899191919191919191919194c004dd71832000cdd71832005cc19002660c80113064007992cc004c1880062b3001301f30610018b44c150c18400505f4590631baa3064006992cc004c1880062b3001301f30610018b44c150c18400505f4590631baa306400598320024dd69832001cdd6983200124444444444b3001306f00b899817183700a09981780409981780389981780309982280180c45906c0c190004c18c004c188004c184004c180004c17c004c178004c174004c170004c16c004c158dd5000c59053182c000c59056182a1baa0038acc004c04800a264b30013059001899814182c000801459056182a1baa0038acc004c04c00a264b300130590018992cc004c114c154dd5000c4c8cc896600260ba003133034375860b800244b300100280444c8cc896600260c4003132598009827182f1baa001899192cc004c19400a2600e60ca0111641886eb8c18c004c17cdd5000c5905c1830800c5905f1bae305f0013060001375860bc00482e22c82d0dd6982d000982d800982b1baa0018b20a630580018b20ac3054375400715980099b874804000a26464b3001305a002801c590571bae305800130543754007164144828905120a24144828905120a2414460a26ea80044c966002608400313259800982c000c4c966002608860a86ea80062646464b3001305c002899912cc004c124c164dd500144c8c8c96600260c20051330143060003132598009826800c4c96600260c600313232598009828000c4c96600260cc00313301930650010098b20c6306137540051598009829800c4c8c8ca60026eb4c19c0066eb4c19c00e6eb4c19c009222598009835802403a2c834060ce00260cc00260c26ea800a2c82f105e182f9baa00130620018b20c0305e37540051598009828000c56600260bc6ea800a00b16417d16416c82d8c170dd5000c5905e182f800982f800982d1baa0028b20ae305b0031330330012259800801404e264b3001304a305a3754003132323298009bad30610019bae30610039bae306100248896600260ca0091300830650098b20c418308009830000982d9baa0018b20b0305d002416d1641646eb0c168004c168004c154dd5000c59052182b800c5905518299baa0058acc004c1140062b30013053375400b00c8b20a88b20a0414060a26ea8010c1500162c829060a200260a0002609e00260946ea80122b3001303c002899192cc004c14000a00b1641346eb4c138004c128dd50024566002604e00515980098251baa004801c5904b4566002601800515980098251baa004801c5904b459047208e411c8238660046092608c6ea80740b2294504344c96600266018921174d697865642070726f746f636f6c2076657273696f6e73003370e6eb4c08cc11cdd500d9bad30013047375405d15980099806249224d7573742065786563757465206166746572206566666563746976652064656c6179003259800981d18239baa001899b88337006eb4c090c120dd50179bad302430483754605a60906ea8070dd6982598241baa0018a5041146094608e6ea8c128c11cdd5180718239baa0388acc004cc03124011143616e6e6f742062652065787069726564003259800981d18239baa001899b89375a609660906ea8004cdc01bad30103048375405e6eb4c040c120dd5181698241baa01c8a5041146094608e6ea8c0b0c11cdd5180718239baa0388cc0048c12cc130c130c130c130c13000646096609860986098609860986098609860986098003370090014dd7a60103d879800048889660026644b3001303c304c3754600c609a6ea80d22b3001001822c4c96600260a40051323322598009820000c56600260a26ea800e0051641491598009821800c56600260a26ea800e0051641491598009817000c56600260a26ea800e0051641491598009809800c56600260a26ea800e0051641491598009809000c4c8c8c8ca600260b0003375a60b0007375a60b00049112cc004c17001226603660b600e2b3001304730573754007132323322598009830001c0362c82e8dd6982e8009bae305d002305d00130583754007164155164164305800130570013056001305137540071598009808800c56600260a26ea800e005164149164138827104e209c413882704c014004c138dd500099805182898271baa0013756600c609c6ea80fe08c8278c14000504e44cc04924014b5768656e206e6f207472656173757279207769746864726177616c207265717565737465642069742063616e2774207370656e6420616e79207574786f2066726f6d20747265617375727900303c33002002001412844b30010018a40011300433002002305100141386605c6eb0c138c12cdd501e180899826982718279827982798279827982798279827982798279827982798259baa0514bd704660024444646600200200a44b300100189982999bb0375200a6ea00112f5bded8c113298009bae30510019bad3052001982b0012444b300133720012007133057337606ea4024dd4004002c56600266e3c02400e33001009804400a4660b066ec0dd48051ba80010028800a00e89982b99bb037520066ea0008cc01801800505220a4182a000a0a491111919800800802912cc0040062660a666ec0dd48029ba60044bd6f7b63044ca60026eb8c1440066eacc14800660ac0049112cc004cdc8004801c4cc15ccdd81ba9009374c01000b15980099b8f0090038cc00402601100291982c19bb037520146e9800400a2002803a2660ae66ec0dd48019ba6002330060060014148829060a800282924b30010018a518a50413512222232598009820000c00a260060028270cdc0002001c8c8cc004004008896600200314bd6f7b63044c8cc144cdd818270009ba63233001001375660a000444b30010018a5eb7bdb182264660a866ec0c144004dd419b8148000dd6982900099801801982b001182a000a0a43300300330530023051001413d2332259800a508a5eb7bdb182264646600200297adef6c602259800800c4cc14ccdd81ba9005374c00697adef6c608994c004dd71828800cdd59829000cc1580092225980099b9000900389982b99bb037520126e9801c0162b30013371e012007133057337606ea4024dd3003800c4cc15ccdd81ba9003374c0046600c00c00282910520c1500050521919800800a5eb7bdb1808966002003133052337606ea400d3010101004bd6f7b63044ca60026eb8c1400066eb4c14400660aa0049112cc004cdc8003801c4cc158cdd81ba90074c010101000058acc004cdc7803801c4cc158cdd81ba90074c0101010000189982b19bb037520066ea0008cc01801800505120a21829800a0a2412c6eb8c13cc130dd50009bae3031304c3754003374a90022444444464b300133223301a49012c54686520646174756d206f6620676f7665726e616e6365206d757374207570646174652070726f7065726c79003232598009823000c6600200900398031982c99191918219982e182e8019982e182e8011982e182e8009982e1ba83011375a604460b46ea80b8c178c178004c174004c170004c15cdd5015a5eb82600e60b460ae6ea817698103d87a80004015159800980a800c6600200900398031982c9918209982d182d8009982d182d982c1baa003305c305c0013057375405697ae09803982d182b9baa05da60103d87a80004015159800980b000c6600200900398031982c991918211982d982e0011982d982e0009982d9ba83010375a606a60b26ea80b4c174c174004c170004c15cdd5015a5eb82600e60b460ae6ea817698103d87a8000401519800814d28528a0a8415082a1054182a9baa001303a305537540786eb0c158c15cc15cc14cdd5022180c9982a981e1982a982b18299baa305630533754607060a66ea80a8cc15530103d87a80004bd7025eb82264b300133019490122546865207472616e73616374696f6e206d757374206d696e742070726f7065726c79003375e601c60a86ea8114dd3191919912cc004c11c00633001980098049804181e982c1baa05e9809182c1baa05ea40048012606860b06ea817a900120048acc004c0d40063300130093008303d305837540bd3020305837540bd48009002456600260320031980098049804181e982c1baa05e9802982c1baa05ea400480122b300130170018cc004c024c020c0f4c160dd502f4c07cc160dd502f520024009130093008303d305837540bc82a905520aa41544446644b3001304a0038802c6600200b002991900118038009982e99bb037520026ea000d2f5bded8c1222223259800980a000c00a2600600282f0ca6002009007804c8888a600200b003802400a00280310162809201e41606eb8c170c164dd50011bae303e3059375400460aa6ea8c0ecc158dd501e9800800912cc00400629344c966002003149a264b3001337206eb8c15cc16c00cdd7182b800c4cc010010cc168004c17000a2a660ac9201326b65797320696e206173736f63696174697665206c697374206172656e277420696e20617363656e64696e67206f726465720016415460b400282c0c16800505744cc0652401104661696c656420657865637574696f6e009800981c982a1baa03b9182c182c982c982c982c982c982c982c982c800c8c160c164c164c164c164c164c164c164c164c164c16400644b3001304530553754005132323232323232323298009831000cdd71831004cdd698310044c18801a60c400b30620049831001cc96600260c0003159800980e982f800c5a260a460be00282ea2c8308dd51831001244444444b3001306b00989981598350078998158028998158020998158018998158010998208040094590680c188004c184004c180004c17c004c178004c174004c170004c16c004c158dd50014590534896600266e40008006298103d87980008acc004cdc7801000c530103d87a80008a6103d87b8000414c82992222232598009824800c4ca60026088660ba002660ba980103d87a80004bd704dd6182f182f982f982d9baa04c982f182d9baa0074888c966002660489212153746162696c697479506f6f6c206f757470757420697320696e636f7272656374009800801cc094cc184c120cc184c094cc184c024c17cdd5032a5eb80cc185300103d87a80004bd7025eb82601c660c26090660c26090660c260c460be6ea8008cc185300118d8799fd8799f1b0de0b6b3a7640000ffd8799f00ff0000ff00330614c10180004bd7025eb812f5c1300f3019305f37540cb4c103d87a8000403515980098271bad3027305f37540671330244912370726f706f73656420694173736574206f757470757420697320696e636f727265637400330014a2980103d87a8000899812248125496e636f72726563746c7920636f6e73756d6564207265666572656e6365206961737365740032598009832000c4c96600266ebc01cc190c184dd5183218309baa30463061375400313259800982898309baa0018992cc004c19c0062646601a002264b300130540018acc004c15cc190dd5181618329baa0028acc004cc0a92412370726f706f73656420694173736574206f757470757420697320696e636f727265637400330074a2609c660ce60d060ca6ea80092f5c113302a49123636f6e73756d656420694173736574206f757470757420697320696e636f7272656374009800804cc0accc19c0292f5c1301433067304e330673232323232323230553306e306f0073306e306f0063306e306f0053306e306f0043306e306f0033306e306f0023306e306f0013306e9800a50a6103d87a8000a60103d879800041a460e060e000260de00260dc00260da00260d800260d600260d400260ca6ea80092f5c097ae0980a982098329baa06ba6103d87a8000404d14a08312294106245660026084003159800992cc004c154c194dd5000c4c070cc038dd7183498331baa009375c60d260cc6ea80062945063180818329baa0028acc004cc0a92412370726f706f73656420694173736574206f757470757420697320696e636f727265637400330074a0602060ca6ea800a26605492123636f6e73756d656420694173736574206f757470757420697320696e636f7272656374009800804cc0accc19c0292f5c1301433067304e330673232323232323230553306e306f0073306e306f0063306e306f0053306e306f0043306e306f0033306e306f0023306e306f0013306e306f30700013306e30553306e306f306c375401e97ae04bd7018378009837000983680098360009835800983500098329baa0024bd7025eb82602a608260ca6ea81ae98103d87a8000404d14a083122941062454cc18d2411a537563682069617373657420616c726561647920657869737473001641888310c18cdd5198061bae30673064375400e6eb8c19cc190dd50009833000c5906418311baa0018b20be3036303d30613754608c60c26ea80060b482f0c18c0062c830a60026eb0c188c17cdd50284c0ecc17cdd5032d300103d879800040f482e2294105c114c004012604c660c400a97ae0980799831182499831182499831183198301baa003330624c101000033062304530603754006660c4607860c06ea800ccc188c0a0c180dd500199831180d18301baa00333062301930603754006660c53001002a6103d87a8000a60103d87980004174660c400297ae04bd7025eb826020607860c06ea819a98103d87a8000403830203305c3005305a37540c097ae08acc004c1300062653001375860bc60be60be00398009bac305e001981b982d9baa061a6103d879800040e530213305d3006305b37540c297ae0982f182d9baa007488896600260c60071325980099baf00330633060375460c660c06ea8c114c180dd5000c4c96600260a060c06ea8006264b30013066001899198060008acc004cdc79bae3066306337540026eb8c198c18cdd5002c566003300100898149983298261983280319832a6103d87a80004bd7025eb826024660ca6098660ca6464609c660ce60d0004660ce60d0002660ce609460ca6ea801ccc19cc104c194dd500399833981698329baa00733067301f3065375400e660ce603c60ca6ea801cc1a4c1a4c1a4c1a4c1a4c1a4004c1a0004c18cdd5000a5eb812f5c13013303f306337540d34c0103d87a8000404514a31533061491253c65787065637465643e20694173736574206f757470757420697320696e636f72726563740016418115330614911e3c65787065637465643e204e6f742072656c6576616e74206961737365740016418060ca00316418c60c26ea80062c82f0c0d4c0f0c180dd5182298301baa0018a9982f249283c65787065637465643e204d6f64696679696e67206e6f6e2d7570677261646564204941737365740016417460c4007164180305a375409713259800981c00146600260bc60b66ea801e4464b30013050305d3754003133006375c608660bc6ea800cdd71821982f1baa0028800a0b633005375c60c060ba6ea8008dd71830182e9baa00198109982e9803182d9baa0614bd704c16cdd5026244453001304833061002330614c103d87a80004bd704dd6183118319831800e60026eb0c188006607660be6ea819698103d879800040f49112cc0040060b9132598009833801456600266ebc018c198c18cdd5183318319baa30483063375400313259800982998319baa0018992cc004c1a40062646601e0022b30013371e6eb8c1a4c198dd50009bae306930663754017159800cc00401a6058660d000e97ae0980a99834182799834191828198349835000998349ba8301e375a609860ce6ea8008c1acc1ac004c198dd5000a5eb812f5c130163042306637540d94c103d87a80004051132324a2b30013056375a609860ce6ea800a2b300198009bac306a306737540b1302f306737540db4c0103d8798000411515980099800a514c0103d87a80008a4d1533065491223c65787065637465643e2057726f6e6720636f6c6c61746572616c206f7574707574001641911533065491243c65787065637465643e204e6f20636f6c6c61746572616c20617373657420696e707574001641a113259800800c18e264b3001306d0028acc004cdd7806183618349baa306c30693754609c60d26ea8006264b3001305c30693754003132598009837800c4c8cc04800456600266e3cdd7183798361baa001375c60de60d86ea80462b3001337106eb4c144c1b0dd5003acc0056600266ebd6600260bc60d66ea8c090c1b0dd5000c4c144c1b0dd5000c4c96600260e200313259800983018369baa0018992cc004c1cc0062646602c0022b30013062306f3754605060e06ea8006260aa60e06ea80062a660dc921253c65787065637465643e204e6f742074686520666972737420696e2074686520636861696e001641b460e40031641c060dc6ea80062c8358c108c124c1b4dd5182918369baa30700018b20dc98009bac3051306c37540bb3034306c37540e54c0103d879800041288349300106d8799f4040ff008a51899baf3051306c375402298106d8799f4040ff0041a51480422900720d28acc004c96600260b8003159800982f98361baa3025306d37540051598009981924812a70726f706f73656420636f6c6c61746572616c206173736574206f757470757420696e636f727265637400330074a260ac660de60a460da6ea80092f5c11330324912a636f6e73756d656420636f6c6c61746572616c206173736574206f757470757420696e636f7272656374009800806cc0cccc1bc0392f5c1301c3306f30333306f323232323232323232305f330783079009330783079008330783079007330783079006330783079005330783079004330783079003330783079002330783079001330789800a50a6103d87a8000a60103d879800041cc60f460f400260f200260f000260ee00260ec00260ea00260e800260e600260e400260da6ea80092f5c097ae0980e981a98369baa073a6103d87a8000406d14a08352294106a45660026094003159800992cc004c174c1b4dd5000c4c090cc048c14cc1b8dd5009983898371baa0018a5141ac602e60da6ea800a2b3001330324912a70726f706f73656420636f6c6c61746572616c206173736574206f757470757420696e636f727265637400330074a0602e60da6ea800a2660649212a636f6e73756d656420636f6c6c61746572616c206173736574206f757470757420696e636f7272656374009800806cc0cccc1bc0392f5c1301c3306f30333306f323232323232323232305f330783079009330783079008330783079007330783079006330783079005330783079004330783079003330783079002330783079001330783079307a00133078305f33078305b3076375403697ae04bd70183c800983c000983b800983b000983a800983a0009839800983900098369baa0024bd7025eb82603a606a60da6ea81ce98103d87a8000406d14a08352294106a454cc1ad241245375636820636f6c6c61746572616c20617373657420616c726561647920657869737473001641a88350c1acdd519808182898361baa0113051306c3754003149a2c834a2a660d4921283c65787065637465643e204d617820636f6c6c61746572616c206173736574732072656163686564001641a5153306a491283c65787065637465643e204e6f742072656c6576616e7420636f6c6c61746572616c206173736574001641a460dc0031641b060d46ea80062c8338c0f8c114c1a4dd5182718349baa00183120cc83220d4306b00141a53001375860d460ce6ea8162605e60ce6ea81b698103d8798000411483208a6002011302e3306a0094bd704c05ccc1a8c0b8cc1a8c144cc1a8c1acc1a0dd500199835182698341baa00d3306a30443068375401a660d4606060d06ea8034cc1a8c088c1a0dd500699835181098341baa00d3306a30153068375401a660d4605e60d06ea8034cc1a8c04cc1a0dd5006998354c00400a98103d87a8000a60103d87980004194660d400297ae04bd7025eb826030606060d06ea81ba98103d87a8000405915330644911e3c65787065637465643e2057726f6e6720696173736574206f75747075740016418d1533064491173c65787065637465643e2057726f6e67206961737365740016418c60d000316419860c86ea80062c8308c0e0c0fcc18cdd5182418319baa00182e20c082ea0c83065001418c4566002603a005132980098229982f0009982f26103d87a80004bd70660026eb0c17cc170dd5026cc090c170dd50315300103d879800040e9305f305c37540109112cc004c18c00a264b30013375e00a60c660c06ea8c18cc180dd5182298301baa0018992cc004c14cc180dd5000c4c96600260cc00313233009001159800acc004cdc79bae3066306337540026eb8c198c18cdd5002c4cdd7982418319baa00130483063375400b14a083022b300198009bac303f306337540a93029330650074bd704c048cc194c0a4cc194c8c8c8c13ccc1a0c1a400ccc1a0c1a4008cc1a0c1a4004cc1a0c0b8c198dd500419834181018331baa00833068301f30663754010660d0602660cc6ea8020cc1a0c0b4c198dd500419834180898331baa008306a306a306a306a306a306a306a001306900130680013063375400297ae04bd704c04cc0acc18cdd5034d30103d87a8000404514a315330614912c3c65787065637465643e20436f6c6c61746572616c206173736574206f757470757420696e636f7272656374001641811533061491263c65787065637465643e20697272656c6576616e7420636f6c6c61746572616c2061737365740016418060ca00316418c60c26ea80062c82f0c0d4c0f0c180dd5182298301baa00182ca0ba30620028b20c018109982e9803182d9baa0614bd704566002603800513322598009830800c4c96600260a060ba6ea80062b3001305e375400313259800800c16e264b300130640028992cc004c140c180dd5000c4c96600260cc0031323300c0011598009981424810c57726f6e6720694173736574003371e6eb8c198c18cdd50009bae306630633754011133028490117434450206f757470757420697320696e636f72726563740098009bac303f306337540a9302933065304c33065302933065301b306337540d297ae0330654c103d87a80004bd7025eb826024660ca6052660ca6098660ca60cc60c66ea8020cc194c120c18cdd500419832981f98319baa00833065302b30633754010660ca603a60c66ea8020cc1966002946980103d87a8000a60103d87980004180660cb30014a34c0103d87a8000a60103d87980004180660ca603860c66ea8020cc194c040c18cdd500419832981518319baa00833065300e3063375401097ae04bd7025eb826026602060c66ea81a6980103d87a8000404514a08300c1940062c8318c184dd5000c5905e181a981e18301baa30453060375400305c418460c4002830260026eb0c10cc178dd5027cc0e8c178dd50325300103d879800040f116417d16416c6603260c060ba6ea8c180004dd5980a982e9baa04e8b20bc305e305b375400f3001375860bc60b66ea8132602860b66ea818698103d879800040e5159800980d80144cc896600260c20031325980099baf3061305e375460c260bc6ea8c10cc178dd5000981219830180b182f1baa0644bd7044c96600266e1d2010305e3754003132598009832000c4cc896600260a860c26ea8006264b300130670018992cc004c14cc18cdd5000c4c8c8c8c8c8c8c8c8c8c8ca60026eb8c1c80066eb8c1c802e60e401330720089839003cc96600260e000315980098169837800c5a260c460de002836a2c8388dd518390034c96600260e000315980098169837800c5a260c460de002836a2c8388dd51839002cc1c80126eb4c1c800e6eb4c1c8009222222222259800983e805c4cc0f0c1f00504cc0f40204cc0f401c4cc0f40184cc14c00c5660026607c9211643445020696e70757420697320696e636f7272656374005980099b8f375c60f860f26ea8058dd7183e183c9baa01e899baf305e3079375402c60bc60f26ea807a294107644cc0f924117434450206f757470757420697320696e636f72726563740098009bac3055307937540d5303f3307b30623307b303f3307b3031307937540fe97ae03307b4c103d87a80004bd7025eb826050660f6607e660f66460c6660f860fa002660f860fa60fc002660f860ac60f46ea807ccc1f0c108c1e8dd500f9983e181a183d1baa01f3307c98009836183c9baa3033307a375403f4c0103d87a8000a60103d879800041dc660f93001306c30793754604e60f46ea807e980103d87a8000a60103d879800041dc660f8608260f46ea807ccc1f0c094c1e8dd500f9983e1819183d1baa01f3307c3024307a375403e97ae03079375402c97ae04bd704dd5982f183c9baa305e307937540394c0103d87a8000409d14a083b22c83d060e400260e200260e000260de00260dc00260da00260d800260d600260d400260d200260c86ea80062c8308c1980062c8320c188dd5000c5905f1bad30630013035303c30603754608a60c06ea800e2c8308c17cdd5000c5905c1980d1830982f1baa0013756602c60bc6ea813e2a660b892011a3c65787065637465643e204d697865642076657273696f6e732e0016416c60c000316417860bc60b66ea801e60026eb0c178c16cdd50264c020c16cdd5030d300103d879800040e5159800980d00144c8cc08524012176657273696f6e5265636f7264206f757470757420697320696e636f72726563740098009bac3038305c375409b30223305e30453305e30223305e305f30603060306030603060306030603060306030603060305c37540c497ae03305e4c103d87a80004bd7025eb826016660bc608a660bc60be60b86ea8004cc178dd399198008009bac3042305d375400444b30010018a5eb822660c06e9cc8cc184c188004cc184c188c17cdd518311831800a5eb80dd61830800998010011831000a0be4bd7025eb826018604660b86ea818a980103d87a8000402860bc60b66ea801e2b300130190028a518a51416082c105820b0416082c08966002609660b66ea800a264646464646464646464653001306a0019bae306a00b9bad306a00998350044c1a801e60d400d306a00598350024dd69835001cc96600260d000315980098129833800c5a260b460ce002832a2c8348dd5183500124444444444b3001307500b89981a183a00a09981600389981a00309981a80289981a80209981a8018992cc004c184006264b3001307700189981b183b00080c45907418391baa00b8acc004c1900062b3001307237540170178b20e68b20de41bc60e06ea802a2c839060d400260d200260d000260ce00260cc00260ca00260c800260c600260c400260c200260b86ea800a2c82c905720ae3058375400a8a504144460ae60b060b060b060b060b060b000314a0828088888c8c8cc00400401c896600200314a1159800992cc004c0100062b30013375e606e60b66ea800401e264b30010018a518acc004c180006264653001375c60c2003375a60c260c4003375c60c20049112cc004cdc7800a45008acc004cdc7801a441008acc004c140c180dd5005c56600266e252000002899b89002482026fb80a294105e44cdc4a400000482f2294105e452820bc18308009bac305f0018a50417482e8c8cc004004ca60020033756608460ba6ea800e601c01080088896600200510018994c00401260c800798008014dd7182f800cdd59830000c88888c966002603200300289801800a0c632329800800c01a00a80088896600200510018994c00401260dc00798008014dd71834800cdd69835000c01501f2008306c00241a8a02e80a1004183100120c02259800800c52f5c113233223322330020020012259800800c400e264660ca6e9ccc194dd4802998329831000998329831800a5eb80cc00c00cc19c008c1940050631bab3060003375c60ba0026600600660c400460c000282f22941058452820b0305d0018a51899801001182f000a0ae416cb300130463056375400912323375e60b860b26ea8c170c164dd5001000982d982c1baa005891919baf305c3059375400400260b660b06ea80150542294104822941044452820888a50411046094609660966096609600314a0821888c966002606c608c6ea800626094608e6ea80062c8220c8c8cc00400400c896600200314c0103d87a80008992cc004cdd78021824800c4c0cccc130c1280052f5c1133003003304e002411c60980028250c030cc1200092f5c04464b300130360018992cc004c1300062660186096002007164124608e6ea800e2b300130390018992cc004c1300062660166096002007164124608e6ea800e2b30013024001899192cc004c13400a0091641286eb8c12c004c11cdd5001c5904420884110608a6ea80091640e43037001303600130350013034001302f37540071640b019912cc0040060051598009816800c4cc0acc0b0004cc0ae600294698103d87a8000a60103d8798000409897ae0801205440a826644b30010018014566002605a00313302b302c0013302b9800a50a6103d87a8000a60103d8798000409897ae0801205440a82a6604a92130457870656374656420476f7620696e7075742065697468657220617320696e707574206f72207265662e20696e707574001698009bac300c30273754031302a3027375405b4c0103d879800040153001011981518139baa02da60103d8798000401444464b3001301a001899192cc004c0c400a0091640b86eb8c0bc004c0acdd5001c566002603a0031323322598009819000c4cc024dd61818800912cc00400a00f19800804cc0cc00a260026068004804903145902f1bad302f0013030001302b37540071640a08140c0a4dd500122a66040921283c65787065637465643e20526571756972657320617574686564206578656375746520696e7075740016407c44602b30010029bae302630233754003375c601060466ea800500311119199119801001000912cc00400600713233225980099b910070028acc004cdc78038014400600c813226600a00a605a0088130dd718130009bad30270013029001409c64646600200200c44b3001001801c4c8cc896600266e4402400a2b30013371e0120051001803204e8998028029817002204e375c604e0026eacc0a0004c0a80050280a5eb7bdb1805200080ba0424084660040126044603e6ea8c088c07cdd51802180f9baa001223300300223375e604660406ea8c08cc080dd5180298101baa0010023020301d375400a4603e604000244646600200200644b30010018a5eb8226644b3001300500289981180119802002000c4cc01001000501e18110009811800a0408b20301bac3019001374a9000180a9baa0068b202418081baa003370e900045900d0c03c004c028dd5007c52689b2b200e1"
8281
8365
  };
8282
8366
 
8283
8367
  // src/contracts/execute/scripts.ts
@@ -8448,7 +8532,7 @@ var import_fp_ts17 = require("fp-ts");
8448
8532
  var import_ts_pattern19 = require("ts-pattern");
8449
8533
  var import_cardano_offchain_common22 = require("@3rd-eye-labs/cardano-offchain-common");
8450
8534
  var MIN_ROB_COLLATERAL_AMT = 3000000n;
8451
- function robAmountToSpend(utxo, datum, sysParams) {
8535
+ function robCollateralAmtToSpend(utxo, datum) {
8452
8536
  return (0, import_ts_pattern19.match)(datum.orderType).returnType().with({ BuyIAssetOrder: import_ts_pattern19.P.select() }, (content) => {
8453
8537
  if ((0, import_cardano_offchain_common22.isSameAssetClass)(import_cardano_offchain_common22.adaAssetClass, content.collateralAsset)) {
8454
8538
  return zeroNegatives(
@@ -8457,24 +8541,61 @@ function robAmountToSpend(utxo, datum, sysParams) {
8457
8541
  } else {
8458
8542
  return (0, import_cardano_offchain_common22.assetClassValueOf)(utxo.assets, content.collateralAsset);
8459
8543
  }
8460
- }).with({ SellIAssetOrder: import_ts_pattern19.P.any }, (_) => {
8544
+ }).otherwise(() => {
8545
+ throw new Error("Collateral to spend is relevant only for Buy orders.");
8546
+ });
8547
+ }
8548
+ function robIAssetAmtToSpend(utxo, datum, iassetCurrencySymbol) {
8549
+ return (0, import_ts_pattern19.match)(datum.orderType).returnType().with({ SellIAssetOrder: import_ts_pattern19.P.any }, (_) => {
8461
8550
  return (0, import_cardano_offchain_common22.assetClassValueOf)(utxo.assets, {
8462
- currencySymbol: (0, import_lucid49.fromHex)(
8463
- sysParams.cdpParams.cdpAssetSymbol.unCurrencySymbol
8464
- ),
8551
+ currencySymbol: (0, import_lucid49.fromHex)(iassetCurrencySymbol.unCurrencySymbol),
8465
8552
  tokenName: datum.iasset
8466
8553
  });
8467
- }).exhaustive();
8554
+ }).otherwise(() => {
8555
+ throw new Error("IAssets to spend is relevant only for Sell orders.");
8556
+ });
8557
+ }
8558
+ function robAmtToSpend(utxo, datum, iassetCurrencySymbol) {
8559
+ return (0, import_ts_pattern19.match)(datum.orderType).with({ BuyIAssetOrder: import_ts_pattern19.P.any }, () => robCollateralAmtToSpend(utxo, datum)).with(
8560
+ { SellIAssetOrder: import_ts_pattern19.P.any },
8561
+ () => robIAssetAmtToSpend(utxo, datum, iassetCurrencySymbol)
8562
+ ).exhaustive();
8563
+ }
8564
+ function robBuyOrderSummary(utxo, datum, oraclePrice) {
8565
+ const redeemable = robCollateralAmtToSpend(utxo, datum);
8566
+ const payoutAmt = iassetValueOfCollateral(redeemable, oraclePrice);
8567
+ return {
8568
+ redeemableCollateral: redeemable,
8569
+ payoutIAsset: payoutAmt
8570
+ };
8468
8571
  }
8469
- function isFullyRedeemed(utxo, datum, sysParams) {
8470
- return robAmountToSpend(utxo, datum, sysParams) === 0n;
8572
+ function isBuyOrderFullyRedeemed(utxo, datum, oraclePrice) {
8573
+ const summary = robBuyOrderSummary(utxo, datum, oraclePrice);
8574
+ return summary.redeemableCollateral <= 0n || summary.payoutIAsset <= 0n;
8575
+ }
8576
+ function isFullyRedeemed(utxo, datum, iassetCurrencySymbol) {
8577
+ return (0, import_ts_pattern19.match)(datum.orderType).returnType().with(
8578
+ { BuyIAssetOrder: import_ts_pattern19.P.select() },
8579
+ (content) => isBuyOrderFullyRedeemed(utxo, datum, content.maxPrice)
8580
+ ).with({ SellIAssetOrder: import_ts_pattern19.P.select() }, (content) => {
8581
+ const iassetToSpend = robIAssetAmtToSpend(
8582
+ utxo,
8583
+ datum,
8584
+ iassetCurrencySymbol
8585
+ );
8586
+ const payoutAmts = content.allowedCollateralAssets.map(
8587
+ (c) => rationalFloor(rationalMul(rationalFromInt(iassetToSpend), c[1]))
8588
+ );
8589
+ return iassetToSpend <= 0n || // When for every allowed collateral asset the payout would be 0
8590
+ payoutAmts.every((amt) => amt <= 0n);
8591
+ }).exhaustive();
8471
8592
  }
8472
8593
  function buildRedemptionsTx(redemptions, iasset, collateralAsset, price, redemptionReimbursementRatio, sysParams, tx, txOutputsBeforeCount, collateralAssetRefInputIdx, iassetRefInputIdx, oracleIdx) {
8473
8594
  return import_fp_ts17.function.pipe(
8474
8595
  redemptions,
8475
8596
  import_fp_ts17.array.reduceWithIndex(
8476
8597
  tx,
8477
- (idx, acc, [robUtxo, spendAmt]) => {
8598
+ (idx, acc, [robUtxo, payoutAmt]) => {
8478
8599
  const robDatum = parseRobDatumOrThrow(getInlineDatumOrThrow(robUtxo));
8479
8600
  if ((0, import_lucid49.toHex)(robDatum.iasset) !== (0, import_lucid49.toHex)(iasset)) {
8480
8601
  throw new Error("Only same iAsset");
@@ -8485,7 +8606,7 @@ function buildRedemptionsTx(redemptions, iasset, collateralAsset, price, redempt
8485
8606
  if (!(0, import_cardano_offchain_common22.isSameAssetClass)(content.collateralAsset, collateralAsset)) {
8486
8607
  throw new Error("Only same collateral asset");
8487
8608
  }
8488
- const payoutIAssetAmt = spendAmt;
8609
+ const payoutIAssetAmt = payoutAmt;
8489
8610
  const reimburstmentIAsset = calculateFeeFromRatio(
8490
8611
  redemptionReimbursementRatio,
8491
8612
  payoutIAssetAmt
@@ -8520,16 +8641,14 @@ function buildRedemptionsTx(redemptions, iasset, collateralAsset, price, redempt
8520
8641
  throw new Error("Doesn't allow required collateral asset.");
8521
8642
  })
8522
8643
  );
8523
- const payoutCollateralAmt = spendAmt;
8644
+ const payoutCollateralAmt = payoutAmt;
8524
8645
  const reimbursementCollateral = calculateFeeFromRatio(
8525
8646
  redemptionReimbursementRatio,
8526
8647
  payoutCollateralAmt
8527
8648
  );
8528
- const redeemedIAssetAmt = rationalFloor(
8529
- rationalDiv(
8530
- rationalFromInt(payoutCollateralAmt - reimbursementCollateral),
8531
- price
8532
- )
8649
+ const redeemedIAssetAmt = iassetValueOfCollateral(
8650
+ payoutCollateralAmt - reimbursementCollateral,
8651
+ price
8533
8652
  );
8534
8653
  const resultVal = (0, import_lucid49.addAssets)(
8535
8654
  robUtxo.assets,
@@ -8547,7 +8666,9 @@ function buildRedemptionsTx(redemptions, iasset, collateralAsset, price, redempt
8547
8666
  return [resultVal, BigInt(allowedAssetIdx)];
8548
8667
  }).exhaustive();
8549
8668
  if ((0, import_cardano_offchain_common22.lovelacesAmt)(robOutputVal) < MIN_ROB_COLLATERAL_AMT) {
8550
- throw new Error("ROB was incorrectly initialised.");
8669
+ throw new Error(
8670
+ "Redeeming more than available or selected ROB was incorrectly initialised."
8671
+ );
8551
8672
  }
8552
8673
  return acc.collectFrom([robUtxo], {
8553
8674
  kind: "self",
@@ -8558,7 +8679,7 @@ function buildRedemptionsTx(redemptions, iasset, collateralAsset, price, redempt
8558
8679
  iassetRefInputIdx,
8559
8680
  continuingOutputIdx: txOutputsBeforeCount + BigInt(idx),
8560
8681
  sellOrderAllowedAssetsIdx,
8561
- priceOracleIdx: oracleIdx != null ? { OracleRefInputIdx: oracleIdx } : "OracleVoid"
8682
+ priceOracleIdx: oracleIdx
8562
8683
  }
8563
8684
  })
8564
8685
  }).pay.ToContract(
@@ -8579,6 +8700,85 @@ function buildRedemptionsTx(redemptions, iasset, collateralAsset, price, redempt
8579
8700
  )
8580
8701
  );
8581
8702
  }
8703
+ function calculateTotalCollateralForRedemption(iasset, collateralAsset, iassetPrice, allRobs, maxRobsInTx) {
8704
+ return import_fp_ts17.function.pipe(
8705
+ allRobs,
8706
+ import_fp_ts17.array.filterMap(([utxo, datum]) => {
8707
+ const isCorrectOrder = (0, import_ts_pattern19.match)(datum.orderType).returnType().with(
8708
+ { BuyIAssetOrder: import_ts_pattern19.P.select() },
8709
+ (content) => (0, import_cardano_offchain_common22.isSameAssetClass)(content.collateralAsset, collateralAsset) && rationalToFloat(content.maxPrice) >= rationalToFloat(iassetPrice) && !isBuyOrderFullyRedeemed(utxo, datum, iassetPrice)
8710
+ ).otherwise(() => false);
8711
+ if ((0, import_lucid49.toHex)(datum.iasset) !== (0, import_lucid49.toHex)(iasset) || !isCorrectOrder) {
8712
+ return import_fp_ts17.option.none;
8713
+ }
8714
+ const collateralToSpend = robCollateralAmtToSpend(utxo, datum);
8715
+ return import_fp_ts17.option.some(collateralToSpend);
8716
+ }),
8717
+ // From largest to smallest
8718
+ import_fp_ts17.array.sort(import_fp_ts17.ord.reverse(BigIntOrd)),
8719
+ // We can fit only this number of redemptions with CDP open into a single Tx.
8720
+ import_fp_ts17.array.takeLeft(maxRobsInTx),
8721
+ sum
8722
+ );
8723
+ }
8724
+ function randomRobsSubsetSatisfyingTargetCollateral(iasset, collateralAsset, targetCollateralToSpend, iassetPrice, allLrps, maxLrpsInTx, randomiseFn = shuffle) {
8725
+ if (targetCollateralToSpend <= 0n || iassetValueOfCollateral(targetCollateralToSpend, iassetPrice) <= 0n) {
8726
+ throw new Error("Must redeem and payout more than 0.");
8727
+ }
8728
+ const shuffled = randomiseFn(
8729
+ import_fp_ts17.function.pipe(
8730
+ allLrps,
8731
+ import_fp_ts17.array.filter(
8732
+ ([utxo, datum]) => (0, import_lucid49.toHex)(datum.iasset) === (0, import_lucid49.toHex)(iasset) && (0, import_ts_pattern19.match)(datum.orderType).with(
8733
+ { BuyIAssetOrder: import_ts_pattern19.P.select() },
8734
+ (content) => (0, import_cardano_offchain_common22.isSameAssetClass)(collateralAsset, content.collateralAsset) && rationalToFloat(content.maxPrice) >= rationalToFloat(iassetPrice)
8735
+ ).otherwise(() => false) && !isBuyOrderFullyRedeemed(utxo, datum, iassetPrice)
8736
+ )
8737
+ )
8738
+ );
8739
+ let result = [];
8740
+ let runningSum = 0n;
8741
+ for (let i = 0; i < shuffled.length; i++) {
8742
+ const element = shuffled[i];
8743
+ const lovelacesToSpend = robCollateralAmtToSpend(element[0], element[1]);
8744
+ const remainingToRedeem = targetCollateralToSpend - runningSum;
8745
+ const remainingToPayout = iassetValueOfCollateral(
8746
+ remainingToRedeem,
8747
+ iassetPrice
8748
+ );
8749
+ if (result.length > 0 && remainingToPayout <= 0n) {
8750
+ const last = result[result.length - 1];
8751
+ const lastSummary = robBuyOrderSummary(last[0], last[1], iassetPrice);
8752
+ if (lastSummary.redeemableCollateral < lovelacesToSpend) {
8753
+ result.pop();
8754
+ runningSum -= lastSummary.redeemableCollateral;
8755
+ } else {
8756
+ continue;
8757
+ }
8758
+ }
8759
+ result = insertSorted(
8760
+ result,
8761
+ element,
8762
+ import_fp_ts17.ord.contramap(
8763
+ ([utxo, dat]) => robCollateralAmtToSpend(utxo, dat)
8764
+ // From highest to lowest
8765
+ )(import_fp_ts17.ord.reverse(BigIntOrd))
8766
+ );
8767
+ runningSum += lovelacesToSpend;
8768
+ if (result.length > maxLrpsInTx) {
8769
+ const popped = result.pop();
8770
+ runningSum -= robCollateralAmtToSpend(popped[0], popped[1]);
8771
+ }
8772
+ if (runningSum >= targetCollateralToSpend) {
8773
+ return result;
8774
+ }
8775
+ }
8776
+ const remainingToSpend = targetCollateralToSpend - runningSum;
8777
+ if (remainingToSpend > 0n && iassetValueOfCollateral(remainingToSpend, iassetPrice) > 0n) {
8778
+ throw new Error("Couldn't achieve target lovelaces");
8779
+ }
8780
+ return result;
8781
+ }
8582
8782
 
8583
8783
  // src/contracts/rob/types.ts
8584
8784
  var import_lucid50 = require("@lucid-evolution/lucid");
@@ -8718,7 +8918,7 @@ async function redeemRob(redemptionRobsData, priceOracleOutRef, iassetOutRef, co
8718
8918
  0n,
8719
8919
  refInputIdxs[2],
8720
8920
  refInputIdxs[1],
8721
- priceOracleOutRef !== void 0 ? refInputIdxs[3] : null
8921
+ priceOracleOutRef !== void 0 ? { OracleRefInputIdx: refInputIdxs[3] } : "OracleVoid"
8722
8922
  );
8723
8923
  tx.readFrom(allRefInputs);
8724
8924
  return tx;
@@ -8735,12 +8935,12 @@ async function adjustRob(lucid, robOutRef, adjustmentAmt, newLimitPrice, sysPara
8735
8935
  (_) => new Error("Expected a single ROB UTXO.")
8736
8936
  );
8737
8937
  const robDatum = parseRobDatumOrThrow(getInlineDatumOrThrow(robUtxo));
8738
- if (adjustmentAmt === 0n && isFullyRedeemed(robUtxo, robDatum, sysParams)) {
8938
+ if (adjustmentAmt === 0n && isFullyRedeemed(robUtxo, robDatum, sysParams.cdpParams.cdpAssetSymbol)) {
8739
8939
  throw new Error(
8740
8940
  "When there's no more lovelaces to spend, use close instead of claim."
8741
8941
  );
8742
8942
  }
8743
- if (adjustmentAmt < 0 && robAmountToSpend(robUtxo, robDatum, sysParams) <= -adjustmentAmt) {
8943
+ if (adjustmentAmt < 0 && robAmtToSpend(robUtxo, robDatum, sysParams.cdpParams.cdpAssetSymbol) <= -adjustmentAmt) {
8744
8944
  throw new Error(
8745
8945
  "Can't adjust negatively by more than available. Also, for adjusting by exactly the amount deposited, a close action should be used instead."
8746
8946
  );
@@ -8861,11 +9061,443 @@ var mkRobValidatorFromSP = (params) => {
8861
9061
  };
8862
9062
  };
8863
9063
 
9064
+ // src/contracts/rob-leverage/transactions.ts
9065
+ var import_lucid53 = require("@lucid-evolution/lucid");
9066
+
9067
+ // src/contracts/rob-leverage/helpers.ts
9068
+ var import_fp_ts19 = require("fp-ts");
9069
+ var import_decimal = require("decimal.js");
9070
+ var MAX_REDEMPTIONS_WITH_CDP_OPEN = 4;
9071
+ function approximateLeverageRedemptions(baseCollateral, targetLeverage, redemptionReimbursementRatio, debtMintingFeeRatio) {
9072
+ const debtMintingFeeRatioDecimal = (0, import_decimal.Decimal)(debtMintingFeeRatio.numerator).div(
9073
+ debtMintingFeeRatio.denominator
9074
+ );
9075
+ const redemptionReimbursementRatioDecimal = (0, import_decimal.Decimal)(
9076
+ redemptionReimbursementRatio.numerator
9077
+ ).div(redemptionReimbursementRatio.denominator);
9078
+ const totalFeeRatio = debtMintingFeeRatioDecimal.add(
9079
+ redemptionReimbursementRatioDecimal
9080
+ );
9081
+ const bExFees = (0, import_decimal.Decimal)(baseCollateral).mul(targetLeverage).minus(baseCollateral).floor();
9082
+ const b = bExFees.div((0, import_decimal.Decimal)(1).minus(totalFeeRatio)).floor();
9083
+ const collateralRatio = {
9084
+ numerator: fromDecimal((0, import_decimal.Decimal)(baseCollateral).add(bExFees)),
9085
+ denominator: fromDecimal(b)
9086
+ };
9087
+ return {
9088
+ leverage: targetLeverage,
9089
+ collateralRatio,
9090
+ redeemedCollateral: fromDecimal(bExFees)
9091
+ };
9092
+ }
9093
+ function summarizeActualLeverageRedemptions(lovelacesForRedemptionWithReimbursement, redemptionReimbursementRatio, iassetPrice, redemptionLrps) {
9094
+ const priceDecimal = (0, import_decimal.Decimal)(iassetPrice.numerator).div(
9095
+ iassetPrice.denominator
9096
+ );
9097
+ const reimbRatio = (0, import_decimal.Decimal)(redemptionReimbursementRatio.numerator).div(
9098
+ redemptionReimbursementRatio.denominator
9099
+ );
9100
+ const redemptionDetails = import_fp_ts19.function.pipe(
9101
+ redemptionLrps,
9102
+ import_fp_ts19.array.reduce(
9103
+ {
9104
+ remainingCollateralToSpend: lovelacesForRedemptionWithReimbursement,
9105
+ redemptions: []
9106
+ },
9107
+ (acc, lrp) => {
9108
+ if (acc.remainingCollateralToSpend <= 0n || iassetValueOfCollateral(
9109
+ acc.remainingCollateralToSpend,
9110
+ iassetPrice
9111
+ ) <= 0n) {
9112
+ return acc;
9113
+ }
9114
+ const collateralToSpend = robCollateralAmtToSpend(lrp[0], lrp[1]);
9115
+ if (collateralToSpend === 0n) {
9116
+ return acc;
9117
+ }
9118
+ const newRemainingCollateral = bigintMax(
9119
+ acc.remainingCollateralToSpend - collateralToSpend,
9120
+ 0n
9121
+ );
9122
+ const collateralToSpendInitial = acc.remainingCollateralToSpend - newRemainingCollateral;
9123
+ const finalPayoutIAssets = fromDecimal(
9124
+ (0, import_decimal.Decimal)(collateralToSpendInitial).div(priceDecimal).floor().div((0, import_decimal.Decimal)(1).minus(reimbRatio)).floor()
9125
+ );
9126
+ const feeIAssetAmt = calculateFeeFromRatio(
9127
+ redemptionReimbursementRatio,
9128
+ finalPayoutIAssets
9129
+ );
9130
+ const finalCollateralToSpend = rationalFloor(
9131
+ rationalMul(
9132
+ rationalFromInt(finalPayoutIAssets - feeIAssetAmt),
9133
+ iassetPrice
9134
+ )
9135
+ );
9136
+ return {
9137
+ remainingCollateralToSpend: acc.remainingCollateralToSpend - finalCollateralToSpend,
9138
+ redemptions: [
9139
+ ...acc.redemptions,
9140
+ {
9141
+ utxo: lrp[0],
9142
+ iassetsPayoutAmt: finalPayoutIAssets,
9143
+ redeemedCollateral: finalCollateralToSpend,
9144
+ reimbursementIAssetAmt: feeIAssetAmt
9145
+ }
9146
+ ]
9147
+ };
9148
+ }
9149
+ )
9150
+ );
9151
+ const res = import_fp_ts19.function.pipe(
9152
+ redemptionDetails.redemptions,
9153
+ import_fp_ts19.array.reduce(
9154
+ {
9155
+ redeemedCollateral: 0n,
9156
+ payoutIAssets: 0n,
9157
+ reimbursementIAssets: 0n
9158
+ },
9159
+ (acc, details) => {
9160
+ return {
9161
+ redeemedCollateral: acc.redeemedCollateral + details.redeemedCollateral,
9162
+ reimbursementIAssets: acc.reimbursementIAssets + details.reimbursementIAssetAmt,
9163
+ payoutIAssets: acc.payoutIAssets + details.iassetsPayoutAmt
9164
+ };
9165
+ }
9166
+ )
9167
+ );
9168
+ return {
9169
+ redemptions: redemptionDetails.redemptions,
9170
+ totalRedeemedCollateral: res.redeemedCollateral,
9171
+ totalReimbursedIAsset: res.reimbursementIAssets,
9172
+ totalIAssetPayout: res.payoutIAssets
9173
+ };
9174
+ }
9175
+ function calculateCollateralRatioFromLeverage(iasset, collateralAsset, leverage, baseCollateral, iassetPrice, debtMintingFeePercentage, redemptionReimbursementPercentage, allLrps) {
9176
+ const debtMintingFeeRatioDecimal = (0, import_decimal.Decimal)(
9177
+ debtMintingFeePercentage.getOnChainInt
9178
+ ).div(OCD_DECIMAL_UNIT).div(100);
9179
+ const redemptionReimbursementRatioDecimal = (0, import_decimal.Decimal)(
9180
+ redemptionReimbursementPercentage.getOnChainInt
9181
+ ).div(OCD_DECIMAL_UNIT).div(100);
9182
+ const totalFeeRatio = debtMintingFeeRatioDecimal.add(
9183
+ redemptionReimbursementRatioDecimal
9184
+ );
9185
+ const maxAvailableCollateralForRedemption = calculateTotalCollateralForRedemption(
9186
+ iasset,
9187
+ collateralAsset,
9188
+ iassetPrice,
9189
+ allLrps,
9190
+ MAX_REDEMPTIONS_WITH_CDP_OPEN
9191
+ );
9192
+ if (leverage <= 1 || baseCollateral <= 0n || maxAvailableCollateralForRedemption <= 0n) {
9193
+ return void 0;
9194
+ }
9195
+ const bExFees = (0, import_decimal.Decimal)(baseCollateral).mul(leverage).minus(baseCollateral).floor();
9196
+ const b = bExFees.div((0, import_decimal.Decimal)(1).minus(totalFeeRatio)).floor();
9197
+ const cappedB = bigintMin(
9198
+ maxAvailableCollateralForRedemption,
9199
+ fromDecimal(b)
9200
+ );
9201
+ const cappedBExFees = (0, import_decimal.Decimal)(cappedB).mul((0, import_decimal.Decimal)(1).minus(totalFeeRatio)).floor();
9202
+ const collateralRatio = (0, import_decimal.Decimal)(
9203
+ (0, import_decimal.Decimal)(baseCollateral).add(cappedBExFees)
9204
+ ).div(cappedB);
9205
+ return {
9206
+ getOnChainInt: fromDecimal(
9207
+ collateralRatio.mul(100n * OCD_DECIMAL_UNIT).floor()
9208
+ )
9209
+ };
9210
+ }
9211
+ function calculateLeverageFromCollateralRatio(iasset, collateralAsset, collateralRatio, baseCollateral, iassetPrice, debtMintingFeeRatio, redemptionReimbursementRatio, allLrps) {
9212
+ const debtMintingFeeRatioDecimal = (0, import_decimal.Decimal)(debtMintingFeeRatio.numerator).div(
9213
+ debtMintingFeeRatio.denominator
9214
+ );
9215
+ const redemptionReimbursementRatioDecimal = (0, import_decimal.Decimal)(
9216
+ redemptionReimbursementRatio.numerator
9217
+ ).div(redemptionReimbursementRatio.denominator);
9218
+ const totalFeeRatio = debtMintingFeeRatioDecimal.add(
9219
+ redemptionReimbursementRatioDecimal
9220
+ );
9221
+ const collateralRatioDecimal = (0, import_decimal.Decimal)(collateralRatio.numerator).div(
9222
+ collateralRatio.denominator
9223
+ );
9224
+ const maxAvailableCollateralForRedemption = calculateTotalCollateralForRedemption(
9225
+ iasset,
9226
+ collateralAsset,
9227
+ iassetPrice,
9228
+ allLrps,
9229
+ MAX_REDEMPTIONS_WITH_CDP_OPEN
9230
+ );
9231
+ if (collateralRatioDecimal.toNumber() <= 1 || baseCollateral <= 0n || maxAvailableCollateralForRedemption <= 0n) {
9232
+ return void 0;
9233
+ }
9234
+ const theoreticalMaxLeverage = (0, import_decimal.Decimal)((0, import_decimal.Decimal)(1).minus(totalFeeRatio)).div(collateralRatioDecimal.minus(1).add(totalFeeRatio)).add(1);
9235
+ const bExFees = theoreticalMaxLeverage.mul(baseCollateral).minus(baseCollateral).floor();
9236
+ const b = bExFees.div((0, import_decimal.Decimal)(1).minus(totalFeeRatio)).floor();
9237
+ const cappedB = bigintMin(
9238
+ maxAvailableCollateralForRedemption,
9239
+ fromDecimal(b)
9240
+ );
9241
+ const cappedBExFees = (0, import_decimal.Decimal)(cappedB).mul((0, import_decimal.Decimal)(1).minus(totalFeeRatio)).floor();
9242
+ return (0, import_decimal.Decimal)(baseCollateral).add(cappedBExFees).div(baseCollateral).toNumber();
9243
+ }
9244
+
9245
+ // src/contracts/rob-leverage/transactions.ts
9246
+ var import_cardano_offchain_common24 = require("@3rd-eye-labs/cardano-offchain-common");
9247
+ var import_decimal2 = __toESM(require("decimal.js"));
9248
+ async function leverageCdpWithRob(leverage, baseCollateral, priceOracleOutRef, iassetOutRef, collateralAssetOutRef, cdpCreatorOref, interestOracleOref, treasuryOref, sysParams, lucid, allRobs, currentSlot, pythMessage = void 0, pythStateOref = void 0) {
9249
+ const network = lucid.config().network;
9250
+ const currentTime = BigInt((0, import_lucid53.slotToUnixTime)(network, currentSlot));
9251
+ const [pkh, skh] = await addrDetails(lucid);
9252
+ const robScriptRefUtxo = matchSingle(
9253
+ await lucid.utxosByOutRef([
9254
+ fromSystemParamsScriptRef(sysParams.scriptReferences.robValidatorRef)
9255
+ ]),
9256
+ (_2) => new Error("Expected a single ROB Ref Script UTXO")
9257
+ );
9258
+ const cdpCreatorRefScriptUtxo = matchSingle(
9259
+ await lucid.utxosByOutRef([
9260
+ fromSystemParamsScriptRef(
9261
+ sysParams.scriptReferences.cdpCreatorValidatorRef
9262
+ )
9263
+ ]),
9264
+ (_2) => new Error("Expected a single cdp creator Ref Script UTXO")
9265
+ );
9266
+ const cdpAuthTokenPolicyRefScriptUtxo = matchSingle(
9267
+ await lucid.utxosByOutRef([
9268
+ fromSystemParamsScriptRef(
9269
+ sysParams.scriptReferences.authTokenPolicies.cdpAuthTokenRef
9270
+ )
9271
+ ]),
9272
+ (_2) => new Error("Expected a single cdp auth token policy Ref Script UTXO")
9273
+ );
9274
+ const iAssetTokenPolicyRefScriptUtxo = matchSingle(
9275
+ await lucid.utxosByOutRef([
9276
+ fromSystemParamsScriptRef(
9277
+ sysParams.scriptReferences.iAssetTokenPolicyRef
9278
+ )
9279
+ ]),
9280
+ (_2) => new Error("Expected a single iasset token policy Ref Script UTXO")
9281
+ );
9282
+ const cdpCreatorUtxo = matchSingle(
9283
+ await lucid.utxosByOutRef([cdpCreatorOref]),
9284
+ (_2) => new Error("Expected a single CDP creator UTXO")
9285
+ );
9286
+ const interestOracleUtxo = matchSingle(
9287
+ await lucid.utxosByOutRef([interestOracleOref]),
9288
+ (_2) => new Error("Expected a single interest oracle UTXO")
9289
+ );
9290
+ const interestOracleDatum = parseInterestOracleDatum(
9291
+ getInlineDatumOrThrow(interestOracleUtxo)
9292
+ );
9293
+ const iassetUtxo = matchSingle(
9294
+ await lucid.utxosByOutRef([iassetOutRef]),
9295
+ (_2) => new Error("Expected a single IAsset UTXO")
9296
+ );
9297
+ const iassetDatum = parseIAssetDatumOrThrow(
9298
+ getInlineDatumOrThrow(iassetUtxo)
9299
+ );
9300
+ const collateralAssetUtxo = matchSingle(
9301
+ await lucid.utxosByOutRef([collateralAssetOutRef]),
9302
+ (_2) => new Error("Expected a single collateral asset UTXO")
9303
+ );
9304
+ const collateralAssetDatum = parseCollateralAssetDatumOrThrow(
9305
+ getInlineDatumOrThrow(collateralAssetUtxo)
9306
+ );
9307
+ const [price, _] = await retrieveAdjustedPrice(
9308
+ iassetDatum.assetName,
9309
+ collateralAssetDatum.collateralAsset,
9310
+ collateralAssetDatum.priceInfo,
9311
+ collateralAssetDatum.extraDecimals,
9312
+ priceOracleOutRef,
9313
+ pythMessage,
9314
+ sysParams.pythConfig,
9315
+ lucid
9316
+ );
9317
+ const maxLeverage = calculateLeverageFromCollateralRatio(
9318
+ collateralAssetDatum.iasset,
9319
+ collateralAssetDatum.collateralAsset,
9320
+ collateralAssetDatum.maintenanceRatio,
9321
+ baseCollateral,
9322
+ price,
9323
+ iassetDatum.debtMintingFeeRatio,
9324
+ iassetDatum.redemptionReimbursementRatio,
9325
+ allRobs
9326
+ );
9327
+ if (!maxLeverage) {
9328
+ throw new Error("Can't calculate max leverage with those parameters.");
9329
+ }
9330
+ const leverageSummary = approximateLeverageRedemptions(
9331
+ baseCollateral,
9332
+ leverage,
9333
+ iassetDatum.redemptionProcessingFeeRatio,
9334
+ iassetDatum.debtMintingFeeRatio
9335
+ );
9336
+ if (maxLeverage < leverageSummary.leverage) {
9337
+ throw new Error("Can't use more leverage than max.");
9338
+ }
9339
+ if (rationalToFloat(leverageSummary.collateralRatio) < rationalToFloat(collateralAssetDatum.maintenanceRatio)) {
9340
+ throw new Error(
9341
+ "Can't have collateral ratio smaller than maintenance ratio"
9342
+ );
9343
+ }
9344
+ const redemptionDetails = summarizeActualLeverageRedemptions(
9345
+ leverageSummary.redeemedCollateral,
9346
+ iassetDatum.redemptionReimbursementRatio,
9347
+ price,
9348
+ randomRobsSubsetSatisfyingTargetCollateral(
9349
+ iassetDatum.assetName,
9350
+ collateralAssetDatum.collateralAsset,
9351
+ leverageSummary.redeemedCollateral,
9352
+ price,
9353
+ allRobs,
9354
+ MAX_REDEMPTIONS_WITH_CDP_OPEN
9355
+ )
9356
+ );
9357
+ const mintedAmt = fromDecimal(
9358
+ (0, import_decimal2.default)(redemptionDetails.totalIAssetPayout).div(
9359
+ (0, import_decimal2.default)(1).minus(
9360
+ (0, import_decimal2.default)(iassetDatum.debtMintingFeeRatio.numerator).div(
9361
+ iassetDatum.debtMintingFeeRatio.denominator
9362
+ )
9363
+ )
9364
+ ).floor()
9365
+ );
9366
+ const debtMintingFee = calculateFeeFromRatio(
9367
+ iassetDatum.debtMintingFeeRatio,
9368
+ mintedAmt
9369
+ );
9370
+ const collateralAmt = redemptionDetails.totalRedeemedCollateral + baseCollateral;
9371
+ const cdpNftVal = (0, import_cardano_offchain_common24.mkAssetsOf)(
9372
+ fromSystemParamsAsset(sysParams.cdpParams.cdpAuthToken),
9373
+ 1n
9374
+ );
9375
+ const iassetClass = {
9376
+ currencySymbol: (0, import_lucid53.fromHex)(
9377
+ sysParams.cdpParams.cdpAssetSymbol.unCurrencySymbol
9378
+ ),
9379
+ tokenName: iassetDatum.assetName
9380
+ };
9381
+ const iassetTokensVal = (0, import_cardano_offchain_common24.mkAssetsOf)(iassetClass, mintedAmt);
9382
+ const refScripts = [
9383
+ cdpCreatorRefScriptUtxo,
9384
+ cdpAuthTokenPolicyRefScriptUtxo,
9385
+ iAssetTokenPolicyRefScriptUtxo,
9386
+ robScriptRefUtxo
9387
+ ];
9388
+ const tx = lucid.newTx().readFrom(refScripts).mintAssets(cdpNftVal, import_lucid53.Data.void()).mintAssets(iassetTokensVal, import_lucid53.Data.void()).pay.ToContract(
9389
+ createScriptAddress(network, sysParams.validatorHashes.cdpHash, skh),
9390
+ {
9391
+ kind: "inline",
9392
+ value: serialiseCdpDatum({
9393
+ cdpOwner: (0, import_lucid53.fromHex)(pkh.hash),
9394
+ iasset: iassetDatum.assetName,
9395
+ collateralAsset: collateralAssetDatum.collateralAsset,
9396
+ mintedAmt,
9397
+ cdpFees: {
9398
+ ActiveCDPInterestTracking: {
9399
+ lastSettled: currentTime,
9400
+ unitaryInterestSnapshot: calculateUnitaryInterestSinceOracleLastUpdated(
9401
+ currentTime,
9402
+ interestOracleDatum
9403
+ ) + interestOracleDatum.unitaryInterest
9404
+ }
9405
+ }
9406
+ })
9407
+ },
9408
+ (0, import_lucid53.addAssets)(
9409
+ cdpNftVal,
9410
+ (0, import_cardano_offchain_common24.mkAssetsOf)(collateralAssetDatum.collateralAsset, collateralAmt)
9411
+ )
9412
+ ).pay.ToContract(
9413
+ cdpCreatorUtxo.address,
9414
+ {
9415
+ kind: "inline",
9416
+ value: serialiseCDPCreatorDatum({
9417
+ creatorInputOref: {
9418
+ outputIndex: BigInt(cdpCreatorUtxo.outputIndex),
9419
+ txHash: (0, import_lucid53.fromHex)(cdpCreatorUtxo.txHash)
9420
+ }
9421
+ })
9422
+ },
9423
+ cdpCreatorUtxo.assets
9424
+ );
9425
+ const treasuryRefScriptUtxo = debtMintingFee > 0n ? await treasuryFeeTx(
9426
+ iassetClass,
9427
+ debtMintingFee,
9428
+ 0n,
9429
+ lucid,
9430
+ sysParams,
9431
+ tx,
9432
+ cdpCreatorUtxo,
9433
+ treasuryOref
9434
+ ) : void 0;
9435
+ const { interval, referenceInputs: refInputs } = await attachOracle(
9436
+ iassetDatum.assetName,
9437
+ collateralAssetDatum.collateralAsset,
9438
+ collateralAssetDatum.priceInfo,
9439
+ priceOracleOutRef,
9440
+ pythStateOref,
9441
+ pythMessage,
9442
+ sysParams.pythConfig,
9443
+ sysParams.cdpCreatorParams.biasTime,
9444
+ currentSlot,
9445
+ lucid,
9446
+ tx
9447
+ );
9448
+ const referenceInputs = [
9449
+ interestOracleUtxo,
9450
+ iassetUtxo,
9451
+ collateralAssetUtxo,
9452
+ ...refInputs
9453
+ ];
9454
+ const refInputsIndices = (0, import_lucid53.getInputIndices)(referenceInputs, [
9455
+ ...referenceInputs,
9456
+ ...refScripts,
9457
+ ...treasuryRefScriptUtxo != null ? [treasuryRefScriptUtxo] : []
9458
+ ]);
9459
+ const oracleIdx = priceOracleOutRef !== void 0 ? { OracleRefInputIdx: refInputsIndices[3] } : "OracleVoid";
9460
+ tx.validFrom(interval.validFrom).validTo(interval.validTo).readFrom(referenceInputs).collectFrom([cdpCreatorUtxo], {
9461
+ kind: "self",
9462
+ makeRedeemer: (inputIdx) => {
9463
+ return serialiseCDPCreatorRedeemer({
9464
+ CreateCDP: {
9465
+ cdpOwner: (0, import_lucid53.fromHex)(pkh.hash),
9466
+ minted: mintedAmt,
9467
+ collateralAmt,
9468
+ currentTime,
9469
+ creatorInputIdx: inputIdx,
9470
+ creatorOutputIdx: 1n,
9471
+ cdpOutputIdx: 0n,
9472
+ iassetRefInputIdx: refInputsIndices[1],
9473
+ collateralAssetRefInputIdx: refInputsIndices[2],
9474
+ interestOracleRefInputIdx: refInputsIndices[0],
9475
+ priceOracleIdx: oracleIdx
9476
+ }
9477
+ });
9478
+ }
9479
+ });
9480
+ buildRedemptionsTx(
9481
+ redemptionDetails.redemptions.map((r) => [r.utxo, r.iassetsPayoutAmt]),
9482
+ iassetDatum.assetName,
9483
+ collateralAssetDatum.collateralAsset,
9484
+ price,
9485
+ iassetDatum.redemptionReimbursementRatio,
9486
+ sysParams,
9487
+ tx,
9488
+ 2n + (debtMintingFee > 0n ? 1n : 0n),
9489
+ refInputsIndices[2],
9490
+ refInputsIndices[1],
9491
+ oracleIdx
9492
+ );
9493
+ return tx;
9494
+ }
9495
+
8864
9496
  // src/contracts/price-oracle/transactions.ts
8865
- var import_lucid54 = require("@lucid-evolution/lucid");
9497
+ var import_lucid55 = require("@lucid-evolution/lucid");
8866
9498
 
8867
9499
  // src/contracts/price-oracle/scripts.ts
8868
- var import_lucid53 = require("@lucid-evolution/lucid");
9500
+ var import_lucid54 = require("@lucid-evolution/lucid");
8869
9501
 
8870
9502
  // src/validators/price-oracle-validator.ts
8871
9503
  var _priceOracleValidator = {
@@ -8878,18 +9510,18 @@ var _priceOracleValidator = {
8878
9510
  function mkPriceOracleValidator(params) {
8879
9511
  return {
8880
9512
  type: "PlutusV3",
8881
- script: (0, import_lucid53.applyParamsToScript)(_priceOracleValidator.cborHex, [
9513
+ script: (0, import_lucid54.applyParamsToScript)(_priceOracleValidator.cborHex, [
8882
9514
  castPriceOracleParams(params)
8883
9515
  ])
8884
9516
  };
8885
9517
  }
8886
9518
 
8887
9519
  // src/contracts/price-oracle/transactions.ts
8888
- var import_cardano_offchain_common24 = require("@3rd-eye-labs/cardano-offchain-common");
9520
+ var import_cardano_offchain_common25 = require("@3rd-eye-labs/cardano-offchain-common");
8889
9521
  var Core2 = __toESM(require("@evolution-sdk/evolution"));
8890
9522
  async function startPriceOracleTx(lucid, assetName, startPrice, oracleParams, currentSlot, refOutRef, auxiliaryData) {
8891
9523
  const network = lucid.config().network;
8892
- const now = BigInt((0, import_lucid54.slotToUnixTime)(network, currentSlot));
9524
+ const now = BigInt((0, import_lucid55.slotToUnixTime)(network, currentSlot));
8893
9525
  if (!refOutRef) {
8894
9526
  refOutRef = (await lucid.wallet().getUtxos())[0];
8895
9527
  }
@@ -8900,31 +9532,31 @@ async function startPriceOracleTx(lucid, assetName, startPrice, oracleParams, cu
8900
9532
  },
8901
9533
  mintAmounts: [
8902
9534
  {
8903
- tokenName: (0, import_lucid54.fromText)(assetName),
9535
+ tokenName: (0, import_lucid55.fromText)(assetName),
8904
9536
  amount: 1n
8905
9537
  }
8906
9538
  ]
8907
9539
  });
8908
9540
  const priceOracleNft = {
8909
- currencySymbol: (0, import_lucid54.fromHex)(oracleNftPolicyId),
8910
- tokenName: (0, import_lucid54.fromHex)((0, import_lucid54.fromText)(assetName))
9541
+ currencySymbol: (0, import_lucid55.fromHex)(oracleNftPolicyId),
9542
+ tokenName: (0, import_lucid55.fromHex)((0, import_lucid55.fromText)(assetName))
8911
9543
  };
8912
9544
  const oracleValidator = mkPriceOracleValidator(oracleParams);
8913
9545
  const oracleDatum = {
8914
9546
  price: startPrice,
8915
9547
  expirationTime: BigInt(now) + oracleParams.expirationPeriod,
8916
- auxiliaryData: auxiliaryData ?? Core2.Data.fromCBORHex(import_lucid54.Data.void())
9548
+ auxiliaryData: auxiliaryData ?? Core2.Data.fromCBORHex(import_lucid55.Data.void())
8917
9549
  };
8918
9550
  tx.pay.ToContract(
8919
- (0, import_lucid54.validatorToAddress)(lucid.config().network, oracleValidator),
9551
+ (0, import_lucid55.validatorToAddress)(lucid.config().network, oracleValidator),
8920
9552
  { kind: "inline", value: serialisePriceOracleDatum(oracleDatum) },
8921
- (0, import_lucid54.addAssets)((0, import_cardano_offchain_common24.mkAssetsOf)(priceOracleNft, 1n))
9553
+ (0, import_lucid55.addAssets)((0, import_cardano_offchain_common25.mkAssetsOf)(priceOracleNft, 1n))
8922
9554
  );
8923
9555
  return [tx, priceOracleNft];
8924
9556
  }
8925
9557
  async function feedPriceOracleTx(lucid, oracleOref, newPrice, oracleParams, currentSlot, auxiliaryData) {
8926
9558
  const network = lucid.config().network;
8927
- const currentTime = BigInt((0, import_lucid54.slotToUnixTime)(network, currentSlot));
9559
+ const currentTime = BigInt((0, import_lucid55.slotToUnixTime)(network, currentSlot));
8928
9560
  const priceOracleUtxo = matchSingle(
8929
9561
  await lucid.utxosByOutRef([oracleOref]),
8930
9562
  (_) => new Error("Expected a single price oracle UTXO")
@@ -8943,7 +9575,7 @@ async function feedPriceOracleTx(lucid, oracleOref, newPrice, oracleParams, curr
8943
9575
  value: serialisePriceOracleDatum({
8944
9576
  price: newPrice,
8945
9577
  expirationTime: currentTime + oracleParams.expirationPeriod,
8946
- auxiliaryData: auxiliaryData ?? Core2.Data.fromCBORHex(import_lucid54.Data.void())
9578
+ auxiliaryData: auxiliaryData ?? Core2.Data.fromCBORHex(import_lucid55.Data.void())
8947
9579
  })
8948
9580
  },
8949
9581
  priceOracleUtxo.assets
@@ -8951,7 +9583,7 @@ async function feedPriceOracleTx(lucid, oracleOref, newPrice, oracleParams, curr
8951
9583
  }
8952
9584
 
8953
9585
  // src/utils/helper-txs.ts
8954
- var import_lucid55 = require("@lucid-evolution/lucid");
9586
+ var import_lucid56 = require("@lucid-evolution/lucid");
8955
9587
 
8956
9588
  // src/scripts/always-fail-validator.ts
8957
9589
  var alwaysFailValidator = {
@@ -8961,18 +9593,18 @@ var alwaysFailValidator = {
8961
9593
 
8962
9594
  // src/utils/helper-txs.ts
8963
9595
  async function runCreateScriptRefTx(lucid, scriptRefValidator, network) {
8964
- const scriptAddr = (0, import_lucid55.validatorToAddress)(network, alwaysFailValidator);
9596
+ const scriptAddr = (0, import_lucid56.validatorToAddress)(network, alwaysFailValidator);
8965
9597
  const txHash = await lucid.newTx().pay.ToAddressWithData(scriptAddr, void 0, {}, scriptRefValidator).complete().then((tx) => tx.sign.withWallet().complete()).then((tx) => tx.submit());
8966
9598
  await lucid.awaitTx(txHash);
8967
9599
  return { txHash, outputIndex: 0 };
8968
9600
  }
8969
9601
 
8970
9602
  // src/contracts/initialize/helpers.ts
8971
- var import_lucid59 = require("@lucid-evolution/lucid");
8972
- var import_cardano_offchain_common25 = require("@3rd-eye-labs/cardano-offchain-common");
9603
+ var import_lucid60 = require("@lucid-evolution/lucid");
9604
+ var import_cardano_offchain_common26 = require("@3rd-eye-labs/cardano-offchain-common");
8973
9605
 
8974
9606
  // src/scripts/auth-token-policy.ts
8975
- var import_lucid56 = require("@lucid-evolution/lucid");
9607
+ var import_lucid57 = require("@lucid-evolution/lucid");
8976
9608
  var authPolicyData = {
8977
9609
  type: "PlutusV2",
8978
9610
  cborHex: "5904d95904d60100003232323232323232323232323232323232323232323232323232223232223232323253355335533357346042660166018a00200e03026464666ae68cdc419806980728019980b9999aa999ab9a3370e90030008990911118020029aba1302400215333573466e1d20040011321222230020053574260480042a666ae68c08c0044c848888c004014d5d098120010a999ab9a30220011321222230030053574260480040424c40024c4c016900100a80d98120009baa3500201d01813357389213d4d75737420636f6e73756d65204e4654206f7220746f6b656e2070726576696f75736c79206d696e746564207573696e67207468697320706f6c6963790001301415335738920103505435001613253335734604060460022646464646464646464646464646464646464646464642466666666666600202e02a02602201e01a01601200e00a0060046ae84d5d10011aba1001357440046ae84004d5d10011aba1001357440046ae84004d5d10011aba1001357440046ae84004d5d10011aba1001357440046ae84004d5d10011aba1001357440046ae84004d5d118118011aba1302200101f37546a002036a666ae68c078c0840084c8c848cc00400c008d5d09aba2302100335742604000403aa666ae68c074c080dd500180880e1baa00153335734603260380022646601e6ae84004d5d09aba2001301b00101837540044464646603a4466a0029000111a801112999ab9a3375e0040102660464466a0029000111a801112999ab9a3375e00401a20022600c0060022600c0060086a00402a6a0020264666aa6020026660144466aa601c02a46a002446601e00466aa602203046a0024466024004666a0026e012000700466e0000520000013355300e015235001223300f00233350012335530120192350012233013002300e0010012233300a0090020012335530120192350012233013002301000100133300500400200100e232333008200133008200175a6aa666ae68c05cc0680044c8c8c8c8c8c848cccc00401c01400c008d5d09aba2002357420026ae88008d5d08009aba2301a00235742603200202c44440066ea8d400404ccc06488cccd55cf800900891919809a999ab9a3019301c001132321233001003002357426ae88c070008d5d0980d80080c18021aba200337546ae84008054dd61a80091111111111100611199ab9a3375e00400201c010444666aa601602601e66aa601802646a002446601a0046010002666aa6016026446a00444a66a666aa602802e6601c4466601402e004002601002c46a002446601400400a00c200626602600800601c00266aa601802646a002446601a0046603844a66a002260180064426a00444a66a6601800401022444660040140082600c00600800446600244a66a004018200200a4244460060084446602c446666aae7c00480388c8cc040cc02cc01cc064004c018c060004c010d5d10019aba1002012375600242444600200820142014442466002006004601c4422444a66a00220044426600a004666aa600e01e00a008002601a442244a66a00200a44266012600800466aa600c01a00800220022006442446600200800660124422444a66a00226a00600e442666a00a0106008004666aa600e01400a0080024400444002240022a66ae71241035054310016370e90001b874800955cf2ab9d2323001001223300330020020011"
@@ -8980,15 +9612,15 @@ var authPolicyData = {
8980
9612
  function mkAuthTokenPolicy(ac, tn) {
8981
9613
  return {
8982
9614
  type: authPolicyData.type,
8983
- script: (0, import_lucid56.applyParamsToScript)(authPolicyData.cborHex, [
8984
- new import_lucid56.Constr(0, [(0, import_lucid56.toHex)(ac.currencySymbol), (0, import_lucid56.toHex)(ac.tokenName)]),
9615
+ script: (0, import_lucid57.applyParamsToScript)(authPolicyData.cborHex, [
9616
+ new import_lucid57.Constr(0, [(0, import_lucid57.toHex)(ac.currencySymbol), (0, import_lucid57.toHex)(ac.tokenName)]),
8985
9617
  tn
8986
9618
  ])
8987
9619
  };
8988
9620
  }
8989
9621
 
8990
9622
  // src/contracts/iasset/scripts.ts
8991
- var import_lucid57 = require("@lucid-evolution/lucid");
9623
+ var import_lucid58 = require("@lucid-evolution/lucid");
8992
9624
 
8993
9625
  // src/validators/iasset-validator.ts
8994
9626
  var _iassetValidator = {
@@ -8998,8 +9630,8 @@ var _iassetValidator = {
8998
9630
  };
8999
9631
 
9000
9632
  // src/contracts/iasset/scripts.ts
9001
- var import_lucid58 = require("@lucid-evolution/lucid");
9002
- var IAssetScriptParamsSchema = import_lucid58.Data.Object({
9633
+ var import_lucid59 = require("@lucid-evolution/lucid");
9634
+ var IAssetScriptParamsSchema = import_lucid59.Data.Object({
9003
9635
  upgradeToken: AssetClassSchema2,
9004
9636
  versionRecordToken: AssetClassSchema2
9005
9637
  });
@@ -9007,8 +9639,8 @@ var IAssetScriptParams = IAssetScriptParamsSchema;
9007
9639
  var mkIAssetValidatorFromSP = (params) => {
9008
9640
  return {
9009
9641
  type: "PlutusV3",
9010
- script: (0, import_lucid57.applyParamsToScript)(_iassetValidator.cborHex, [
9011
- import_lucid58.Data.castTo(
9642
+ script: (0, import_lucid58.applyParamsToScript)(_iassetValidator.cborHex, [
9643
+ import_lucid59.Data.castTo(
9012
9644
  {
9013
9645
  upgradeToken: fromSystemParamsAssetLucid(params.upgradeToken),
9014
9646
  versionRecordToken: fromSystemParamsAssetLucid(
@@ -9025,7 +9657,7 @@ var mkIAssetValidatorFromSP = (params) => {
9025
9657
  var import_ts_pattern21 = require("ts-pattern");
9026
9658
 
9027
9659
  // tests/test-helpers.ts
9028
- var import_fp_ts19 = require("fp-ts");
9660
+ var import_fp_ts20 = require("fp-ts");
9029
9661
  async function runAndAwaitTxBuilder(lucid, transaction, extraSigners = []) {
9030
9662
  const bTx = await transaction.complete();
9031
9663
  const signatures = [await bTx.partialSign.withWallet()];
@@ -9086,22 +9718,22 @@ async function mintOneTimeToken(lucid, tokenName, amount) {
9086
9718
  });
9087
9719
  }
9088
9720
  async function mintOneTimeAsset(lucid, tokenName, amount) {
9089
- const policyId = await mintOneTimeToken(lucid, (0, import_lucid59.fromText)(tokenName), amount);
9721
+ const policyId = await mintOneTimeToken(lucid, (0, import_lucid60.fromText)(tokenName), amount);
9090
9722
  return {
9091
- currencySymbol: (0, import_lucid59.fromHex)(policyId),
9092
- tokenName: (0, import_lucid59.fromHex)((0, import_lucid59.fromText)(tokenName))
9723
+ currencySymbol: (0, import_lucid60.fromHex)(policyId),
9724
+ tokenName: (0, import_lucid60.fromHex)((0, import_lucid60.fromText)(tokenName))
9093
9725
  };
9094
9726
  }
9095
9727
  function deriveAuthToken(parent, tokenName) {
9096
- const policy = mkAuthTokenPolicy(parent, (0, import_lucid59.fromText)(tokenName));
9728
+ const policy = mkAuthTokenPolicy(parent, (0, import_lucid60.fromText)(tokenName));
9097
9729
  return {
9098
- currencySymbol: (0, import_lucid59.fromHex)((0, import_lucid59.mintingPolicyToId)(policy)),
9099
- tokenName: (0, import_lucid59.fromHex)((0, import_lucid59.fromText)(tokenName))
9730
+ currencySymbol: (0, import_lucid60.fromHex)((0, import_lucid60.mintingPolicyToId)(policy)),
9731
+ tokenName: (0, import_lucid60.fromHex)((0, import_lucid60.fromText)(tokenName))
9100
9732
  };
9101
9733
  }
9102
9734
  async function initScriptRef(lucid, validator) {
9103
9735
  const tx = lucid.newTx().pay.ToContract(
9104
- (0, import_lucid59.credentialToAddress)(lucid.config().network, {
9736
+ (0, import_lucid60.credentialToAddress)(lucid.config().network, {
9105
9737
  hash: alwaysFailValidatorHash,
9106
9738
  type: "Script"
9107
9739
  }),
@@ -9119,11 +9751,11 @@ async function initCollector(lucid, collectorParams, numCollectors) {
9119
9751
  tx.pay.ToContract(
9120
9752
  createScriptAddress(
9121
9753
  lucid.config().network,
9122
- (0, import_lucid59.validatorToScriptHash)(mkCollectorValidatorFromSP(collectorParams))
9754
+ (0, import_lucid60.validatorToScriptHash)(mkCollectorValidatorFromSP(collectorParams))
9123
9755
  ),
9124
9756
  {
9125
9757
  kind: "inline",
9126
- value: import_lucid59.Data.void()
9758
+ value: import_lucid60.Data.void()
9127
9759
  }
9128
9760
  );
9129
9761
  }
@@ -9134,7 +9766,7 @@ async function initInterestCollector(lucid, interestCollectionValHash, multisigU
9134
9766
  const interestCollectionAdminDatum = {
9135
9767
  admin_permissions: {
9136
9768
  Signature: {
9137
- keyHash: (0, import_lucid59.fromHex)(pkh.hash)
9769
+ keyHash: (0, import_lucid60.fromHex)(pkh.hash)
9138
9770
  }
9139
9771
  }
9140
9772
  };
@@ -9146,7 +9778,7 @@ async function initInterestCollector(lucid, interestCollectionValHash, multisigU
9146
9778
  kind: "inline",
9147
9779
  value: serialiseInterestCollectionDatum(interestCollectionAdminDatum)
9148
9780
  },
9149
- (0, import_cardano_offchain_common25.mkAssetsOf)(multisigUtxoNft, 1n)
9781
+ (0, import_cardano_offchain_common26.mkAssetsOf)(multisigUtxoNft, 1n)
9150
9782
  )
9151
9783
  );
9152
9784
  const interestCollectionUtxoDeploymentTx = lucid.newTx();
@@ -9154,7 +9786,7 @@ async function initInterestCollector(lucid, interestCollectionValHash, multisigU
9154
9786
  interestCollectionUtxoDeploymentTx.pay.ToContract(
9155
9787
  createScriptAddress(lucid.config().network, interestCollectionValHash),
9156
9788
  void 0,
9157
- (0, import_cardano_offchain_common25.mkLovelacesOf)(interestCollectorUtxoLovelaces)
9789
+ (0, import_cardano_offchain_common26.mkLovelacesOf)(interestCollectorUtxoLovelaces)
9158
9790
  );
9159
9791
  }
9160
9792
  await submitTx(lucid, interestCollectionUtxoDeploymentTx);
@@ -9163,15 +9795,15 @@ async function initCDPCreator(lucid, cdpCreatorParams, numCdpCreators) {
9163
9795
  const tx = lucid.newTx();
9164
9796
  for (let i = 0; i < Number(numCdpCreators); i++) {
9165
9797
  tx.pay.ToContract(
9166
- (0, import_lucid59.credentialToAddress)(lucid.config().network, {
9167
- hash: (0, import_lucid59.validatorToScriptHash)(
9798
+ (0, import_lucid60.credentialToAddress)(lucid.config().network, {
9799
+ hash: (0, import_lucid60.validatorToScriptHash)(
9168
9800
  mkCDPCreatorValidatorFromSP(cdpCreatorParams)
9169
9801
  ),
9170
9802
  type: "Script"
9171
9803
  }),
9172
- { kind: "inline", value: import_lucid59.Data.void() },
9804
+ { kind: "inline", value: import_lucid60.Data.void() },
9173
9805
  {
9174
- [cdpCreatorParams.cdpCreatorNft[0].unCurrencySymbol + (0, import_lucid59.fromText)(cdpCreatorParams.cdpCreatorNft[1].unTokenName)]: 1n
9806
+ [cdpCreatorParams.cdpCreatorNft[0].unCurrencySymbol + (0, import_lucid60.fromText)(cdpCreatorParams.cdpCreatorNft[1].unTokenName)]: 1n
9175
9807
  }
9176
9808
  );
9177
9809
  }
@@ -9180,21 +9812,21 @@ async function initCDPCreator(lucid, cdpCreatorParams, numCdpCreators) {
9180
9812
  async function initTreasury(lucid, treasuryParams, daoAsset, indyAsset, treasuryIndyAmount, numTreasuryCollectors) {
9181
9813
  const treasuryAddr = createScriptAddress(
9182
9814
  lucid.config().network,
9183
- (0, import_lucid59.validatorToScriptHash)(mkTreasuryValidatorFromSP(treasuryParams)),
9815
+ (0, import_lucid60.validatorToScriptHash)(mkTreasuryValidatorFromSP(treasuryParams)),
9184
9816
  treasuryParams.treasuryUtxosStakeCredential != null ? fromSysParamsCredential(treasuryParams.treasuryUtxosStakeCredential) : void 0
9185
9817
  );
9186
9818
  const tx = lucid.newTx().pay.ToContract(
9187
9819
  treasuryAddr,
9188
- { kind: "inline", value: import_lucid59.Data.void() },
9189
- (0, import_lucid59.addAssets)(
9190
- (0, import_cardano_offchain_common25.mkAssetsOf)(daoAsset, 1n),
9191
- (0, import_cardano_offchain_common25.mkAssetsOf)(indyAsset, treasuryIndyAmount)
9820
+ { kind: "inline", value: import_lucid60.Data.void() },
9821
+ (0, import_lucid60.addAssets)(
9822
+ (0, import_cardano_offchain_common26.mkAssetsOf)(daoAsset, 1n),
9823
+ (0, import_cardano_offchain_common26.mkAssetsOf)(indyAsset, treasuryIndyAmount)
9192
9824
  )
9193
9825
  );
9194
9826
  for (let i = 0; i < Number(numTreasuryCollectors); i++) {
9195
9827
  tx.pay.ToContract(treasuryAddr, {
9196
9828
  kind: "inline",
9197
- value: import_lucid59.Data.void()
9829
+ value: import_lucid60.Data.void()
9198
9830
  });
9199
9831
  }
9200
9832
  await submitTx(lucid, tx);
@@ -9203,7 +9835,7 @@ async function initStakingManager(lucid, stakingParams) {
9203
9835
  const tx = lucid.newTx().pay.ToContract(
9204
9836
  createScriptAddress(
9205
9837
  lucid.config().network,
9206
- (0, import_lucid59.validatorToScriptHash)(mkStakingValidatorFromSP(stakingParams))
9838
+ (0, import_lucid60.validatorToScriptHash)(mkStakingValidatorFromSP(stakingParams))
9207
9839
  ),
9208
9840
  {
9209
9841
  kind: "inline",
@@ -9213,7 +9845,7 @@ async function initStakingManager(lucid, stakingParams) {
9213
9845
  })
9214
9846
  },
9215
9847
  {
9216
- [stakingParams.stakingManagerNFT[0].unCurrencySymbol + (0, import_lucid59.fromText)(stakingParams.stakingManagerNFT[1].unTokenName)]: 1n
9848
+ [stakingParams.stakingManagerNFT[0].unCurrencySymbol + (0, import_lucid60.fromText)(stakingParams.stakingManagerNFT[1].unTokenName)]: 1n
9217
9849
  }
9218
9850
  );
9219
9851
  await submitTx(lucid, tx);
@@ -9239,10 +9871,10 @@ async function handleOracleForCollateralAsset(lucid, iasset, collateralAsset, py
9239
9871
  return Promise.resolve({
9240
9872
  info: {
9241
9873
  DeferredValidation: {
9242
- feedValHash: (0, import_lucid59.fromHex)(
9874
+ feedValHash: (0, import_lucid60.fromHex)(
9243
9875
  getPythFeedConfig(
9244
9876
  pythConfig,
9245
- (0, import_lucid59.fromHex)((0, import_lucid59.fromText)(iasset.name)),
9877
+ (0, import_lucid60.fromHex)((0, import_lucid60.fromText)(iasset.name)),
9246
9878
  collateralAsset.collateralAsset
9247
9879
  ).pythFeedValHash
9248
9880
  )
@@ -9253,7 +9885,7 @@ async function handleOracleForCollateralAsset(lucid, iasset, collateralAsset, py
9253
9885
  }).exhaustive();
9254
9886
  }
9255
9887
  async function initializeAsset(lucid, iassetParams, iassetToken, collateralAssetAuthToken, cdpAuthToken, cdpParams, stableswapValidatorHash, stabilityPoolParams, stabilityPoolToken, asset, pythConfig, currentSlot) {
9256
- const iassetName = (0, import_lucid59.fromHex)((0, import_lucid59.fromText)(asset.name));
9888
+ const iassetName = (0, import_lucid60.fromHex)((0, import_lucid60.fromText)(asset.name));
9257
9889
  const collateralAssetInfos = [];
9258
9890
  for (const collateralAsset of asset.collateralAssets) {
9259
9891
  const [pkh, _] = await addrDetails(lucid);
@@ -9293,7 +9925,7 @@ async function initializeAsset(lucid, iassetParams, iassetToken, collateralAsset
9293
9925
  const collateralAssetTx = lucid.newTx().pay.ToContract(
9294
9926
  createScriptAddress(
9295
9927
  lucid.config().network,
9296
- (0, import_lucid59.validatorToScriptHash)(mkIAssetValidatorFromSP(iassetParams))
9928
+ (0, import_lucid60.validatorToScriptHash)(mkIAssetValidatorFromSP(iassetParams))
9297
9929
  ),
9298
9930
  {
9299
9931
  kind: "inline",
@@ -9301,7 +9933,7 @@ async function initializeAsset(lucid, iassetParams, iassetToken, collateralAsset
9301
9933
  CollateralAssetContent: collateralAssetContent
9302
9934
  })
9303
9935
  },
9304
- (0, import_cardano_offchain_common25.mkAssetsOf)(collateralAssetAuthToken, 1n)
9936
+ (0, import_cardano_offchain_common26.mkAssetsOf)(collateralAssetAuthToken, 1n)
9305
9937
  );
9306
9938
  await submitTx(lucid, collateralAssetTx);
9307
9939
  collateralAssetInfos.push({
@@ -9319,24 +9951,24 @@ async function initializeAsset(lucid, iassetParams, iassetToken, collateralAsset
9319
9951
  redemptionFeeRatio: stableswapPool.redemptionFeeRatio,
9320
9952
  mintingEnabled: stableswapPool.mintingEnabled,
9321
9953
  redemptionEnabled: stableswapPool.redemptionEnabled,
9322
- feeManager: stableswapPool.feeManager ? (0, import_lucid59.fromHex)(stableswapPool.feeManager) : null,
9954
+ feeManager: stableswapPool.feeManager ? (0, import_lucid60.fromHex)(stableswapPool.feeManager) : null,
9323
9955
  minMintOrderAmount: stableswapPool.minMintOrderAmount,
9324
9956
  minRedemptionOrderAmount: stableswapPool.minRedemptionOrderAmount,
9325
9957
  iasset: iassetName,
9326
- stableswapValHash: (0, import_lucid59.fromHex)(stableswapValidatorHash)
9958
+ stableswapValHash: (0, import_lucid60.fromHex)(stableswapValidatorHash)
9327
9959
  };
9328
9960
  await submitTx(
9329
9961
  lucid,
9330
9962
  lucid.newTx().pay.ToContract(
9331
9963
  createScriptAddress(
9332
9964
  lucid.config().network,
9333
- (0, import_lucid59.validatorToScriptHash)(mkCdpValidatorFromSP(cdpParams))
9965
+ (0, import_lucid60.validatorToScriptHash)(mkCdpValidatorFromSP(cdpParams))
9334
9966
  ),
9335
9967
  {
9336
9968
  kind: "inline",
9337
9969
  value: serialiseStableswapPoolDatum(stableswapPoolDatum)
9338
9970
  },
9339
- (0, import_cardano_offchain_common25.mkAssetsOf)(cdpAuthToken, 1n)
9971
+ (0, import_cardano_offchain_common26.mkAssetsOf)(cdpAuthToken, 1n)
9340
9972
  )
9341
9973
  );
9342
9974
  }
@@ -9349,28 +9981,28 @@ async function initializeAsset(lucid, iassetParams, iassetToken, collateralAsset
9349
9981
  redemptionReimbursementRatio: asset.redemptionReimbursementRatio,
9350
9982
  redemptionProcessingFeeRatio: asset.redemptionProcessingFeeRatio,
9351
9983
  firstIAsset: asset.firstAsset,
9352
- nextIAsset: asset.nextAsset ? (0, import_lucid59.fromHex)((0, import_lucid59.fromText)(asset.nextAsset)) : null
9984
+ nextIAsset: asset.nextAsset ? (0, import_lucid60.fromHex)((0, import_lucid60.fromText)(asset.nextAsset)) : null
9353
9985
  };
9354
9986
  const assetTx = lucid.newTx().pay.ToContract(
9355
9987
  createScriptAddress(
9356
9988
  lucid.config().network,
9357
- (0, import_lucid59.validatorToScriptHash)(mkIAssetValidatorFromSP(iassetParams))
9989
+ (0, import_lucid60.validatorToScriptHash)(mkIAssetValidatorFromSP(iassetParams))
9358
9990
  ),
9359
9991
  {
9360
9992
  kind: "inline",
9361
9993
  value: serialiseIAssetDatum({ IAssetContent: iassetDatum })
9362
9994
  },
9363
- (0, import_cardano_offchain_common25.mkAssetsOf)(iassetToken, 1n)
9995
+ (0, import_cardano_offchain_common26.mkAssetsOf)(iassetToken, 1n)
9364
9996
  );
9365
9997
  await submitTx(lucid, assetTx);
9366
9998
  const stabilityPoolDatum = {
9367
- iasset: (0, import_lucid59.fromHex)((0, import_lucid59.fromText)(asset.name)),
9999
+ iasset: (0, import_lucid60.fromHex)((0, import_lucid60.fromText)(asset.name)),
9368
10000
  state: initSpState,
9369
10001
  assetStates: []
9370
10002
  };
9371
10003
  const spTx = lucid.newTx().pay.ToContract(
9372
- (0, import_lucid59.credentialToAddress)(lucid.config().network, {
9373
- hash: (0, import_lucid59.validatorToScriptHash)(
10004
+ (0, import_lucid60.credentialToAddress)(lucid.config().network, {
10005
+ hash: (0, import_lucid60.validatorToScriptHash)(
9374
10006
  mkStabilityPoolValidatorFromSP(stabilityPoolParams)
9375
10007
  ),
9376
10008
  type: "Script"
@@ -9379,7 +10011,7 @@ async function initializeAsset(lucid, iassetParams, iassetToken, collateralAsset
9379
10011
  kind: "inline",
9380
10012
  value: serialiseStabilityPoolDatum({ StabilityPool: stabilityPoolDatum })
9381
10013
  },
9382
- (0, import_cardano_offchain_common25.mkAssetsOf)(stabilityPoolToken, 1n)
10014
+ (0, import_cardano_offchain_common26.mkAssetsOf)(stabilityPoolToken, 1n)
9383
10015
  );
9384
10016
  await submitTx(lucid, spTx);
9385
10017
  return {
@@ -9396,39 +10028,39 @@ async function initGovernance(lucid, governanceParams, govToken, initialAssets,
9396
10028
  iassetsCount: BigInt(initialAssets.length)
9397
10029
  };
9398
10030
  const tx = lucid.newTx().pay.ToContract(
9399
- (0, import_lucid59.credentialToAddress)(lucid.config().network, {
9400
- hash: (0, import_lucid59.validatorToScriptHash)(mkGovValidatorFromSP(governanceParams)),
10031
+ (0, import_lucid60.credentialToAddress)(lucid.config().network, {
10032
+ hash: (0, import_lucid60.validatorToScriptHash)(mkGovValidatorFromSP(governanceParams)),
9401
10033
  type: "Script"
9402
10034
  }),
9403
10035
  { kind: "inline", value: serialiseGovDatum(datum) },
9404
- (0, import_cardano_offchain_common25.mkAssetsOf)(govToken, 1n)
10036
+ (0, import_cardano_offchain_common26.mkAssetsOf)(govToken, 1n)
9405
10037
  );
9406
10038
  await submitTx(lucid, tx);
9407
10039
  }
9408
10040
  async function mintAuthTokenDirect(lucid, asset, tokenName, amount) {
9409
- const script = mkAuthTokenPolicy(asset, (0, import_lucid59.fromText)(tokenName));
9410
- const policyId = (0, import_lucid59.mintingPolicyToId)(script);
10041
+ const script = mkAuthTokenPolicy(asset, (0, import_lucid60.fromText)(tokenName));
10042
+ const policyId = (0, import_lucid60.mintingPolicyToId)(script);
9411
10043
  const address = await lucid.wallet().address();
9412
- const utxos = (await lucid.utxosAtWithUnit(address, (0, import_cardano_offchain_common25.assetClassToUnit)(asset))).filter((utxo2) => (0, import_cardano_offchain_common25.assetClassValueOf)(utxo2.assets, asset) === 1n).sort((a, b) => Number((0, import_cardano_offchain_common25.lovelacesAmt)(b.assets) - (0, import_cardano_offchain_common25.lovelacesAmt)(a.assets)));
10044
+ const utxos = (await lucid.utxosAtWithUnit(address, (0, import_cardano_offchain_common26.assetClassToUnit)(asset))).filter((utxo2) => (0, import_cardano_offchain_common26.assetClassValueOf)(utxo2.assets, asset) === 1n).sort((a, b) => Number((0, import_cardano_offchain_common26.lovelacesAmt)(b.assets) - (0, import_cardano_offchain_common26.lovelacesAmt)(a.assets)));
9413
10045
  if (utxos.length === 0) {
9414
10046
  throw new Error("No utxos found");
9415
10047
  }
9416
10048
  const utxo = utxos[0];
9417
10049
  const tx = lucid.newTx().attach.MintingPolicy(script).collectFrom([utxo]).mintAssets(
9418
10050
  {
9419
- [policyId + (0, import_lucid59.fromText)(tokenName)]: amount
10051
+ [policyId + (0, import_lucid60.fromText)(tokenName)]: amount
9420
10052
  },
9421
- import_lucid59.Data.void()
10053
+ import_lucid60.Data.void()
9422
10054
  );
9423
10055
  await submitTx(lucid, tx);
9424
10056
  }
9425
10057
 
9426
10058
  // src/contracts/initialize/actions.ts
9427
- var import_lucid64 = require("@lucid-evolution/lucid");
9428
- var import_cardano_offchain_common27 = require("@3rd-eye-labs/cardano-offchain-common");
10059
+ var import_lucid65 = require("@lucid-evolution/lucid");
10060
+ var import_cardano_offchain_common28 = require("@3rd-eye-labs/cardano-offchain-common");
9429
10061
 
9430
10062
  // src/scripts/iasset-policy.ts
9431
- var import_lucid60 = require("@lucid-evolution/lucid");
10063
+ var import_lucid61 = require("@lucid-evolution/lucid");
9432
10064
  var iassetPolicyData = {
9433
10065
  type: "PlutusV2",
9434
10066
  cborHex: "59047b590478010000323232323232323232323232323232323232323232323232323232323232330102223253353300453335734603e60426ea800c04c0794ccd5cd180f98108008991909198008018011aba13574460420046ae84c08000407804c54cd5ce248103505435001637540026602044464a66aa666ae68cdc419803199aa980d00e803919980810008079a98071a80080e9003998089192999ab9a30213023001132321233001003002357426ae88c08c008d5d098110008101baa00135500122222222222200c004480084ccd5cd19b8748008cc018ccd54c06807401c8ccc040800403cd4004801ccc044034d5400488888888888802801006004805c05c4cd5ce24910434450546f6b656e206d697373696e670001213253335734603e60420022646464646464646464646464646464646464646464642466666666666600202e02a02602201e01a01601200e00a0060046ae84d5d10011aba1001357440046ae84004d5d10011aba1001357440046ae84004d5d10011aba1001357440046ae84004d5d10011aba1001357440046ae84004d5d10011aba1001357440046ae84004d5d118108011aba1302000101e37546a002034464a666ae68c074c07c0044c8c848cc00400c008d5d09aba2301f00235742603c0020386ea800488800c88c8c8cc08088cd400520002235002225333573466ebc0080204cc09888cd400520002235002225333573466ebc00803440044c01800c0044c01800c010d4008064d400405ccc02488cd54c0440608d400488cc038008cd54c05006c8d400488cc044008ccd4004dc024000e008cdc0000a400000266aa602203046a002446601c004666a002466aa602a03846a0024466024004601a00200244666012010004002466aa602a03846a0024466024004601c00200266600800600400202244666ae68cdd7801000809006111199aa980780b80999aa980800b91a80091198068011804000999aa980780b911a80111299a999aa980c00d998071119980500d801000980400d11a8009119805001002803080189980b80200180900099aa980800b91a80091198068011980f91299a800898058019109a80111299a9980600100408911198010050020980300180200111980091299a80100808008049091118018021091118008021192999ab9a301430160011323232323232123333001007005003002357426ae88008d5d08009aba2002357420026ae88c058008d5d0980a8008099baa00133001200175a4446602c446666aae7c004803c8c8cc044cc020c01cc064004c018c060004c010d5d10019aba100201337560024424660020060044466026446666aae7c00480308cc034c014d5d080118019aba200201037580022014201444460066004002601a4422444a66a00220044426600a004666aa600e01e00a0080026018442244a66a00200a44266012600800466aa600c01a00800220022006442446600200800660104422444a66a00226a00600e442666a00a0106008004666aa600e01400a0080024400444002240022a66ae71241035054310016370e90002ab9e5573a4646002002446600660040040021"
@@ -9436,41 +10068,41 @@ var iassetPolicyData = {
9436
10068
  function mkIAssetTokenPolicy(ac) {
9437
10069
  return {
9438
10070
  type: iassetPolicyData.type,
9439
- script: (0, import_lucid60.applyParamsToScript)(iassetPolicyData.cborHex, [
9440
- new import_lucid60.Constr(0, [(0, import_lucid60.toHex)(ac.currencySymbol), (0, import_lucid60.toHex)(ac.tokenName)])
10071
+ script: (0, import_lucid61.applyParamsToScript)(iassetPolicyData.cborHex, [
10072
+ new import_lucid61.Constr(0, [(0, import_lucid61.toHex)(ac.currencySymbol), (0, import_lucid61.toHex)(ac.tokenName)])
9441
10073
  ])
9442
10074
  };
9443
10075
  }
9444
10076
 
9445
10077
  // src/contracts/stableswap/scripts.ts
9446
- var import_lucid62 = require("@lucid-evolution/lucid");
10078
+ var import_lucid63 = require("@lucid-evolution/lucid");
9447
10079
 
9448
10080
  // src/contracts/stableswap/types.ts
9449
- var import_lucid61 = require("@lucid-evolution/lucid");
9450
- var StableswapParamsSchema = import_lucid61.Data.Object({
9451
- iassetSymbol: import_lucid61.Data.Bytes(),
10081
+ var import_lucid62 = require("@lucid-evolution/lucid");
10082
+ var StableswapParamsSchema = import_lucid62.Data.Object({
10083
+ iassetSymbol: import_lucid62.Data.Bytes(),
9452
10084
  cdpToken: AssetClassSchema2,
9453
10085
  versionRecordToken: AssetClassSchema2,
9454
- cdpValHash: import_lucid61.Data.Bytes(),
9455
- treasuryValHash: import_lucid61.Data.Bytes()
10086
+ cdpValHash: import_lucid62.Data.Bytes(),
10087
+ treasuryValHash: import_lucid62.Data.Bytes()
9456
10088
  });
9457
10089
  var StableswapParams = StableswapParamsSchema;
9458
10090
  function castStableswapParams(params) {
9459
- return import_lucid61.Data.castTo(params, StableswapParams);
10091
+ return import_lucid62.Data.castTo(params, StableswapParams);
9460
10092
  }
9461
10093
 
9462
10094
  // src/validators/stableswap-validator.ts
9463
10095
  var _stableswapValidator = {
9464
10096
  type: "PlutusScriptV3",
9465
10097
  description: "Generated by Aiken",
9466
- cborHex: "59279f59279c010100229800aba4aba2aba1aba0aab9faab9eaab9dab9cab9a488888888a60022a660049201373c65787065637465643e2053696e676c6520747265617375727920696e707574207769746820636f72726563742072656465656d65722e00168a99801249343c65787065637465643e2054686520646174756d2069732074686520737461626c657377617020706f6f6c20636f6e74656e742e00168a99801249233c65787065637465643e204d7573742068617665206120706f6f6c20636f6e74656e7400168a99801249333c65787065637465643e2054686520706f6f6c206d75737420686176652074686520636f72726563742072656465656d65722e00168a99801249333c65787065637465643e20546865206d61696e206f72646572206861732074686520636f72726563742072656465656d65722e00168a998012491e3c65787065637465643e204f7264657220697320746f6f20736d616c6c2e00168a998012491d3c65787065637465643e2053696e676c6520706f6f6c20696e7075742e0016488888896600264653001301000198081808800cdc3a400530100024888966002600460206ea800e3300130113754007370e90034dc3a4011370e90024dc3a4001301037540089111111991192cc004c0140122b3001301a375401b0018b20368acc004c02c012264646644b30013022003802c5901f1bad301f001375a603e004603e00260346ea80362b300130060048acc004c068dd5006c0062c80da2b300130080048acc004c068dd5006c0062c80da2b300130070048acc004c068dd5006c0062c80da2c80b9017202e405c80b86600244646600200200644b30010018a508acc004cdc79bae30200010038a518998010011810800a03440792301d301e301e301e301e301e301e301e301e0019ba5480024603a603c003222323322330020020012259800800c00e2646644b30013372200e00515980099b8f0070028800c01901f44cc014014c09801101f1bae301f001375a604000260440028100c8c8cc004004018896600200300389919912cc004cdc8804801456600266e3c02400a20030064081133005005302700440806eb8c080004dd598108009811800a04214bd6f7b6300a40012232330010010032259800800c52f5c11332259800980280144cc084008cc01001000626600800800280e0c080004c08400501e4dc4240012598009803180c9baa0018980e980d1baa0018b202e9180e980f180f180f180f000c8c074c078c078c078c078c078c078c078c078c0780066e0520009180e980f180f180f000c8888c8cc0040040148966002003133021337606ea4014dd400225eb7bdb1822653001375c603e003375a6040003302400248896600266e4002400e26604a66ec0dd48049ba80080058acc004cdc7804801c6600201300880148cc098cdd81ba900a37500020051001401d133025337606ea400cdd400119803003000a040408030220014081222232330010010052259800800c4cc084cdd81ba9005374c00897adef6c608994c004dd7180f800cdd59810000cc0900092225980099b9000900389981299bb037520126e980200162b30013371e01200719800804c022005233026337606ea4028dd30008014400500744cc094cdd81ba9003374c0046600c00c00281010200c088005020496600200314a314a080da24444464b3001300a00180144c00c00501c19b8000400391919800800801112cc004006297ae08991991199119801001000912cc004006200713233024374e660486ea4014cc090c084004cc090c0880052f5c066006006604c00460480028110dd5980f8019bae301c001330030033021002301f00140752301d301e301e0019b8f48900912cc0040062003153301900210014061222332233004337046eb4c084008dd69810981100099b82375a60420026eb4c084c088008c070dd5001980e1baa0019ba54800a60306ea80326e2520049ba54801122222222222222222222222229800911980d9bac301a303437540040032232330010010032259800800c530103d87a80008992cc004cdd7981d181b9baa0010048980e1981c800a5eb82266006006607600481a0c0e40050374888c8cc0600108c008c06cc0dcdd5000acc004c080c0d0dd5000c48c09e60026eacc068c0d8dd5000cdd7181c981b1baa0039bae301a3036375400680ca24602f300137566034606c6ea80066eb8c0e4c0d8dd5001cdd7180d181b1baa00340648192444b30010028a60103d87a80008acc004c080006260346606e607000497ae08cc00400e6072005337000029000a00640c881b2464b3001301f30333754003130373034375400315330324901263c65787065637465643e2044656e6f6d696e61746f722063616e6e6f74206265207a65726f2e001640c46644b300130200018a6103d87a80008acc004cdc4000a40011301a33037301a33037375060240046606e6ea0c0480052f5c097ae08980d1981b980d1981b9ba800233037375000297ae04bd70206440c86eb4c0d8c0ccdd50009bad30173033375400322222598009acc004c088c0d8dd5002448c8cdd7981e181c9baa303c30393754004002607660706ea8016246466ebcc0f0c0e4dd5001000981d981c1baa00540d000b15980099baf300d3037375400a00713259800800c528c56600260780031323298009bae303d0019bad303d303e0019bae303d00248896600260240031598009809001c566002605060786ea801e2b300133712900000144cdc48012410137dc0514a081d2266e25200000240e914a081d2294103a0c0f4004dd6181d800c528207240e4601c6530010019bab301c3038375400d32330010010042259800800c52f5bded8c11323303d3376060740026e98c8cc004004dd5981e001112cc004006297adef6c608991982019bb0303d001375060366eb4c0f8004cc00c00cc108008c10000503e19801801981f801181e800a0764004444b30010028800c4ca6002009303f003cc00400a6eb8c0e80066eacc0ec0064444464b3001301a00180144c00c00503e19194c00400600d0054004444b30010028800c4ca60020093049003cc00400a6eb8c1100066eb4c11400600a81010041823801208a501840548020c0f400903b452820688a5040d1230183303537500026606a98010101004bd70488c966002604060686ea800626070606a6ea80062c8190c8c8cc00400400c896600200314c0103d87a80008992cc004cdd7802181b800c4c074cc0e8c0e00052f5c1133003003303c00240d4607400281c0c018cc0d80092f5c09111111119192cc004c0a803626464b3001598009814981e9baa0268a508a5140ed13259800800c0d6264b300130440028992cc0040062b30013370e900818201baa0018992cc00400607713259800800c0f207903c8992cc004c12000e264b30010018acc004c0d8c110dd5000c4c9660020030408992cc0040062b3001304b0028cc004006264b30013033304737540031332259800981a98249baa001899192cc0040062b3001303d304b375400313259800800c122264b30010018acc004c14800a330010018acc004cc089241155369676e656420627920666565206d616e61676572003301c03e0068acc004cc0892410e4f75747075742061646472657373003375e60a2609c6ea8010c144c138dd5181918271baa00f8acc004cc896600266048921274d696e74696e672066656520726174696f206973206265747765656e205b30252c20313030255d0059800cc005300106d8799f0001ff009119b8900200180120468cc00400a4466e240080066030900120468a50413513302449012a526564656d7074696f6e2066656520726174696f206973206265747765656e205b30252c20313030255d0059800cc005300106d8799f0001ff009119b89002001800a0468cc0040064466e240080066030900120468a50413514a08268c060c0a8c138dd5000980c181698271baa00189981124916537461626c657377617020706f6f6c206f75747075740098008024c080cc140c144c138dd5181918271baa00f4bd704c074cc140c080cc140c8c8c8c0d8cc14cc15000ccc14cc150008cc14cc150004cc14cc0b4c144dd500219829981818289baa00430553055305500130540013053001304e375401097ae04bd704dd5981918271baa3032304e375401f4c103d8798000405d14a0825a294104b45282096824a022824a09e824c126093049414c60a00028270c130dd5000c11d049411e08f047823a0a2302b3021304b3754002609a60946ea80062a660909201353c65787065637465643e20546865206669727374206f75747075742069732074686520737461626c6573776170206f75747075742e0016411c6eb8c12cc120dd5000998069bac301e304837540709000454cc11924012a3c65787065637465643e2054686520666565206d616e61676572206d75737420686176652076616c75650016411460946096609660966096609660966096608e6ea800608280520828242083041820c10504c1824800a08e3045375400303f410903f81fc0fe07e8250c090c068c110dd5181418221baa00581ea08a375a00303c4120608a0028218c104dd5000c0e903e40ea07503a81d208c330073043304037540026eacc078c100dd501840d90411821000a08098009bac3041303e375405d3022303e375408b4c103d87980004029153303c491203c65787065637465643e20446174756d206d757374206265204e6f446174756d001640ec444b3001302b303f375400713259800800c00a264b3001001801c00e007003899912cc00400600b13259800800c4c9660020030078992cc004006264b3001001804c4c96600200313259800800c02e264b30010018992cc00400601b13259800800c4c966002609c003159800980f1826800c03e26644b3001001808c4c966002003132598009829000c566002604460a2003013899912cc00400602b13259800800c4c9660020030178992cc00400603101880c44cc896600200301a8992cc00400603701b80dc4cc896600200301d8992cc00400603d01e80f407a264b300130620038acc004c124c174dd500d44c9660020030208992cc004006043021810c08626644b3001001811c4c9660020030248124092049132598009834001c6600203d1980080e466002035132598009828000c4c9660020030278992cc00400605102881440a2264b3001306c00381540a50691bae00141b060d20028338c194dd5008c56600260ac00315980098329baa011813c099066409906220c43063375402102540a102540a102540a102541946eb80050681832800a0c6375c00260c80048328c188005060182f1baa01a80fa0b680fa0be375c0028310c17c00505d1bad001305e00280da0be305c00141686eb4004c16c00a03082e0c164005057182c801405a02d01680b20b430570014154608660a200260ac006827a0268298dd5000c04a02501280920ac30530014144607e609a00260a4006825a01e8278dd5000c03a01d00e80720a4304f0014134609e00500c80640320188280c13400504b1826801402a01500a805209c304b0014124609600500880440220108260c1240050471824801401a00d0068032094304700141146eb8004c1180090471822000a0843040375400700140f4444b3001302a303e375400713259800800c00a264b3001001801c00e0071332259800800c016264b3001001803401a00d132598009824801c02200e8230dd6800c0190491823000a088375a002608a005003411860860028208c0fcdd5001c00503c44c966002605401d1323322598009815981f9baa0018992cc004c0c8c100dd5000c4cc8966002608e00313259800981798219baa00189919912cc004c12c006264660020026eb0c12c008896600200313259800981a98249baa00189981898061bab3029304a37540746eb8c134c128dd5000c5904719198008009bac302e304a375400e44b30010018a6103d87a80008992cc006600260200034a14a2824a20031330030033050002412464b30013371e6eb8c13c00402e260626609c609e60a000297ae08a6103d87a800041246eb0c13800504c44c8c8cc896600260a200713300600630510058b209c375c609c0026eb8c138008c138004dd61826000a0948b2090375a6090002609200260886ea80062c8208c08cc064c10cdd5181398219baa30460018b2088375c608860826ea800660026eb0c094c104dd5018cc05cc104dd5024530103d879800040351640f8608660806ea8c10cc100dd5181218201baa3043304037540031640f46002002660166eb0c104c0f8dd5017013912cc004006297ae0899820981f1821000998010011821800a0808acc004c0a0c0f0dd5012c660026080607a6ea80964464b3001302b001899192cc004c11800a00916410c6eb8c110004c100dd5001c56600260620031323259800982300140122c8218dd7182200098201baa0038b207a40f4607c6ea800a44b3001302a303e3754005132323322598009823801c0162c8220dd718220009bae30440023044001303f37540051640f122598009815181f1baa0028991919912cc004c11c00e00b1641106eb4c110004dd698220011822000981f9baa0028b207848888c8cc0040144c966002605c00319800912cc00400629344c966002003149a264b3001337206eb8c118c12800cdd71823000c4cc010010cc124004c12c00a2a6608a9201326b65797320696e206173736f63696174697665206c697374206172656e277420696e20617363656e64696e67206f726465720016411060920028238c124005046488cc88c0b0cc124dd419b82375a60940046eb4c128004cc124dd419b82375a609460960046eb4c128c12c0052f5c0608a6ea8008c114dd5000c88966002606200314bd6f7b63044c8c8cc0040052f5bded8c044b300100189982599bb0375200c6e9800d2f5bded8c113298009bae30490019bab304a00198270012444b30013372001400713304f337606ea4028dd3003802c56600266e3c02800e26609e66ec0dd48051ba600700189982799bb037520066e98008cc01801800504a20941826000a09432330010014bd6f7b630112cc00400626609466ec0dd48021ba80034bd6f7b63044ca60026eb8c1200066eb4c124006609a0049112cc004cdc8004001c4cc138cdd81ba9008375000e00b15980099b8f00800389982719bb037520106ea001c00626609c66ec0dd48019ba8002330060060014124824860960028249043488cc09c0088cdd7982498231baa3049304637546054608c6ea800400a4608e609060906090609060906090003232337066eb4c120004dd69824182480098221baa0019182398241824182418241824000c8966002606060886ea800a260286608e6090608a6ea80092f5c11301433047374e6608e9811150496e6469676f537461626c657377617000330470014bd7025eb810424a600200348900a44100409d98009bac3046304337540673027304337540954c0103d8798000403c91111111114c004c02802a4464b30013041304f375400314c103d87a80008981a9982919806001982998281baa0014bd70209a3233225980099b88002480022606e660a8606e660a86ea0c0bc004cc150dd4181780125eb812f5c1159800981980144c0dccc150c0dccc150dd40009982a1ba80024bd7025eb82298103d87a8000413c8278dd698298009bad30533054001304f3754003225980099b89001480022900044c01ccc02cc05c00400904c4a600291100a44100800a01248888c96600200d0488992cc004c15c01e2b30013375e60ac60a66ea8c158c14cdd5181b98299baa001302533055302f305337540b497ae08992cc004cdc3a402060a66ea8006264b30013059001899912cc004c120c158dd5000c4c96600260b800313232598009822982c9baa002899191919191919191919194c004dd71834000cdd71834005cc1a002660d00113068007992cc004c1980062b3001303630650018b44c15cc1940050634590671baa3068006992cc004c1980062b3001303630650018b44c15cc1940050634590671baa306800598340024dd69834001cdd6983400124444444444b3001307300b899818183900a0998178040998178038998178030992cc004c16c00626464b3001307600280cc590731bae3074001307037540091598009830800c56600260e06ea801202f1641c51641b48368c1b8dd5001c590700c1a0004c19c004c198004c194004c190004c18c004c188004c184004c180004c17c004c168dd500145905709919912cc004c11cc16cdd5000c4c8c8c8c8c8cc89660026606e9201274e6f7420656e6f75676820636f6c6c61746572616c20617373657420696e2074686520706f6f6c0033712608000330013756608e60c66ea8c11cc18cdd5008cdd7183318319baa304730633754017375c608e60c66ea8c11cc18cdd5005a08c8acc004cc0dd2411957726f6e67206d696e7465642f6275726e65642076616c7565003375e6e9a60026eb8c198c18cdd50354dd7183318319baa02699b80337026eb4c198010dd69833003001203c3042306337540a71598009981ba4811c57726f6e672061646465642f72656465656d656420746f20706f6f6c003259800982798319baa0018cc004c19cc190dd5000cc0d8cc198c19cc190dd5182418321baa0124bd704c0e8c190dd5182418321baa012cc004dd5982418321baa304830643754025375c60ce60c86ea8c120c190dd50064dd7182418321baa304830643754019002404d4c103d879800040b515330624913a3c65787065637465643e20546865206669727374206f75747075742069732074686520706f6f6c20636f6e74696e75696e67206f75747075742e00164184660506eb0c0e4c18cdd5029a400113303749011b57726f6e672070616964206665657320746f2074726561737572790098009bac3066306337540a73756608260c66ea814e6eb8c108c18cdd50354cc194c120cc194c198c18cdd503519832983318319baa00b4bd70198329ba8337000046eb4c198c19c00d2f5c13066306337540229111119194c004dd69836800cdd698369837000cc1b4009222598009827001c4c96600200306a8acc004c1c800629460d4837906f1982799813805181f998379ba90084bd7011919912cc004c1700062b3001307137540070028b20e48acc004c1880062b3001307137540070028b20e48acc004c1740062b3001307137540070028b20e48acc004c17c0062b3001307137540070028b20e48acc004c178006264646465300130780019bad30780039bad307800248896600260f8009133039307b0071598009831983b9baa0038991919912cc004c2000400e01b1641f46eb4c1f4004dd7183e801183e800983c1baa0038b20ea8b20f2183c000983b800983b00098389baa0038acc004cdc3a401400315980098389baa00380145907245906e20dc41b8837106e20dc13375e00266e9520083307100333071375000a660e26ea0010cc1c40212f5c060dc6ea8004cc0d4c1c4c1b8dd50008054528a0d41836800992cc0056600266e2400520008a508a50419913306b4c106d8799f4040ff003306b4c10100003306b4c10100004bd7044cc1acc1b000ccc1acdd400099835a610100004bd7020cc375a60d660d80048a50418114a0830229410601bad3064001337026eb4c190014dd698320019832000983180098310009830800994c0040066602e6eb0c180c174dd50269830182e9baa3060305d3754608260ba6ea8c180c174dd500152f5c21010000810100008101000081010000810100008101000081010100200222259800801440063300100398318014cc8a600260ca003375a60c80033756608a60c26ea8c114c184dd50014c104c0dcc184dd5182298309baa00248888c8c8ca60026eb4c1ac0066eb4c1acc1b00066eb4c1ac02a6eb4c1ac01e6eb4c1ac00e6eb4c1ac0092222223302d00a132598009839800c4c8ca60026eb8c1d00066eb4c1d0c1d40066eb8c1d000922259800acc004cdc79bae3077307437540386eb8c1dcc1d0dd500844cdd7982c183a1baa01c30583074375402114a0838a264b300130603074375400313259800981d1829183b1baa0018992cc00566002b30013371e0086eb8c1e8c1dcdd5182d983b9baa013899b8f006375c60b660ee6ea8c16cc1dcdd5009c52820e88a518acc0056600266e3c010dd7183d183b9baa07e899b8f006375c60f460ee6ea804e29410744528454cc1d524011457726f6e6720737570706c696564206173736574001641d083a226644646644b3001306d307b3754606660f86ea80922b3001337126eb4c188c1f0dd5012005456600330010049119b89002001803209e8acc006600200f304e3307e3058307c375403097ae099819182d983e1baa018307f307c375403b9800981619b813031375660c060f86ea8c180c1f0dd500e9bad3033307c3754031375c60fe60f86ea820c066eb8c1fcc1f0dd500c400902b5300103d87a8000411513307e375066e00048004cc1f8dd400d1983f1ba80113307e375066e00040008cc1f8dd419b8000f0033307e3750028660fc6ea0cdc0009a400497ae08a9983d24813b3c65787065637465643e204d696e74656420616d6f756e742077726f6e676c792073656e7420746f206f726465722064657374696e6174696f6e2e001641e5153307a491383c65787065637465643e20506f6f6c206d696e74696e67206665652065786365656473206f72646572206d61782066656520726174696f2e001641e507341e5153307a4901223c65787065637465643e204d696e74696e67206973206e6f7420656e61626c65642e001641e466e0400c005660020411008899192cc004c19cc1ecdd5000c56600330013370e606860fe60f86ea80040169429450794402a200483ca2c83c8cc0b4c10c004088c0c8cc0d8c10800c085077198150008012cc004076200b132598009831983b9baa00189818183d983c1baa0018b20ea33029303f00501e41d0608260a660ee6ea807e26464646464b3001306d307b3754606a60f86ea80922b3001337126eb4c168c1f0dd5012005456600330010059119b89002001803209e8acc006600200f304e3307e3058307c375403097ae099819182d983e1baa018307f307c375403b9800981619b813031375660c060f86ea8c180c1f0dd500e9bad3033307c3754031375c60fe60f86ea8c180c1f0dd50124dd71830183e1baa3060307c375404900240ad4c103d87a8000411513307e3750024660fc6ea0cdc000d0009983f1ba833700022004660fc6ea0040cc1f8dd40079983f1ba833700028008660fc6ea0cdc0009a400497ae08a9983d24813d3c65787065637465643e2052656465656d656420616d6f756e742077726f6e676c792073656e7420746f206f726465722064657374696e6174696f6e2e001641e5153307a4913b3c65787065637465643e20506f6f6c20726564656d7074696f6e206665652065786365656473206f72646572206d61782066656520726174696f2e001641e507341e5153307a4901243c65787065637465643e2052656465656d696e67206973206e6f7420656e61626c65642e001641e4b3001021880144c96600260ce60f66ea8006264b3001980099b873035330393045001024003a50a5141e910048800a0f43034307f307c37540031641e46605a608600204483c1660020411001898191981b1821000810a0ee3370200e0026605200200c608260ac60ee6ea807d07418201817983b1baa0128a9983a249453c65787065637465643e205468657265206973206e6f207265666572656e63652073637269707420617474616368656420746f20746865206f72646572206f75747075742e001641cc60f060ea6ea80062a660e69201353c65787065637465643e205468657265206973206120636f6e74696e75696e67206f757470757420666f7220746865206f72646572001641c8660726eb0c128c1d0dd5032005c54cc1c924012b3c65787065637465643e2057726f6e67206f72646572203c3e20706f6f6c20636f6d62696e6174696f6e2e001641c43074001375860e40031641c0608a646600200201844b30010018a5eb7bdb1822653001375c60e0003375660e2003307500248896600266e45221000038acc004c12400e2003100541c5133076337606ea400cdd300119803003000a0e21839800a0e21835800983500098348020c188008c18c00500320c08b20b2301e332233225980099b880020018a6103d87980008acc004cdc40008014530103d87b80008a6103d87a8000416c82d8cdc11bad305f002375a60be60c000266e08dd6982f8009bad305f3060002305a375400260b46ea8c089200233027375860ba60b46ea812810cc08cc0bcc164dd5000982d800c59059182b9baa0018b20a8375a60b0002606a605660aa6ea8c0e4c154dd5001c59056182a1baa0018b20a23301a3056305337540026eacc0c4c14cdd5021c54cc14524011a3c65787065637465643e204d697865642076657273696f6e732e00164141049415060aa00c8298888966002608000310048cc0040120073232002300900133057337606ea4008dd4000a5eb7bdb1824444464b3001303400180144c00c005058194c004012011007911114c0040160070048014005006206c503240bc82908acc004c0d000626464b30013030304437540031325980099baf30493046375400205f1332259800981998239baa001899192cc0040062b300130353049375400315980098251baa00189980f24811057726f6e67206d61696e206f72646572003375e609a60946ea8c134c128dd5181718251baa0020048212096821208e821410a085042413c66020609860926ea8004dd5981398249baa039304b3048375400315330464913e3c65787065637465643e20546865726520697320616e20696e707574206174207468652070726f7669646564206d61696e206f7264657220696e6465782e001641146092608c6ea8c124c118dd5181518231baa0013300b37586092608c6ea80d8dd698249825001c54cc1112401413c65787065637465643e205468652070726f766964656420696e70757420696e64657820636f72726573706f6e647320746f20746865206f776e20696e7075742e0016410c6090608a6ea80062a6608692013d3c65787065637465643e20546865726520697320616e20696e707574206174207468652070726f7669646564206f776e20696e70757420696e6465782e00164108660126eb0c11cc110dd501a1bad30470013043375406d1598009817800c4cc05d2411854782069736e2774207369676e6564206279206f776e65720033011033375c603260866ea801a2a6608292010452646d7200164100820104018209baa0352259800981718211baa0028991919191919194c004c1340066eb8c13401e6eb8c134016609a009304d0039bad304d00248888896600260a800f133011305300c13259800981e18281baa00489919192cc004c16000a26602c60ae006264b300130400018992cc004c16800626464b300130430018992cc004c17400626603660b800201316416860b06ea800a2b3001304900189919194c004dd6982f000cdd6982f001cdd6982f0012444b3001306200480745905f0c178004c174004c160dd500145905520aa3056375400260b200316415c60aa6ea800a2b300130460018acc004c154dd500140162c82b22c829105218299baa0018b20aa305600130560013051375400916413826644b3001303d001899192cc004c16000a00916415460ac00260a46ea80122b300130430018acc004c148dd5002400a2c829a2c827904f09980800300718279baa0028b20a218268009826000982580098250009824800982400098219baa0028b208045903a2074375e98103d87a800040e444b30013371000290004530103d87a8000899801801000a07430050050c068018c068c06c0191640383010001300b3754023149a26cac80401"
10098
+ cborHex: "592827592824010100229800aba4aba2aba1aba0aab9faab9eaab9dab9cab9a488888888a60022a660049201343c65787065637465643e2054686520646174756d2069732074686520737461626c657377617020706f6f6c20636f6e74656e742e00168a99801249233c65787065637465643e204d7573742068617665206120706f6f6c20636f6e74656e7400168a99801249333c65787065637465643e2054686520706f6f6c206d75737420686176652074686520636f72726563742072656465656d65722e00168a99801249333c65787065637465643e20546865206d61696e206f72646572206861732074686520636f72726563742072656465656d65722e00168a998012491e3c65787065637465643e204f7264657220697320746f6f20736d616c6c2e00168a998012491d3c65787065637465643e2053696e676c6520706f6f6c20696e7075742e001648888896600264653001300f00198079808000cdc3a4005300f00248889660026004601e6ea800e3300130103754007370e90034dc3a4011370e90024dc3a4001300f37540089111111991192cc004c0140122b30013019375401b0018b20348acc004c02c012264646644b30013021003802c5901e1bad301e001375a603c004603c00260326ea80362b300130060048acc004c064dd5006c0062c80d22b300130080048acc004c064dd5006c0062c80d22b300130070048acc004c064dd5006c0062c80d22c80b1016202c405880b06600244646600200200644b30010018a508acc004cdc79bae301f0010038a518998010011810000a03240752301c301d301d301d301d301d301d301d301d0019ba54800246038603a003222323322330020020012259800800c00e2646644b30013372200e00515980099b8f0070028800c01901e44cc014014c09401101e1bae301e001375a603e002604200280f8c8c8cc004004018896600200300389919912cc004cdc8804801456600266e3c02400a2003006407d1330050053026004407c6eb8c07c004dd598100009811000a04014bd6f7b6300a40012232330010010032259800800c52f5c11332259800980280144cc080008cc01001000626600800800280d8c07c004c08000501d4dc4240012598009803180c1baa0018980e180c9baa0018b202c9180e180e980e980e980e800c8c070c074c074c074c074c074c074c074c074c0740066e0520009180e180e980e980e800c8888c8cc0040040148966002003133020337606ea4014dd400225eb7bdb1822653001375c603c003375a603e003302300248896600266e4002400e26604866ec0dd48049ba80080058acc004cdc7804801c6600201300880148cc094cdd81ba900a37500020051001401d133024337606ea400cdd400119803003000a03e407c3021001407d222232330010010052259800800c4cc080cdd81ba9005374c00897adef6c608994c004dd7180f000cdd5980f800cc08c0092225980099b9000900389981219bb037520126e980200162b30013371e01200719800804c022005233025337606ea4028dd30008014400500744cc090cdd81ba9003374c0046600c00c00280f901f0c08400501f496600200314a314a080d224444464b3001300a00180144c00c00501b19b8000400391919800800801112cc004006297ae08991991199119801001000912cc004006200713233023374e660466ea4014cc08cc080004cc08cc0840052f5c066006006604a00460460028108dd5980f0019bae301b001330030033020002301e00140712598009802980c1baa001891919baf301e301b3754603c60366ea8008004c074c068dd5001448c8cdd7980f180d9baa002001301d301a375400480b246038603a603a003371e910100912cc004006200315330180021001405d222332233004337046eb4c080008dd69810181080099b82375a60400026eb4c080c084008c06cdd5001980d9baa0019ba54800a602e6ea80326e2520049ba548011222222222222222222222222229800911980e1bac301b303437540040032232330010010032259800800c5300103d87a80008992cc004cdd7981d181b9baa0010048980e9981c800a5eb82266006006607600481a0c0e40050374888c8cc0640108c008c070c0dcdd5000acc004c084c0d0dd5000c48c0a260026eacc06cc0d8dd5000cdd7181c981b1baa0039bae301b3036375400680d2246031300137566036606c6ea80066eb8c0e4c0d8dd5001cdd7180d981b1baa00340688192444b30010028a60103d87a80008acc004c084006260366606e607000497ae08cc00400e6072005337000029000a00640c881b2464b3001302030333754003130373034375400315330324901263c65787065637465643e2044656e6f6d696e61746f722063616e6e6f74206265207a65726f2e001640c46644b300130210018a6103d87a80008acc004cdc4000a40011301b33037301b33037375060260046606e6ea0c04c0052f5c097ae08980d9981b980d9981b9ba800233037375000297ae04bd70206440c86eb4c0d8c0ccdd50009bad3018303337540032223259800800c528c56600260740031323298009bae303b0019bad303b303c0019bae303b00248896600260200031598009808001c566002604e60746ea801e2b300133712900000144cdc48012410137dc0514a081c2266e25200000240e114a081c229410380c0ec004dd6181c800c528206e40dc601a6530010018024c8cc004004010896600200314bd6f7b63044c8cc0eccdd8181c0009ba632330010013756607400444b30010018a5eb7bdb1822646607c66ec0c0ec004dd4180d1bad303c001330030033040002303e00140f066006006607a004607600281c90011112cc00400a200313298008024c0f400f30010029bae30380019bab303900191111192cc004c0640060051300300140f06465300100180340150011112cc00400a200313298008024c11c00f30010029bae30420019bad3043001802a03e4010608a0048219405d0142008303b00240e5230193303537500026606a9810101004bd70488c966002604260686ea800626070606a6ea80062c8190c8c8cc00400400c896600200314c0103d87a80008992cc004cdd7802181b800c4c078cc0e8c0e00052f5c1133003003303c00240d4607400281c0c018cc0d80092f5c0911111111919912cc004c0b003a26464b3001598009815981f1baa0288a508a5140f113259800800c0de264b300130450028992cc0040062b30013370e900818209baa0018992cc00400607b13259800800c0fa07d03e8992cc004c12400e264b30010018acc004c0e0c114dd5000c4c9660020030428992cc0040062b3001304c0028cc004006264b30013035304837540031332259800981b98251baa001899192cc0040062b3001303f304c375400313259800800c12a264b30010018acc004c14c00a330010018acc004cc08d241155369676e656420627920666565206d616e61676572003301d0400068acc004cc08d2410e4f75747075742061646472657373003375e60a4609e6ea8010c148c13cdd5181a18279baa00f8acc004cc89660026604a921274d696e74696e672066656520726174696f206973206265747765656e205b30252c20313030255d0059800cc005300106d8799f0001ff009119b8900200180120488cc00400a4466e240080066032900120488a50413913302549012a526564656d7074696f6e2066656520726174696f206973206265747765656e205b30252c20313030255d0059800cc005300106d8799f0001ff009119b89002001800a0488cc0040064466e240080066032900120488a50413914a08270c064c0b0c13cdd5000980c981798279baa001899811a4916537461626c657377617020706f6f6c206f75747075740098008024c084cc144c148c13cdd5181a18279baa00f4bd704c078cc144c084cc144c8c8c8c0e0cc150c15400ccc150c154008cc150c154004cc150c0bcc148dd50021982a181918291baa00430563056305600130550013054001304f375401097ae04bd704dd5981a18279baa3034304f375401f4c103d8798000404d14a08262294104c45282098825a022825a0a0825c12e09704b415060a20028278c134dd5000c12504a4126093049824a0a4302d3022304c3754002609c60966ea80062a660929201353c65787065637465643e20546865206669727374206f75747075742069732074686520737461626c6573776170206f75747075742e001641206eb8c130c124dd5000998071bac301f304937540749000454cc11d24012a3c65787065637465643e2054686520666565206d616e61676572206d75737420686176652076616c7565001641186096609860986098609860986098609860906ea80060868052086824a087043821c10d04d1825000a09030463754003041410d041820c1060828258c098c06cc114dd5181518229baa00581fa08c375a00303e4124608c0028220c108dd5000c0f103f40f207903c81e208e330083044304137540026eacc080c104dd501940e10421821800a08298009bac3042303f37540613024303f375408d4c103d8798000402d153303d491203c65787065637465643e20446174756d206d757374206265204e6f446174756d001640f0444b3001302d3040375400713259800800c00a264b3001001801c00e007003899912cc00400600b13259800800c4c9660020030078992cc004006264b3001001804c4c96600200313259800800c02e264b30010018992cc00400601b13259800800c4c966002609e003159800980f9827000c03e26644b3001001808c4c966002003132598009829800c566002604660a4003013899912cc00400602b13259800800c4c9660020030178992cc00400603101880c44cc896600200301a8992cc00400603701b80dc4cc896600200301d8992cc00400603d01e80f407a264b300130630038acc004c12cc178dd500d44c9660020030208992cc004006043021810c08626644b3001001811c4c9660020030248124092049132598009834801c6600203d1980080e466002035132598009829000c4c9660020030278992cc00400605102881440a2264b3001306d00381540a506a1bae00141b460d40028340c198dd5008c56600260b000315980098331baa011813c099067409906320c63064375402102540a102540a102540a102541986eb80050691833000a0c8375c00260ca0048330c18c005061182f9baa01a80fa0b880fa0c0375c0028318c18000505e1bad001305f00280da0c0305d001416c6eb4004c17000a03082e8c168005058182d001405a02d01680b20b630580014158608a60a400260ae006828202682a0dd5000c04a02501280920ae305400141486082609c00260a6006826201e8280dd5000c03a01d00e80720a63050001413860a000500c80640320188288c13800504c1827001402a01500a805209e304c0014128609800500880440220108268c1280050481825001401a00d0068032096304800141186eb8004c11c0090481822800a0863041375400700140f8444b3001302c303f375400713259800800c00a264b3001001801c00e0071332259800800c016264b3001001803401a00d132598009825001c02200e8238dd6800c01904a1823800a08a375a002608c005003411c60880028210c100dd5001c00503d44c966002605801f132332259800981698201baa0018992cc004c0d0c104dd5000c4cc8966002609000313259800981898221baa00189919912cc004c130006264660020026eb0c130008896600200313259800981b98251baa00189981998061bab302b304b37540786eb8c138c12cdd5000c5904819198008009bac3030304b375400e44b30010018a6103d87a80008992cc006600260200034a14a2825220031330030033051002412864b30013371e6eb8c14000402e260666609e60a060a200297ae08a6103d87a800041286eb0c13c00504d44c8c8cc896600260a400713300600630520058b209e375c609e0026eb8c13c008c13c004dd61826800a0968b2092375a60920026094002608a6ea80062c8210c094c068c110dd5181498221baa30470018b208a375c608a60846ea800660026eb0c09cc108dd5019cc060c108dd5024d30103d879800040391640fc608860826ea8c110c104dd5181318209baa3044304137540031640f86002002660186eb0c108c0fcdd5018014912cc004006297ae0899821181f9821800998010011822000a0828acc004c0a8c0f4dd5013c660026082607c6ea809e4464b3001302d001899192cc004c11c00a0091641106eb8c114004c104dd5001c56600260660031323259800982380140122c8220dd7182280098209baa0038b207c40f8607e6ea800a44b3001302c303f3754005132323322598009824001c0162c8228dd718228009bae30450023045001304037540051640f522598009816181f9baa0028991919912cc004c12000e00b1641146eb4c114004dd69822801182280098201baa0028b207a48888c8cc0040144c966002606000319800912cc00400629344c966002003149a264b3001337206eb8c11cc12c00cdd71823800c4cc010010cc128004c13000a2a6608c9201326b65797320696e206173736f63696174697665206c697374206172656e277420696e20617363656e64696e67206f726465720016411460940028240c128005047488cc88c0b8cc128dd419b82375a60960046eb4c12c004cc128dd419b82375a609660980046eb4c12cc1300052f5c0608c6ea8008c118dd5000c88966002606600314bd6f7b63044c8c8cc0040052f5bded8c044b300100189982619bb0375200c6e9800d2f5bded8c113298009bae304a0019bab304b00198278012444b300133720014007133050337606ea4028dd3003802c56600266e3c02800e2660a066ec0dd48051ba600700189982819bb037520066e98008cc01801800504b20961826800a09632330010014bd6f7b630112cc00400626609666ec0dd48021ba80034bd6f7b63044ca60026eb8c1240066eb4c128006609c0049112cc004cdc8004001c4cc13ccdd81ba9008375000e00b15980099b8f00800389982799bb037520106ea001c00626609e66ec0dd48019ba8002330060060014128825060980028251044488cc0a40088cdd7982518239baa304a304737546058608e6ea800400a46090609260926092609260926092003232337066eb4c124004dd69824982500098229baa0019182418249824982498249824800c89660026064608a6ea800a2602a660906092608c6ea80092f5c11301533048374e660909811150496e6469676f537461626c657377617000330480014bd7025eb810434a600200348900a4410040a598009bac30473044375406b3029304437540974c0103d8798000404091111111114c004c02802a4464b300130433050375400314c103d87a80008981b9982999806001982a18289baa0014bd70209c3233225980099b880024800226072660aa6072660aa6ea0c0c4004cc154dd4181880125eb812f5c1159800981a80144c0e4cc154c0e4cc154dd40009982a9ba80024bd7025eb82298103d87a800041408280dd6982a0009bad3054305500130503754003225980099b89001480022900044c01ccc02cc06000400904d4a600291100a44100800a01248888c96600200d04a8992cc004c16001e2b30013375e60ae60a86ea8c15cc150dd5181c982a1baa0013026330563031305437540b697ae08992cc004cdc3a402060a86ea8006264b3001305a001899912cc004c128c15cdd5000c4c96600260ba00313232598009823982d1baa002899191919191919191919194c004dd71834800cdd71834805cc1a402660d20113069007992cc004c19c0062b3001303730660018b44c164c1980050644590681baa3069006992cc004c19c0062b3001303730660018b44c164c1980050644590681baa306900598348024dd69834801cdd6983480124444444444b3001307400b899818183980a0998178040998178038998178030992cc004c17400626464b3001307700280cc590741bae3075001307137540091598009831800c56600260e26ea801202f1641c91641b88370c1bcdd5001c590710c1a4004c1a0004c19c004c198004c194004c190004c18c004c188004c184004c180004c16cdd500145905809919912cc004c124c170dd5000c4c8c8c8c8c8cc8966002660709201274e6f7420656e6f75676820636f6c6c61746572616c20617373657420696e2074686520706f6f6c0033712608400330013756609260c86ea8c124c190dd5008cdd7183398321baa304930643754017375c609260c86ea8c124c190dd5005a0908acc004cc0e12411957726f6e67206d696e7465642f6275726e65642076616c7565003375e6e9a60026eb8c19cc190dd5035cdd7183398321baa02699b80337026eb4c19c010dd69833803001203c3044306437540ab1598009981c24811c57726f6e672061646465642f72656465656d656420746f20706f6f6c003259800982898321baa0018cc004c1a0c194dd5000cc0dccc19cc1a0c194dd5182518329baa0124bd704c0ecc194dd5182518329baa012cc004dd5982518329baa304a30653754025375c60d060ca6ea8c128c194dd50064dd7182518329baa304a30653754019002404d4c103d879800040a515330634913a3c65787065637465643e20546865206669727374206f75747075742069732074686520706f6f6c20636f6e74696e75696e67206f75747075742e00164188660526eb0c0e8c190dd502aa400113303849011b57726f6e672070616964206665657320746f2074726561737572790098009bac3067306437540ab3758607460c86ea81566eacc10cc190dd502acdd7182218321baa06b99833182519833183398321baa06b3306630673064375401697ae033066375066e00008dd698339834001a5eb8260ce60c86ea8045222222323298009bad306f0019bad306f307000198378012444b30013051003899192cc00400626530013049001cc00660026eb8c1d4c1c8dd50024dd7182b98391baa0048032058a4500a44100802a04098209983a182c1983a26103d87a8000330740094bd7025eb8122232330010010112259800800c528456600264b300130060018acc004cdd79827183c1baa0010048cc004dd5982e983c1baa001802d30103d87a8000410514a083aa2941075183d000c528c4cc008008c1ec00507420f0182b9983980125eb822b3001307500189919912cc004c1800062b3001307437540070028b20ea8acc004c1980062b3001307437540070028b20ea8acc004c1840062b3001307437540070028b20ea8acc004c18c0062b3001307437540070028b20ea8acc004c1880062646464653001307b0019bad307b0039bad307b00248896600260fe00913303b307e0071598009833983d1baa0038991919912cc004c20c0400e01b164200046eb4c20004004dd7184000801184000800983d9baa0038b20f08b20f8183d800983d000983c800983a1baa0038acc004cdc3a4014003159800983a1baa00380145907545907120e241c4838907120e213375e00266e9520083307400433074375000c660e86ea0014cc1d00252f5c060e26ea8004cc0e0c1d0c1c4dd5183a000805c5907220e43302900c001304133071375201097ae08a5141b0306f0013259800acc004cdc4800a400114a114a083422660da98106d8799f4040ff003306d4c10100003306d4c10100004bd7044cc1b4c1b800ccc1b4dd400099836a610100004bd7020d0375a60da60dc0048a50418514a0830a29410611bad3065001337026eb4c194014dd698328019832800983200098318009831000994c0040066602e6eb0c184c178dd50279830982f1baa3061305e3754608660bc6ea8c184c178dd500152f5c21010000810100008101000081010000810100008101000081010100200222259800801440063300100398320014cc8a600260cc003375a60ca0033756608e60c46ea8c11cc188dd50014c10cc0e0c188dd5182398311baa00248888c8c8ca60026eb4c1b00066eb4c1b0c1b40066eb4c1b002a6eb4c1b001e6eb4c1b000e6eb4c1b00092222223302d00a13259800983a000c4c8ca60026eb8c1d40066eb4c1d4c1d80066eb8c1d400922259800acc004cdc79bae3078307537540386eb8c1e0c1d4dd500844cdd7982d183a9baa01c305a3075375402114a08392264b300130623075375400313259800981d182a183b9baa0018992cc00566002b30013371e0086eb8c1ecc1e0dd5182e983c1baa013899b8f006375c60ba60f06ea8c174c1e0dd5009c52820ea8a518acc0056600266e3c010dd7183d983c1baa07f899b8f006375c60f660f06ea804e29410754528454cc1d924011457726f6e6720737570706c696564206173736574001641d483aa26644646644b3001306f307c3754606660fa6ea80922b3001337126eb4c190c1f4dd5012005456600330010049119b8900200180320a08acc006600200f304f3307f305a307d375403097ae099819182e983e9baa018308001307d375403b9800981619b813031375660c460fa6ea8c188c1f4dd500e9bad3033307d3754031375c61000260fa6ea8210066eb8c20004c1f4dd500c400902b5300103d87a8000410513307f375066e00048004cc1fcdd400d1983f9ba80113307f375066e00040008cc1fcdd419b8000f0033307f3750028660fe6ea0cdc0009a400497ae08a9983da4813b3c65787065637465643e204d696e74656420616d6f756e742077726f6e676c792073656e7420746f206f726465722064657374696e6174696f6e2e001641e9153307b491383c65787065637465643e20506f6f6c206d696e74696e67206665652065786365656473206f72646572206d61782066656520726174696f2e001641e907541e9153307b4901223c65787065637465643e204d696e74696e67206973206e6f7420656e61626c65642e001641e866e0400c005660020411008899192cc004c1a4c1f0dd5000c56600330013370e606861000260fa6ea800401694294507a4402a200483d22c83d0cc0b4c110004088c0c8cc0d8c10c00c085078198150008012cc004076200b132598009832983c1baa00189818183e183c9baa0018b20ec33029304000501e41d4608460aa60f06ea807e26464646464b3001306f307c3754606a60fa6ea80922b3001337126eb4c170c1f4dd5012005456600330010059119b8900200180320a08acc006600200f304f3307f305a307d375403097ae099819182e983e9baa018308001307d375403b9800981619b813031375660c460fa6ea8c188c1f4dd500e9bad3033307d3754031375c61000260fa6ea8c188c1f4dd50124dd71831183e9baa3062307d375404900240ad4c103d87a8000410513307f3750024660fe6ea0cdc000d0009983f9ba833700022004660fe6ea0040cc1fcdd40079983f9ba833700028008660fe6ea0cdc0009a400497ae08a9983da4813d3c65787065637465643e2052656465656d656420616d6f756e742077726f6e676c792073656e7420746f206f726465722064657374696e6174696f6e2e001641e9153307b4913b3c65787065637465643e20506f6f6c20726564656d7074696f6e206665652065786365656473206f72646572206d61782066656520726174696f2e001641e907541e9153307b4901243c65787065637465643e2052656465656d696e67206973206e6f7420656e61626c65642e001641e8b3001021880144c96600260d260f86ea8006264b3001980099b873035330393046001024003a50a5141ed10048800a0f63034308001307d37540031641e86605a608800204483c9660020411001898191981b1821800810a0f03370200e0026605200200c608460b060f06ea807d07518209817983b9baa0128a9983aa49453c65787065637465643e205468657265206973206e6f207265666572656e63652073637269707420617474616368656420746f20746865206f72646572206f75747075742e001641d060f260ec6ea80062a660e89201353c65787065637465643e205468657265206973206120636f6e74696e75696e67206f757470757420666f7220746865206f72646572001641cc660746eb0c12cc1d4dd5033005c54cc1cd24012b3c65787065637465643e2057726f6e67206f72646572203c3e20706f6f6c20636f6d62696e6174696f6e2e001641c83075001375860e60031641c4608e646600200201844b30010018a5eb7bdb1822653001375c60e2003375660e4003307600248896600266e45221000038acc004c12800e2003100541c9133077337606ea400cdd300119803003000a0e4183a000a0e41836000983580098350020c18c008c19000500320c28b20b4301e332233225980099b880020018a6103d87980008acc004cdc40008014530103d87b80008a6103d87a8000417082e0cdc11bad3060002375a60c060c200266e08dd698300009bad30603061002305b375400260b66ea8c08d200233028375860bc60b66ea8130114c090c0c0c168dd5000982e000c5905a182c1baa0018b20aa375a60b2002606e605860ac6ea8c0ecc158dd5001c59057182a9baa0018b20a43301b3057305437540026eacc0ccc150dd5022c54cc14924011a3c65787065637465643e204d697865642076657273696f6e732e0016414504b415460ac00c82a0888966002608400310048cc0040120073232002300900133058337606ea4008dd4000a5eb7bdb1824444464b3001303600180144c00c005059194c004012011007911114c00401600700480140050062070503440c482988acc004c0d800626464b30013032304537540031325980099baf304a304737540020631332259800981a98241baa001899192cc0040062b30013037304a375400315980098259baa00189980fa4811057726f6e67206d61696e206f72646572003375e609c60966ea8c138c12cdd5181818259baa002004822209882220908224112089044414066022609a60946ea8004dd5981498251baa03b304c3049375400315330474913e3c65787065637465643e20546865726520697320616e20696e707574206174207468652070726f7669646564206d61696e206f7264657220696e6465782e001641186094608e6ea8c128c11cdd5181618239baa0013300c37586094608e6ea80e0dd698251825801c54cc1152401413c65787065637465643e205468652070726f766964656420696e70757420696e64657820636f72726573706f6e647320746f20746865206f776e20696e7075742e001641106092608c6ea80062a6608892013d3c65787065637465643e20546865726520697320616e20696e707574206174207468652070726f7669646564206f776e20696e70757420696e6465782e0016410c660146eb0c120c114dd501b1bad3048001304437540711598009818800c4cc0612411854782069736e2774207369676e6564206279206f776e65720033012035375c603460886ea801a2a6608492010452646d7200164104820904118211baa0372259800981818219baa0028991919191919194c004c1380066eb8c13801e6eb8c138016609c009304e0039bad304e00248888896600260aa00f133011305400c13259800981f18289baa00489919192cc004c16400a26602c60b0006264b300130420018992cc004c16c00626464b300130450018992cc004c17800626603660ba00201316416c60b26ea800a2b3001304b00189919194c004dd6982f800cdd6982f801cdd6982f8012444b300130630048074590600c17c004c178004c164dd500145905620ac3057375400260b400316416060ac6ea800a2b300130480018acc004c158dd500140162c82ba2c8299053182a1baa0018b20ac305700130570013052375400916413c26644b3001303f001899192cc004c16400a00916415860ae00260a66ea80122b300130450018acc004c14cdd5002400a2c82a22c828105009980800300718281baa0028b20a418270009826800982600098258009825000982480098221baa0028b208245903b2076375e98103d87a800040e844b30013371000290004530103d87a8000899801801000a07422222598009980b802002c56600266ebcc058c100dd5002801c660026eacc094c100dd5002c00a002804a294103d4528207a30050050c064018c064c068019164034300f001300a3754021149a26cac80381"
9467
10099
  };
9468
10100
 
9469
10101
  // src/contracts/stableswap/scripts.ts
9470
10102
  var mkStableswapValidator = (params) => {
9471
10103
  return {
9472
10104
  type: "PlutusV3",
9473
- script: (0, import_lucid62.applyParamsToScript)(_stableswapValidator.cborHex, [
10105
+ script: (0, import_lucid63.applyParamsToScript)(_stableswapValidator.cborHex, [
9474
10106
  castStableswapParams(params)
9475
10107
  ])
9476
10108
  };
@@ -9478,7 +10110,7 @@ var mkStableswapValidator = (params) => {
9478
10110
  var mkStableswapValidatorFromSP = (params) => {
9479
10111
  return {
9480
10112
  type: "PlutusV3",
9481
- script: (0, import_lucid62.applyParamsToScript)(_stableswapValidator.cborHex, [
10113
+ script: (0, import_lucid63.applyParamsToScript)(_stableswapValidator.cborHex, [
9482
10114
  castStableswapParams({
9483
10115
  iassetSymbol: params.iassetSymbol.unCurrencySymbol,
9484
10116
  cdpToken: fromSystemParamsAssetLucid(params.cdpToken),
@@ -9514,7 +10146,7 @@ var mkPythFeedValidator = (params) => {
9514
10146
  var import_ts_pattern22 = require("ts-pattern");
9515
10147
 
9516
10148
  // tests/pyth/endpoints.ts
9517
- var import_lucid63 = require("@lucid-evolution/lucid");
10149
+ var import_lucid64 = require("@lucid-evolution/lucid");
9518
10150
 
9519
10151
  // src/validators/always-succeed-validator.ts
9520
10152
  var _alwaysSucceedValidator = {
@@ -9530,29 +10162,29 @@ var alwaysSucceedValidator = {
9530
10162
  };
9531
10163
 
9532
10164
  // tests/pyth/endpoints.ts
9533
- var import_cardano_offchain_common26 = require("@3rd-eye-labs/cardano-offchain-common");
10165
+ var import_cardano_offchain_common27 = require("@3rd-eye-labs/cardano-offchain-common");
9534
10166
  var TEST_TRUSTED_SIGNER_PUB_KEY = "4a50d7c3d16b2be5c16ba996109a455a34cce08a81b3e15b86ef407e2f72e71f";
9535
10167
  async function initPyth(lucid) {
9536
- const pythStateName = (0, import_lucid63.fromText)("Pyth State");
10168
+ const pythStateName = (0, import_lucid64.fromText)("Pyth State");
9537
10169
  const pythStatePolicyId = await mintOneTimeToken(lucid, pythStateName, 1n);
9538
10170
  const pythStateAsset = {
9539
- currencySymbol: (0, import_lucid63.fromHex)(pythStatePolicyId),
9540
- tokenName: (0, import_lucid63.fromHex)(pythStateName)
10171
+ currencySymbol: (0, import_lucid64.fromHex)(pythStatePolicyId),
10172
+ tokenName: (0, import_lucid64.fromHex)(pythStateName)
9541
10173
  };
9542
- const alwaysSucceedsValidatorHash = (0, import_lucid63.validatorToScriptHash)(
10174
+ const alwaysSucceedsValidatorHash = (0, import_lucid64.validatorToScriptHash)(
9543
10175
  alwaysSucceedValidator
9544
10176
  );
9545
10177
  const pythStateDatum = {
9546
10178
  // The governance doesn't matter for the purpose of testing, so we can use any values
9547
10179
  governance: {
9548
- wormhole: (0, import_lucid63.fromHex)(""),
10180
+ wormhole: (0, import_lucid64.fromHex)(""),
9549
10181
  emitterChain: 0n,
9550
- emitterAddress: (0, import_lucid63.fromHex)(""),
10182
+ emitterAddress: (0, import_lucid64.fromHex)(""),
9551
10183
  seenSequence: 0n
9552
10184
  },
9553
10185
  trustedSigners: /* @__PURE__ */ new Map([
9554
10186
  [
9555
- (0, import_lucid63.fromHex)(TEST_TRUSTED_SIGNER_PUB_KEY),
10187
+ (0, import_lucid64.fromHex)(TEST_TRUSTED_SIGNER_PUB_KEY),
9556
10188
  {
9557
10189
  lower_bound: {
9558
10190
  bound_type: {
@@ -9572,25 +10204,25 @@ async function initPyth(lucid) {
9572
10204
  deprecatedWithdrawScripts: /* @__PURE__ */ new Map(),
9573
10205
  // For the purpose of testing, we use the always succeeds validator to validate the Pyth Messages.
9574
10206
  // This means the message signature checking will always succeed for the purpose of emulation testing.
9575
- withdraw_script: (0, import_lucid63.fromHex)(alwaysSucceedsValidatorHash)
10207
+ withdraw_script: (0, import_lucid64.fromHex)(alwaysSucceedsValidatorHash)
9576
10208
  };
9577
10209
  await runAndAwaitTxBuilder(
9578
10210
  lucid,
9579
10211
  lucid.newTx().pay.ToContract(
9580
- (0, import_lucid63.credentialToAddress)(lucid.config().network, {
9581
- hash: (0, import_lucid63.validatorToScriptHash)(alwaysSucceedValidator),
10212
+ (0, import_lucid64.credentialToAddress)(lucid.config().network, {
10213
+ hash: (0, import_lucid64.validatorToScriptHash)(alwaysSucceedValidator),
9582
10214
  type: "Script"
9583
10215
  }),
9584
10216
  { kind: "inline", value: serialisePythStateDatum(pythStateDatum) },
9585
- (0, import_cardano_offchain_common26.mkAssetsOf)(pythStateAsset, 1n),
10217
+ (0, import_cardano_offchain_common27.mkAssetsOf)(pythStateAsset, 1n),
9586
10218
  alwaysSucceedValidator
9587
10219
  )
9588
10220
  );
9589
10221
  await runAndAwaitTxBuilder(
9590
10222
  lucid,
9591
10223
  lucid.newTx().register.Stake(
9592
- (0, import_lucid63.credentialToRewardAddress)(lucid.config().network, {
9593
- hash: (0, import_lucid63.validatorToScriptHash)(alwaysSucceedValidator),
10224
+ (0, import_lucid64.credentialToRewardAddress)(lucid.config().network, {
10225
+ hash: (0, import_lucid64.validatorToScriptHash)(alwaysSucceedValidator),
9594
10226
  type: "Script"
9595
10227
  })
9596
10228
  )
@@ -9614,7 +10246,7 @@ async function initPythConfig(lucid, initialAssets, pythStateAsset) {
9614
10246
  const pythFeedValidator = mkPythFeedValidator(
9615
10247
  fromSysParamsPythFeedParams(val.pythFeedParams)
9616
10248
  );
9617
- const pythFeedValHash = (0, import_lucid64.validatorToScriptHash)(pythFeedValidator);
10249
+ const pythFeedValHash = (0, import_lucid65.validatorToScriptHash)(pythFeedValidator);
9618
10250
  const pythFeedValScriptRef = await initScriptRef(
9619
10251
  lucid,
9620
10252
  pythFeedValidator
@@ -9622,13 +10254,13 @@ async function initPythConfig(lucid, initialAssets, pythStateAsset) {
9622
10254
  await runAndAwaitTxBuilder(
9623
10255
  lucid,
9624
10256
  lucid.newTx().register.Stake(
9625
- (0, import_lucid64.credentialToRewardAddress)(lucid.config().network, {
9626
- hash: (0, import_lucid64.validatorToScriptHash)(pythFeedValidator),
10257
+ (0, import_lucid65.credentialToRewardAddress)(lucid.config().network, {
10258
+ hash: (0, import_lucid65.validatorToScriptHash)(pythFeedValidator),
9627
10259
  type: "Script"
9628
10260
  })
9629
10261
  )
9630
10262
  );
9631
- const key = `${asset.name}/${(0, import_lucid64.toHex)(collateral.collateralAsset.currencySymbol)}.${(0, import_lucid64.toHex)(collateral.collateralAsset.tokenName)}`;
10263
+ const key = `${asset.name}/${(0, import_lucid65.toHex)(collateral.collateralAsset.currencySymbol)}.${(0, import_lucid65.toHex)(collateral.collateralAsset.tokenName)}`;
9632
10264
  return {
9633
10265
  [key]: {
9634
10266
  params: val.pythFeedParams,
@@ -9680,16 +10312,16 @@ async function init(lucid, defaultInitialAssets, currentSlot, mkPythBasedAssets
9680
10312
  };
9681
10313
  const versionRecordTokenPolicy = mkVersionRecordTokenPolicy({
9682
10314
  upgradeToken: {
9683
- currencySymbol: (0, import_lucid64.toHex)(upgradeToken.currencySymbol),
9684
- tokenName: (0, import_lucid64.toHex)(upgradeToken.tokenName)
10315
+ currencySymbol: (0, import_lucid65.toHex)(upgradeToken.currencySymbol),
10316
+ tokenName: (0, import_lucid65.toHex)(upgradeToken.tokenName)
9685
10317
  }
9686
10318
  });
9687
10319
  const versionRecordToken = {
9688
- currencySymbol: (0, import_lucid64.fromHex)((0, import_lucid64.mintingPolicyToId)(versionRecordTokenPolicy)),
9689
- tokenName: (0, import_lucid64.fromHex)((0, import_lucid64.fromText)(tn.versionRecord))
10320
+ currencySymbol: (0, import_lucid65.fromHex)((0, import_lucid65.mintingPolicyToId)(versionRecordTokenPolicy)),
10321
+ tokenName: (0, import_lucid65.fromHex)((0, import_lucid65.fromText)(tn.versionRecord))
9690
10322
  };
9691
10323
  const versionRegistryValidator = mkVersionRegistryValidator();
9692
- const versionRegistryValHash = (0, import_lucid64.validatorToScriptHash)(
10324
+ const versionRegistryValHash = (0, import_lucid65.validatorToScriptHash)(
9693
10325
  versionRegistryValidator
9694
10326
  );
9695
10327
  const cdpCreatorAsset = await mintOneTimeAsset(
@@ -9710,7 +10342,7 @@ async function init(lucid, defaultInitialAssets, currentSlot, mkPythBasedAssets
9710
10342
  versionRecordToken: toSystemParamsAsset(versionRecordToken)
9711
10343
  };
9712
10344
  const collectorValidator = mkCollectorValidatorFromSP(collectorParams);
9713
- const collectorValHash = (0, import_lucid64.validatorToScriptHash)(collectorValidator);
10345
+ const collectorValHash = (0, import_lucid65.validatorToScriptHash)(collectorValidator);
9714
10346
  const stakingParams = {
9715
10347
  stakingManagerNFT: toSystemParamsAsset(stakingManagerAsset),
9716
10348
  stakingToken: toSystemParamsAsset(stakingToken),
@@ -9719,7 +10351,7 @@ async function init(lucid, defaultInitialAssets, currentSlot, mkPythBasedAssets
9719
10351
  indyToken: toSystemParamsAsset(indyAsset),
9720
10352
  collectorValHash
9721
10353
  };
9722
- const stakingValHash = (0, import_lucid64.validatorToScriptHash)(
10354
+ const stakingValHash = (0, import_lucid65.validatorToScriptHash)(
9723
10355
  mkStakingValidatorFromSP(stakingParams)
9724
10356
  );
9725
10357
  await initStakingManager(lucid, stakingParams);
@@ -9728,9 +10360,9 @@ async function init(lucid, defaultInitialAssets, currentSlot, mkPythBasedAssets
9728
10360
  versionRecordToken: toSystemParamsAsset(versionRecordToken)
9729
10361
  };
9730
10362
  const iassetValidator = mkIAssetValidatorFromSP(iassetParams);
9731
- const iassetValHash = (0, import_lucid64.validatorToScriptHash)(iassetValidator);
10363
+ const iassetValHash = (0, import_lucid65.validatorToScriptHash)(iassetValidator);
9732
10364
  const assetSymbolPolicy = mkIAssetTokenPolicy(cdpToken);
9733
- const assetSymbol = (0, import_lucid64.mintingPolicyToId)(assetSymbolPolicy);
10365
+ const assetSymbol = (0, import_lucid65.mintingPolicyToId)(assetSymbolPolicy);
9734
10366
  const snapshotEpochToScaleToSumToken = deriveAuthToken(
9735
10367
  stabilityPoolToken,
9736
10368
  tn.snapshotEpochToScaleToSum
@@ -9753,14 +10385,14 @@ async function init(lucid, defaultInitialAssets, currentSlot, mkPythBasedAssets
9753
10385
  stakeCredential: spStakingCred
9754
10386
  };
9755
10387
  const stabilityPoolValidator = mkStabilityPoolValidatorFromSP(stabilityPoolParams);
9756
- const stabilityPoolValHash = (0, import_lucid64.validatorToScriptHash)(stabilityPoolValidator);
10388
+ const stabilityPoolValHash = (0, import_lucid65.validatorToScriptHash)(stabilityPoolValidator);
9757
10389
  const treasuryParams = {
9758
10390
  upgradeToken: toSystemParamsAsset(upgradeToken),
9759
10391
  versionRecordToken: toSystemParamsAsset(versionRecordToken),
9760
10392
  treasuryUtxosStakeCredential: treasuryStakingCred
9761
10393
  };
9762
10394
  const treasuryValidator = mkTreasuryValidatorFromSP(treasuryParams);
9763
- const treasuryValHash = (0, import_lucid64.validatorToScriptHash)(treasuryValidator);
10395
+ const treasuryValHash = (0, import_lucid65.validatorToScriptHash)(treasuryValidator);
9764
10396
  await initTreasury(
9765
10397
  lucid,
9766
10398
  treasuryParams,
@@ -9783,7 +10415,7 @@ async function init(lucid, defaultInitialAssets, currentSlot, mkPythBasedAssets
9783
10415
  const interestCollectionValidator = mkInterestCollectionValidatorFromSP(
9784
10416
  interestCollectionParams
9785
10417
  );
9786
- const interestCollectionValHash = (0, import_lucid64.validatorToScriptHash)(
10418
+ const interestCollectionValHash = (0, import_lucid65.validatorToScriptHash)(
9787
10419
  interestCollectionValidator
9788
10420
  );
9789
10421
  await initInterestCollector(
@@ -9812,10 +10444,10 @@ async function init(lucid, defaultInitialAssets, currentSlot, mkPythBasedAssets
9812
10444
  biasTime
9813
10445
  };
9814
10446
  const cdpRedeemValidator = mkCdpRedeemValidatorFromSP(cdpRedeemParams);
9815
- const cdpRedeemValHash = (0, import_lucid64.validatorToScriptHash)(cdpRedeemValidator);
9816
- const cdpRedeemRewardAddr = (0, import_lucid64.credentialToRewardAddress)(
10447
+ const cdpRedeemValHash = (0, import_lucid65.validatorToScriptHash)(cdpRedeemValidator);
10448
+ const cdpRedeemRewardAddr = (0, import_lucid65.credentialToRewardAddress)(
9817
10449
  lucid.config().network,
9818
- (0, import_lucid64.scriptHashToCredential)(cdpRedeemValHash)
10450
+ (0, import_lucid65.scriptHashToCredential)(cdpRedeemValHash)
9819
10451
  );
9820
10452
  await submitTx(lucid, lucid.newTx().register.Stake(cdpRedeemRewardAddr));
9821
10453
  const cdpParams = {
@@ -9834,7 +10466,7 @@ async function init(lucid, defaultInitialAssets, currentSlot, mkPythBasedAssets
9834
10466
  biasTime
9835
10467
  };
9836
10468
  const cdpValidator = mkCdpValidatorFromSP(cdpParams);
9837
- const cdpValHash = (0, import_lucid64.validatorToScriptHash)(cdpValidator);
10469
+ const cdpValHash = (0, import_lucid65.validatorToScriptHash)(cdpValidator);
9838
10470
  const cdpCreatorParams = {
9839
10471
  cdpCreatorNft: toSystemParamsAsset(cdpCreatorAsset),
9840
10472
  cdpAssetCs: { unCurrencySymbol: assetSymbol },
@@ -9849,7 +10481,7 @@ async function init(lucid, defaultInitialAssets, currentSlot, mkPythBasedAssets
9849
10481
  biasTime: cdpParams.biasTime
9850
10482
  };
9851
10483
  const cdpCreatorValidator = mkCDPCreatorValidatorFromSP(cdpCreatorParams);
9852
- const cdpCreatorValHash = (0, import_lucid64.validatorToScriptHash)(cdpCreatorValidator);
10484
+ const cdpCreatorValHash = (0, import_lucid65.validatorToScriptHash)(cdpCreatorValidator);
9853
10485
  const stableswapParams = {
9854
10486
  iassetSymbol: { unCurrencySymbol: assetSymbol },
9855
10487
  cdpToken: toSystemParamsAsset(cdpToken),
@@ -9858,7 +10490,7 @@ async function init(lucid, defaultInitialAssets, currentSlot, mkPythBasedAssets
9858
10490
  treasuryValHash
9859
10491
  };
9860
10492
  const stableswapValidator = mkStableswapValidatorFromSP(stableswapParams);
9861
- const stableswapValHash = (0, import_lucid64.validatorToScriptHash)(stableswapValidator);
10493
+ const stableswapValHash = (0, import_lucid65.validatorToScriptHash)(stableswapValidator);
9862
10494
  await initCollector(lucid, collectorParams, numCollectors);
9863
10495
  const assetInfos = [];
9864
10496
  if (initialAssets.length > 0) {
@@ -9885,9 +10517,9 @@ async function init(lucid, defaultInitialAssets, currentSlot, mkPythBasedAssets
9885
10517
  lucid,
9886
10518
  lucid.newTx().pay.ToAddress(
9887
10519
  await lucid.wallet().address(),
9888
- (0, import_lucid64.addAssets)(
9889
- (0, import_cardano_offchain_common27.mkAssetsOf)(iassetToken, 1n),
9890
- (0, import_cardano_offchain_common27.mkLovelacesOf)(BigInt(totalCollateralAssetsCount) * 5000000n)
10520
+ (0, import_lucid65.addAssets)(
10521
+ (0, import_cardano_offchain_common28.mkAssetsOf)(iassetToken, 1n),
10522
+ (0, import_cardano_offchain_common28.mkLovelacesOf)(BigInt(totalCollateralAssetsCount) * 5000000n)
9891
10523
  )
9892
10524
  )
9893
10525
  );
@@ -9903,9 +10535,9 @@ async function init(lucid, defaultInitialAssets, currentSlot, mkPythBasedAssets
9903
10535
  lucid,
9904
10536
  lucid.newTx().pay.ToAddress(
9905
10537
  await lucid.wallet().address(),
9906
- (0, import_lucid64.addAssets)(
9907
- (0, import_cardano_offchain_common27.mkAssetsOf)(cdpCreatorAsset, 1n),
9908
- (0, import_cardano_offchain_common27.mkLovelacesOf)(BigInt(totalStablePoolsCount) * 5000000n)
10538
+ (0, import_lucid65.addAssets)(
10539
+ (0, import_cardano_offchain_common28.mkAssetsOf)(cdpCreatorAsset, 1n),
10540
+ (0, import_cardano_offchain_common28.mkLovelacesOf)(BigInt(totalStablePoolsCount) * 5000000n)
9909
10541
  )
9910
10542
  )
9911
10543
  );
@@ -9961,7 +10593,7 @@ async function init(lucid, defaultInitialAssets, currentSlot, mkPythBasedAssets
9961
10593
  treasuryValHash
9962
10594
  };
9963
10595
  const executeValidator = mkExecuteValidatorFromSP(executeParams);
9964
- const executeValHash = (0, import_lucid64.validatorToScriptHash)(executeValidator);
10596
+ const executeValHash = (0, import_lucid65.validatorToScriptHash)(executeValidator);
9965
10597
  const pollShardParams = {
9966
10598
  pollToken: toSystemParamsAsset(pollToken),
9967
10599
  stakingToken: toSystemParamsAsset(stakingToken),
@@ -9969,7 +10601,7 @@ async function init(lucid, defaultInitialAssets, currentSlot, mkPythBasedAssets
9969
10601
  stakingValHash
9970
10602
  };
9971
10603
  const pollShardValidator = mkPollShardValidatorFromSP(pollShardParams);
9972
- const pollShardValHash = (0, import_lucid64.validatorToScriptHash)(pollShardValidator);
10604
+ const pollShardValHash = (0, import_lucid65.validatorToScriptHash)(pollShardValidator);
9973
10605
  const pollManagerParams = {
9974
10606
  govNFT: toSystemParamsAsset(govNftAsset),
9975
10607
  pollToken: toSystemParamsAsset(pollToken),
@@ -9981,7 +10613,7 @@ async function init(lucid, defaultInitialAssets, currentSlot, mkPythBasedAssets
9981
10613
  treasuryValHash
9982
10614
  };
9983
10615
  const pollManagerValidator = mkPollManagerValidatorFromSP(pollManagerParams);
9984
- const pollManagerValHash = (0, import_lucid64.validatorToScriptHash)(pollManagerValidator);
10616
+ const pollManagerValHash = (0, import_lucid65.validatorToScriptHash)(pollManagerValidator);
9985
10617
  const govParams = {
9986
10618
  gBiasTime: gBiasTime ? BigInt(gBiasTime) : BigInt(biasTime),
9987
10619
  govNFT: toSystemParamsAsset(govNftAsset),
@@ -9996,7 +10628,7 @@ async function init(lucid, defaultInitialAssets, currentSlot, mkPythBasedAssets
9996
10628
  iassetSymbol: { unCurrencySymbol: assetSymbol }
9997
10629
  };
9998
10630
  const govValidator = mkGovValidatorFromSP(govParams);
9999
- const govValHash = (0, import_lucid64.validatorToScriptHash)(govValidator);
10631
+ const govValHash = (0, import_lucid65.validatorToScriptHash)(govValidator);
10000
10632
  await initGovernance(
10001
10633
  lucid,
10002
10634
  govParams,
@@ -10012,36 +10644,36 @@ async function init(lucid, defaultInitialAssets, currentSlot, mkPythBasedAssets
10012
10644
  versionRecordToken: cdpParams.versionRecordToken
10013
10645
  };
10014
10646
  const robValidator = mkRobValidatorFromSP(robParams);
10015
- const robValHash = (0, import_lucid64.validatorToScriptHash)(robValidator);
10016
- const cdpTokenPolicy = mkAuthTokenPolicy(cdpCreatorAsset, (0, import_lucid64.fromText)(tn.cdp));
10647
+ const robValHash = (0, import_lucid65.validatorToScriptHash)(robValidator);
10648
+ const cdpTokenPolicy = mkAuthTokenPolicy(cdpCreatorAsset, (0, import_lucid65.fromText)(tn.cdp));
10017
10649
  const iassetTokenPolicy = mkAuthTokenPolicy(
10018
10650
  upgradeToken,
10019
- (0, import_lucid64.fromText)(tn.iasset)
10651
+ (0, import_lucid65.fromText)(tn.iasset)
10020
10652
  );
10021
10653
  const accountTokenPolicy = mkAuthTokenPolicy(
10022
10654
  stabilityPoolToken,
10023
- (0, import_lucid64.fromText)(tn.account)
10655
+ (0, import_lucid65.fromText)(tn.account)
10024
10656
  );
10025
10657
  const stabilityPoolTokenPolicy = mkAuthTokenPolicy(
10026
10658
  upgradeToken,
10027
- (0, import_lucid64.fromText)(tn.stabilityPool)
10659
+ (0, import_lucid65.fromText)(tn.stabilityPool)
10028
10660
  );
10029
10661
  const pollTokenPolicy = mkAuthTokenPolicy(
10030
10662
  govNftAsset,
10031
- (0, import_lucid64.fromText)(tn.pollManager)
10663
+ (0, import_lucid65.fromText)(tn.pollManager)
10032
10664
  );
10033
10665
  const stakingTokenPolicy = mkAuthTokenPolicy(
10034
10666
  stakingManagerAsset,
10035
- (0, import_lucid64.fromText)(tn.staking)
10667
+ (0, import_lucid65.fromText)(tn.staking)
10036
10668
  );
10037
10669
  const collateralAssetAuthTokenPolicy = mkAuthTokenPolicy(
10038
10670
  iassetToken,
10039
- (0, import_lucid64.fromText)(tn.collateralAsset)
10671
+ (0, import_lucid65.fromText)(tn.collateralAsset)
10040
10672
  );
10041
- const upgradeTokenPolicy = mkAuthTokenPolicy(pollToken, (0, import_lucid64.fromText)(tn.upgrade));
10673
+ const upgradeTokenPolicy = mkAuthTokenPolicy(pollToken, (0, import_lucid65.fromText)(tn.upgrade));
10042
10674
  const snapshotEpochToScaleToSumTokenPolicy = mkAuthTokenPolicy(
10043
10675
  stabilityPoolToken,
10044
- (0, import_lucid64.fromText)(tn.snapshotEpochToScaleToSum)
10676
+ (0, import_lucid65.fromText)(tn.snapshotEpochToScaleToSum)
10045
10677
  );
10046
10678
  const sysParams = {
10047
10679
  cdpParams,
@@ -10185,19 +10817,19 @@ async function init(lucid, defaultInitialAssets, currentSlot, mkPythBasedAssets
10185
10817
  }
10186
10818
 
10187
10819
  // src/contracts/stableswap/helpers.ts
10188
- var import_lucid65 = require("@lucid-evolution/lucid");
10820
+ var import_lucid66 = require("@lucid-evolution/lucid");
10189
10821
 
10190
10822
  // src/contracts/stableswap/types-new.ts
10191
- var import_cardano_offchain_common28 = require("@3rd-eye-labs/cardano-offchain-common");
10823
+ var import_cardano_offchain_common29 = require("@3rd-eye-labs/cardano-offchain-common");
10192
10824
  var import_evolution20 = require("@evolution-sdk/evolution");
10193
- var import_fp_ts20 = require("fp-ts");
10825
+ var import_fp_ts21 = require("fp-ts");
10194
10826
  var import_effect3 = require("effect");
10195
10827
  var OpaqueData4 = import_effect3.Schema.typeSchema(import_evolution20.Data.DataSchema);
10196
10828
  var StableswapOrderDatumSchema = import_evolution20.TSchema.Struct({
10197
10829
  iasset: import_evolution20.TSchema.ByteArray,
10198
- collateralAsset: import_cardano_offchain_common28.AssetClassSchema,
10830
+ collateralAsset: import_cardano_offchain_common29.AssetClassSchema,
10199
10831
  owner: import_evolution20.TSchema.ByteArray,
10200
- destination: import_cardano_offchain_common28.AddressSchema,
10832
+ destination: import_cardano_offchain_common29.AddressSchema,
10201
10833
  destinationInlineDatum: import_evolution20.TSchema.NullOr(OpaqueData4),
10202
10834
  maxExecutionFee: import_evolution20.TSchema.Integer,
10203
10835
  maxFeeRatio: RationalSchema
@@ -10222,7 +10854,7 @@ var StableswapOrderRedeemerSchema = import_evolution20.TSchema.Union(
10222
10854
  );
10223
10855
  var StableswapOutputDatumSchema = import_evolution20.TSchema.Tuple([
10224
10856
  import_evolution20.TSchema.ByteArray,
10225
- import_cardano_offchain_common28.OutputReferenceSchema
10857
+ import_cardano_offchain_common29.OutputReferenceSchema
10226
10858
  ]);
10227
10859
  function serialiseStableswapOrderDatum(d) {
10228
10860
  return import_evolution20.Data.withSchema(
@@ -10232,22 +10864,22 @@ function serialiseStableswapOrderDatum(d) {
10232
10864
  }
10233
10865
  function parseStableswapOrderDatum(datum) {
10234
10866
  try {
10235
- return import_fp_ts20.option.some(
10867
+ return import_fp_ts21.option.some(
10236
10868
  import_evolution20.Data.withSchema(
10237
10869
  StableswapOrderDatumSchema,
10238
10870
  DEFAULT_SCHEMA_OPTIONS
10239
10871
  ).fromCBORHex(datum)
10240
10872
  );
10241
10873
  } catch (_) {
10242
- return import_fp_ts20.option.none;
10874
+ return import_fp_ts21.option.none;
10243
10875
  }
10244
10876
  }
10245
10877
  function parseStableswapOrderDatumOrThrow(datum) {
10246
- return import_fp_ts20.function.pipe(
10878
+ return import_fp_ts21.function.pipe(
10247
10879
  parseStableswapOrderDatum(datum),
10248
- import_fp_ts20.option.match(() => {
10880
+ import_fp_ts21.option.match(() => {
10249
10881
  throw new Error("Expected a Stableswap Order datum.");
10250
- }, import_fp_ts20.function.identity)
10882
+ }, import_fp_ts21.function.identity)
10251
10883
  );
10252
10884
  }
10253
10885
  function serialiseStableswapOutputDatum(d) {
@@ -10264,22 +10896,22 @@ function serialiseStableswapOrderRedeemer(r) {
10264
10896
  }
10265
10897
  function parseStableswapOrderRedeemer(redeemerCborHex) {
10266
10898
  try {
10267
- return import_fp_ts20.option.some(
10899
+ return import_fp_ts21.option.some(
10268
10900
  import_evolution20.Data.withSchema(
10269
10901
  StableswapOrderRedeemerSchema,
10270
10902
  DEFAULT_SCHEMA_OPTIONS
10271
10903
  ).fromCBORHex(redeemerCborHex)
10272
10904
  );
10273
10905
  } catch (_) {
10274
- return import_fp_ts20.option.none;
10906
+ return import_fp_ts21.option.none;
10275
10907
  }
10276
10908
  }
10277
10909
  function parseStableswapOrderRedeemerOrThrow(redeemerCborHex) {
10278
- return import_fp_ts20.function.pipe(
10910
+ return import_fp_ts21.function.pipe(
10279
10911
  parseStableswapOrderRedeemer(redeemerCborHex),
10280
- import_fp_ts20.option.match(() => {
10912
+ import_fp_ts21.option.match(() => {
10281
10913
  throw new Error("Expected a Stableswap Order redeemer.");
10282
- }, import_fp_ts20.function.identity)
10914
+ }, import_fp_ts21.function.identity)
10283
10915
  );
10284
10916
  }
10285
10917
 
@@ -10289,9 +10921,9 @@ var BASE_MAX_EXECUTION_FEE = 1000000n;
10289
10921
  function createDestinationDatum(datum, outRef) {
10290
10922
  if (!datum) {
10291
10923
  return serialiseStableswapOutputDatum([
10292
- (0, import_lucid65.fromHex)((0, import_lucid65.fromText)("IndigoStableswap")),
10924
+ (0, import_lucid66.fromHex)((0, import_lucid66.fromText)("IndigoStableswap")),
10293
10925
  {
10294
- txHash: (0, import_lucid65.fromHex)(outRef.txHash),
10926
+ txHash: (0, import_lucid66.fromHex)(outRef.txHash),
10295
10927
  outputIndex: BigInt(outRef.outputIndex)
10296
10928
  }
10297
10929
  ]);
@@ -10300,28 +10932,28 @@ function createDestinationDatum(datum, outRef) {
10300
10932
  }
10301
10933
 
10302
10934
  // src/contracts/stableswap/transactions.ts
10303
- var import_lucid66 = require("@lucid-evolution/lucid");
10304
- var import_cardano_offchain_common29 = require("@3rd-eye-labs/cardano-offchain-common");
10305
- var import_fp_ts21 = require("fp-ts");
10935
+ var import_lucid67 = require("@lucid-evolution/lucid");
10936
+ var import_cardano_offchain_common30 = require("@3rd-eye-labs/cardano-offchain-common");
10937
+ var import_fp_ts22 = require("fp-ts");
10306
10938
  var import_Array3 = require("fp-ts/lib/Array");
10307
10939
  async function createStableswapOrder(iasset, collateralAsset, amount, minting, poolDatum, params, lucid, destinationAddress, destinationInlineDatum, maxExecutionFee = BASE_MAX_EXECUTION_FEE, additionalLovelaces = 0n, maxFeeRatio) {
10308
10940
  const myAddress = await lucid.wallet().address();
10309
- const pkh = (0, import_lucid66.paymentCredentialOf)(myAddress);
10941
+ const pkh = (0, import_lucid67.paymentCredentialOf)(myAddress);
10310
10942
  const datum = {
10311
- iasset: (0, import_lucid66.fromHex)((0, import_lucid66.fromText)(iasset)),
10943
+ iasset: (0, import_lucid67.fromHex)((0, import_lucid67.fromText)(iasset)),
10312
10944
  collateralAsset,
10313
- owner: (0, import_lucid66.fromHex)(pkh.hash),
10314
- destination: (0, import_cardano_offchain_common29.addressFromBech32)(destinationAddress ?? myAddress),
10945
+ owner: (0, import_lucid67.fromHex)(pkh.hash),
10946
+ destination: (0, import_cardano_offchain_common30.addressFromBech32)(destinationAddress ?? myAddress),
10315
10947
  destinationInlineDatum: destinationInlineDatum ?? null,
10316
10948
  maxExecutionFee,
10317
10949
  maxFeeRatio: maxFeeRatio ?? (minting ? poolDatum.mintingFeeRatio : poolDatum.redemptionFeeRatio)
10318
10950
  };
10319
- const assetsToSwap = minting ? (0, import_cardano_offchain_common29.mkAssetsOf)(collateralAsset, amount) : (0, import_cardano_offchain_common29.mkAssetsOf)(
10951
+ const assetsToSwap = minting ? (0, import_cardano_offchain_common30.mkAssetsOf)(collateralAsset, amount) : (0, import_cardano_offchain_common30.mkAssetsOf)(
10320
10952
  {
10321
- currencySymbol: (0, import_lucid66.fromHex)(
10953
+ currencySymbol: (0, import_lucid67.fromHex)(
10322
10954
  params.stableswapParams.iassetSymbol.unCurrencySymbol
10323
10955
  ),
10324
- tokenName: (0, import_lucid66.fromHex)((0, import_lucid66.fromText)(iasset))
10956
+ tokenName: (0, import_lucid67.fromHex)((0, import_lucid67.fromText)(iasset))
10325
10957
  },
10326
10958
  amount
10327
10959
  );
@@ -10339,8 +10971,8 @@ async function createStableswapOrder(iasset, collateralAsset, amount, minting, p
10339
10971
  );
10340
10972
  const roundedExpectedOutputLovelaces = (expectedOutputLovelaces / 1000000n + 1n) * 1000000n;
10341
10973
  return lucid.newTx().pay.ToContract(
10342
- (0, import_lucid66.credentialToAddress)(lucid.config().network, {
10343
- hash: (0, import_lucid66.validatorToScriptHash)(
10974
+ (0, import_lucid67.credentialToAddress)(lucid.config().network, {
10975
+ hash: (0, import_lucid67.validatorToScriptHash)(
10344
10976
  mkStableswapValidatorFromSP(params.stableswapParams)
10345
10977
  ),
10346
10978
  type: "Script"
@@ -10349,16 +10981,16 @@ async function createStableswapOrder(iasset, collateralAsset, amount, minting, p
10349
10981
  kind: "inline",
10350
10982
  value: serialiseStableswapOrderDatum(datum)
10351
10983
  },
10352
- (0, import_lucid66.addAssets)(
10984
+ (0, import_lucid67.addAssets)(
10353
10985
  assetsToSwap,
10354
- (0, import_cardano_offchain_common29.mkLovelacesOf)(
10986
+ (0, import_cardano_offchain_common30.mkLovelacesOf)(
10355
10987
  roundedExpectedOutputLovelaces + maxExecutionFee + additionalLovelaces
10356
10988
  )
10357
10989
  )
10358
10990
  );
10359
10991
  }
10360
10992
  async function cancelStableswapOrder(stableswapOrderOref, sysParams, lucid) {
10361
- const stableswapScriptRefUtxo = (0, import_cardano_offchain_common29.matchSingle)(
10993
+ const stableswapScriptRefUtxo = (0, import_cardano_offchain_common30.matchSingle)(
10362
10994
  await lucid.utxosByOutRef([
10363
10995
  fromSystemParamsScriptRef(
10364
10996
  sysParams.scriptReferences.stableswapValidatorRef
@@ -10366,20 +10998,20 @@ async function cancelStableswapOrder(stableswapOrderOref, sysParams, lucid) {
10366
10998
  ]),
10367
10999
  (_) => new Error("Expected a single Stableswap Ref Script UTXO")
10368
11000
  );
10369
- const stableswapOrderUtxo = (0, import_cardano_offchain_common29.matchSingle)(
11001
+ const stableswapOrderUtxo = (0, import_cardano_offchain_common30.matchSingle)(
10370
11002
  await lucid.utxosByOutRef([stableswapOrderOref]),
10371
11003
  (_) => new Error("Expected a single Stableswap Order UTXO.")
10372
11004
  );
10373
11005
  const stableswapOrderDatum = parseStableswapOrderDatumOrThrow(
10374
- (0, import_cardano_offchain_common29.getInlineDatumOrThrow)(stableswapOrderUtxo)
11006
+ (0, import_cardano_offchain_common30.getInlineDatumOrThrow)(stableswapOrderUtxo)
10375
11007
  );
10376
11008
  return lucid.newTx().readFrom([stableswapScriptRefUtxo]).collectFrom(
10377
11009
  [stableswapOrderUtxo],
10378
11010
  serialiseStableswapOrderRedeemer("CancelStableswapOrder")
10379
- ).addSignerKey((0, import_lucid66.toHex)(stableswapOrderDatum.owner));
11011
+ ).addSignerKey((0, import_lucid67.toHex)(stableswapOrderDatum.owner));
10380
11012
  }
10381
11013
  async function batchProcessStableswapOrders(stableswapOrderOrefs, stableswapPoolOref, treasuryOref, sysParams, lucid) {
10382
- const stableswapScriptRefUtxo = (0, import_cardano_offchain_common29.matchSingle)(
11014
+ const stableswapScriptRefUtxo = (0, import_cardano_offchain_common30.matchSingle)(
10383
11015
  await lucid.utxosByOutRef([
10384
11016
  fromSystemParamsScriptRef(
10385
11017
  sysParams.scriptReferences.stableswapValidatorRef
@@ -10387,13 +11019,13 @@ async function batchProcessStableswapOrders(stableswapOrderOrefs, stableswapPool
10387
11019
  ]),
10388
11020
  (_) => new Error("Expected a single Stableswap Ref Script UTXO")
10389
11021
  );
10390
- const cdpScriptRefUtxo = (0, import_cardano_offchain_common29.matchSingle)(
11022
+ const cdpScriptRefUtxo = (0, import_cardano_offchain_common30.matchSingle)(
10391
11023
  await lucid.utxosByOutRef([
10392
11024
  fromSystemParamsScriptRef(sysParams.scriptReferences.cdpValidatorRef)
10393
11025
  ]),
10394
11026
  (_) => new Error("Expected a single CDP Ref Script UTXO")
10395
11027
  );
10396
- const iAssetTokenPolicyRefScriptUtxo = (0, import_cardano_offchain_common29.matchSingle)(
11028
+ const iAssetTokenPolicyRefScriptUtxo = (0, import_cardano_offchain_common30.matchSingle)(
10397
11029
  await lucid.utxosByOutRef([
10398
11030
  fromSystemParamsScriptRef(
10399
11031
  sysParams.scriptReferences.iAssetTokenPolicyRef
@@ -10405,7 +11037,7 @@ async function batchProcessStableswapOrders(stableswapOrderOrefs, stableswapPool
10405
11037
  throw new Error("At least one order must be provided.");
10406
11038
  }
10407
11039
  const stableswapOrderUtxos = await lucid.utxosByOutRef(stableswapOrderOrefs);
10408
- const sortedStableswapOrderUtxos = (0, import_lucid66.sortUTxOs)(
11040
+ const sortedStableswapOrderUtxos = (0, import_lucid67.sortUTxOs)(
10409
11041
  stableswapOrderUtxos,
10410
11042
  "Canonical"
10411
11043
  );
@@ -10414,32 +11046,32 @@ async function batchProcessStableswapOrders(stableswapOrderOrefs, stableswapPool
10414
11046
  }
10415
11047
  const mainOrderUtxo = sortedStableswapOrderUtxos[0];
10416
11048
  const mainOrderDatum = parseStableswapOrderDatumOrThrow(
10417
- (0, import_cardano_offchain_common29.getInlineDatumOrThrow)(mainOrderUtxo)
11049
+ (0, import_cardano_offchain_common30.getInlineDatumOrThrow)(mainOrderUtxo)
10418
11050
  );
10419
11051
  const iassetAc = {
10420
- currencySymbol: (0, import_lucid66.fromHex)(
11052
+ currencySymbol: (0, import_lucid67.fromHex)(
10421
11053
  sysParams.stableswapParams.iassetSymbol.unCurrencySymbol
10422
11054
  ),
10423
11055
  tokenName: mainOrderDatum.iasset
10424
11056
  };
10425
11057
  const collateralAc = mainOrderDatum.collateralAsset;
10426
- const stableswapPoolUtxo = (0, import_cardano_offchain_common29.matchSingle)(
11058
+ const stableswapPoolUtxo = (0, import_cardano_offchain_common30.matchSingle)(
10427
11059
  await lucid.utxosByOutRef([stableswapPoolOref]),
10428
11060
  (_) => new Error("Expected a single cdp UTXO")
10429
11061
  );
10430
11062
  const stableswapPoolDatum = parseStableswapPoolDatumOrThrow(
10431
- (0, import_cardano_offchain_common29.getInlineDatumOrThrow)(stableswapPoolUtxo)
11063
+ (0, import_cardano_offchain_common30.getInlineDatumOrThrow)(stableswapPoolUtxo)
10432
11064
  );
10433
11065
  const ordersInfo = sortedStableswapOrderUtxos.map(
10434
11066
  (orderUtxo) => {
10435
11067
  const orderDatum = parseStableswapOrderDatumOrThrow(
10436
- (0, import_cardano_offchain_common29.getInlineDatumOrThrow)(orderUtxo)
11068
+ (0, import_cardano_offchain_common30.getInlineDatumOrThrow)(orderUtxo)
10437
11069
  );
10438
- if ((0, import_lucid66.toHex)(orderDatum.iasset) != (0, import_lucid66.toHex)(mainOrderDatum.iasset) || (0, import_lucid66.toHex)(orderDatum.collateralAsset.currencySymbol) != (0, import_lucid66.toHex)(mainOrderDatum.collateralAsset.currencySymbol) || (0, import_lucid66.toHex)(orderDatum.collateralAsset.tokenName) != (0, import_lucid66.toHex)(mainOrderDatum.collateralAsset.tokenName)) {
11070
+ if ((0, import_lucid67.toHex)(orderDatum.iasset) != (0, import_lucid67.toHex)(mainOrderDatum.iasset) || (0, import_lucid67.toHex)(orderDatum.collateralAsset.currencySymbol) != (0, import_lucid67.toHex)(mainOrderDatum.collateralAsset.currencySymbol) || (0, import_lucid67.toHex)(orderDatum.collateralAsset.tokenName) != (0, import_lucid67.toHex)(mainOrderDatum.collateralAsset.tokenName)) {
10439
11071
  throw new Error("Wrong batch of orders");
10440
11072
  }
10441
- const suppliedIasset = (0, import_cardano_offchain_common29.assetClassValueOf)(orderUtxo.assets, iassetAc);
10442
- const suppliedCollateralAsset = (0, import_cardano_offchain_common29.assetClassValueOf)(
11073
+ const suppliedIasset = (0, import_cardano_offchain_common30.assetClassValueOf)(orderUtxo.assets, iassetAc);
11074
+ const suppliedCollateralAsset = (0, import_cardano_offchain_common30.assetClassValueOf)(
10443
11075
  orderUtxo.assets,
10444
11076
  collateralAc
10445
11077
  );
@@ -10563,9 +11195,9 @@ async function batchProcessStableswapOrders(stableswapOrderOrefs, stableswapPool
10563
11195
  }
10564
11196
  }
10565
11197
  );
10566
- const totalSwapInfo = import_fp_ts21.function.pipe(
11198
+ const totalSwapInfo = import_fp_ts22.function.pipe(
10567
11199
  ordersInfo,
10568
- import_fp_ts21.array.reduce(
11200
+ import_fp_ts22.array.reduce(
10569
11201
  {
10570
11202
  suppliedCollateralAsset: 0n,
10571
11203
  suppliedIasset: 0n,
@@ -10607,20 +11239,20 @@ async function batchProcessStableswapOrders(stableswapOrderOrefs, stableswapPool
10607
11239
  kind: "inline",
10608
11240
  value: serialiseStableswapPoolDatum(stableswapPoolDatum)
10609
11241
  },
10610
- collateralAmtChangePool != 0n ? (0, import_lucid66.addAssets)(
11242
+ collateralAmtChangePool != 0n ? (0, import_lucid67.addAssets)(
10611
11243
  stableswapPoolUtxo.assets,
10612
- (0, import_cardano_offchain_common29.mkAssetsOf)(collateralAc, collateralAmtChangePool)
11244
+ (0, import_cardano_offchain_common30.mkAssetsOf)(collateralAc, collateralAmtChangePool)
10613
11245
  ) : stableswapPoolUtxo.assets
10614
11246
  ).setMinFee(2055720n);
10615
11247
  if (amountToMint !== 0n) {
10616
- tx.mintAssets((0, import_cardano_offchain_common29.mkAssetsOf)(iassetAc, amountToMint), import_lucid66.Data.void());
11248
+ tx.mintAssets((0, import_cardano_offchain_common30.mkAssetsOf)(iassetAc, amountToMint), import_lucid67.Data.void());
10617
11249
  }
10618
- import_fp_ts21.function.pipe(
11250
+ import_fp_ts22.function.pipe(
10619
11251
  ordersInfo,
10620
- import_fp_ts21.array.reduce(tx, (acc, orderInfo) => {
11252
+ import_fp_ts22.array.reduce(tx, (acc, orderInfo) => {
10621
11253
  return acc.collectFrom(
10622
11254
  [orderInfo.utxo],
10623
- (0, import_cardano_offchain_common29.isSameOutRef)(orderInfo.utxo, mainOrderUtxo) ? serialiseStableswapOrderRedeemer("BatchProcessStableswapOrders") : {
11255
+ (0, import_cardano_offchain_common30.isSameOutRef)(orderInfo.utxo, mainOrderUtxo) ? serialiseStableswapOrderRedeemer("BatchProcessStableswapOrders") : {
10624
11256
  kind: "selected",
10625
11257
  makeRedeemer: (inputIndices) => {
10626
11258
  return serialiseStableswapOrderRedeemer({
@@ -10633,7 +11265,7 @@ async function batchProcessStableswapOrders(stableswapOrderOrefs, stableswapPool
10633
11265
  inputs: [orderInfo.utxo, mainOrderUtxo]
10634
11266
  }
10635
11267
  ).pay.ToAddressWithData(
10636
- (0, import_cardano_offchain_common29.addressToBech32)(orderInfo.datum.destination, lucid.config().network),
11268
+ (0, import_cardano_offchain_common30.addressToBech32)(orderInfo.datum.destination, lucid.config().network),
10637
11269
  {
10638
11270
  kind: "inline",
10639
11271
  value: createDestinationDatum(
@@ -10641,13 +11273,13 @@ async function batchProcessStableswapOrders(stableswapOrderOrefs, stableswapPool
10641
11273
  orderInfo.utxo
10642
11274
  )
10643
11275
  },
10644
- (0, import_lucid66.addAssets)(
11276
+ (0, import_lucid67.addAssets)(
10645
11277
  // Currently, we always take the max execution fee from the order utxo.
10646
11278
  // This can be improved so that we take the actual execution fee.
10647
- (0, import_cardano_offchain_common29.mkLovelacesOf)(
10648
- (0, import_cardano_offchain_common29.lovelacesAmt)(orderInfo.utxo.assets) - orderInfo.datum.maxExecutionFee
11279
+ (0, import_cardano_offchain_common30.mkLovelacesOf)(
11280
+ (0, import_cardano_offchain_common30.lovelacesAmt)(orderInfo.utxo.assets) - orderInfo.datum.maxExecutionFee
10649
11281
  ),
10650
- orderInfo.swapInfo.owedIasset > 0 ? (0, import_cardano_offchain_common29.mkAssetsOf)(iassetAc, orderInfo.swapInfo.owedIasset) : (0, import_cardano_offchain_common29.mkAssetsOf)(
11282
+ orderInfo.swapInfo.owedIasset > 0 ? (0, import_cardano_offchain_common30.mkAssetsOf)(iassetAc, orderInfo.swapInfo.owedIasset) : (0, import_cardano_offchain_common30.mkAssetsOf)(
10651
11283
  collateralAc,
10652
11284
  orderInfo.swapInfo.owedCollateralAsset
10653
11285
  )
@@ -10670,7 +11302,7 @@ async function batchProcessStableswapOrders(stableswapOrderOrefs, stableswapPool
10670
11302
  return tx;
10671
11303
  }
10672
11304
  async function updateStableswapPoolFees(stableswapPoolOutRef, stableswapFeeOutRef, newMintingFeeRatio, newRedemptionFeeRatio, sysParams, lucid) {
10673
- const stableswapScriptRefUtxo = (0, import_cardano_offchain_common29.matchSingle)(
11305
+ const stableswapScriptRefUtxo = (0, import_cardano_offchain_common30.matchSingle)(
10674
11306
  await lucid.utxosByOutRef([
10675
11307
  fromSystemParamsScriptRef(
10676
11308
  sysParams.scriptReferences.stableswapValidatorRef
@@ -10678,22 +11310,22 @@ async function updateStableswapPoolFees(stableswapPoolOutRef, stableswapFeeOutRe
10678
11310
  ]),
10679
11311
  (_) => new Error("Expected a single Stableswap Ref Script UTXO")
10680
11312
  );
10681
- const cdpScriptRefUtxo = (0, import_cardano_offchain_common29.matchSingle)(
11313
+ const cdpScriptRefUtxo = (0, import_cardano_offchain_common30.matchSingle)(
10682
11314
  await lucid.utxosByOutRef([
10683
11315
  fromSystemParamsScriptRef(sysParams.scriptReferences.cdpValidatorRef)
10684
11316
  ]),
10685
11317
  (_) => new Error("Expected a single CDP Ref Script UTXO")
10686
11318
  );
10687
- const stableswapPool = (0, import_cardano_offchain_common29.matchSingle)(
11319
+ const stableswapPool = (0, import_cardano_offchain_common30.matchSingle)(
10688
11320
  await lucid.utxosByOutRef([stableswapPoolOutRef]),
10689
11321
  (_) => new Error("Expected a single Stableswap Pool UTXO.")
10690
11322
  );
10691
- const stableswapFeeUtxo = (0, import_cardano_offchain_common29.matchSingle)(
11323
+ const stableswapFeeUtxo = (0, import_cardano_offchain_common30.matchSingle)(
10692
11324
  await lucid.utxosByOutRef([stableswapFeeOutRef]),
10693
11325
  (_) => new Error("Expected a single Stableswap Fee UTXO.")
10694
11326
  );
10695
11327
  const stableswapPoolDatum = parseStableswapPoolDatumOrThrow(
10696
- (0, import_cardano_offchain_common29.getInlineDatumOrThrow)(stableswapPool)
11328
+ (0, import_cardano_offchain_common30.getInlineDatumOrThrow)(stableswapPool)
10697
11329
  );
10698
11330
  const newStableswapPoolDatum = {
10699
11331
  ...stableswapPoolDatum,
@@ -10721,7 +11353,7 @@ async function updateStableswapPoolFees(stableswapPoolOutRef, stableswapFeeOutRe
10721
11353
  value: serialiseStableswapPoolDatum(newStableswapPoolDatum)
10722
11354
  },
10723
11355
  stableswapPool.assets
10724
- ).addSignerKey((0, import_lucid66.toHex)(stableswapPoolDatum.feeManager)).setMinFee(1038402n);
11356
+ ).addSignerKey((0, import_lucid67.toHex)(stableswapPoolDatum.feeManager)).setMinFee(1038402n);
10725
11357
  }
10726
11358
  // Annotate the CommonJS export names for ESM import in node:
10727
11359
  0 && (module.exports = {
@@ -10747,7 +11379,9 @@ async function updateStableswapPoolFees(stableswapPoolOutRef, stableswapFeeOutRe
10747
11379
  InterestCollectionParamsSchema,
10748
11380
  InterestOracleDatumSchema,
10749
11381
  InterestOracleParamsSchema,
11382
+ MAX_COLLATERAL_ASSETS_COUNT_PER_IASSET,
10750
11383
  MAX_E2S2S_ENTRIES_COUNT,
11384
+ MAX_REDEMPTIONS_WITH_CDP_OPEN,
10751
11385
  MIN_ROB_COLLATERAL_AMT,
10752
11386
  ONE_DAY,
10753
11387
  ONE_HOUR,
@@ -10782,6 +11416,7 @@ async function updateStableswapPoolFees(stableswapPoolOutRef, stableswapFeeOutRe
10782
11416
  adjustStakingPosition,
10783
11417
  alwaysFailValidator,
10784
11418
  annulRequest,
11419
+ approximateLeverageRedemptions,
10785
11420
  attachOracle,
10786
11421
  balance,
10787
11422
  batchCollectInterest,
@@ -10792,8 +11427,11 @@ async function updateStableswapPoolFees(stableswapPoolOutRef, stableswapFeeOutRe
10792
11427
  burnCdp,
10793
11428
  calculateAccruedInterest,
10794
11429
  calculateAdaReward,
11430
+ calculateCollateralRatioFromLeverage,
10795
11431
  calculateIAssetRedemptionAmt,
11432
+ calculateLeverageFromCollateralRatio,
10796
11433
  calculateMinCollateralCappedIAssetRedemptionAmt,
11434
+ calculateTotalCollateralForRedemption,
10797
11435
  calculateUnitaryInterest,
10798
11436
  calculateUnitaryInterestSinceOracleLastUpdated,
10799
11437
  cancelRob,
@@ -10859,9 +11497,9 @@ async function updateStableswapPoolFees(stableswapPoolOutRef, stableswapFeeOutRe
10859
11497
  getAssetClassComparisonStr,
10860
11498
  getInlineDatumOrThrow,
10861
11499
  getPythFeedConfig,
10862
- getRandomElement,
10863
11500
  getUpdatedAccountDeposit,
10864
11501
  handleOracleForCollateralAsset,
11502
+ iassetValueOfCollateral,
10865
11503
  init,
10866
11504
  initCDPCreator,
10867
11505
  initCollector,
@@ -10875,8 +11513,10 @@ async function updateStableswapPoolFees(stableswapPoolOutRef, stableswapFeeOutRe
10875
11513
  initTreasury,
10876
11514
  initializeAsset,
10877
11515
  insertSorted,
11516
+ isBuyOrderFullyRedeemed,
10878
11517
  isFullyRedeemed,
10879
11518
  isSameEpochToScaleKey,
11519
+ leverageCdpWithRob,
10880
11520
  liquidateCdp,
10881
11521
  liquidationHelper,
10882
11522
  loadSystemParamsFromFile,
@@ -10940,10 +11580,6 @@ async function updateStableswapPoolFees(stableswapPoolOutRef, stableswapFeeOutRe
10940
11580
  parseIAssetDatumOrThrow,
10941
11581
  parseInterestCollectionDatum,
10942
11582
  parseInterestOracleDatum,
10943
- parsePollManager,
10944
- parsePollManagerOrThrow,
10945
- parsePollShard,
10946
- parsePollShardOrThrow,
10947
11583
  parsePriceOracleDatum,
10948
11584
  parsePythStateDatum,
10949
11585
  parseRobDatum,
@@ -10964,8 +11600,8 @@ async function updateStableswapPoolFees(stableswapPoolOutRef, stableswapFeeOutRe
10964
11600
  parseStakingPosition,
10965
11601
  parseStakingPositionOrThrow,
10966
11602
  partitionEpochToScaleToSums,
10967
- pollPassQuorum,
10968
11603
  processSpRequest,
11604
+ randomRobsSubsetSatisfyingTargetCollateral,
10969
11605
  rationalAdd,
10970
11606
  rationalCeil,
10971
11607
  rationalDiv,
@@ -10984,7 +11620,10 @@ async function updateStableswapPoolFees(stableswapPoolOutRef, stableswapFeeOutRe
10984
11620
  requestSpAccountClosure,
10985
11621
  requestSpAccountCreation,
10986
11622
  rewardSnapshotPrecision,
10987
- robAmountToSpend,
11623
+ robAmtToSpend,
11624
+ robBuyOrderSummary,
11625
+ robCollateralAmtToSpend,
11626
+ robIAssetAmtToSpend,
10988
11627
  runCreateScriptRefTx,
10989
11628
  runOneShotMintTx,
10990
11629
  scriptRef,
@@ -11001,9 +11640,6 @@ async function updateStableswapPoolFees(stableswapPoolOutRef, stableswapFeeOutRe
11001
11640
  serialiseInterestCollectionDatum,
11002
11641
  serialiseInterestCollectionRedeemer,
11003
11642
  serialiseInterestOracleDatum,
11004
- serialisePollDatum,
11005
- serialisePollManagerRedeemer,
11006
- serialisePollShardRedeemer,
11007
11643
  serialisePriceOracleDatum,
11008
11644
  serialisePriceOracleRedeemer,
11009
11645
  serialisePythFeedParams,
@@ -11032,6 +11668,7 @@ async function updateStableswapPoolFees(stableswapPoolOutRef, stableswapFeeOutRe
11032
11668
  startPriceOracleTx,
11033
11669
  submitTx,
11034
11670
  sum,
11671
+ summarizeActualLeverageRedemptions,
11035
11672
  toAssetClassFromLucid,
11036
11673
  toDataDerivedPythPrice,
11037
11674
  toSystemParamsAsset,