@aztec/stdlib 0.84.0-alpha-testnet.0 → 0.84.0-nightly.20250405
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dest/avm/avm.d.ts +1272 -22
- package/dest/avm/avm.d.ts.map +1 -1
- package/dest/avm/avm.js +71 -3
- package/dest/avm/avm_proving_request.d.ts +585 -0
- package/dest/avm/avm_proving_request.d.ts.map +1 -1
- package/dest/epoch-helpers/index.d.ts +9 -0
- package/dest/epoch-helpers/index.d.ts.map +1 -1
- package/dest/epoch-helpers/index.js +15 -2
- package/dest/interfaces/proving-job.d.ts +585 -0
- package/dest/interfaces/proving-job.d.ts.map +1 -1
- package/dest/logs/log_with_tx_data.d.ts +3 -2
- package/dest/logs/log_with_tx_data.d.ts.map +1 -1
- package/dest/logs/log_with_tx_data.js +3 -2
- package/dest/logs/pending_tagged_log.d.ts +3 -2
- package/dest/logs/pending_tagged_log.d.ts.map +1 -1
- package/dest/logs/pending_tagged_log.js +1 -1
- package/dest/messaging/l1_to_l2_message_source.d.ts +5 -0
- package/dest/messaging/l1_to_l2_message_source.d.ts.map +1 -1
- package/dest/tests/factories.d.ts +4 -1
- package/dest/tests/factories.d.ts.map +1 -1
- package/dest/tests/factories.js +14 -2
- package/dest/tx/index.d.ts +1 -0
- package/dest/tx/index.d.ts.map +1 -1
- package/dest/tx/index.js +1 -0
- package/dest/tx/validator/error_texts.d.ts +19 -0
- package/dest/tx/validator/error_texts.d.ts.map +1 -0
- package/dest/tx/validator/error_texts.js +26 -0
- package/package.json +6 -6
- package/src/avm/avm.ts +99 -1
- package/src/epoch-helpers/index.ts +19 -0
- package/src/logs/log_with_tx_data.ts +4 -3
- package/src/logs/pending_tagged_log.ts +3 -2
- package/src/messaging/l1_to_l2_message_source.ts +7 -0
- package/src/tests/factories.ts +35 -0
- package/src/tx/index.ts +1 -0
- package/src/tx/validator/error_texts.ts +33 -0
|
@@ -1373,6 +1373,325 @@ export declare const ProvingJobInputs: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
1373
1373
|
};
|
|
1374
1374
|
};
|
|
1375
1375
|
}>, "many">;
|
|
1376
|
+
createCheckpointHints: z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
1377
|
+
actionCounter: z.ZodNumber;
|
|
1378
|
+
oldCheckpointId: z.ZodNumber;
|
|
1379
|
+
newCheckpointId: z.ZodNumber;
|
|
1380
|
+
}, "strip", z.ZodTypeAny, {
|
|
1381
|
+
actionCounter: number;
|
|
1382
|
+
oldCheckpointId: number;
|
|
1383
|
+
newCheckpointId: number;
|
|
1384
|
+
}, {
|
|
1385
|
+
actionCounter: number;
|
|
1386
|
+
oldCheckpointId: number;
|
|
1387
|
+
newCheckpointId: number;
|
|
1388
|
+
}>, {
|
|
1389
|
+
readonly actionCounter: number;
|
|
1390
|
+
readonly oldCheckpointId: number;
|
|
1391
|
+
readonly newCheckpointId: number;
|
|
1392
|
+
}, {
|
|
1393
|
+
actionCounter: number;
|
|
1394
|
+
oldCheckpointId: number;
|
|
1395
|
+
newCheckpointId: number;
|
|
1396
|
+
}>, "many">;
|
|
1397
|
+
commitCheckpointHints: z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
1398
|
+
actionCounter: z.ZodNumber;
|
|
1399
|
+
oldCheckpointId: z.ZodNumber;
|
|
1400
|
+
newCheckpointId: z.ZodNumber;
|
|
1401
|
+
}, "strip", z.ZodTypeAny, {
|
|
1402
|
+
actionCounter: number;
|
|
1403
|
+
oldCheckpointId: number;
|
|
1404
|
+
newCheckpointId: number;
|
|
1405
|
+
}, {
|
|
1406
|
+
actionCounter: number;
|
|
1407
|
+
oldCheckpointId: number;
|
|
1408
|
+
newCheckpointId: number;
|
|
1409
|
+
}>, {
|
|
1410
|
+
readonly actionCounter: number;
|
|
1411
|
+
readonly oldCheckpointId: number;
|
|
1412
|
+
readonly newCheckpointId: number;
|
|
1413
|
+
}, {
|
|
1414
|
+
actionCounter: number;
|
|
1415
|
+
oldCheckpointId: number;
|
|
1416
|
+
newCheckpointId: number;
|
|
1417
|
+
}>, "many">;
|
|
1418
|
+
revertCheckpointHints: z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
1419
|
+
actionCounter: z.ZodNumber;
|
|
1420
|
+
oldCheckpointId: z.ZodNumber;
|
|
1421
|
+
newCheckpointId: z.ZodNumber;
|
|
1422
|
+
stateBefore: z.ZodEffects<z.ZodObject<{
|
|
1423
|
+
l1ToL2MessageTree: z.ZodEffects<z.ZodObject<{
|
|
1424
|
+
root: z.ZodType<import("@aztec/foundation/schemas").Fr, any, string>;
|
|
1425
|
+
nextAvailableLeafIndex: z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodNumber, z.ZodString]>, z.ZodNumber>;
|
|
1426
|
+
}, "strip", z.ZodTypeAny, {
|
|
1427
|
+
root: import("@aztec/foundation/schemas").Fr;
|
|
1428
|
+
nextAvailableLeafIndex: number;
|
|
1429
|
+
}, {
|
|
1430
|
+
root: string;
|
|
1431
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1432
|
+
}>, import("../trees/append_only_tree_snapshot.js").AppendOnlyTreeSnapshot, {
|
|
1433
|
+
root: string;
|
|
1434
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1435
|
+
}>;
|
|
1436
|
+
noteHashTree: z.ZodEffects<z.ZodObject<{
|
|
1437
|
+
root: z.ZodType<import("@aztec/foundation/schemas").Fr, any, string>;
|
|
1438
|
+
nextAvailableLeafIndex: z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodNumber, z.ZodString]>, z.ZodNumber>;
|
|
1439
|
+
}, "strip", z.ZodTypeAny, {
|
|
1440
|
+
root: import("@aztec/foundation/schemas").Fr;
|
|
1441
|
+
nextAvailableLeafIndex: number;
|
|
1442
|
+
}, {
|
|
1443
|
+
root: string;
|
|
1444
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1445
|
+
}>, import("../trees/append_only_tree_snapshot.js").AppendOnlyTreeSnapshot, {
|
|
1446
|
+
root: string;
|
|
1447
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1448
|
+
}>;
|
|
1449
|
+
nullifierTree: z.ZodEffects<z.ZodObject<{
|
|
1450
|
+
root: z.ZodType<import("@aztec/foundation/schemas").Fr, any, string>;
|
|
1451
|
+
nextAvailableLeafIndex: z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodNumber, z.ZodString]>, z.ZodNumber>;
|
|
1452
|
+
}, "strip", z.ZodTypeAny, {
|
|
1453
|
+
root: import("@aztec/foundation/schemas").Fr;
|
|
1454
|
+
nextAvailableLeafIndex: number;
|
|
1455
|
+
}, {
|
|
1456
|
+
root: string;
|
|
1457
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1458
|
+
}>, import("../trees/append_only_tree_snapshot.js").AppendOnlyTreeSnapshot, {
|
|
1459
|
+
root: string;
|
|
1460
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1461
|
+
}>;
|
|
1462
|
+
publicDataTree: z.ZodEffects<z.ZodObject<{
|
|
1463
|
+
root: z.ZodType<import("@aztec/foundation/schemas").Fr, any, string>;
|
|
1464
|
+
nextAvailableLeafIndex: z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodNumber, z.ZodString]>, z.ZodNumber>;
|
|
1465
|
+
}, "strip", z.ZodTypeAny, {
|
|
1466
|
+
root: import("@aztec/foundation/schemas").Fr;
|
|
1467
|
+
nextAvailableLeafIndex: number;
|
|
1468
|
+
}, {
|
|
1469
|
+
root: string;
|
|
1470
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1471
|
+
}>, import("../trees/append_only_tree_snapshot.js").AppendOnlyTreeSnapshot, {
|
|
1472
|
+
root: string;
|
|
1473
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1474
|
+
}>;
|
|
1475
|
+
}, "strip", z.ZodTypeAny, {
|
|
1476
|
+
noteHashTree: import("../trees/append_only_tree_snapshot.js").AppendOnlyTreeSnapshot;
|
|
1477
|
+
nullifierTree: import("../trees/append_only_tree_snapshot.js").AppendOnlyTreeSnapshot;
|
|
1478
|
+
publicDataTree: import("../trees/append_only_tree_snapshot.js").AppendOnlyTreeSnapshot;
|
|
1479
|
+
l1ToL2MessageTree: import("../trees/append_only_tree_snapshot.js").AppendOnlyTreeSnapshot;
|
|
1480
|
+
}, {
|
|
1481
|
+
noteHashTree: {
|
|
1482
|
+
root: string;
|
|
1483
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1484
|
+
};
|
|
1485
|
+
nullifierTree: {
|
|
1486
|
+
root: string;
|
|
1487
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1488
|
+
};
|
|
1489
|
+
publicDataTree: {
|
|
1490
|
+
root: string;
|
|
1491
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1492
|
+
};
|
|
1493
|
+
l1ToL2MessageTree: {
|
|
1494
|
+
root: string;
|
|
1495
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1496
|
+
};
|
|
1497
|
+
}>, import("../tx/tree_snapshots.js").TreeSnapshots, {
|
|
1498
|
+
noteHashTree: {
|
|
1499
|
+
root: string;
|
|
1500
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1501
|
+
};
|
|
1502
|
+
nullifierTree: {
|
|
1503
|
+
root: string;
|
|
1504
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1505
|
+
};
|
|
1506
|
+
publicDataTree: {
|
|
1507
|
+
root: string;
|
|
1508
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1509
|
+
};
|
|
1510
|
+
l1ToL2MessageTree: {
|
|
1511
|
+
root: string;
|
|
1512
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1513
|
+
};
|
|
1514
|
+
}>;
|
|
1515
|
+
stateAfter: z.ZodEffects<z.ZodObject<{
|
|
1516
|
+
l1ToL2MessageTree: z.ZodEffects<z.ZodObject<{
|
|
1517
|
+
root: z.ZodType<import("@aztec/foundation/schemas").Fr, any, string>;
|
|
1518
|
+
nextAvailableLeafIndex: z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodNumber, z.ZodString]>, z.ZodNumber>;
|
|
1519
|
+
}, "strip", z.ZodTypeAny, {
|
|
1520
|
+
root: import("@aztec/foundation/schemas").Fr;
|
|
1521
|
+
nextAvailableLeafIndex: number;
|
|
1522
|
+
}, {
|
|
1523
|
+
root: string;
|
|
1524
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1525
|
+
}>, import("../trees/append_only_tree_snapshot.js").AppendOnlyTreeSnapshot, {
|
|
1526
|
+
root: string;
|
|
1527
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1528
|
+
}>;
|
|
1529
|
+
noteHashTree: z.ZodEffects<z.ZodObject<{
|
|
1530
|
+
root: z.ZodType<import("@aztec/foundation/schemas").Fr, any, string>;
|
|
1531
|
+
nextAvailableLeafIndex: z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodNumber, z.ZodString]>, z.ZodNumber>;
|
|
1532
|
+
}, "strip", z.ZodTypeAny, {
|
|
1533
|
+
root: import("@aztec/foundation/schemas").Fr;
|
|
1534
|
+
nextAvailableLeafIndex: number;
|
|
1535
|
+
}, {
|
|
1536
|
+
root: string;
|
|
1537
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1538
|
+
}>, import("../trees/append_only_tree_snapshot.js").AppendOnlyTreeSnapshot, {
|
|
1539
|
+
root: string;
|
|
1540
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1541
|
+
}>;
|
|
1542
|
+
nullifierTree: z.ZodEffects<z.ZodObject<{
|
|
1543
|
+
root: z.ZodType<import("@aztec/foundation/schemas").Fr, any, string>;
|
|
1544
|
+
nextAvailableLeafIndex: z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodNumber, z.ZodString]>, z.ZodNumber>;
|
|
1545
|
+
}, "strip", z.ZodTypeAny, {
|
|
1546
|
+
root: import("@aztec/foundation/schemas").Fr;
|
|
1547
|
+
nextAvailableLeafIndex: number;
|
|
1548
|
+
}, {
|
|
1549
|
+
root: string;
|
|
1550
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1551
|
+
}>, import("../trees/append_only_tree_snapshot.js").AppendOnlyTreeSnapshot, {
|
|
1552
|
+
root: string;
|
|
1553
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1554
|
+
}>;
|
|
1555
|
+
publicDataTree: z.ZodEffects<z.ZodObject<{
|
|
1556
|
+
root: z.ZodType<import("@aztec/foundation/schemas").Fr, any, string>;
|
|
1557
|
+
nextAvailableLeafIndex: z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodNumber, z.ZodString]>, z.ZodNumber>;
|
|
1558
|
+
}, "strip", z.ZodTypeAny, {
|
|
1559
|
+
root: import("@aztec/foundation/schemas").Fr;
|
|
1560
|
+
nextAvailableLeafIndex: number;
|
|
1561
|
+
}, {
|
|
1562
|
+
root: string;
|
|
1563
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1564
|
+
}>, import("../trees/append_only_tree_snapshot.js").AppendOnlyTreeSnapshot, {
|
|
1565
|
+
root: string;
|
|
1566
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1567
|
+
}>;
|
|
1568
|
+
}, "strip", z.ZodTypeAny, {
|
|
1569
|
+
noteHashTree: import("../trees/append_only_tree_snapshot.js").AppendOnlyTreeSnapshot;
|
|
1570
|
+
nullifierTree: import("../trees/append_only_tree_snapshot.js").AppendOnlyTreeSnapshot;
|
|
1571
|
+
publicDataTree: import("../trees/append_only_tree_snapshot.js").AppendOnlyTreeSnapshot;
|
|
1572
|
+
l1ToL2MessageTree: import("../trees/append_only_tree_snapshot.js").AppendOnlyTreeSnapshot;
|
|
1573
|
+
}, {
|
|
1574
|
+
noteHashTree: {
|
|
1575
|
+
root: string;
|
|
1576
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1577
|
+
};
|
|
1578
|
+
nullifierTree: {
|
|
1579
|
+
root: string;
|
|
1580
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1581
|
+
};
|
|
1582
|
+
publicDataTree: {
|
|
1583
|
+
root: string;
|
|
1584
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1585
|
+
};
|
|
1586
|
+
l1ToL2MessageTree: {
|
|
1587
|
+
root: string;
|
|
1588
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1589
|
+
};
|
|
1590
|
+
}>, import("../tx/tree_snapshots.js").TreeSnapshots, {
|
|
1591
|
+
noteHashTree: {
|
|
1592
|
+
root: string;
|
|
1593
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1594
|
+
};
|
|
1595
|
+
nullifierTree: {
|
|
1596
|
+
root: string;
|
|
1597
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1598
|
+
};
|
|
1599
|
+
publicDataTree: {
|
|
1600
|
+
root: string;
|
|
1601
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1602
|
+
};
|
|
1603
|
+
l1ToL2MessageTree: {
|
|
1604
|
+
root: string;
|
|
1605
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1606
|
+
};
|
|
1607
|
+
}>;
|
|
1608
|
+
}, "strip", z.ZodTypeAny, {
|
|
1609
|
+
stateAfter: import("../tx/tree_snapshots.js").TreeSnapshots;
|
|
1610
|
+
actionCounter: number;
|
|
1611
|
+
oldCheckpointId: number;
|
|
1612
|
+
newCheckpointId: number;
|
|
1613
|
+
stateBefore: import("../tx/tree_snapshots.js").TreeSnapshots;
|
|
1614
|
+
}, {
|
|
1615
|
+
stateAfter: {
|
|
1616
|
+
noteHashTree: {
|
|
1617
|
+
root: string;
|
|
1618
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1619
|
+
};
|
|
1620
|
+
nullifierTree: {
|
|
1621
|
+
root: string;
|
|
1622
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1623
|
+
};
|
|
1624
|
+
publicDataTree: {
|
|
1625
|
+
root: string;
|
|
1626
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1627
|
+
};
|
|
1628
|
+
l1ToL2MessageTree: {
|
|
1629
|
+
root: string;
|
|
1630
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1631
|
+
};
|
|
1632
|
+
};
|
|
1633
|
+
actionCounter: number;
|
|
1634
|
+
oldCheckpointId: number;
|
|
1635
|
+
newCheckpointId: number;
|
|
1636
|
+
stateBefore: {
|
|
1637
|
+
noteHashTree: {
|
|
1638
|
+
root: string;
|
|
1639
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1640
|
+
};
|
|
1641
|
+
nullifierTree: {
|
|
1642
|
+
root: string;
|
|
1643
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1644
|
+
};
|
|
1645
|
+
publicDataTree: {
|
|
1646
|
+
root: string;
|
|
1647
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1648
|
+
};
|
|
1649
|
+
l1ToL2MessageTree: {
|
|
1650
|
+
root: string;
|
|
1651
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1652
|
+
};
|
|
1653
|
+
};
|
|
1654
|
+
}>, import("../avm/avm.js").AvmRevertCheckpointHint, {
|
|
1655
|
+
stateAfter: {
|
|
1656
|
+
noteHashTree: {
|
|
1657
|
+
root: string;
|
|
1658
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1659
|
+
};
|
|
1660
|
+
nullifierTree: {
|
|
1661
|
+
root: string;
|
|
1662
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1663
|
+
};
|
|
1664
|
+
publicDataTree: {
|
|
1665
|
+
root: string;
|
|
1666
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1667
|
+
};
|
|
1668
|
+
l1ToL2MessageTree: {
|
|
1669
|
+
root: string;
|
|
1670
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1671
|
+
};
|
|
1672
|
+
};
|
|
1673
|
+
actionCounter: number;
|
|
1674
|
+
oldCheckpointId: number;
|
|
1675
|
+
newCheckpointId: number;
|
|
1676
|
+
stateBefore: {
|
|
1677
|
+
noteHashTree: {
|
|
1678
|
+
root: string;
|
|
1679
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1680
|
+
};
|
|
1681
|
+
nullifierTree: {
|
|
1682
|
+
root: string;
|
|
1683
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1684
|
+
};
|
|
1685
|
+
publicDataTree: {
|
|
1686
|
+
root: string;
|
|
1687
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1688
|
+
};
|
|
1689
|
+
l1ToL2MessageTree: {
|
|
1690
|
+
root: string;
|
|
1691
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
1692
|
+
};
|
|
1693
|
+
};
|
|
1694
|
+
}>, "many">;
|
|
1376
1695
|
}, "strip", z.ZodTypeAny, {
|
|
1377
1696
|
tx: {
|
|
1378
1697
|
nonRevertibleAccumulatedData: {
|
|
@@ -1435,6 +1754,17 @@ export declare const ProvingJobInputs: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
1435
1754
|
path: import("@aztec/foundation/schemas").Fr[];
|
|
1436
1755
|
};
|
|
1437
1756
|
}[];
|
|
1757
|
+
createCheckpointHints: {
|
|
1758
|
+
readonly actionCounter: number;
|
|
1759
|
+
readonly oldCheckpointId: number;
|
|
1760
|
+
readonly newCheckpointId: number;
|
|
1761
|
+
}[];
|
|
1762
|
+
commitCheckpointHints: {
|
|
1763
|
+
readonly actionCounter: number;
|
|
1764
|
+
readonly oldCheckpointId: number;
|
|
1765
|
+
readonly newCheckpointId: number;
|
|
1766
|
+
}[];
|
|
1767
|
+
revertCheckpointHints: import("../avm/avm.js").AvmRevertCheckpointHint[];
|
|
1438
1768
|
}, {
|
|
1439
1769
|
tx: {
|
|
1440
1770
|
nonRevertibleAccumulatedData: {
|
|
@@ -1667,6 +1997,57 @@ export declare const ProvingJobInputs: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
1667
1997
|
};
|
|
1668
1998
|
};
|
|
1669
1999
|
}[];
|
|
2000
|
+
createCheckpointHints: {
|
|
2001
|
+
actionCounter: number;
|
|
2002
|
+
oldCheckpointId: number;
|
|
2003
|
+
newCheckpointId: number;
|
|
2004
|
+
}[];
|
|
2005
|
+
commitCheckpointHints: {
|
|
2006
|
+
actionCounter: number;
|
|
2007
|
+
oldCheckpointId: number;
|
|
2008
|
+
newCheckpointId: number;
|
|
2009
|
+
}[];
|
|
2010
|
+
revertCheckpointHints: {
|
|
2011
|
+
stateAfter: {
|
|
2012
|
+
noteHashTree: {
|
|
2013
|
+
root: string;
|
|
2014
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
2015
|
+
};
|
|
2016
|
+
nullifierTree: {
|
|
2017
|
+
root: string;
|
|
2018
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
2019
|
+
};
|
|
2020
|
+
publicDataTree: {
|
|
2021
|
+
root: string;
|
|
2022
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
2023
|
+
};
|
|
2024
|
+
l1ToL2MessageTree: {
|
|
2025
|
+
root: string;
|
|
2026
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
2027
|
+
};
|
|
2028
|
+
};
|
|
2029
|
+
actionCounter: number;
|
|
2030
|
+
oldCheckpointId: number;
|
|
2031
|
+
newCheckpointId: number;
|
|
2032
|
+
stateBefore: {
|
|
2033
|
+
noteHashTree: {
|
|
2034
|
+
root: string;
|
|
2035
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
2036
|
+
};
|
|
2037
|
+
nullifierTree: {
|
|
2038
|
+
root: string;
|
|
2039
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
2040
|
+
};
|
|
2041
|
+
publicDataTree: {
|
|
2042
|
+
root: string;
|
|
2043
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
2044
|
+
};
|
|
2045
|
+
l1ToL2MessageTree: {
|
|
2046
|
+
root: string;
|
|
2047
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
2048
|
+
};
|
|
2049
|
+
};
|
|
2050
|
+
}[];
|
|
1670
2051
|
}>, import("../avm/avm.js").AvmExecutionHints, {
|
|
1671
2052
|
tx: {
|
|
1672
2053
|
nonRevertibleAccumulatedData: {
|
|
@@ -1899,6 +2280,57 @@ export declare const ProvingJobInputs: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
1899
2280
|
};
|
|
1900
2281
|
};
|
|
1901
2282
|
}[];
|
|
2283
|
+
createCheckpointHints: {
|
|
2284
|
+
actionCounter: number;
|
|
2285
|
+
oldCheckpointId: number;
|
|
2286
|
+
newCheckpointId: number;
|
|
2287
|
+
}[];
|
|
2288
|
+
commitCheckpointHints: {
|
|
2289
|
+
actionCounter: number;
|
|
2290
|
+
oldCheckpointId: number;
|
|
2291
|
+
newCheckpointId: number;
|
|
2292
|
+
}[];
|
|
2293
|
+
revertCheckpointHints: {
|
|
2294
|
+
stateAfter: {
|
|
2295
|
+
noteHashTree: {
|
|
2296
|
+
root: string;
|
|
2297
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
2298
|
+
};
|
|
2299
|
+
nullifierTree: {
|
|
2300
|
+
root: string;
|
|
2301
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
2302
|
+
};
|
|
2303
|
+
publicDataTree: {
|
|
2304
|
+
root: string;
|
|
2305
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
2306
|
+
};
|
|
2307
|
+
l1ToL2MessageTree: {
|
|
2308
|
+
root: string;
|
|
2309
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
2310
|
+
};
|
|
2311
|
+
};
|
|
2312
|
+
actionCounter: number;
|
|
2313
|
+
oldCheckpointId: number;
|
|
2314
|
+
newCheckpointId: number;
|
|
2315
|
+
stateBefore: {
|
|
2316
|
+
noteHashTree: {
|
|
2317
|
+
root: string;
|
|
2318
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
2319
|
+
};
|
|
2320
|
+
nullifierTree: {
|
|
2321
|
+
root: string;
|
|
2322
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
2323
|
+
};
|
|
2324
|
+
publicDataTree: {
|
|
2325
|
+
root: string;
|
|
2326
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
2327
|
+
};
|
|
2328
|
+
l1ToL2MessageTree: {
|
|
2329
|
+
root: string;
|
|
2330
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
2331
|
+
};
|
|
2332
|
+
};
|
|
2333
|
+
}[];
|
|
1902
2334
|
}>;
|
|
1903
2335
|
publicInputs: z.ZodEffects<z.ZodObject<{
|
|
1904
2336
|
globalVariables: z.ZodEffects<z.ZodObject<{
|
|
@@ -3292,6 +3724,57 @@ export declare const ProvingJobInputs: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
3292
3724
|
};
|
|
3293
3725
|
};
|
|
3294
3726
|
}[];
|
|
3727
|
+
createCheckpointHints: {
|
|
3728
|
+
actionCounter: number;
|
|
3729
|
+
oldCheckpointId: number;
|
|
3730
|
+
newCheckpointId: number;
|
|
3731
|
+
}[];
|
|
3732
|
+
commitCheckpointHints: {
|
|
3733
|
+
actionCounter: number;
|
|
3734
|
+
oldCheckpointId: number;
|
|
3735
|
+
newCheckpointId: number;
|
|
3736
|
+
}[];
|
|
3737
|
+
revertCheckpointHints: {
|
|
3738
|
+
stateAfter: {
|
|
3739
|
+
noteHashTree: {
|
|
3740
|
+
root: string;
|
|
3741
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
3742
|
+
};
|
|
3743
|
+
nullifierTree: {
|
|
3744
|
+
root: string;
|
|
3745
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
3746
|
+
};
|
|
3747
|
+
publicDataTree: {
|
|
3748
|
+
root: string;
|
|
3749
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
3750
|
+
};
|
|
3751
|
+
l1ToL2MessageTree: {
|
|
3752
|
+
root: string;
|
|
3753
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
3754
|
+
};
|
|
3755
|
+
};
|
|
3756
|
+
actionCounter: number;
|
|
3757
|
+
oldCheckpointId: number;
|
|
3758
|
+
newCheckpointId: number;
|
|
3759
|
+
stateBefore: {
|
|
3760
|
+
noteHashTree: {
|
|
3761
|
+
root: string;
|
|
3762
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
3763
|
+
};
|
|
3764
|
+
nullifierTree: {
|
|
3765
|
+
root: string;
|
|
3766
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
3767
|
+
};
|
|
3768
|
+
publicDataTree: {
|
|
3769
|
+
root: string;
|
|
3770
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
3771
|
+
};
|
|
3772
|
+
l1ToL2MessageTree: {
|
|
3773
|
+
root: string;
|
|
3774
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
3775
|
+
};
|
|
3776
|
+
};
|
|
3777
|
+
}[];
|
|
3295
3778
|
};
|
|
3296
3779
|
}>, AvmCircuitInputs, {
|
|
3297
3780
|
publicInputs: {
|
|
@@ -3677,6 +4160,57 @@ export declare const ProvingJobInputs: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
3677
4160
|
};
|
|
3678
4161
|
};
|
|
3679
4162
|
}[];
|
|
4163
|
+
createCheckpointHints: {
|
|
4164
|
+
actionCounter: number;
|
|
4165
|
+
oldCheckpointId: number;
|
|
4166
|
+
newCheckpointId: number;
|
|
4167
|
+
}[];
|
|
4168
|
+
commitCheckpointHints: {
|
|
4169
|
+
actionCounter: number;
|
|
4170
|
+
oldCheckpointId: number;
|
|
4171
|
+
newCheckpointId: number;
|
|
4172
|
+
}[];
|
|
4173
|
+
revertCheckpointHints: {
|
|
4174
|
+
stateAfter: {
|
|
4175
|
+
noteHashTree: {
|
|
4176
|
+
root: string;
|
|
4177
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
4178
|
+
};
|
|
4179
|
+
nullifierTree: {
|
|
4180
|
+
root: string;
|
|
4181
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
4182
|
+
};
|
|
4183
|
+
publicDataTree: {
|
|
4184
|
+
root: string;
|
|
4185
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
4186
|
+
};
|
|
4187
|
+
l1ToL2MessageTree: {
|
|
4188
|
+
root: string;
|
|
4189
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
4190
|
+
};
|
|
4191
|
+
};
|
|
4192
|
+
actionCounter: number;
|
|
4193
|
+
oldCheckpointId: number;
|
|
4194
|
+
newCheckpointId: number;
|
|
4195
|
+
stateBefore: {
|
|
4196
|
+
noteHashTree: {
|
|
4197
|
+
root: string;
|
|
4198
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
4199
|
+
};
|
|
4200
|
+
nullifierTree: {
|
|
4201
|
+
root: string;
|
|
4202
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
4203
|
+
};
|
|
4204
|
+
publicDataTree: {
|
|
4205
|
+
root: string;
|
|
4206
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
4207
|
+
};
|
|
4208
|
+
l1ToL2MessageTree: {
|
|
4209
|
+
root: string;
|
|
4210
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
4211
|
+
};
|
|
4212
|
+
};
|
|
4213
|
+
}[];
|
|
3680
4214
|
};
|
|
3681
4215
|
}>;
|
|
3682
4216
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4068,6 +4602,57 @@ export declare const ProvingJobInputs: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
4068
4602
|
};
|
|
4069
4603
|
};
|
|
4070
4604
|
}[];
|
|
4605
|
+
createCheckpointHints: {
|
|
4606
|
+
actionCounter: number;
|
|
4607
|
+
oldCheckpointId: number;
|
|
4608
|
+
newCheckpointId: number;
|
|
4609
|
+
}[];
|
|
4610
|
+
commitCheckpointHints: {
|
|
4611
|
+
actionCounter: number;
|
|
4612
|
+
oldCheckpointId: number;
|
|
4613
|
+
newCheckpointId: number;
|
|
4614
|
+
}[];
|
|
4615
|
+
revertCheckpointHints: {
|
|
4616
|
+
stateAfter: {
|
|
4617
|
+
noteHashTree: {
|
|
4618
|
+
root: string;
|
|
4619
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
4620
|
+
};
|
|
4621
|
+
nullifierTree: {
|
|
4622
|
+
root: string;
|
|
4623
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
4624
|
+
};
|
|
4625
|
+
publicDataTree: {
|
|
4626
|
+
root: string;
|
|
4627
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
4628
|
+
};
|
|
4629
|
+
l1ToL2MessageTree: {
|
|
4630
|
+
root: string;
|
|
4631
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
4632
|
+
};
|
|
4633
|
+
};
|
|
4634
|
+
actionCounter: number;
|
|
4635
|
+
oldCheckpointId: number;
|
|
4636
|
+
newCheckpointId: number;
|
|
4637
|
+
stateBefore: {
|
|
4638
|
+
noteHashTree: {
|
|
4639
|
+
root: string;
|
|
4640
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
4641
|
+
};
|
|
4642
|
+
nullifierTree: {
|
|
4643
|
+
root: string;
|
|
4644
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
4645
|
+
};
|
|
4646
|
+
publicDataTree: {
|
|
4647
|
+
root: string;
|
|
4648
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
4649
|
+
};
|
|
4650
|
+
l1ToL2MessageTree: {
|
|
4651
|
+
root: string;
|
|
4652
|
+
nextAvailableLeafIndex: string | number | bigint;
|
|
4653
|
+
};
|
|
4654
|
+
};
|
|
4655
|
+
}[];
|
|
4071
4656
|
};
|
|
4072
4657
|
};
|
|
4073
4658
|
}>, z.ZodObject<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"proving-job.d.ts","sourceRoot":"","sources":["../../src/interfaces/proving-job.ts"],"names":[],"mappings":";;AAAA,OAAO,EACL,0BAA0B,EAC1B,6BAA6B,EAC7B,yCAAyC,EACzC,sBAAsB,EACtB,iBAAiB,EAClB,MAAM,kBAAkB,CAAC;AAC1B,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,2BAA2B,CAAC;AAExD,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAEjD,OAAO,EAAE,gBAAgB,EAAE,MAAM,iCAAiC,CAAC;AACnE,OAAO,EAAE,kBAAkB,EAAE,MAAM,mCAAmC,CAAC;AACvE,OAAO,EAAE,gBAAgB,EAAE,MAAM,iCAAiC,CAAC;AACnE,OAAO,EAAE,kBAAkB,EAAE,MAAM,mCAAmC,CAAC;AACvE,OAAO,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAC;AAC9D,OAAO,EAAE,6BAA6B,EAAE,MAAM,iDAAiD,CAAC;AAChG,OAAO,EAAE,sBAAsB,EAAE,MAAM,iCAAiC,CAAC;AACzE,OAAO,EAAE,iCAAiC,EAAE,MAAM,sDAAsD,CAAC;AACzG,OAAO,EAAE,qBAAqB,EAAE,6BAA6B,EAAE,MAAM,gCAAgC,CAAC;AACtG,OAAO,EAAE,0BAA0B,EAAE,MAAM,6CAA6C,CAAC;AACzF,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAC9D,OAAO,EAAE,uBAAuB,EAAE,MAAM,yCAAyC,CAAC;AAClF,OAAO,EAAE,sBAAsB,EAAE,MAAM,wCAAwC,CAAC;AAChF,OAAO,EAAE,gBAAgB,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAC;AACpF,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AACtD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,mBAAmB,CAAC;AAC3D,OAAO,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC;AAEjE,MAAM,MAAM,uBAAuB,CAAC,CAAC,SAAS,MAAM,IAAI;IACtD,KAAK,EAAE,cAAc,CAAC,CAAC,CAAC,CAAC;IACzB,eAAe,EAAE,mBAAmB,CAAC;CACtC,CAAC;AAWF,wBAAgB,2BAA2B,CAAC,CAAC,SAAS,MAAM,EAC1D,KAAK,EAAE,cAAc,CAAC,CAAC,CAAC,EACxB,eAAe,EAAE,mBAAmB,GACnC,uBAAuB,CAAC,CAAC,CAAC,CAE5B;AAED,MAAM,MAAM,6BAA6B,CAAC,CAAC,EAAE,CAAC,SAAS,MAAM,GAAG,OAAO,6BAA6B,IAAI;IACtG,MAAM,EAAE,CAAC,CAAC;IACV,KAAK,EAAE,cAAc,CAAC,CAAC,CAAC,CAAC;IACzB,eAAe,EAAE,mBAAmB,CAAC;CACtC,CAAC;AAaF,wBAAgB,iCAAiC,CAAC,CAAC,EAAE,CAAC,SAAS,MAAM,GAAG,OAAO,6BAA6B,EAC1G,MAAM,EAAE,CAAC,EACT,KAAK,EAAE,cAAc,CAAC,CAAC,CAAC,EACxB,eAAe,EAAE,mBAAmB,GACnC,6BAA6B,CAAC,CAAC,EAAE,CAAC,CAAC,CAErC;AAED,wBAAgB,kCAAkC,CAAC,IAAI,EAAE,kBAAkB,GAAG,iBAAiB,CA+B9F;AAED,eAAO,MAAM,gBAAgB
|
|
1
|
+
{"version":3,"file":"proving-job.d.ts","sourceRoot":"","sources":["../../src/interfaces/proving-job.ts"],"names":[],"mappings":";;AAAA,OAAO,EACL,0BAA0B,EAC1B,6BAA6B,EAC7B,yCAAyC,EACzC,sBAAsB,EACtB,iBAAiB,EAClB,MAAM,kBAAkB,CAAC;AAC1B,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,2BAA2B,CAAC;AAExD,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAEjD,OAAO,EAAE,gBAAgB,EAAE,MAAM,iCAAiC,CAAC;AACnE,OAAO,EAAE,kBAAkB,EAAE,MAAM,mCAAmC,CAAC;AACvE,OAAO,EAAE,gBAAgB,EAAE,MAAM,iCAAiC,CAAC;AACnE,OAAO,EAAE,kBAAkB,EAAE,MAAM,mCAAmC,CAAC;AACvE,OAAO,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAC;AAC9D,OAAO,EAAE,6BAA6B,EAAE,MAAM,iDAAiD,CAAC;AAChG,OAAO,EAAE,sBAAsB,EAAE,MAAM,iCAAiC,CAAC;AACzE,OAAO,EAAE,iCAAiC,EAAE,MAAM,sDAAsD,CAAC;AACzG,OAAO,EAAE,qBAAqB,EAAE,6BAA6B,EAAE,MAAM,gCAAgC,CAAC;AACtG,OAAO,EAAE,0BAA0B,EAAE,MAAM,6CAA6C,CAAC;AACzF,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAC9D,OAAO,EAAE,uBAAuB,EAAE,MAAM,yCAAyC,CAAC;AAClF,OAAO,EAAE,sBAAsB,EAAE,MAAM,wCAAwC,CAAC;AAChF,OAAO,EAAE,gBAAgB,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAC;AACpF,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AACtD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,mBAAmB,CAAC;AAC3D,OAAO,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC;AAEjE,MAAM,MAAM,uBAAuB,CAAC,CAAC,SAAS,MAAM,IAAI;IACtD,KAAK,EAAE,cAAc,CAAC,CAAC,CAAC,CAAC;IACzB,eAAe,EAAE,mBAAmB,CAAC;CACtC,CAAC;AAWF,wBAAgB,2BAA2B,CAAC,CAAC,SAAS,MAAM,EAC1D,KAAK,EAAE,cAAc,CAAC,CAAC,CAAC,EACxB,eAAe,EAAE,mBAAmB,GACnC,uBAAuB,CAAC,CAAC,CAAC,CAE5B;AAED,MAAM,MAAM,6BAA6B,CAAC,CAAC,EAAE,CAAC,SAAS,MAAM,GAAG,OAAO,6BAA6B,IAAI;IACtG,MAAM,EAAE,CAAC,CAAC;IACV,KAAK,EAAE,cAAc,CAAC,CAAC,CAAC,CAAC;IACzB,eAAe,EAAE,mBAAmB,CAAC;CACtC,CAAC;AAaF,wBAAgB,iCAAiC,CAAC,CAAC,EAAE,CAAC,SAAS,MAAM,GAAG,OAAO,6BAA6B,EAC1G,MAAM,EAAE,CAAC,EACT,KAAK,EAAE,cAAc,CAAC,CAAC,CAAC,EACxB,eAAe,EAAE,mBAAmB,GACnC,6BAA6B,CAAC,CAAC,EAAE,CAAC,CAAC,CAErC;AAED,wBAAgB,kCAAkC,CAAC,IAAI,EAAE,kBAAkB,GAAG,iBAAiB,CA+B9F;AAED,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
|